/* ============================================================
   FRANKIE LANDING — single-file stylesheet
   Palette: deep navy + warm amber. Inter body + Fraunces display.
   ============================================================ */

/* ---------- TOKENS ---------- */
:root,
[data-theme='light'] {
  /* 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.5rem, 1.5rem + 3vw, 4.5rem);

  /* 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;

  /* Custom palette — Navy + Amber */
  --color-bg: #f8f6f1;
  --color-surface: #ffffff;
  --color-surface-2: #fbfaf6;
  --color-surface-offset: #f1ede4;
  --color-divider: #e6e0d2;
  --color-border: #d9d1be;

  --color-text: #0a1f33;
  --color-text-muted: #5b6878;
  --color-text-faint: #98a0ab;
  --color-text-inverse: #f8f6f1;

  /* Primary = deep navy (trust, work-uniform color) */
  --color-primary: #0a2540;
  --color-primary-hover: #0e3258;
  --color-primary-active: #061a30;
  --color-primary-highlight: #d8dfe9;

  /* Accent = warm amber (sun on the van) */
  --color-accent: #f4a23c;
  --color-accent-hover: #e89020;
  --color-accent-soft: #fde7c8;

  /* Status colors for tags */
  --color-hot: #d64a3a;
  --color-hot-soft: #fbe2dd;
  --color-emergency: #b91c1c;
  --color-emergency-soft: #fad8d8;
  --color-neutral: #7a7160;
  --color-neutral-soft: #ece6d8;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.875rem;
  --radius-xl: 1.25rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgb(10 37 64 / 0.06);
  --shadow-md: 0 8px 24px rgb(10 37 64 / 0.08);
  --shadow-lg: 0 24px 48px -12px rgb(10 37 64 / 0.18);
  --shadow-glow: 0 0 0 4px rgb(244 162 60 / 0.18);

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

  /* Layout */
  --content-narrow: 720px;
  --content-default: 1100px;
  --content-wide: 1280px;

  /* Fonts */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
}

[data-theme='dark'] {
  --color-bg: #0b1421;
  --color-surface: #11203a;
  --color-surface-2: #142848;
  --color-surface-offset: #0e1b30;
  --color-divider: #1b2c47;
  --color-border: #25395a;

  --color-text: #ecf1f8;
  --color-text-muted: #93a3b8;
  --color-text-faint: #5b6c84;
  --color-text-inverse: #0a1f33;

  --color-primary: #f4a23c;
  --color-primary-hover: #ffb558;
  --color-primary-active: #d8881e;
  --color-primary-highlight: #2a2418;

  --color-accent: #f4a23c;
  --color-accent-hover: #ffb558;
  --color-accent-soft: #2a2418;

  --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.4);
  --shadow-md: 0 8px 24px rgb(0 0 0 / 0.4);
  --shadow-lg: 0 24px 48px -12px rgb(0 0 0 / 0.5);
}

/* ---------- BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}
img,
svg,
picture,
video {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-wrap: balance;
  color: var(--color-text);
}
p {
  text-wrap: pretty;
  max-width: 65ch;
}
a {
  color: inherit;
  text-decoration: none;
}
::selection {
  background: var(--color-accent);
  color: var(--color-primary);
}
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
a,
button,
input,
select {
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--content-default);
  margin: 0 auto;
  padding-inline: var(--space-6);
}
.container--narrow {
  max-width: var(--content-narrow);
}

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in oklab, var(--color-divider) 60%, transparent);
}
.header__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  letter-spacing: -0.02em;
}
.logo__word {
  color: var(--color-text);
}
.header__nav {
  display: none;
  gap: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}
.header__nav a:hover {
  color: var(--color-text);
}
@media (min-width: 760px) {
  .header__nav {
    display: inline-flex;
  }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: -0.005em;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}
.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}
.btn--full {
  width: 100%;
}
.btn--primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--accent {
  background: var(--color-accent);
  color: var(--color-primary);
}
.btn--accent:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: var(--color-surface);
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn--ghost:hover {
  border-color: var(--color-primary);
  background: var(--color-surface-2);
}

/* ---------- HERO ---------- */
.hero {
  padding-block: clamp(var(--space-12), 6vw, var(--space-24)) var(--space-16);
  background: radial-gradient(
    ellipse 90% 70% at 20% 0%,
    color-mix(in oklab, var(--color-accent) 8%, transparent),
    transparent 60%
  );
}
.hero__grid {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding-inline: var(--space-6);
  display: grid;
  gap: var(--space-12);
  align-items: center;
}
@media (min-width: 920px) {
  .hero__grid {
    grid-template-columns: 1.05fr 1fr;
    gap: var(--space-16);
  }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: var(--space-2) var(--space-3);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}
.eyebrow--center {
  margin-inline: auto;
  margin-bottom: var(--space-4);
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--color-accent) 25%, transparent);
}
.hero__title {
  font-size: var(--text-hero);
  font-weight: 500;
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: var(--space-6);
}
.hero__title-em {
  font-style: italic;
  color: var(--color-primary);
}
[data-theme='dark'] .hero__title-em {
  color: var(--color-accent);
}
.hero__sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 52ch;
  margin-bottom: var(--space-8);
  line-height: 1.65;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}
.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  max-width: 480px;
}
.trust-stat__num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
}
[data-theme='dark'] .trust-stat__num {
  color: var(--color-accent);
}
.trust-stat__label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

.hero__visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-surface-offset);
  aspect-ratio: 4 / 3;
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    color-mix(in oklab, var(--color-primary) 35%, transparent)
  );
  pointer-events: none;
}

/* ---------- BAND (problem statement) ---------- */
.band {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding-block: clamp(var(--space-10), 5vw, var(--space-16));
}
.band__quote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}
.band__quote strong {
  color: var(--color-accent);
  font-weight: 500;
}
.band__mark {
  color: var(--color-accent);
  font-size: 1.4em;
  font-weight: 500;
  line-height: 0;
  vertical-align: -0.25em;
  padding-right: 0.1em;
}
.band__mark--close {
  padding-left: 0.1em;
  padding-right: 0;
}

/* ---------- SECTIONS ---------- */
.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}
.section--surface {
  background: var(--color-surface-offset);
  border-block: 1px solid var(--color-divider);
}
.section__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-12);
}
.section__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}
.section__sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 60ch;
  margin: 0 auto;
}

/* ---------- HOW STEPS ---------- */
.steps {
  display: grid;
  gap: var(--space-6);
}
@media (min-width: 780px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
  }
}
.step {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
}
.step__num {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}
.step__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  font-weight: 500;
}
.step__body {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  vertical-align: 1px;
  white-space: nowrap;
}
.tag--hot {
  background: var(--color-hot-soft);
  color: var(--color-hot);
}
.tag--emergency {
  background: var(--color-emergency-soft);
  color: var(--color-emergency);
}
.tag--neutral {
  background: var(--color-neutral-soft);
  color: var(--color-neutral);
}

/* ---------- AUDIO PLAYER ---------- */
.player {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-6) var(--space-5);
  box-shadow: var(--shadow-md);
}
.player__main {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}
.player__play {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}
.player__play:hover {
  background: var(--color-primary-hover);
  transform: scale(1.04);
  box-shadow: var(--shadow-glow);
}
.player__play svg {
  margin-left: 2px;
}
.player__play[data-playing='true'] svg {
  margin-left: 0;
}
.player__meta {
  flex: 1;
  min-width: 0;
}
.player__title {
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.player__time {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-variant-numeric: tabular-nums;
}
.player__track {
  height: 6px;
  background: var(--color-surface-offset);
  border-radius: var(--radius-full);
  overflow: hidden;
  cursor: pointer;
  margin-bottom: var(--space-4);
}
.player__fill {
  height: 100%;
  width: 0%;
  background: var(--color-accent);
  border-radius: var(--radius-full);
  transition: width 100ms linear;
}
.player__note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-align: center;
  margin: 0;
}

/* ---------- ROI CALC ---------- */
.calc {
  display: grid;
  gap: var(--space-8);
  align-items: start;
}
@media (min-width: 860px) {
  .calc {
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-12);
  }
}
.calc__inputs {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}
.field {
  display: block;
}
.field__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--space-3);
  gap: var(--space-3);
}
.field__label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}
.field__value {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-primary);
  font-variant-numeric: tabular-nums;
}
[data-theme='dark'] .field__value {
  color: var(--color-accent);
}
.field input[type='range'] {
  width: 100%;
  height: 6px;
  background: var(--color-surface-offset);
  border-radius: var(--radius-full);
  appearance: none;
  outline: none;
  cursor: pointer;
}
.field input[type='range']::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 3px solid var(--color-surface);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.field input[type='range']::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 3px solid var(--color-surface);
  cursor: pointer;
}
.field__scale {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  font-variant-numeric: tabular-nums;
}

.calc__result {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: sticky;
  top: 100px;
}
.calc__result-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-block: var(--space-3);
  gap: var(--space-4);
}
.calc__result-label {
  font-size: var(--text-sm);
  color: color-mix(in oklab, var(--color-text-inverse) 70%, transparent);
}
.calc__result-value {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.calc__result-row--big .calc__result-label {
  font-size: var(--text-base);
  color: var(--color-text-inverse);
  font-weight: 500;
}
.calc__result-value--hero {
  font-size: var(--text-2xl);
  color: var(--color-accent);
}
.calc__result-value--accent {
  color: var(--color-accent);
}
.calc__result-unit {
  font-size: 0.6em;
  color: color-mix(in oklab, var(--color-text-inverse) 60%, transparent);
  font-weight: 500;
  margin-left: 2px;
}
.calc__rule {
  border: none;
  height: 1px;
  background: color-mix(in oklab, var(--color-text-inverse) 15%, transparent);
  margin-block: var(--space-3);
}
.calc__result-note {
  font-size: var(--text-xs);
  color: color-mix(in oklab, var(--color-text-inverse) 60%, transparent);
  margin: var(--space-5) 0 var(--space-5);
  line-height: 1.5;
}

/* ---------- PRICING TIERS ---------- */
.tiers {
  display: grid;
  gap: var(--space-6);
  align-items: stretch;
}
@media (min-width: 880px) {
  .tiers {
    grid-template-columns: repeat(3, 1fr);
  }
}
.tier {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  position: relative;
}
.tier--featured {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: none;
}
@media (min-width: 880px) {
  .tier--featured {
    transform: translateY(-12px) scale(1.02);
  }
}
.tier__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.tier__head {
  border-bottom: 1px solid color-mix(in oklab, currentColor 12%, transparent);
  padding-bottom: var(--space-5);
}
.tier__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
}
.tier__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}
.tier__price-amt {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
}
.tier--featured .tier__price-amt {
  color: var(--color-accent);
}
.tier__price-per {
  font-size: var(--text-base);
  color: color-mix(in oklab, currentColor 60%, transparent);
}
.tier__pitch {
  font-size: var(--text-sm);
  color: color-mix(in oklab, currentColor 75%, transparent);
  line-height: 1.55;
}
.tier__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}
.tier__features li {
  font-size: var(--text-sm);
  padding-left: var(--space-6);
  position: relative;
  line-height: 1.5;
}
.tier__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  background: var(--color-accent);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    no-repeat center / contain;
}
.tier--featured .btn--primary {
  background: var(--color-accent);
  color: var(--color-primary);
}
.tier--featured .btn--primary:hover {
  background: var(--color-accent-hover);
}
.pricing__foot {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-10);
  max-width: 600px;
  margin-inline: auto;
}

/* ---------- CASE STUDY TIMELINE ---------- */
.timeline {
  list-style: none;
  padding: 0;
  margin: var(--space-12) auto 0;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 92px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--color-divider);
}
.timeline__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-6);
  align-items: flex-start;
  position: relative;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: 86px;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 3px solid var(--color-bg);
  z-index: 1;
}
.timeline__item--summary::before {
  background: var(--color-primary);
}
.timeline__time {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  padding-top: 6px;
  text-align: right;
  white-space: nowrap;
}
.timeline__body {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: 14px;
  padding: var(--space-5) var(--space-6);
  margin-left: var(--space-6);
}
.timeline__item--summary .timeline__body {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-inverse);
}
.timeline__title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: var(--text-lg);
  line-height: 1.25;
  margin: 0 0 var(--space-2) 0;
  color: inherit;
}
.timeline__body p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.55;
}
.timeline__item--summary .timeline__body p {
  color: rgba(248, 246, 241, 0.85);
}
.timeline__body .tag {
  margin-left: 4px;
}
@media (max-width: 640px) {
  .timeline::before { left: 8px; }
  .timeline__item { grid-template-columns: 1fr; gap: var(--space-2); }
  .timeline__item::before { left: 2px; top: 6px; }
  .timeline__time { text-align: left; padding-left: var(--space-6); padding-top: 0; }
  .timeline__body { margin-left: var(--space-6); }
}

/* ---------- COMPARISON TABLE ---------- */
.compare-wrap {
  margin: var(--space-10) 0 var(--space-6);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 14px;
  border: 1px solid var(--color-divider);
  background: var(--color-surface);
}
.compare {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: var(--text-sm);
}
.compare th,
.compare td {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--color-divider);
}
.compare thead th {
  background: var(--color-surface-offset);
  border-bottom: 2px solid var(--color-divider);
  vertical-align: bottom;
}
.compare__head {
  font-family: 'Inter', sans-serif;
}
.compare thead th.compare__head--featured {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-bottom-color: var(--color-primary);
}
.compare__brand {
  display: block;
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: -0.01em;
}
.compare__plan {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  margin-top: var(--space-1);
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}
.compare thead th.compare__head--featured .compare__plan {
  color: var(--color-accent);
}
.compare tbody th {
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-surface-2);
  width: 30%;
  font-family: 'Inter', sans-serif;
}
.compare tbody td {
  color: var(--color-text-muted);
}
.compare__featured {
  background: rgba(244, 162, 60, 0.06);
  color: var(--color-text);
  border-left: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
  font-weight: 500;
}
.compare tr:last-child .compare__featured {
  border-bottom: 2px solid var(--color-accent);
}
.compare__yes::before {
  content: '\2713';
  display: inline-block;
  margin-right: 6px;
  color: var(--color-accent);
  font-weight: 700;
}
.compare__featured.compare__yes::before {
  color: var(--color-accent-hover);
}
.compare__no {
  color: var(--color-text-faint);
}
.compare__foot {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-align: center;
  margin: 0;
  line-height: 1.6;
}
.compare__foot a {
  color: var(--color-text-muted);
  text-decoration: underline;
  text-decoration-color: var(--color-border);
  text-underline-offset: 2px;
}
.compare__foot a:hover {
  color: var(--color-primary);
}

/* ---------- FAQ ---------- */
.faq {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.faq__item {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
}
.faq__item[open] {
  border-color: var(--color-primary);
}
.faq__item summary {
  font-weight: 600;
  font-size: var(--text-base);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: var(--space-8);
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: -2px;
  font-size: var(--text-xl);
  color: var(--color-accent);
  font-weight: 400;
  transition: transform var(--transition);
}
.faq__item[open] summary::after {
  content: '−';
  transform: rotate(0deg);
}
.faq__item p {
  margin-top: var(--space-3);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.65;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    color-mix(in oklab, var(--color-primary) 80%, var(--color-accent)) 100%
  );
  color: var(--color-text-inverse);
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  text-align: center;
}
.cta-band__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
  color: var(--color-text-inverse);
}
.cta-band__sub {
  font-size: var(--text-lg);
  color: color-mix(in oklab, var(--color-text-inverse) 80%, transparent);
  margin: 0 auto var(--space-8);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--color-surface-offset);
  border-top: 1px solid var(--color-divider);
  padding-block: var(--space-10);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  text-align: center;
}
@media (min-width: 720px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}
.footer__nav {
  display: inline-flex;
  gap: var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.footer__nav a:hover {
  color: var(--color-text);
}
.footer__meta {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin: 0;
}
