/* ============ SABLE ============ */

:root {
  --bg: #050506;
  --bg-2: #0b0b0d;
  --ink: #ececee;
  --ink-dim: #8a8a92;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --chrome-1: #f6f6f7;
  --chrome-2: #a8a8ac;
  --chrome-3: #5c5c62;
  --accent: #d9d9dc;
  --shadow: 0 30px 80px -30px rgba(0,0,0,0.9);
  --radius: 14px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ---- Ambient smoke + grain ---- */

#silk {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  pointer-events: none;
  z-index: 0;
  background: #050506;
}

.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.9'/></svg>");
}

main, header, footer { position: relative; z-index: 2; }

/* ---- Nav ---- */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px 10px 22px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  background: rgba(15,15,18,0.7);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.8),
              inset 0 1px 0 rgba(255,255,255,0.06);
  position: sticky;
  top: 18px;
  z-index: 50;
  max-width: 1080px;
  margin: 18px auto 0;
  width: calc(100% - 40px);
  overflow: hidden;
  isolation: isolate;
}
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    260px 160px at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.22),
    rgba(255, 255, 255, 0.08) 30%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}
.nav:hover::before { opacity: 1; }
.nav > * { position: relative; z-index: 1; }

.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.28em;
  font-weight: 700;
  font-size: 15px;
}
.brand img { width: 30px; height: 30px; border-radius: 6px; }

.nav-links {
  position: relative;
  display: flex;
  gap: 6px;
}
.nav-links a {
  position: relative;
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  border-radius: 999px;
  transition: color 0.25s ease, background 0.3s ease, text-shadow 0.3s ease;
  white-space: nowrap;
}
.nav-links a.active { color: var(--ink); }
.nav-links a:hover {
  color: #fff;
  background: radial-gradient(circle at center, rgba(255,255,255,0.16), transparent 72%);
  text-shadow: 0 0 12px rgba(255,255,255,0.55);
}

/* ---- Buttons ---- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn > * { position: relative; z-index: 2; }
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 70%
  );
  transform: skewX(-18deg);
  transition: left 0.7s cubic-bezier(0.5, 0.05, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}
.btn:hover::before { left: 135%; }
.btn-primary::before {
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.85) 50%,
    transparent 70%
  );
}
.btn.sm { padding: 10px 18px; font-size: 11px; }
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(180deg, var(--chrome-1), var(--chrome-2) 60%, var(--chrome-3));
  color: #050506;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 6px 24px -8px rgba(255,255,255,0.25);
}
.btn-primary:hover { filter: brightness(1.05); }

.btn-ghost { border-color: var(--line-2); }
.btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.25); }

/* ---- Hero ---- */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 100px 48px 120px;
  max-width: 1400px;
  margin: 0 auto;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -100px -50vw 0;
  background:
    radial-gradient(60% 80% at 50% 40%, rgba(5,5,6,0.35), rgba(5,5,6,0.75) 70%, #050506 100%);
  z-index: -1;
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 28px;
}
.eyebrow img.eyebrow-logo,
img.eyebrow-logo {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px;
  max-height: 14px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  flex: 0 0 auto;
}

h1 {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: clamp(42px, 5.6vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}
h1 em {
  font-style: italic;
  color: var(--ink-dim);
  font-weight: 400;
}
.chrome {
  background: linear-gradient(90deg, #6a6a70 0%, #6a6a70 40%, #ffffff 50%, #6a6a70 60%, #6a6a70 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.02em;
  animation: chromeShimmer 2.5s linear infinite;
}
@keyframes chromeShimmer {
  from { background-position: 200% center; }
  to { background-position: 0% center; }
}

.mask-reveal {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  animation: maskReveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0.2s forwards;
}
@keyframes maskReveal {
  to { clip-path: inset(0 0 0 0); }
}
.rotate-word {
  display: inline-block;
  color: #D4B56A;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 100% 0 0);
  animation: rotateWordReveal 1s cubic-bezier(0.77, 0, 0.175, 1) 0.2s forwards;
}
@keyframes rotateWordReveal {
  to { clip-path: inset(0 0 0 0); }
}
.rotate-word.rw-out {
  opacity: 0;
  transform: translateY(-10px);
}

.lede {
  color: var(--ink-dim);
  font-size: 17px;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 0 36px;
}

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex;
  gap: 48px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.hero-stats > div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong {
  font-family: 'Cinzel', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--chrome-1);
}
.hero-stats span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.hero-mark {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #111114, #050506);
}
.hero-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(1.02);
}

/* ---- Section head ---- */

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 14px;
}
h2 {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.section-head p { color: var(--ink-dim); font-size: 16px; margin: 0; }

/* ---- Packs grid ---- */

.packs {
  padding: 100px 48px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.packs > * { max-width: 1400px; margin-left: auto; margin-right: auto; }

.pack-wrap { width: 100%; max-width: 1200px; margin: 0 auto; }
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  width: 100%;
}
.cf-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 34px;
}
.cf-dots span {
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: var(--line-2);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}
.cf-dots span.on {
  background: #fff;
  transform: scaleY(1.6);
  width: 44px;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #0d0d10, #060607);
  transition:
    transform 0.35s cubic-bezier(0.5, 0.05, 0.2, 1),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.9);
}
.card.featured {
  border-color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(180deg, #14141a, #08080a);
  box-shadow:
    0 30px 60px -30px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transform: translateY(-6px) scale(1.02);
  transition:
    transform 0.6s cubic-bezier(0.5, 0.05, 0.2, 1),
    border-color 0.6s ease,
    box-shadow 0.6s ease,
    background 0.6s ease;
}
.card:not(.featured):hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.9);
}

.card-art { transition: transform 0.7s cubic-bezier(0.5, 0.05, 0.2, 1); }
.card:hover .card-art { transform: scale(1.05); }

.card .ribbon { opacity: 1; }

.card.featured {
  border-color: rgba(255,255,255,0.22);
  background: linear-gradient(180deg, #14141a, #08080a);
}

.ribbon {
  position: absolute; top: 10px; right: 10px;
  z-index: 3;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #f6f6f7, #a8a8ac);
  color: #050506;
  font-weight: 700;
}

.card-art {
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  background: #000 center/cover no-repeat;
  transition: transform 0.6s cubic-bezier(0.5, 0.05, 0.2, 1);
}
.card-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.card-art span { display: none; }

.card-art[data-game="fn"]    { background-image: url("1.png"); }
.card-art[data-game="rust"]  { background-image: url("2.png"); }
.card-art[data-game="siege"] { background-image: url("3.png"); }

.card:hover .card-art { transform: scale(1.03); }

.card-body {
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.card-body h3 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 19px;
  margin: 0;
  letter-spacing: 0.02em;
}
.price {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--chrome-1);
  white-space: nowrap;
}

/* ---- Why ---- */

.why {
  padding: 100px 48px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.why > * { max-width: 1400px; margin-left: auto; margin-right: auto; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.pillar {
  padding: 34px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #0d0d10, #060607);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.pillar:hover { transform: translateY(-3px); border-color: var(--line-2); }
.pillar-num {
  font-family: 'Cinzel', serif;
  font-size: 26px;
  color: var(--ink-dim);
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}
.pillar h4 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 10px;
}
.pillar p { color: var(--ink-dim); font-size: 14px; line-height: 1.6; margin: 0; }

/* ---- FAQ ---- */

.faq {
  padding: 100px 48px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.faq > * { max-width: 900px; margin-left: auto; margin-right: auto; }
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 22px 4px;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.02em;
  position: relative;
  padding-right: 40px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute; right: 4px; top: 50%;
  transform: translateY(-50%);
  color: var(--ink-dim);
  font-size: 22px;
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list p {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.65;
  margin: 14px 0 4px;
  max-width: 720px;
}

/* ---- CTA ---- */

.cta {
  padding: 120px 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(180deg, #08080a, #050506);
}
.cta-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.cta-inner h2 { margin-bottom: 12px; }
.cta-inner p { color: var(--ink-dim); font-size: 16px; margin: 0 0 32px; }
.signup {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}
.signup input {
  flex: 1;
  padding: 16px 20px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.03);
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  letter-spacing: 0.02em;
  outline: none;
  transition: border-color 0.2s ease;
}
.signup input:focus { border-color: rgba(255,255,255,0.35); }

/* ---- Footer ---- */

footer { padding: 60px 48px 30px; background: var(--bg); }
.foot-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto 40px;
}
.foot-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.28em;
  font-weight: 700;
}
.foot-brand img { width: 34px; height: 34px; border-radius: 6px; }
.foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.foot-cols h5 {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin: 0 0 16px;
  font-weight: 600;
}
.foot-cols a {
  display: block;
  padding: 6px 0;
  color: var(--ink);
  font-size: 14px;
  transition: color 0.2s ease;
}
.foot-cols a:hover { color: var(--chrome-1); }
.foot-line {
  display: flex;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  max-width: 1400px;
  margin: 0 auto;
  color: var(--ink-dim);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---- Responsive ---- */

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 60px 28px 80px; }
  .hero-mark { max-height: 400px; }
  .nav { padding: 18px 28px; }
  .nav-links { display: none; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .packs, .why, .faq { padding: 70px 28px; }
  .foot-inner { grid-template-columns: 1fr; gap: 40px; }
  footer { padding: 40px 28px 20px; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .signup { flex-direction: column; }
  .signup input, .signup .btn { width: 100%; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .foot-line { flex-direction: column; gap: 8px; text-align: center; }
}
