:root {
  --bg: #0a0a0a;
  --bg-deep: #050505;
  --surface: #131316;
  --surface-2: #1c1c20;
  --line: #28282d;
  --line-2: #36363b;
  --text: #f4f4f5;
  --text-dim: #a1a1aa;
  --text-faint: #5d5d63;
  --red: #e10600;
  --red-bright: #ff1a14;
  --red-deep: #a30400;

  --font-display: 'Anton', 'Hanken Grotesk', sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;

  --max-w: 1280px;
  --pad: 32px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
em { font-style: italic; color: var(--red); }

::selection { background: var(--red); color: #fff; }

/* SCROLL PROGRESS */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--red);
  z-index: 1000;
  transition: width 0.05s linear;
  box-shadow: 0 0 8px rgba(225, 6, 0, 0.6);
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: linear-gradient(180deg, rgba(10,10,10,0.6), transparent);
  transition: background 0.3s, border-color 0.3s, padding 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
  padding: 12px 32px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 6px rgba(225, 6, 0, 0.5));
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.nav-brand em { color: var(--red); font-style: normal; }

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.nav-links a {
  position: relative;
  padding: 8px 0;
  transition: color 0.18s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--red);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.18s, transform 0.06s, box-shadow 0.18s;
  box-shadow: 0 6px 20px -8px rgba(225, 6, 0, 0.7);
}
.nav-cta:hover {
  background: var(--red-bright);
  box-shadow: 0 10px 28px -8px rgba(225, 6, 0, 0.9);
}
.nav-cta:active { transform: translateY(1px); }
.nav-cta svg { transition: transform 0.18s; }
.nav-cta:hover svg { transform: translateX(3px); }

/* MOBILE BURGER */
.nav-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  width: 38px;
  height: 38px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.18s;
}
.nav-burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.25s, opacity 0.18s;
}
.nav-burger.open { border-color: var(--red); }
.nav-burger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 64px 0 0 0;
  z-index: 99;
  background: rgba(7, 7, 10, 0.97);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 24px 22px;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.18s, padding-left 0.22s;
}
.mobile-menu a:hover { color: var(--red); padding-left: 8px; }
.mobile-menu-cta {
  margin-top: 20px;
  background: var(--red);
  color: #fff !important;
  border: 0 !important;
  padding: 18px 24px !important;
  text-align: center;
  border-radius: 8px;
  font-size: 18px !important;
}
.mobile-menu-cta:hover { background: var(--red-bright); padding-left: 24px !important; }

body.menu-open { overflow: hidden; }

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--pad) 80px;
}
.hero-bg {
  position: absolute;
  inset: -8%;
  background-image: url('https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/271590/ss_8afff4bbd275fe7ddd56e3b5dc77f6658acf207e.1920x1080.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.85) contrast(1.05) saturate(1);
  will-change: transform;
  z-index: 0;
}
.feature-img-1 { background-image: url('https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/271590/ss_7454420b01944e4a0f382c3a2d6c7d3d990561fb.1920x1080.jpg'); }
.feature-img-2 { background-image: url('https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/271590/ss_108d9c5f4244a6186662850a56898028913d28a4.1920x1080.jpg'); }
.feature-img-3 { background-image: url('https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/271590/ss_62a2f95c1784f138c3abbecf376c5cc99cc94a57.1920x1080.jpg'); }
.feature-img-4 { background-image: url('https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/271590/ss_bb5725e2200df97b28908bccb9e8268780489506.1920x1080.jpg'); }
.feature-img-5 { background-image: url('https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/271590/ss_b1a1cb7959d6a0e6fcb2d06ebf97a66c9055cef3.1920x1080.jpg'); }
.feature-img-6 { background-image: url('https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/271590/ss_90f67258a3d991fe1b72030e56035ede688a82d7.1920x1080.jpg'); }
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 25%, transparent 0%, rgba(10,10,10,0.25) 70%),
    linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.10) 30%, rgba(10,10,10,0.55) 75%, rgba(10,10,10,0.92) 100%);
  z-index: 1;
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero-meta-top {
  position: absolute;
  top: 96px;
  right: var(--pad);
  z-index: 4;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  color: var(--text-dim);
  backdrop-filter: blur(8px);
}
.status-pill strong { color: var(--text); font-weight: 600; }
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  margin: 0 0 24px;
  opacity: 0;
  animation: fade-in 0.6s ease 0.2s forwards;
}
.eyebrow-bar {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--red);
}

.display {
  font-family: var(--font-display);
  font-size: clamp(62px, 13vw, 220px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--text);
  text-transform: uppercase;
}
.display em { color: var(--red); font-style: normal; }
.display-line { display: block; overflow: hidden; padding: 0.05em 0 0.02em; }
.display-word {
  display: inline-block;
  transform: translateY(110%);
  animation: word-rise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.display-word[data-delay="0"] { animation-delay: 0.1s; }
.display-word[data-delay="1"] { animation-delay: 0.25s; }

@keyframes word-rise {
  to { transform: translateY(0); }
}
@keyframes fade-in {
  to { opacity: 1; }
}

.lede {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 28px 0 14px;
  max-width: 760px;
  line-height: 1.25;
  opacity: 0;
  animation: fade-in 0.6s ease 0.6s forwards;
}
.lede-accent { color: var(--red); }

.hero-sub {
  font-size: 15px;
  color: var(--text-dim);
  margin: 0 0 36px;
  max-width: 540px;
  line-height: 1.55;
  opacity: 0;
  animation: fade-in 0.6s ease 0.75s forwards;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-in 0.6s ease 0.9s forwards;
}
.cta-row.centered { justify-content: center; opacity: 1; animation: none; }

.btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.06s, box-shadow 0.18s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  border: 1px solid var(--red);
  box-shadow: 0 8px 24px -8px rgba(225, 6, 0, 0.6);
}
.btn-primary:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  box-shadow: 0 12px 30px -8px rgba(225, 6, 0, 0.85);
}
.btn-primary:active { transform: translateY(1px); }
.btn-primary svg { transition: transform 0.18s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-2);
}
.btn-outline:hover {
  border-color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.scroll-cue-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--text-faint), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* MARQUEE */
.marquee {
  position: relative;
  background: var(--red);
  color: #fff;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  z-index: 2;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 38px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: marquee 36s linear infinite;
  padding-right: 38px;
}
.marquee-dot { color: rgba(255, 255, 255, 0.5); font-size: 12px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections — common */
section { position: relative; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 600;
  margin: 0 0 18px;
}
.section-eyebrow.light { color: rgba(255,255,255,0.6); }
.section-eyebrow strong { color: var(--red); font-weight: 600; }
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--red);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.08;
  letter-spacing: -0.005em;
  margin: 0 0 22px;
  text-transform: uppercase;
  padding-top: 0.12em;
}
.section-title.big { font-size: clamp(44px, 7vw, 110px); }
.section-title em { color: var(--red); font-style: italic; }

.section-lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-dim);
  max-width: 600px;
  line-height: 1.55;
  margin: 0 0 16px;
}
.section-lede.light { color: rgba(255,255,255,0.78); }
.section-body {
  font-size: 15px;
  color: var(--text-dim);
  max-width: 540px;
  line-height: 1.6;
  margin: 0 0 24px;
}

/* ABOUT */
.about {
  padding: 120px var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1) contrast(1.02);
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.about-image:hover img { transform: scale(1.04); }
.about-image-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
  border-left: 2px solid var(--red);
}
.tag-num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--red);
}
.tag-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 16px;
  height: 1px;
  background: var(--red);
}

/* FEATURES */
.features {
  padding: 100px var(--pad) 120px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-head { margin-bottom: 60px; max-width: 900px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--surface);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
}
.feature-card:hover { border-color: var(--red); transform: translateY(-4px); }
.feature-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  filter: brightness(1) contrast(1.02);
  transition: filter 0.4s, transform 0.6s cubic-bezier(0.2,0.8,0.2,1);
}
.feature-card:hover .feature-img { filter: brightness(1.08) contrast(1.05); transform: scale(1.05); }
.feature-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(19,19,22,0.85));
}
.feature-body {
  padding: 24px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.feature-num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 8px;
  display: block;
}
.feature-body h3 {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.005em;
  margin: 0 0 10px;
  text-transform: uppercase;
  color: var(--text);
}
.feature-body p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
  margin: 0;
}
.feature-body p strong { color: var(--text); font-weight: 600; }

/* HOWTO */
.howto {
  padding: 100px var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.howto-steps {
  list-style: none;
  padding: 0;
  margin: 60px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  counter-reset: step;
}
.howto-step {
  position: relative;
  padding: 40px 30px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.22s, background 0.22s, transform 0.22s;
  overflow: hidden;
}
.howto-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.howto-step:hover {
  border-color: var(--line-2);
  background: var(--surface-2);
  transform: translateY(-3px);
}
.howto-step:hover::before { width: 100%; }
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.85;
  color: var(--red);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.howto-step h3 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--text);
}
.howto-step p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
  margin: 0 0 22px;
  flex: 1;
}
.step-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 700;
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 5px;
  transition: color 0.18s, border-color 0.18s, gap 0.18s;
}
.step-link span { transition: transform 0.18s; display: inline-block; }
.step-link:hover { color: var(--red); border-bottom-color: var(--red); gap: 12px; }
.step-link:hover span { transform: translateX(2px); }

/* STATS */
.stats {
  position: relative;
  padding: 120px var(--pad);
  overflow: hidden;
}
.stats-bg {
  position: absolute;
  inset: -5%;
  background-image: url('https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/271590/ss_bab596ea9a6924055cd8c097bba75f052c18025d.1920x1080.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) contrast(1.05);
  z-index: 0;
}
.stats-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(10,10,10,0.4) 25%, rgba(10,10,10,0.4) 75%, var(--bg) 100%);
  z-index: 1;
}
.stats-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(60px, 7vw, 96px);
  line-height: 0.9;
  color: var(--red);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 60px);
  color: var(--red);
  margin-left: -4px;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
  font-weight: 500;
}

/* FAQ */
.faq {
  padding: 100px var(--pad);
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 40px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  transition: border-color 0.22s, background 0.22s;
}
.faq-item[open] {
  border-color: var(--line-2);
  background: var(--surface-2);
}
.faq-item:hover { border-color: var(--line-2); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dim);
  flex-shrink: 0;
  transition: transform 0.25s, border-color 0.18s, color 0.18s, background 0.18s;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.faq-body {
  padding: 0 24px 22px;
  animation: faq-slide 0.3s ease;
}
.faq-body p {
  margin: 0;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.65;
}
.faq-body p strong { color: var(--text); }
@keyframes faq-slide {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* FINAL CTA */
.cta-final {
  position: relative;
  padding: 140px var(--pad);
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: -5%;
  background-image: url('https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/271590/ss_3da42391c6317205177248dea0a48ced89998a8d.1920x1080.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.65) contrast(1.05) saturate(1);
  z-index: 0;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 55%, transparent 0%, rgba(10,10,10,0.45) 80%),
    linear-gradient(180deg, var(--bg) 0%, transparent 18%, transparent 82%, var(--bg) 100%);
  z-index: 1;
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.cta-content .section-eyebrow,
.cta-content .section-eyebrow::before { justify-content: center; }
.cta-content .section-eyebrow { text-align: center; }

/* FOOTER */
.footer {
  padding: 80px var(--pad) 36px;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-logo {
  width: 40px; height: 40px;
  filter: drop-shadow(0 4px 10px rgba(225,6,0,0.5));
}
.footer-name {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}
.footer-tag {
  margin: 0;
  font-size: 13px;
  color: var(--text-faint);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}
.footer-head {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 700;
}
.footer-col a {
  color: var(--text-dim);
  transition: color 0.18s;
}
.footer-col a:hover { color: var(--red); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-faint);
  font-size: 12px;
}
.footer-bottom p { margin: 0; }
.footer-meta { font-size: 11px; }

/* DISCORD FLOATER */
.discord-floater {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 14px;
  background: #5865f2;
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px -8px rgba(88, 101, 242, 0.55), 0 4px 12px rgba(0,0,0,0.25);
  transition: padding 0.25s, gap 0.25s, transform 0.06s;
  overflow: hidden;
}
.discord-floater:hover {
  padding: 14px 22px;
  gap: 10px;
}
.discord-floater:active { transform: translateY(1px); }
.discord-floater-text {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.discord-floater:hover .discord-floater-text { max-width: 80px; }

@media (max-width: 640px) {
  .discord-floater { padding: 12px; bottom: 18px; right: 18px; }
  .discord-floater:hover { padding: 12px; gap: 0; }
  .discord-floater:hover .discord-floater-text { max-width: 0; }
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="80"]  { transition-delay: 80ms; }
.reveal[data-delay="100"] { transition-delay: 100ms; }
.reveal[data-delay="160"] { transition-delay: 160ms; }
.reveal[data-delay="200"] { transition-delay: 200ms; }
.reveal[data-delay="300"] { transition-delay: 300ms; }

/* RESPONSIVE */
@media (max-width: 960px) {
  :root { --pad: 22px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }
  .hero-meta-top { top: 80px; right: 16px; }
  .about { padding: 80px var(--pad); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .howto-steps { grid-template-columns: 1fr; }
  .howto { padding: 80px var(--pad); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --pad: 18px; }
  .nav { padding: 14px 18px; }
  .nav.scrolled { padding: 10px 18px; }
  .nav-brand { font-size: 18px; }
  .nav-cta { padding: 9px 14px; font-size: 11px; }
  .hero { padding: 0 var(--pad) 60px; min-height: 600px; }
  .hero-meta-top { display: none; }
  .display { font-size: clamp(48px, 16vw, 96px); }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .marquee-track { font-size: 16px; gap: 26px; padding-right: 26px; }
}

/* PREFERS REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .marquee-track { animation: none; }
  .display-word { transform: none; }
}
