/* ============================================================
   CSS CUSTOM PROPERTIES — Dark Theme
   To enable light mode, change the :root block below to the
   .light-mode values (or swap the variable values in one place).
   ============================================================ */

:root {
  /* --- Dark theme (default) --- */
  --bg-primary:    #0a0a0a;
  --bg-secondary:  #111111;
  --bg-card:       #161616;
  --bg-card-hover: #1c1c1c;
  --border:        #222222;
  --border-accent: #2a2a2a;

  --text-primary:   #f5f5f5;
  --text-secondary: #a0a0a0;
  --text-muted:     #606060;

  --accent:        #ff3d7f;   /* bright pink */
  --accent-dim:    #d4205f;
  --accent-glow:   rgba(255, 61, 127, 0.15);
  --accent-subtle: rgba(255, 61, 127, 0.08);

  /* --- Light mode override (uncomment to switch) --- */
  /* --bg-primary: #ffffff; --bg-secondary: #f4f4f4; --bg-card: #fafafa;
     --bg-card-hover: #f0f0f0; --border: #e0e0e0; --border-accent: #cccccc;
     --text-primary: #0a0a0a; --text-secondary: #444444; --text-muted: #888888;
     --accent: #d4205f; --accent-dim: #a8174a; --accent-glow: rgba(255,61,127,0.12);
     --accent-subtle: rgba(255,61,127,0.06); */

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.6);

  --max-w: 1100px;
  --section-gap: 6rem;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

ul { list-style: none; }

/* ============================================================
   UTILITY
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.accent { color: var(--accent); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--accent-subtle);
  border: 1px solid rgba(255,61,127,0.25);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
}
.btn-primary:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
  box-shadow: 0 0 24px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-accent);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav__logo span { color: var(--accent); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.15s;
}
.nav__links a:hover { color: var(--text-primary); }

.nav__cta { margin-left: 1rem; }

/* hamburger (mobile) */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding-top: 5rem;
  padding-bottom: calc(var(--section-gap) + 4rem);
  min-height: 90vh;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* subtle radial glow behind hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 10%, rgba(255,61,127,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* flanking character images */
.hero__character {
  position: absolute;
  bottom: 0;
  width: clamp(380px, 42vw, 680px);
  height: auto;
  object-fit: contain;
  object-position: bottom;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, transparent 100%),
              linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, transparent 100%),
                      linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
  -webkit-mask-composite: destination-in;
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}
.hero__character--left  { left: 0; }
.hero__character--right { right: 0; transform: scaleX(-1); }


.hero .container { position: relative; z-index: 1; }

@media (max-width: 900px) {
  .hero__character { width: clamp(180px, 22vw, 300px); opacity: 0.5; }
}
@media (max-width: 600px) {
  .hero__character { display: none; }
}

.hero__eyebrow {
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__callouts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
  margin-bottom: 2rem;
  list-style: none;
}

.hero__callouts li {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hero__note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero__preview {
  margin-top: 4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(255,61,127,0.04);
  max-width: 860px;
  margin-inline: auto;
}

.hero__preview-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}
.hero__preview-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hero__preview-dot:nth-child(1) { background: #ff5f57; }
.hero__preview-dot:nth-child(2) { background: #febc2e; }
.hero__preview-dot:nth-child(3) { background: #ff3d7f; }

.hero__preview-body {
  padding: 2rem;
  min-height: 220px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.preview-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.preview-card__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.preview-card__value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}
.preview-card__sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ============================================================
   SOCIAL PROOF BAR
   ============================================================ */

.proof-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
  padding: 2rem 0;
}

.proof-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  text-align: center;
}

.proof-stat__number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.proof-stat__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--border-accent);
}

/* ============================================================
   FEATURES
   ============================================================ */

.features {
  padding-block: var(--section-gap);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-sub {
  color: var(--text-secondary);
  max-width: 520px;
  margin-inline: auto;
  font-size: 1rem;
}

.inside-sub {
  color: var(--text-primary);
  max-width: 520px;
  margin-inline: auto;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-glow), var(--shadow-md);
}

.feature-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.feature-card__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-card__value {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-subtle);
  border: 1px solid rgba(255,61,127,0.2);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.feature-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.feature-card__desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.feature-card__list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.feature-card__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.feature-card__list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 0.75rem;
}

/* ============================================================
   PRICING
   ============================================================ */

.pricing {
  padding-block: var(--section-gap);
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing__card {
  max-width: 520px;
  margin-inline: auto;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: 0 0 60px rgba(255,61,127,0.06), var(--shadow-lg);
  text-align: center;
}

.pricing__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.pricing__name {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.pricing__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.pricing__was {
  font-size: 1.75rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.pricing__amount {
  margin-bottom: 0.25rem;
}

.pricing__currency {
  font-size: 1.5rem;
  font-weight: 700;
  vertical-align: top;
  line-height: 1;
  color: var(--text-secondary);
}

.pricing__price {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.pricing__period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.pricing__savings {
  display: inline-block;
  background: var(--accent-subtle);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 2rem;
}

.pricing__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.75rem;
}

.pricing__inclusions {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.pricing__inclusion {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing__check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-subtle);
  border: 1px solid rgba(255,61,127,0.3);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing__cta {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

.pricing__fine {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================================
   GUESSES
   ============================================================ */

.guesses {
  padding-block: var(--section-gap);
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.guesses__list {
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.guess-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
}

.guess-item--strike {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  text-decoration: line-through;
  text-decoration-color: var(--text-muted);
}

.guess-item--strike .guess-item__icon {
  color: var(--text-muted);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.guess-item--highlight {
  background: var(--accent-subtle);
  border: 1px solid var(--accent);
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.guess-item--highlight .guess-item__icon {
  color: var(--accent);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.guesses__closer {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.guesses__closer strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* ============================================================
   THE SHIFT
   ============================================================ */

.shift {
  padding-block: var(--section-gap);
  border-top: 1px solid var(--border);
}

.shift__boss {
  text-align: center;
  margin-bottom: 4rem;
}

.shift__intro {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.shift__headline {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.shift__goodbye,
.shift__future {
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.shift__goodbye-label,
.shift__future-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.shift__bads,
.shift__goods {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.shift__bad {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: var(--border-accent);
}

.platforms-section {
  padding-block: var(--section-gap);
  border-top: 1px solid var(--border);
  text-align: center;
}

.platforms__intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.platforms__headline {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.platforms__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  opacity: 0.9;
  letter-spacing: 0.01em;
}

.shift__good {
  background: var(--accent-subtle);
  border: 1px solid rgba(255, 61, 127, 0.2);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ============================================================
   ESCAPE THE MATRIX
   ============================================================ */

.matrix {
  background: #0d0d0d;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding-block: var(--section-gap);
  position: relative;
  overflow: hidden;
}

.matrix::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255,61,127,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.matrix__inner {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.matrix__headline {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.75rem;
  margin-top: 0.75rem;
}

.matrix__body {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.matrix__callout {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.matrix__cta {
  margin-top: 1.5rem;
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ============================================================
   WHAT'S INSIDE
   ============================================================ */

.whats-inside {
  padding-block: var(--section-gap);
}

.inside__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 760px;
  margin-inline: auto;
}

.inside__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.inside__item:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-glow), var(--shadow-md);
}

.inside__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.inside__icon--character,
.inside__icon--character2,
.inside__icon--character3,
.inside__icon--character4 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--accent);
  overflow: hidden;
  flex-shrink: 0;
  margin-top: 0;
}

.inside__icon--character img,
.inside__icon--character2 img,
.inside__icon--character3 img,
.inside__icon--character4 img {
  width: 160%;
  height: 160%;
  object-fit: cover;
  object-position: 50% 15%;
  margin-left: -30%;
  margin-top: -5%;
}

.inside__icon--character4 img {
  width: 200%;
  height: 200%;
  object-position: 50% 5%;
  margin-left: -50%;
  margin-top: 0%;
}

.inside__name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.inside__desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.inside__desc::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.7;
}

/* ============================================================
   BONUSES
   ============================================================ */

.bonuses {
  padding-block: var(--section-gap);
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bonuses__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  max-width: 900px;
  margin-inline: auto;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.bonus-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-glow), var(--shadow-md);
}

.bonus-card__badge {
  display: inline-block;
  background: var(--accent);
  color: #0a0a0a;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  align-self: center;
  width: fit-content;
}

.bonus-card__name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  min-height: 3rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.bonus-card__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  min-height: 2rem;
}

.bonus-card__value {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: auto;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  padding-block: var(--section-gap);
}

.faq__list {
  max-width: 700px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.75rem;
}

.faq__question {
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.faq__answer {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  padding-block: 2.5rem;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__logo {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.footer__logo span { color: var(--accent); }

.footer__links {
  display: flex;
  gap: 1.5rem;
}
.footer__links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--text-primary); }

.footer__copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  :root { --section-gap: 4rem; }

  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    gap: 1.25rem;
    align-items: flex-start;
  }
  .nav__toggle { display: flex; }
  .nav__inner { position: relative; flex-wrap: wrap; }

  .hero__preview-body {
    grid-template-columns: 1fr;
  }

  .proof-bar__inner { gap: 1.5rem; }
  .proof-divider { display: none; }

  .features__grid { grid-template-columns: 1fr; }

  .pricing__card { padding: 1.75rem 1.25rem; }
  .pricing__price { font-size: 3rem; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .hero__cta-group { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
