/* ================================================================
   RGB PROJECT — style.css
   Stack: Vanilla CSS, Desktop-first
   ================================================================

   TABLE OF CONTENTS
   ─────────────────
   1.  DESIGN TOKENS
   2.  RESET
   3.  ANIMATIONS
   4.  HEADER
   5.  FOOTER
   6.  GLOBAL COMPONENTS
   7.  RESPONSIVE — GLOBAL
   8.  HOME PAGE
   9.  ABOUT PAGE
   10. HOW DID I KNOW PAGE
   11. FAQ PAGE
   ================================================================ */


/* ================================================================
   1. DESIGN TOKENS
   ================================================================ */
:root {
  --bg-primary:       #111318;
  --bg-secondary:     #191c22;
  --bg-surface:       #21252e;
  --accent-red:       #FF2837;
  --accent-red-muted: rgba(255,40,55,0.12);
  --accent-red-glow:  0 0 32px rgba(255,40,55,0.28);
  --accent-data:      #e8edf5;
  --text-primary:     rgba(255,255,255,0.87);
  --text-secondary:   rgba(255,255,255,0.42);
  --text-muted:       rgba(255,255,255,0.20);
  --border:           rgba(255,255,255,0.06);
  --border-hover:     rgba(255,255,255,0.12);

  --font-display:  'Outfit', sans-serif;
  --font-body:     'Inter', sans-serif;
  --font-data:     'Oswald', sans-serif;

  --max-width-text:   640px;
  --max-width-wide:   960px;
  --section-gap:      160px;
  --section-gap-mob:  72px;
}


/* ================================================================
   2. RESET
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }


/* ================================================================
   3. ANIMATIONS
   ================================================================ */
.drift {
  opacity: 0;
  transition: opacity 600ms ease, transform 600ms ease;
}
.drift[data-dir="left"]  { transform: translateX(-12px) translateY(8px); }
.drift[data-dir="right"] { transform: translateX(12px) translateY(8px); }
.drift:not([data-dir])   { transform: translateY(20px); }

.drift.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}
.hero-cta.drift        { transform: translateY(18px) scale(0.98); }
.hero-cta.drift.visible{ transform: translateY(0) scale(1); }


/* ================================================================
   4. HEADER
   ================================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
              background 300ms ease,
              border-color 300ms ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(17,19,24,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.site-header.hidden { transform: translateY(-100%); }

.header-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── 4a. Logo ────────────────────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  position: relative;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-red);
  position: relative;
  z-index: 1;
}
.logo-ring {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255,40,55,0.4);
  transition: transform 600ms ease-out, opacity 600ms ease-out;
}
.logo:hover .logo-ring {
  transform: scale(1.6);
  opacity: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--accent-red);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── 4b. Desktop Nav ─────────────────────────────────────────────── */
.nav-desktop {
  display: flex;
  align-items: center;
}
.nav-desktop a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-left: 20px;
  position: relative;
  transition: color 200ms ease;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent-red);
  transition: width 200ms ease;
}
.nav-desktop a:hover::after { width: 100%; }
.nav-desktop a:hover { color: rgba(255,255,255,0.88); }
.nav-desktop a.active { color: rgba(255,255,255,0.88); }
.nav-desktop a.active::after { width: 100%; }
.nav-mobile a.active { color: var(--text-primary); }
.nav-desktop a.nav-cta {
  color: var(--accent-red);
  border: 1px solid rgba(255,40,55,0.4);
  padding: 5px 12px;
  border-radius: 2px;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.nav-desktop a.nav-cta::after { display: none; }
.nav-desktop a.nav-cta:hover {
  background: var(--accent-red-muted);
  border-color: var(--accent-red);
  color: var(--accent-red);
}
.nav-contact {
  color: var(--text-muted) !important;
  font-size: 10px;
  margin-left: 12px;
}
.nav-contact:hover { color: var(--text-secondary) !important; }

/* ── 4c. Desktop Nav — Dropdown ──────────────────────────────────── */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 18px;
}
.nav-dropdown-toggle {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  transition: color 200ms ease;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active { color: rgba(255,255,255,0.88); }
.nav-dropdown-chevron {
  transition: transform 300ms ease;
}
.nav-dropdown:hover .nav-dropdown-chevron,
.nav-dropdown-toggle[aria-expanded="true"] .nav-dropdown-chevron {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(80% + 8px);
  left: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  min-width: 180px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.nav-dropdown-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  transition: color 200ms ease, background 200ms ease;
  margin-left: 0;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.03);
}

/* ── 4d. Mobile Nav ──────────────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text-secondary);
  transition: all 300ms ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 24px 48px 32px;
  gap: 4px;
  position: absolute;
  top: 64px; left: 0; right: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 300ms ease, transform 300ms ease;
}
.nav-mobile.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-mobile a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 300ms ease calc(var(--i, 0) * 60ms),
              transform 300ms ease calc(var(--i, 0) * 60ms),
              color 200ms ease;
}
.nav-mobile.open a { opacity: 1; transform: translateY(0); }
.nav-mobile a:hover { color: var(--text-primary); }
.nav-mobile a.nav-cta {
    color: var(--accent-red);
    border-bottom: 1px solid var(--border);
}

/* ── 4e. Mobile Nav — Dropdown ───────────────────────────────────── */
.nav-mobile-dropdown {
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 300ms ease calc(var(--i, 0) * 60ms),
              transform 300ms ease calc(var(--i, 0) * 60ms);
}
.nav-mobile.open .nav-mobile-dropdown {
  opacity: 1;
  transform: translateY(0);
}
.nav-mobile-dropdown-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 12px 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 200ms ease;
}
.nav-mobile-dropdown-toggle:hover { color: var(--text-primary); }
.nav-mobile-dropdown-toggle[aria-expanded="true"] .nav-dropdown-chevron {
  transform: rotate(180deg);
}
.nav-mobile-dropdown-menu {
  display: flex;
  flex-direction: column;
  padding: 4px 0 12px 12px;
  gap: 8px;
}
.nav-mobile-dropdown-menu[hidden] { display: none; }
.nav-mobile-dropdown-menu a {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  transition: color 200ms ease;
  border-bottom: none;
  padding: 4px 0;
  opacity: 1;
  transform: none;
}
.nav-mobile-dropdown-menu a:hover { color: var(--text-primary); }


/* ================================================================
   5. FOOTER
   ================================================================ */

/* ── 5a. Footer Grid ─────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 28px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 280px 0.5fr 0.5fr 1fr;
  gap: 50px;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 48px 20px;
}
.footer-col--brand { min-width: 220px; }
.footer-col--brand .logo { margin-bottom: 12px; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: rgba(255,40,55,0.65);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-tagline {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 12px;
  line-height: 1.6;
}
.footer-disclaimer {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.6;
}
.footer-label {
  display: block;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-data);
  margin-bottom: 14px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  font-size: 10px;
  color: var(--text-secondary);
  transition: color 200ms ease;
}
.footer-nav a:hover { color: var(--text-primary); }
.footer-socials {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-socials a {
  color: var(--text-secondary);
  transition: color 200ms ease, transform 200ms ease;
  display: flex;
  align-items: center;
}
.footer-socials a:hover { color: var(--text-primary); transform: translateY(-2px); }
.footer-contact {
  display: block;
  font-size: 14px;
  color: var(--accent-data);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 20px;
  transition: color 200ms ease;
}
.footer-contact:hover { color: var(--text-secondary); }

/* ── 5b. Footer Legal Strip ──────────────────────────────────────── */
.footer-legal {
  padding: 0 48px 20px;
}
.footer-legal-inner {
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-legal p {
  font-size: 8px;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 16px 48px;
  text-align: center;
}
.footer-bottom p {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}


/* ================================================================
   6. GLOBAL COMPONENTS
   ================================================================ */

/* ── 6a. Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 14px 28px;
  border-radius: 2px;
  transition: all 240ms ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent-red);
  color: #fff;
  border: 1px solid var(--accent-red);
}
.btn--primary:hover {
  background: #e01f2d;
  box-shadow: var(--accent-red-glow);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-hover);
}
.btn--ghost:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.24);
  transform: translateY(-1px);
}

/* ── 6b. Section Scaffolding ─────────────────────────────────────── */
.section { padding: 140px 48px; }
.section--heavy { padding: 180px 48px; }
.section-inner {
  max-width: var(--max-width-text);
  margin: 0 auto;
}
.section-inner--wide {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-red);
  margin-bottom: 16px;
}
.section-body {
  color: var(--text-secondary);
  margin-top: 20px;
  max-width: 560px;
}

/* ── 6c. Headings ────────────────────────────────────────────────── */
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

/* ── 6d. Typography Utilities ────────────────────────────────────── */
.text-red { color: var(--accent-red); }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }


/* ================================================================
   7. RESPONSIVE — GLOBAL
   ================================================================ */
@media (max-width: 1000px) {
  .nav-desktop { display: none; }
  .nav-toggle  { display: flex; }
  .nav-mobile  { display: flex; }
  .header-inner { padding: 0 80px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .section-inner--wide { flex-direction: column; gap: 48px; }
  .video-text { flex: none; }
  .video-section { padding: 80px 24px; }
  .paths-card { flex-direction: column; }
  .path-divider { width: auto; height: 1px; }
  .paths-section { padding: 80px 24px; }
  .section { padding: 80px 24px; }
  .heatmap-section { padding: 80px 24px; }
  .bottom-bar { padding: 56px 24px; }
}

@media (max-width: 900px) {
  .hero { padding: 100px 24px 80px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stats-bar { padding: 48px 24px; }
  .path { padding: 40px 24px; }
  .footer-legal-inner { max-width: 500px; }
  .footer-grid {
    grid-template-columns: 170px 170px 170px;
    justify-content: center;
    padding: 0 24px 24px;
    gap: 16px;
  }
  .footer-col--brand { grid-column: 1 / -1; }
  .footer-socials { gap: 12px; }
  .footer-legal { padding: 0 24px 16px; }
  .footer-legal p { font-size: 9px; }
  .footer-bottom { padding: 14px 24px; }
}

@media (max-width: 600px) {
  .footer-col { text-align: center; }
  .footer-tagline {
    max-width: 260px;
    margin: 12px auto 0;
    font-size: 10px;
  }
  .footer-col--brand { text-align: center; }
  .footer-nav { align-items: center; }
  .footer-socials { justify-content: center; }
  .logo { justify-content: center; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 24px 20px;
  }
  .footer-col--brand { grid-column: auto; }
  .footer-legal-inner { max-width: 320px; }
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 14px;
    justify-content: center;
  }
  .footer-socials { gap: 16px; }
  .footer-label { margin-bottom: 8px; }
  .footer-contact {
    display: inline-flex;
    align-items: center;
    margin-top: 0;
    margin-left: 4px;
  }
}

/* ================================================================
   8. HOME PAGE
   ────────────────────────────────────────────────────────────────
   Sections:
   - Hero
   - Stats Bar
   - Video Section
   - Heatmap
   - Two-Path CTA
   - Bottom Bar
   ================================================================ */

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  min-height: 110vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 48px 80px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(255,40,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/rgb-gemini.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: blur(5px) brightness(0.3);
  transform: scale(1.2) translateY(var(--parallax-offset, 0));
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  max-width: var(--max-width-text);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent-red);
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 16px;
}
.hero-sub--bold {
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 40px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  animation: scroll-bounce 1.5s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 0.8; }
}

/* ── Stats Bar ───────────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 48px;
  position: relative;
  z-index: 1;
}
.stats-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: 10px; }
.stat-value {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: clamp(32px, 6vw, 50px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--accent-red);
}
.stat-label {
  font-family: var(--font-body);
  font-size: 9px;
  max-width: 200px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  max-width: 160px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ── Video Section ───────────────────────────────────────────────── */
.video-section { padding: 180px 48px; }
.video-text { flex: 0 0 440px; }
.video-text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.video-text p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.video-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.collab-badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: -20px;
  padding: 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.collab-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}
.collab-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--text-primary);
  transition: color 200ms ease;
}
.collab-name:hover { color: var(--accent-red); }
.collab-sub {
  font-size: 12px;
  color: var(--text-secondary);
}
.riot-badge {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.riot-badge svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent-red);
}
.video-embed { flex: 1; }
.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,40,55,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.video-coming-soon {
  text-align: center;
  padding: 40px;
}
.vcs-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-red);
  border: 1px solid rgba(255,40,55,0.4);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.vcs-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.vcs-sub {
  font-size: 13px;
  color: var(--text-secondary);
  max-width: 260px;
  margin: 0 auto;
}

.video-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.video-btns .btn {
  flex: 1;
  justify-content: center;
}

/* ── Heatmap ─────────────────────────────────────────────────────── */
.heatmap-section { padding: 140px 48px; }
.heatmap-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.heatmap-wrap {
  margin: 40px 0 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.heatmap-grid {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, 1fr);
  grid-auto-columns: minmax(16px, 2fr);
  gap: 2px;
  width: 100%;
  height: 80px;
}
.hm-cell {
  width: 16px;
  height: 16px;
  border-radius: 2px;
  background: var(--bg-surface);
  transition: transform 150ms ease, opacity 150ms ease;
}

.hm-cell:hover { transform: scale(1.3); opacity: 1 !important; }
.hm-cell[data-level="0"] { background: var(--bg-surface); }
.hm-cell[data-level="1"] { background: rgba(255,40,55,0.25); }
.hm-cell[data-level="2"] { background: rgba(255,40,55,0.40); }
.hm-cell[data-level="3"] { background: rgba(255,40,55,0.60); }
.hm-cell[data-level="4"] { background: rgba(255,40,55,0.82); }
.hm-cell[data-level="5"] { background: var(--accent-red); }
.hm-cell[data-level="6"] { background: #ff6b35; }

.heatmap-caption {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ── Two-Path CTA ────────────────────────────────────────────────── */
.paths-section { padding: 180px 48px; }
.paths-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.paths-card {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  max-width: var(--max-width-wide);
}
.path {
  flex: 1;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: background 240ms ease;
  cursor: pointer;
}
.path--left { background: var(--bg-secondary); }
.path--right { background: var(--bg-surface); }
.path--left:hover  { background: rgba(255,40,55,0.06); }
.path--right:hover { background: rgba(255,255,255,0.03); }
.path-tag {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-red);
}
.path h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: var(--text-primary);
}
.path p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.path-arrow {
  margin-top: auto;
  color: var(--text-muted);
  transition: color 200ms ease, transform 200ms ease;
}
.path:hover .path-arrow {
  color: var(--accent-red);
  transform: translateX(4px);
}
.path-divider {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Bottom Bar ──────────────────────────────────────────────────── */
.bottom-bar {
  padding: 80px 48px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.bottom-bar-text {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* ── FAQ Teaser ──────────────────────────────────────────────────── */
.faq-teaser { border-top: 1px solid var(--border); }
.faq-teaser-header { margin-bottom: 48px; width: 100%; }
.faq-teaser-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.faq-teaser-row {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 48px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.faq-teaser-row:first-child { border-top: 1px solid var(--border); }
.faq-teaser-q {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.5;
}
.faq-teaser-a {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}
.faq-teaser-cta {
  margin-top: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (max-width: 700px) {
  .faq-teaser-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ================================================================
   9. HOW DID I KNOW PAGE
   ================================================================ */

/* ── Hero ────────────────────────────────────────────────────────── */
.hidk-hero { min-height: 60vh; align-items: center; padding-top: 140px; }
.hidk-hero h1 em { font-style: normal; color: var(--accent-red); }
.hidk-defuse {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--bg-surface);
  border-left: 2px solid var(--accent-red);
  max-width: 520px;
}
.hidk-defuse p { font-size: 16px; color: var(--text-secondary); line-height: 1.8; }
.hidk-defuse strong { color: var(--text-primary); font-weight: 500; }

/* ── Content Sections ────────────────────────────────────────────── */
.hidk-section { padding: 120px 48px; border-top: 1px solid var(--border); }
.hidk-section--callout { background: var(--bg-secondary); }
.hidk-inner { max-width: var(--max-width-text); margin: 0 auto; }
.hidk-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-red);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hidk-section--gif {
  position: relative;
  overflow: hidden;
}
.hidk-section--gif::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/vid/clip_editor.gif');
  background-size: 165%;          /* zoom past the black bars */
  background-position: 45% 35%;   /* center on the actual content */
  filter: blur(4px) brightness(0.3);
  z-index: -1;
  pointer-events: none;
}
.hidk-section--gif .hidk-inner {
  position: relative;
  z-index: 1;
}
.hidk-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.hidk-section h2 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
}
.hidk-body { display: flex; flex-direction: column; gap: 0px; }
.hidk-body p { font-size: 16px; color: var(--text-secondary); line-height: 1.85; }
.hidk-body p strong { color: var(--text-primary); font-weight: 500; }

/* ── Stat Divider ────────────────────────────────────────────────── */
.hidk-stat-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
  padding: 56px 48px;
}
.hidk-stat-inner {
  max-width: var(--max-width-text);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.hidk-stat-num {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
  color: var(--accent-red);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.hidk-stat-plus { font-size: 48px; vertical-align: super; }
.hidk-stat-label { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ── Callout Box ─────────────────────────────────────────────────── */
.hidk-callout {
  padding: 36px 32px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent-red);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.hidk-callout p { font-size: 16px; color: var(--text-secondary); line-height: 1.8; }
.hidk-callout strong { color: var(--text-primary); font-weight: 500; }
.hidk-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Bottom ──────────────────────────────────────────────────────── */
.hidk-bottom {
  padding: 64px 64px 64px;
}
.hidk-bottom-text {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 17px;
}


/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hidk-section { padding: 80px 24px; }
  .hidk-stat-bar { padding: 48px 24px; }
  .hidk-stat-inner { flex-direction: column; gap: 16px; text-align: center; }
  .hidk-bottom { padding: 72px 24px; }
  .hidk-hero { padding-top: 100px; }
}
@media (max-width: 560px) {
  .hidk-stat-num { font-size: 56px; }
  .hidk-stat-plus { font-size: 32px; }
  .hidk-ctas { flex-direction: column; }
}


/* ================================================================
   10. FAQ PAGE
   ================================================================ */

/* ── Page Hero (shared across inner pages) ───────────────────────── */
.page-hero {
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 48px 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(255,40,55,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.page-hero h1 em { 
  font-style: normal; 
  color: var(--accent-red); 
}
.page-hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 36px;
}

/* ── FAQ Jump Nav ────────────────────────────────────────────────── */
.faq-jump-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.faq-jump-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 2px;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}
.faq-jump-btn:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.03);
}

/* ── FAQ Mindset Sections ────────────────────────────────────────── */
.faq-mindset {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}
.faq-mindset:nth-child(even) { background: var(--bg-secondary); }
.faq-mindset-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-mindset-header { position: sticky; top: 88px; }
.faq-mindset-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  white-space: pre-line;
}
.faq-mindset-intro {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── FAQ Accordion ───────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 200ms ease;
}
.faq-q:hover { color: var(--accent-red); }
.faq-q[aria-expanded="true"] { color: var(--accent-red); }
.faq-chevron {
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  color: var(--text-muted);
}
.faq-q[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent-red);
}
.faq-a {
  padding: 0 0 24px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 540px;
  animation: faq-open 240ms ease forwards;
}
.faq-a[hidden] { display: none; }
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── FAQ Bottom ──────────────────────────────────────────────────── */
.faq-bottom { padding: 140px 48px; }

/* ── FAQ Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .page-hero { padding: 100px 24px 56px; min-height: 40vh; }
  .faq-mindset { padding: 64px 24px; }
  .faq-mindset-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-mindset-header { position: static; }
  .faq-bottom { padding: 80px 24px; }
  .faq-jump-nav { gap: 8px; }
}

@media (max-width: 560px) {
  .page-hero h1 { font-size: 40px; }
  .faq-q { font-size: 14px; }
}

/* ── FAQ Ask section ──────────────────────────────────────────────── */

.faq-ask {
  border-top: 1px solid var(--border);
  padding: 120px 48px;
}

.faq-ask-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Left text ───────────────────────────────────────────────────── */
.faq-ask-text h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.faq-ask-text h2 em {
  font-style: normal;
  color: var(--accent-red);
}

.faq-ask-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 14px;
}

.faq-ask-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
  border-left: 2px solid var(--border);
  padding-left: 14px;
  max-width: 340px;
}

/* ── Right iframe ────────────────────────────────────────────────── */
.faq-ask-frame-wrap {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent-red);
}

/* red clipped corner top-right */
.faq-ask-frame-wrap::before {
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 14px 14px 0;
  border-color: transparent var(--accent-red) transparent transparent;
  z-index: 1;
  pointer-events: none;
}

.faq-ask-frame {
  display: block;
  width: 500px;
  height: 450px;
  border: none;
  background: transparent;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .faq-ask { padding: 80px 24px; }

  .faq-ask-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-ask-body,
  .faq-ask-note { max-width: 100%; }
}

/* ================================================================
   10. FAQ PAGE
   ================================================================ */

/* ── Page Hero (shared across inner pages) ───────────────────────── */
.page-hero {
    min-height: 52vh;
    display: flex;
    align-items: flex-end;
    padding: 120px 48px 72px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(255, 40, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(48px, 7vw, 88px);
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.page-hero h1 em {
    font-style: normal;
    color: var(--accent-red);
}

.page-hero-sub {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 36px;
}

/* ── FAQ Jump Nav ────────────────────────────────────────────────── */
.faq-jump-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.faq-jump-btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 2px;
    transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}

.faq-jump-btn:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.03);
}

/* ── FAQ Mindset Sections ────────────────────────────────────────── */
.faq-mindset {
    padding: 100px 48px;
    border-top: 1px solid var(--border);
}

.faq-mindset:nth-child(even) {
    background: var(--bg-secondary);
}

.faq-mindset-inner {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: start;
}

.faq-mindset-header {
    position: sticky;
    top: 88px;
}

.faq-mindset-header h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    white-space: pre-line;
}

.faq-mindset-intro {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ── FAQ Accordion ───────────────────────────────────────────────── */
.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 200ms ease;
}

.faq-q:hover {
    color: var(--accent-red);
}

.faq-q[aria-expanded="true"] {
    color: var(--accent-red);
}

.faq-chevron {
    flex-shrink: 0;
    margin-top: 2px;
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
    color: var(--text-muted);
}

.faq-q[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent-red);
}

.faq-a {
    padding: 0 0 24px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 540px;
    animation: faq-open 240ms ease forwards;
}

.faq-a[hidden] {
    display: none;
}

@keyframes faq-open {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── FAQ Bottom ──────────────────────────────────────────────────── */
.faq-bottom {
    padding: 140px 48px;
}

/* ── FAQ Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
    .page-hero {
        padding: 100px 24px 56px;
        min-height: 40vh;
    }

    .faq-mindset {
        padding: 64px 24px;
    }

    .faq-mindset-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-mindset-header {
        position: static;
    }

    .faq-bottom {
        padding: 80px 24px;
    }

    .faq-jump-nav {
        gap: 8px;
    }
}

@media (max-width: 560px) {
    .page-hero h1 {
        font-size: 40px;
    }

    .faq-q {
        font-size: 14px;
    }
}

/* ── FAQ Ask section ──────────────────────────────────────────────── */

.faq-ask {
    border-top: 1px solid var(--border);
    padding: 120px 48px;
}

.faq-ask-inner {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ── Left text ───────────────────────────────────────────────────── */
.faq-ask-text h2 {
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}

.faq-ask-text h2 em {
    font-style: normal;
    color: var(--accent-red);
}

.faq-ask-body {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 400px;
    margin-bottom: 14px;
}

.faq-ask-note {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.65;
    border-left: 2px solid var(--border);
    padding-left: 14px;
    max-width: 340px;
}

/* ── Right iframe ────────────────────────────────────────────────── */
.faq-ask-frame-wrap {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-left: 2px solid var(--accent-red);
}

/* red clipped corner top-right */
.faq-ask-frame-wrap::before {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 14px 14px 0;
    border-color: transparent var(--accent-red) transparent transparent;
    z-index: 1;
    pointer-events: none;
}

.faq-ask-frame {
    display: block;
    width: 500px;
    height: 450px;
    border: none;
    background: transparent;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .faq-ask-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100%;
        overflow: hidden;
        justify-items: center;
        text-align: center;
    }

    .faq-ask-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100%;
        overflow: hidden;
    }

    .faq-ask-frame-wrap {
        width: 540px;
        max-width: 100%;
        overflow: hidden;
    }

    .faq-ask-frame {
        width: 100%;
        max-width: 100%;
    }

    .faq-ask-body,
    .faq-ask-note {
        max-width: 100%;
    }
}

@media (max-width: 590px) {
    
    .faq-ask-frame-wrap {
            width: 100%;
            max-width: 100%;
            overflow: hidden;
    }
}

/* ================================================================
   11. ABOUT PAGE
   ================================================================ */

/* ── Hero ────────────────────────────────────────────────────────── */
.about-hero {
  min-height: 110vh;
  align-items: center;
  padding-top: 140px;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/rgb-gemini.webp');
  background-size: cover;
  background-position: center; 
  filter: blur(4px) brightness(0.25);
  z-index: 0;
  pointer-events: none;
  transform: scale(1.2) translateY(var(--parallax-offset, 0));
  will-change: transform;
}
.about-hero h1 em { font-style: normal; color: var(--accent-red); }
.page-hero-inner { position: relative; z-index: 1; }

/* ── Chapter Sections ────────────────────────────────────────────── */
.about-chapter {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.about-chapter--alt { background: var(--bg-secondary); }

/* Chapter 03 - How Data Was Collected - Spreadsheet Background */
#chapter-how::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/spreadsheet.png');
  background-size: cover;
  background-position: 70% center;
  filter: blur(2px) brightness(0.05);
  z-index: 0;
  pointer-events: none;
  transform: translateY(var(--parallax-offset, 0));
  will-change: transform;
}

/* Chapter 05 - The Complications - TikTok Ban Background */
#chapter-comps::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/tiktok_ban.png');
  background-size: cover;
  background-position: 50% calc(50% + 120px);
  filter: blur(3px) brightness(0.08);
  z-index: 0;
  pointer-events: none;
  transform: translateY(var(--parallax-offset, 0));
  will-change: transform;
}
.about-chapter-inner {
  max-width: var(--max-width-text);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Chapter Label (num + extending line) ────────────────────────── */
.about-chapter-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-red);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-chapter-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── Chapter Heading ─────────────────────────────────────────────── */
.about-chapter h2 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 40px;
}
.about-chapter h2 em { font-style: normal; color: var(--accent-red); }

/* ── Body Text ───────────────────────────────────────────────────── */
.about-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-body > p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.85;
}
.about-body > p strong { color: var(--text-primary); font-weight: 500; }

/* ── Blockquote ──────────────────────────────────────────────────── */
.about-quote {
  padding: 28px 32px;
  background: var(--bg-surface);
  border-left: 2px solid var(--accent-red);
  margin: 4px 0;
}
.about-quote p {
  font-size: 17px;
  color: var(--text-primary);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 10px;
}
.about-quote cite {
  font-size: 12px;
  color: var(--text-muted);
  font-style: normal;
  letter-spacing: 0.04em;
}

.about-quote cite a {
  color: var(--text-primary);
  text-decoration: underline;
  text-decoration-color: rgba(230, 230, 230, 0.25);
}

.about-quote cite a:hover {
  color: var(--accent-red);
  text-decoration-color: var(--accent-red);
}

.about-body a {
  color: var(--text-primary);
  text-decoration: underline;
  text-decoration-color: rgba(230,230,230,0.25);
  text-underline-offset: 3px;
  transition: color 200ms ease, text-decoration-color 200ms ease;
}
.about-body a:hover {
  color: var(--accent-red);
  text-decoration-color: var(--accent-red);
}

/* ── Stats Inline Row ────────────────────────────────────────────── */
.about-stats-inline {
  display: flex;
  gap: 48px;
  margin: 4px 0 24px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.about-stat-item {
  display: flex;
  flex-direction:
  column;
  gap: 8px; }

.about-stat-value {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 48px);
  line-height: 1;
  color: var(--accent-red);
  letter-spacing: -0.02em;
}
.about-stat-sup {
  font-size: 0.55em;
  vertical-align: super;
}
.about-stat-label {
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── Inline link ─────────────────────────────────────────────────── */
.about-inline-link {
  color: var(--accent-red);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 200ms ease;
}
.about-inline-link:hover { opacity: 0.75; }

/* ── Video Nudge ─────────────────────────────────────────────────── */
.about-video-nudge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--accent-red-muted);
  border: 1px solid rgba(255,40,55,0.18);
  margin: 4px 0;
}
.about-video-nudge-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255,40,55,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
  margin-top: 1px;
}
.about-video-nudge-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.about-video-nudge-text strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* ── Sub-Sections (within a chapter) ────────────────────────────── */
.about-sub-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.about-sub-section:first-of-type { padding-top: 0; border-top: none; }
.about-sub-section p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.85;
}
.about-sub-section p strong { color: var(--text-primary); font-weight: 500; }
.about-sub-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

/* ── Myth Grid ───────────────────────────────────────────────────── */
.about-myth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 140%;
  margin-left: -20%;
}
.about-myth-item {
  padding: 20px 22px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-myth-label {
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.about-myth-label--false { color: var(--text-muted); }
.about-myth-claim {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.about-myth-verdict {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  border-top: 1px solid var(--border);
  padding-top: 8px;
  margin-top: 2px;
}

/* ── Behavior Pattern Block ──────────────────────────────────────── */
.about-pattern-block {
  padding: 36px 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent-red);
}
.about-pattern-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2.8vw, 26px);
  color: var(--text-primary);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.about-pattern-sub {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Riot Badge (approval) ───────────────────────────────────────── */
.about-riot-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.about-riot-badge svg {
  color: var(--accent-red);
  flex-shrink: 0;
}

/* ── Creator Card ────────────────────────────────────────────────── */
.about-creator {
  display: flex;
  gap: 28px;
  padding: 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  align-items: flex-start;
}
.about-creator-avatar img {
  height: 100%;
  object-fit: cover;
  border-radius: 30%;
}
.about-creator-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-data);
  font-size: 26px;
  font-weight: 700;
  color: var(--accent-red);
}
.about-creator-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-creator-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.about-creator-handle {
  font-size: 12px;
  color: var(--accent-red);
  letter-spacing: 0.05em;
}
.about-creator-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 4px;
}
/* ── Chapter Video Background ────────────────────────────────────── */
#chapter-creator {
  position: relative;
  overflow: hidden;
}
.about-chapter-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  /* Size and placement — adjust these */
  width: 200%;          /* 100% fills section width, increase to zoom */
  object-fit: cover;

  /* Position offset — move the video around */
  margin-top: 0px;      /* positive = down, negative = up */
  margin-left: 0px;     /* positive = right, negative = left */

  filter: blur(8px) brightness(0.1);
  z-index: 0;
  pointer-events: none;
}

/* ── Socials List ────────────────────────────────────────────────── */
.about-socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}
.about-social-link:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.02);
}
.about-social-link svg { flex-shrink: 0; }
.about-social-label { font-weight: 500; }
.about-social-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: auto;
}

/* ── Next Grid ───────────────────────────────────────────────────── */
.about-next-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-next-card {
  padding: 32px 28px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-next-card--accent {
  border-left: 2px solid var(--accent-red);

}
.about-next-card-tag {
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-red);
}
.about-next-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-primary);
  line-height: 1.25;
}
.about-next-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}
.about-next-card-btn {
  align-self: flex-start;
  margin-top: 4px;
}

/* ─── SPECIAL THANKS LAYOUT ─────────────────────────────────────── */

.about-creator--centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.about-creator--featured {
  width: 480px;
  max-width: 100%;
}

.about-creator--wide {
  width: 100%;
  max-width: 100%;
}

.thanks-solo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.thanks-solo .about-creator {
  width: 1480px;
}

.thanks-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
}

.thanks-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.thanks-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .thanks-grid--2,
  .thanks-grid--3 {
    grid-template-columns: 1fr;
  }

  #chapter-thanks .thanks-grid,
  #chapter-thanks .thanks-solo {
    display: contents;
  }

  #chapter-thanks .about-body {
    gap: 12px;
  }

  .about-creator.about-creator--centered,
  .thanks-solo .about-creator {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 16px;
  }

  .thanks-solo {
    display: block;
  }

  .thanks-solo .about-creator {
    max-width: 100%;
    width: 100%;
  }
}


/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-chapter { 
    padding: 80px 24px;
  }
  .about-hero {
    padding-top: 100px; min-height: 50vh;
  }
  .about-myth-grid {
    grid-template-columns: 1fr;
  }
  .about-stats-inline {
    gap: 28px;
  }
  .about-creator {
    flex-direction: column; gap: 20px;
  }
  .about-next-grid {
    grid-template-columns: 1fr;
  }
  .about-myth-grid {
    width: 100%;
    margin-left: 0;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .about-stat-value { font-size: 36px; }
  .about-stats-inline { gap: 20px; }
  .about-social-sub { display: none; }
  .about-creator-avatar { width: 56px; height: 56px; font-size: 20px; }
  .about-pattern-block { padding: 24px 20px; }
  .about-quote { padding: 20px 22px; }
}

/* ================================================================
   12. CONTACT PAGE
   ================================================================ */

.contact-hero { padding-bottom: 40px; }

/* ── Contact Grid ────────────────────────────────────────────────── */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Contact Card ────────────────────────────────────────────────── */
.contact-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.contact-card:hover {
  background: rgba(255,255,255,0.03);
  border-color: var(--border-hover);
  color: var(--text-primary);
}
.contact-card--primary {
  border-color: rgba(255,40,55,0.22);
  background: rgba(255,40,55,0.06);
}
.contact-card--primary:hover {
  background: rgba(255,40,55,0.12);
  border-color: rgba(255,40,55,0.4);
}
.contact-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: color 200ms ease, border-color 200ms ease;
}
.contact-card--primary .contact-card-icon {
  color: var(--accent-red);
  border-color: rgba(255,40,55,0.3);
}
.contact-card:hover .contact-card-icon {
  color: var(--text-primary);
  border-color: var(--border-hover);
}
.contact-card--primary:hover .contact-card-icon {
  color: var(--accent-red);
  border-color: var(--accent-red);
}
.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.contact-card-tag {
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-red);
}
.contact-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.contact-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 2px;
}
.contact-card-arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: color 200ms ease, transform 200ms ease;
}
.contact-card:hover .contact-card-arrow {
  color: var(--accent-red);
  transform: translateX(4px);
}

/* ── Reasons Strip ───────────────────────────────────────────────── */
.contact-reasons { padding-top: 0; }
.contact-reason-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.contact-reason {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.contact-reason a {
  color: var(--accent-red);
  text-decoration: underline;
  text-decoration-color: rgba(255,40,55,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 200ms ease;
}
.contact-reason a:hover {
  text-decoration-color: var(--accent-red);
}
.contact-reason-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-red);
  flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .contact-card { padding: 20px; gap: 16px; }
  .contact-card-icon { width: 44px; height: 44px; }
  .contact-card-name { font-size: 17px; }
}
@media (max-width: 600px) {
  .contact-card-desc { display: none; }
  .contact-card { padding: 16px; }
}

/* ================================================================
   13. LOADOUT PROJECT PAGE
   ================================================================ */

.loadout-hero { padding-bottom: 40px; }

/* ── Sections ────────────────────────────────────────────────────── */
.loadout-section { border-top: 1px solid var(--border); }
.loadout-section--alt { background: var(--bg-secondary); }

.loadout-section h2 em {
  font-style: normal;
  color: var(--accent-red);
}

/* ── Body Text ───────────────────────────────────────────────────── */
.loadout-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.loadout-body p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.85;
}

/* ── Questions List ──────────────────────────────────────────────── */
.loadout-questions {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  border-top: 1px solid var(--border);
}
.loadout-question {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: background 200ms ease;
}
.loadout-question-num {
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-red);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  min-width: 28px;
}
.loadout-question-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  transition: color 200ms ease;
}
.loadout-question:hover .loadout-question-text {
  color: var(--text-primary);
}
.loadout-questions-footer {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 20px;
  font-style: italic;
}

/* ── Search Preview ──────────────────────────────────────────────── */
.loadout-search-preview {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.loadout-search-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  gap: 16px;
}
.loadout-search-placeholder {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}
.loadout-search-btn {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  white-space: nowrap;
}
.loadout-search-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .loadout-question { gap: 14px; padding: 16px 0; }
  .loadout-question-text { font-size: 14px; }
  .loadout-search-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ================================================================
   14. I CREATE BUDDY PROJECT PAGE
   ================================================================ */

.icreate-section { border-top: 1px solid var(--border); }
.icreate-section--alt { background: var(--bg-secondary); }

.icreate-section h2 em {
  font-style: normal;
  color: var(--accent-red);
}

.icreate-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.icreate-body p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.85;
}

/* ================================================================
   15. ADD YOUR STORY PAGE
   ================================================================ */

.contribute-hero { padding-bottom: 40px; }
.contribute-section { border-top: 1px solid var(--border); }

.contribute-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}

/* ── Left context ────────────────────────────────────────────────── */
.contribute-context {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 88px;
}

.contribute-rule {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contribute-rule-num {
  font-family: var(--font-data);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-red);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  margin-top: 2px;
}

.contribute-rule-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.4;
}

.contribute-rule-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.contribute-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
}

.contribute-privacy svg { color: var(--accent-red); flex-shrink: 0; margin-top: 1px; }

/* ── Iframe wrapper ──────────────────────────────────────────────── */
.contribute-frame-wrap {
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent-red);
  overflow: hidden;
}

.contribute-frame {
  display: block;
  width: 100%;
  height: 900px;
  border: none;
  background: transparent;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .contribute-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contribute-context { position: static; }
  .contribute-frame { height: 1000px; }
}