/* =====================================================================
   MYSTIC REALM — Founders Gate landing
   Cinematic dark palette derived from the hero: obsidian night, copper,
   arcane purple, ceremonial gold.
   ===================================================================== */

:root {
  /* Palette */
  --bg: #0a0710;
  --bg-2: #100b19;
  --bg-3: #171128;
  --surface: #1a1424;
  --surface-2: #221735;
  --border: #2f2340;
  --border-2: #3b2c50;

  --text: #f2e6d8;
  --text-2: #d1c0a8;
  --text-muted: #9a8b78;
  --text-faint: #6a5f52;

  --copper: #c47a48;
  --copper-2: #d99366;
  --copper-3: #e6b28d;
  --gold: #d1a24a;
  --gold-2: #e6ba60;
  --purple: #7a4bd1;
  --purple-2: #9770e0;
  --plum: #4a2a5f;
  --ember: #a8583a;

  --ok: #7fb787;
  --no: #b06070;
  --honest: #d19c4a;

  /* Typography */
  --font-display: "Cormorant Garamond", "Times New Roman", ui-serif, Georgia,
    serif;
  --font-body: "Satoshi", ui-sans-serif, system-ui, -apple-system,
    "Segoe UI", Roboto, sans-serif;

  /* Type scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.0625rem;
  --text-lg: 1.25rem;
  --text-xl: 1.75rem;
  --text-2xl: clamp(2rem, 3.4vw, 3rem);
  --text-3xl: clamp(2.5rem, 5vw, 4rem);
  --text-hero: clamp(3rem, 8vw, 6.5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;

  --container: 1200px;
  --container-narrow: 900px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 32px 64px rgba(0, 0, 0, 0.6);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--copper-2);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
a:hover {
  color: var(--copper-3);
}

/* SR-only skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--copper);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 6px;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* =====================================================================
   Header
   ===================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(10, 7, 16, 0.55);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition:
    transform 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.site-header.scrolled {
  background: rgba(10, 7, 16, 0.85);
  border-color: rgba(255, 255, 255, 0.08);
}
.site-header.hidden {
  transform: translateY(-100%);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  padding-block: var(--space-4);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.logo svg {
  color: var(--copper-2);
}
.logo-text {
  font-style: italic;
}
.site-nav {
  display: flex;
  gap: var(--space-6);
  margin-inline-start: auto;
}
.site-nav a {
  color: var(--text-2);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.site-nav a:hover {
  color: var(--copper-3);
}

@media (max-width: 820px) {
  .site-nav {
    display: none;
  }
}

/* =====================================================================
   Buttons
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform 0.2s var(--ease),
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
  text-align: center;
  justify-content: center;
  white-space: nowrap;
}
.btn-sm {
  padding: 0.55rem 1rem;
  font-size: var(--text-xs);
}
.btn-lg {
  padding: 1rem 1.75rem;
  font-size: var(--text-base);
}
.btn-block {
  width: 100%;
}
.btn-primary {
  background: linear-gradient(135deg, var(--copper) 0%, var(--ember) 100%);
  color: #fff;
  box-shadow:
    0 2px 12px rgba(196, 122, 72, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow:
    0 6px 20px rgba(196, 122, 72, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #a67827 100%);
  color: #171128;
  box-shadow:
    0 2px 12px rgba(209, 162, 74, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-gold:hover {
  color: #0a0710;
  transform: translateY(-1px);
  box-shadow:
    0 6px 20px rgba(209, 162, 74, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border-2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--copper);
}
.btn-arrow {
  display: inline-block;
  transition: transform 0.25s var(--ease);
}
.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* =====================================================================
   Hero
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 96px;
  padding-bottom: clamp(3rem, 6vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-image-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at center 60%,
      rgba(10, 7, 16, 0.15) 0%,
      rgba(10, 7, 16, 0.65) 55%,
      rgba(10, 7, 16, 0.9) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(10, 7, 16, 0.5) 0%,
      rgba(10, 7, 16, 0.1) 25%,
      rgba(10, 7, 16, 0.1) 55%,
      rgba(10, 7, 16, 0.95) 100%
    );
  z-index: -1;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
  color: var(--text-2);
  letter-spacing: 0.03em;
}
.eyebrow-divider {
  color: var(--text-faint);
}
.eyebrow-text {
  color: var(--gold-2);
  font-weight: 500;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: rgba(226, 90, 45, 0.15);
  border: 1px solid rgba(226, 90, 45, 0.35);
  color: var(--copper-3);
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-live .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff6b3a;
  box-shadow: 0 0 0 0 rgba(255, 107, 58, 0.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 58, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 107, 58, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 58, 0);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-hero);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: var(--space-6);
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(
    120deg,
    var(--copper-3) 0%,
    var(--gold-2) 45%,
    var(--copper-2) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--copper-3);
}
.hero-lede {
  font-size: var(--text-lg);
  line-height: 1.5;
  color: var(--text-2);
  max-width: 640px;
  margin-bottom: var(--space-8);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.hero-fine {
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.hero-fine strong {
  color: var(--copper-3);
  font-weight: 600;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-xs);
  color: var(--text-faint);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-dot {
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
  0%,
  20% {
    transform: translateY(0);
    opacity: 1;
  }
  80%,
  100% {
    transform: translateY(6px);
    opacity: 0;
  }
}

/* =====================================================================
   Urgency bar
   ===================================================================== */
.urgency-bar {
  background: linear-gradient(
    90deg,
    rgba(122, 75, 209, 0.15),
    rgba(196, 122, 72, 0.15)
  );
  border-block: 1px solid var(--border);
  padding-block: var(--space-6);
}
.urgency-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.urgency-copy {
  font-size: var(--text-md);
  color: var(--text);
  max-width: 640px;
  line-height: 1.4;
}
.urgency-copy strong {
  color: var(--copper-3);
  font-weight: 700;
}
.urgency-strong {
  color: var(--gold-2);
  font-weight: 600;
}
.urgency-timer {
  display: flex;
  gap: var(--space-3);
}
.timer-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
  padding: 0.6rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
}
.timer-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--copper-3);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.timer-lbl {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* =====================================================================
   Sections
   ===================================================================== */
.section {
  padding-block: clamp(4rem, 8vw, 8rem);
  position: relative;
}
.section-eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--copper-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: var(--space-4);
}
.eyebrow-light {
  color: var(--gold-2);
}
.eyebrow-gold {
  color: var(--gold-2);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-3xl);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: var(--space-6);
  max-width: 22ch;
}
.section-title em {
  font-style: italic;
  color: var(--copper-3);
}
.section-title-light {
  color: var(--text);
}
.section-sub {
  font-size: var(--text-md);
  color: var(--text-2);
  line-height: 1.65;
  max-width: 68ch;
}
.section-sub-light {
  color: var(--text-2);
}
.section-head {
  margin-bottom: var(--space-16);
  max-width: 68ch;
}
.section-head-center {
  margin-inline: auto;
  text-align: center;
}
.section-head-center .section-title {
  margin-inline: auto;
}

/* Story section — two-col layout */
.section-story {
  background: linear-gradient(
    to bottom,
    var(--bg) 0%,
    var(--bg-2) 100%
  );
}
.section-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}
.section-grid .section-eyebrow {
  padding-top: 0.6rem;
  border-top: 1px solid var(--border);
}
.section-body .section-title {
  max-width: 18ch;
}
.section-lede p {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: var(--space-4);
  max-width: 60ch;
}
.section-lede-strong {
  color: var(--text) !important;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem !important;
  line-height: 1.4 !important;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  margin-top: var(--space-6) !important;
}
@media (max-width: 720px) {
  .section-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================================
   Watch / infomercial section
   ===================================================================== */
.section-watch {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.section-watch::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 40%,
      rgba(122, 75, 209, 0.1) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 60%,
      rgba(196, 122, 72, 0.08) 0%,
      transparent 55%
    );
  pointer-events: none;
}
.section-watch > .container {
  position: relative;
}
.watch-head {
  max-width: 68ch;
  margin: 0 auto var(--space-12);
  text-align: center;
}
.watch-head .section-eyebrow {
  margin-inline: auto;
}
.watch-head .section-title {
  margin-inline: auto;
  max-width: 22ch;
}
.watch-head .section-sub {
  margin-inline: auto;
}
.video-frame {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border-2);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(196, 122, 72, 0.12),
    0 0 60px rgba(122, 75, 209, 0.18);
  position: relative;
}
.video-el {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-caption {
  padding: var(--space-3) var(--space-4);
  background: var(--surface);
  border-top: 1px solid var(--border);
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.04em;
}

/* =====================================================================
   Offer disclosure text (fine print in Grumps card + footnote)
   ===================================================================== */
.offer-fine {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}
.offer-fine strong {
  color: var(--text);
  font-weight: 600;
}
.offer-fine a {
  color: var(--copper);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.offer-footnote-legal {
  margin-top: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  background: rgba(196, 122, 72, 0.06);
  border: 1px solid rgba(196, 122, 72, 0.18);
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.offer-footnote-legal strong {
  color: var(--text);
  font-weight: 600;
}
.offer-footnote-legal a {
  color: var(--copper);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =====================================================================
   Host-your-own-auditions section (Creators)
   ===================================================================== */
.section-host {
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  position: relative;
  overflow: hidden;
}
.section-host::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(196, 122, 72, 0.11) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 15% 85%,
      rgba(209, 162, 74, 0.08) 0%,
      transparent 55%
    );
  pointer-events: none;
}
.section-host > .container {
  position: relative;
}
.host-head {
  max-width: 68ch;
  margin: 0 auto var(--space-12);
  text-align: center;
}
.host-head .section-eyebrow {
  margin-inline: auto;
}
.host-head .section-title {
  margin-inline: auto;
  max-width: 22ch;
}
.host-head .section-sub {
  margin-inline: auto;
}
.host-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}
.host-card {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  transition:
    transform var(--dur-md) var(--ease),
    border-color var(--dur-md) var(--ease),
    box-shadow var(--dur-md) var(--ease);
}
.host-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(196, 122, 72, 0.35) 0%,
    transparent 50%,
    rgba(209, 162, 74, 0.25) 100%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--dur-md) var(--ease);
  pointer-events: none;
}
.host-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(196, 122, 72, 0.15);
}
.host-card:hover::before {
  opacity: 1;
}
.host-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-2xl);
  color: var(--copper);
  margin-bottom: var(--space-3);
  letter-spacing: 0.02em;
}
.host-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}
.host-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.host-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-4);
  padding: var(--space-6) var(--space-5);
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  margin-bottom: var(--space-6);
}
.host-bar-item {
  text-align: center;
  padding: var(--space-2) var(--space-3);
}
.host-bar-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-3xl);
  color: var(--gold);
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: var(--space-2);
}
.host-bar-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.host-fine {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-muted);
  max-width: 68ch;
  margin: 0 auto;
  letter-spacing: 0.02em;
}

/* =====================================================================
   Audition section
   ===================================================================== */
.section-audition {
  background: var(--bg-2);
  position: relative;
}
.section-audition::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 15% 30%,
      rgba(122, 75, 209, 0.08) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 85% 70%,
      rgba(196, 122, 72, 0.08) 0%,
      transparent 45%
    );
  pointer-events: none;
}
.section-audition > .container {
  position: relative;
}
.audition-head {
  max-width: 68ch;
  margin-bottom: var(--space-16);
}
.audition-head .section-title {
  max-width: 22ch;
}
.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-16);
}
.role-card {
  padding: var(--space-8);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}
.role-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 40%;
  background: hsl(var(--role-hue));
  transition: height 0.4s var(--ease);
}
.role-card:hover {
  transform: translateY(-4px);
  border-color: hsl(var(--role-hue));
  background: var(--surface-2);
}
.role-card:hover::before {
  height: 100%;
}
.role-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  font-weight: 500;
  color: hsl(var(--role-hue));
  line-height: 1;
  margin-bottom: 0.4rem;
}
.role-tag {
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.role-desc {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--text-2);
}
.audition-cta {
  text-align: center;
}
.audition-fine {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--space-4);
  letter-spacing: 0.04em;
}

/* =====================================================================
   Highlights section
   ===================================================================== */
.section-highlights {
  background: var(--bg);
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}
.highlight-card {
  padding: var(--space-8);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.highlight-card:hover {
  transform: translateY(-3px);
  border-color: var(--copper);
}
.highlight-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--copper-2);
  margin-bottom: var(--space-3);
  letter-spacing: 0.05em;
}
.highlight-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}
.highlight-card p {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--text-2);
}

/* =====================================================================
   Comparison table
   ===================================================================== */
.section-compare {
  background: linear-gradient(
    to bottom,
    var(--bg) 0%,
    var(--bg-2) 100%
  );
}
.compare-scroll {
  overflow-x: auto;
  margin-inline: calc(-1 * clamp(1.25rem, 4vw, 2.5rem));
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  padding-bottom: var(--space-4);
  scrollbar-width: thin;
  scrollbar-color: var(--copper) var(--surface);
}
.compare-scroll::-webkit-scrollbar {
  height: 8px;
}
.compare-scroll::-webkit-scrollbar-thumb {
  background: var(--copper);
  border-radius: 4px;
}
.compare-table {
  width: 100%;
  min-width: 780px;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
.compare-table thead th {
  padding: var(--space-6) var(--space-4);
  text-align: left;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text);
  background: var(--surface-2);
  border-bottom: 1px solid var(--border-2);
  vertical-align: top;
}
.compare-us {
  background: linear-gradient(
    180deg,
    rgba(196, 122, 72, 0.2),
    rgba(196, 122, 72, 0.08)
  ) !important;
  border-left: 2px solid var(--copper) !important;
  border-right: 2px solid var(--copper) !important;
  position: relative;
}
.us-mark {
  display: block;
  color: var(--copper-3);
  font-size: var(--text-md);
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.us-sub {
  display: block;
  font-size: 0.7rem;
  color: var(--gold-2);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.col-sub {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.15rem;
}
.compare-table tbody th {
  padding: var(--space-4);
  text-align: left;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  width: 30%;
}
.compare-table tbody td {
  padding: var(--space-4);
  font-size: var(--text-sm);
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}
.cell-us {
  background: rgba(196, 122, 72, 0.06);
  border-left: 2px solid var(--copper) !important;
  border-right: 2px solid var(--copper) !important;
  color: var(--text) !important;
  font-weight: 500;
}
.cell-us strong {
  color: var(--copper-3);
  font-weight: 700;
}
.cell-note {
  display: block;
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-weight: 400;
}
.ok {
  color: var(--ok);
  font-weight: 600;
}
.no {
  color: var(--no);
  font-weight: 500;
}
.honest {
  color: var(--honest);
  font-weight: 600;
}
.compare-source {
  margin-top: var(--space-6);
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 90ch;
}
.compare-source a {
  color: var(--copper-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =====================================================================
   Honesty section
   ===================================================================== */
.section-honesty {
  background: var(--bg-2);
}
.honesty-inner {
  max-width: 68ch;
  margin-inline: auto;
  text-align: center;
}
.honesty-inner .section-eyebrow {
  margin-inline: auto;
}
.honesty-inner .section-title {
  margin-inline: auto;
  max-width: 20ch;
}
.honesty-body p {
  font-size: var(--text-md);
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: var(--space-4);
}
.honesty-body p:last-child {
  margin-bottom: 0;
}
.honesty-body strong {
  color: var(--copper-3);
  font-weight: 700;
}
.honesty-fine {
  font-size: var(--text-xs) !important;
  color: var(--text-muted) !important;
  margin-top: var(--space-6) !important;
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
  line-height: 1.7;
}

/* =====================================================================
   Offer section
   ===================================================================== */
.section-offer {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.section-offer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(209, 162, 74, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(122, 75, 209, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.section-offer > .container {
  position: relative;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  max-width: 900px;
  margin-inline: auto;
}
.offer-card {
  padding: var(--space-10) var(--space-8);
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  position: relative;
  display: flex;
  flex-direction: column;
}
.offer-card-founder {
  border-color: var(--copper);
  box-shadow: 0 8px 40px rgba(196, 122, 72, 0.15);
}
.offer-card-grumps {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(209, 162, 74, 0.2);
  background: linear-gradient(
    170deg,
    var(--surface) 0%,
    rgba(209, 162, 74, 0.05) 100%
  );
}
.offer-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper-3);
  margin-bottom: var(--space-4);
}
.offer-tag-gold {
  color: var(--gold-2);
}
.offer-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
  margin-bottom: var(--space-6);
}
.offer-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}
.price-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}
.offer-card-founder .price-num {
  color: var(--copper-3);
}
.offer-card-grumps .price-num {
  color: var(--gold-2);
}
.price-per {
  font-size: var(--text-md);
  color: var(--text-muted);
}
.offer-locked {
  font-size: var(--text-sm);
  color: var(--text-2);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--border);
  font-style: italic;
}
.offer-list {
  list-style: none;
  margin-bottom: var(--space-8);
  flex: 1;
}
.offer-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.5;
  position: relative;
}
.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--copper-2);
  border-bottom: 1.5px solid var(--copper-2);
  transform: rotate(-45deg);
}
.offer-card-grumps .offer-list li::before {
  border-color: var(--gold-2);
}
.offer-avail {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--space-4);
  letter-spacing: 0.05em;
}
.offer-footnote {
  margin-top: var(--space-12);
  padding: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 900px;
  margin-inline: auto;
}
.offer-footnote p {
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.65;
  text-align: center;
}
.offer-footnote strong {
  color: var(--copper-3);
}
.offer-footnote a {
  color: var(--copper-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =====================================================================
   FAQ
   ===================================================================== */
.section-faq {
  background: var(--bg-2);
}
.faq-list {
  max-width: 800px;
  margin-inline: auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding-block: var(--space-4);
}
.faq-item summary {
  cursor: pointer;
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--text);
  padding: var(--space-3) 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  color: var(--copper-2);
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary {
  color: var(--copper-3);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  padding: var(--space-3) 0 var(--space-4);
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.7;
}
.faq-item p strong {
  color: var(--copper-3);
  font-weight: 600;
}
.faq-item p a {
  color: var(--copper-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =====================================================================
   Final CTA
   ===================================================================== */
.section-final {
  background:
    linear-gradient(
      180deg,
      var(--bg) 0%,
      var(--bg-2) 100%
    );
  position: relative;
  overflow: hidden;
}
.section-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at center,
      rgba(122, 75, 209, 0.15) 0%,
      transparent 60%
    );
  pointer-events: none;
}
.final-inner {
  position: relative;
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
}
.final-inner .section-eyebrow {
  margin-inline: auto;
}
.final-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-3xl);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: var(--space-6);
}
.final-sub {
  font-size: var(--text-md);
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: var(--space-10);
  max-width: 56ch;
  margin-inline: auto;
}
.final-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer {
  background: var(--bg);
  padding-block: var(--space-16) var(--space-8);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-12);
}
.footer-brand {
  max-width: 46ch;
}
.footer-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-3);
}
.footer-tag {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-6);
}
.footer-col-title {
  font-size: var(--text-xs);
  color: var(--copper-2);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-3);
  font-weight: 600;
}
.footer-col a {
  display: block;
  color: var(--text-2);
  font-size: var(--text-sm);
  padding-block: 0.25rem;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover {
  color: var(--copper-3);
}
.footer-legal {
  grid-column: 1 / -1;
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
  font-size: var(--text-xs);
  color: var(--text-faint);
  line-height: 1.7;
  max-width: 90ch;
}
@media (max-width: 720px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

/* =====================================================================
   Reduced motion
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
