/* ==========================================================================
   BOLD Vancouver — Design Tokens
   ========================================================================== */

:root {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(2.75rem, 0.5rem + 6vw, 6.75rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --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: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;

  --font-display: 'Clash Display', 'General Sans', 'Helvetica Neue', sans-serif;
  --font-body: 'Satoshi', 'General Sans', 'Helvetica Neue', sans-serif;
}

/* Dark mode is the primary BOLD identity — deep violet-black with gold spark */
:root,
[data-theme='dark'] {
  --color-bg: #0c0716;
  --color-surface: #150c22;
  --color-surface-2: #1b1030;
  --color-surface-offset: #221338;
  --color-surface-offset-2: #2a1a44;
  --color-surface-dynamic: #331f52;
  --color-divider: #2b1c42;
  --color-border: #3a2657;

  --color-text: #f5f1fb;
  --color-text-muted: #baa9d6;
  --color-text-faint: #7a6796;
  --color-text-inverse: #150c22;

  --color-primary: #a457f5;
  --color-primary-hover: #bd7ff8;
  --color-primary-active: #8c34ec;
  --color-primary-highlight: #3a2657;

  --color-gold: #f0b429;
  --color-gold-hover: #f7c862;
  --color-gold-active: #d99a0f;
  --color-gold-highlight: #4a3a1a;

  --color-success: #6bc47d;
  --color-success-highlight: #234030;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.35);
  --shadow-md: 0 8px 24px oklch(0 0 0 / 0.45);
  --shadow-lg: 0 24px 60px oklch(0 0 0 / 0.55);
  --shadow-glow: 0 0 0 1px oklch(0.6 0.2 300 / 0.25), 0 20px 60px oklch(0.55 0.24 300 / 0.35);
}

[data-theme='light'] {
  --color-bg: #faf7ff;
  --color-surface: #ffffff;
  --color-surface-2: #f6f1fd;
  --color-surface-offset: #efe6fb;
  --color-surface-offset-2: #e6d9f7;
  --color-surface-dynamic: #ded0f2;
  --color-divider: #e4d8f5;
  --color-border: #d8c6ef;

  --color-text: #1c0f30;
  --color-text-muted: #5f4a7d;
  --color-text-faint: #9a86b8;
  --color-text-inverse: #ffffff;

  --color-primary: #7c22d6;
  --color-primary-hover: #6b1cb8;
  --color-primary-active: #591896;
  --color-primary-highlight: #ede0fb;

  --color-gold: #b8790a;
  --color-gold-hover: #9c660a;
  --color-gold-active: #7d5208;
  --color-gold-highlight: #f7e8c7;

  --color-success: #2e7d46;
  --color-success-highlight: #dcefe1;

  --shadow-sm: 0 1px 2px oklch(0.2 0.02 300 / 0.08);
  --shadow-md: 0 8px 24px oklch(0.2 0.02 300 / 0.1);
  --shadow-lg: 0 24px 60px oklch(0.2 0.02 300 / 0.14);
  --shadow-glow: 0 0 0 1px oklch(0.55 0.2 300 / 0.15), 0 20px 50px oklch(0.55 0.22 300 / 0.18);
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme]) {
    --color-bg: #faf7ff;
    --color-surface: #ffffff;
    --color-surface-2: #f6f1fd;
    --color-surface-offset: #efe6fb;
    --color-surface-offset-2: #e6d9f7;
    --color-surface-dynamic: #ded0f2;
    --color-divider: #e4d8f5;
    --color-border: #d8c6ef;
    --color-text: #1c0f30;
    --color-text-muted: #5f4a7d;
    --color-text-faint: #9a86b8;
    --color-text-inverse: #ffffff;
    --color-primary: #7c22d6;
    --color-primary-hover: #6b1cb8;
    --color-primary-active: #591896;
    --color-primary-highlight: #ede0fb;
    --color-gold: #b8790a;
    --color-gold-hover: #9c660a;
    --color-gold-active: #7d5208;
    --color-gold-highlight: #f7e8c7;
    --color-success: #2e7d46;
    --color-success-highlight: #dcefe1;
    --shadow-sm: 0 1px 2px oklch(0.2 0.02 300 / 0.08);
    --shadow-md: 0 8px 24px oklch(0.2 0.02 300 / 0.1);
    --shadow-lg: 0 24px 60px oklch(0.2 0.02 300 / 0.14);
    --shadow-glow: 0 0 0 1px oklch(0.55 0.2 300 / 0.15), 0 20px 50px oklch(0.55 0.22 300 / 0.18);
  }
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */

.wrap {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.wrap--narrow {
  max-width: var(--content-default);
}

section {
  padding-block: clamp(var(--space-16), 9vw, var(--space-32));
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--color-gold);
  box-shadow: 0 0 0 4px oklch(from var(--color-gold) l c h / 0.2);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-text);
  max-width: 26ch;
}

.section-lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 62ch;
  margin-top: var(--space-4);
}

.section-head {
  margin-bottom: clamp(var(--space-10), 6vw, var(--space-16));
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}
.section-head.center .section-lede {
  margin-inline: auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  white-space: nowrap;
  min-height: 44px;
}

.btn--gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
  color: #201206;
  box-shadow: 0 12px 30px oklch(from var(--color-gold) l c h / 0.35);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px oklch(from var(--color-gold) l c h / 0.45);
}
.btn--gold:active {
  transform: translateY(0);
}

.btn--ghost {
  background: color-mix(in oklab, var(--color-surface) 0%, transparent);
  border: 1px solid var(--color-border);
  color: var(--color-text);
}
.btn--ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--block {
  width: 100%;
}

.btn--lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-base);
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--color-bg) 82%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-divider);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.header--hidden {
  transform: translateY(-100%);
}
.header--scrolled {
  box-shadow: var(--shadow-sm);
}

.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
  gap: var(--space-6);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text);
}
.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.brand-word {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav-links {
  display: flex;
  gap: var(--space-6);
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
}
.nav-links a:hover {
  color: var(--color-text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  flex-shrink: 0;
}
.theme-toggle:hover {
  color: var(--color-text);
  border-color: var(--color-primary);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .header-actions .btn {
    display: none;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding-top: clamp(var(--space-20), 12vw, var(--space-32));
  padding-bottom: clamp(var(--space-16), 10vw, var(--space-24));
  overflow: hidden;
  isolation: isolate;
  background: #0c0716;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.hero-bg-fade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    oklch(0.06 0.03 300 / 0.35) 0%,
    oklch(0.06 0.03 300 / 0.55) 45%,
    #0c0716 96%
  );
}

.hero .wrap {
  display: grid;
  gap: var(--space-10);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  align-self: start;
  background: color-mix(in oklab, var(--color-gold) 16%, transparent);
  border: 1px solid color-mix(in oklab, var(--color-gold) 45%, transparent);
  color: var(--color-gold);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #f5f1fb;
  max-width: 18ch;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--color-gold), #ffe08a 60%, var(--color-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: var(--text-lg);
  color: #d8cbef;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-2);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6) var(--space-10);
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid color-mix(in oklab, #fff 12%, transparent);
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.hero-meta-label {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9d8bc0;
  font-weight: 600;
}
.hero-meta-value {
  font-size: var(--text-base);
  color: #f5f1fb;
  font-weight: 600;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
}
.hero-price-old {
  font-size: var(--text-lg);
  color: #9d8bc0;
  text-decoration: line-through;
}
.hero-price-new {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-gold);
  font-weight: 600;
}

/* ==========================================================================
   Stat strip
   ========================================================================== */

.stat-strip {
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}
.stat-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}
.stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 22ch;
  margin-inline: auto;
}
.stat-source {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.stat-source a {
  color: var(--color-text-faint);
  text-decoration: underline;
}

@media (max-width: 860px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   What is BOLD
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: start;
}

.pillar-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-top: var(--space-8);
}
.pillar {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.pillar-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar-title {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.pillar-copy {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.timeline-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}
.timeline-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
}
.timeline {
  display: flex;
  flex-direction: column;
}
.timeline-step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: var(--space-4);
  padding-bottom: var(--space-6);
  position: relative;
}
.timeline-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: -8px;
  width: 2px;
  background: var(--color-divider);
}
.timeline-dot {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  z-index: 1;
}
.timeline-step.is-free .timeline-dot {
  background: var(--color-gold);
  color: #201206;
}
.timeline-step-title {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-text);
}
.timeline-step-copy {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Coach
   ========================================================================== */

.coach-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(var(--space-8), 6vw, var(--space-16));
  align-items: center;
  background: linear-gradient(140deg, var(--color-surface-offset), var(--color-surface-2));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-8), 5vw, var(--space-16));
}

.coach-badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  text-align: center;
}
.coach-monogram {
  width: min(220px, 60vw);
  height: min(220px, 60vw);
  border-radius: var(--radius-full);
  background: conic-gradient(from 210deg, var(--color-primary), var(--color-gold), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.coach-monogram-inner {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 600;
  color: var(--color-text);
}
.coach-role {
  font-size: var(--text-sm);
  color: var(--color-gold);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.coach-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.coach-bio {
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}
.coach-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
.coach-fact {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}
.coach-fact-num {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-primary);
  font-weight: 600;
}
.coach-fact-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

@media (max-width: 860px) {
  .coach-card {
    grid-template-columns: 1fr;
  }
  .coach-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   Results / proof
   ========================================================================== */

.proof-section {
  position: relative;
  color: #f5f1fb;
  background: #0c0716;
  isolation: isolate;
  overflow: hidden;
}
.proof-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.proof-bg-fade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, #0c0716 0%, oklch(0.08 0.03 300 / 0.85) 60%, #0c0716 100%);
}
.proof-section .section-title,
.proof-section .eyebrow {
  color: #f5f1fb;
}
.proof-section .eyebrow {
  color: var(--color-gold);
}
.proof-section .section-lede {
  color: #c9b9e6;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.proof-card {
  background: color-mix(in oklab, #1b1030 70%, transparent);
  border: 1px solid color-mix(in oklab, #fff 10%, transparent);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  backdrop-filter: blur(6px);
}
.proof-card-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}
.proof-card-label {
  color: #d8cbef;
  font-size: var(--text-sm);
}
.proof-card-source {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: #8b76ac;
}
.proof-card-source a {
  color: #8b76ac;
  text-decoration: underline;
}
.testi-source a {
  text-decoration: underline;
}

.proof-bar-block {
  margin-top: clamp(var(--space-12), 6vw, var(--space-20));
}
.proof-bar-title {
  font-size: var(--text-sm);
  color: #c9b9e6;
  margin-bottom: var(--space-6);
  max-width: 60ch;
}
.bar-row {
  display: grid;
  grid-template-columns: 220px 1fr 70px;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
.bar-row-label {
  font-size: var(--text-sm);
  color: #f5f1fb;
}
.bar-track {
  height: 12px;
  border-radius: var(--radius-full);
  background: color-mix(in oklab, #fff 8%, transparent);
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
  width: 0%;
  transition: width 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.bar-row-value {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--color-gold);
  text-align: right;
}

@media (max-width: 860px) {
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bar-row {
    grid-template-columns: 1fr;
    gap: var(--space-2);
    text-align: left;
  }
  .bar-row-value {
    text-align: left;
  }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.testi-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  box-shadow: var(--shadow-sm);
}
.testi-quote-mark {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-primary);
  line-height: 1;
}
.testi-quote {
  color: var(--color-text);
  font-size: var(--text-base);
  flex-grow: 1;
}
.testi-attribution {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  border-top: 1px solid var(--color-divider);
  padding-top: var(--space-4);
}
.testi-name {
  font-weight: 700;
  font-size: var(--text-sm);
}
.testi-context {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.testi-source {
  font-size: var(--text-xs);
}
.testi-source a {
  color: var(--color-text-faint);
}

@media (max-width: 900px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Event details
   ========================================================================== */

.details-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.details-image {
  position: relative;
  min-height: 320px;
}
.details-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.details-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, oklch(0.1 0.03 300 / 0.1), oklch(0.06 0.03 300 / 0.7));
}
.details-image-tag {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  color: #f5f1fb;
  font-family: var(--font-display);
  font-size: var(--text-lg);
}

.details-content {
  background: var(--color-surface);
  padding: clamp(var(--space-8), 5vw, var(--space-12));
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.details-row {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--color-divider);
}
.details-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.details-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.details-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-faint);
  font-weight: 700;
  margin-bottom: var(--space-1);
}
.details-value {
  font-weight: 600;
  color: var(--color-text);
}
.details-value-sm {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.details-price-box {
  background: var(--color-primary-highlight);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .details-card {
    grid-template-columns: 1fr;
  }
  .details-image {
    min-height: 220px;
  }
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list {
  max-width: var(--content-default);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-text);
  text-align: left;
}
.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--transition-interactive);
  color: var(--color-primary);
}
.faq-item[data-open='true'] .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* ==========================================================================
   Final CTA
   ========================================================================== */

.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin-inline: var(--space-6);
  padding: clamp(var(--space-12), 8vw, var(--space-24));
  text-align: center;
  background: linear-gradient(145deg, #2a1345 0%, #150c22 60%, #0c0716 100%);
  color: #f5f1fb;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 30% 20%, oklch(0.55 0.24 300 / 0.35), transparent 60%);
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  max-width: 24ch;
  margin-inline: auto;
}
.final-cta p {
  color: #c9b9e6;
  max-width: 50ch;
  margin: var(--space-5) auto var(--space-8);
  font-size: var(--text-lg);
}
.final-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-divider);
  padding-block: var(--space-16);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-12);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.footer-copy {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  max-width: 36ch;
}
.footer-heading {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-faint);
  font-weight: 700;
  margin-bottom: var(--space-4);
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-list a,
.footer-list span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.footer-list a:hover {
  color: var(--color-primary);
}
.footer-bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

/* ==========================================================================
   Sticky mobile CTA bar
   ========================================================================== */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: none;
  padding: var(--space-3) var(--space-4);
  background: color-mix(in oklab, var(--color-bg) 92%, transparent);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--color-divider);
  box-shadow: 0 -8px 24px oklch(0 0 0 / 0.15);
}
@media (max-width: 720px) {
  .sticky-cta {
    display: block;
  }
  body {
    padding-bottom: 76px;
  }
}

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Mobile nav drawer
   ========================================================================== */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: color-mix(in oklab, var(--color-bg) 96%, transparent);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  padding: var(--space-8);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav[data-open='true'] {
  transform: translateX(0);
}
.mobile-nav-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-10);
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
}
.mobile-nav .btn {
  margin-top: var(--space-10);
}

/* ==========================================================================
   Responsive type & spacing tune-ups
   ========================================================================== */

@media (max-width: 900px) {
  .proof-grid,
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .hero-meta {
    flex-direction: column;
    gap: var(--space-4);
  }
}
