/* ============================================================
   White-Label Embed Wrapper — landing styles
   Category: white-label / no-code → brand indigo + coral accent
   ============================================================ */

:root {
  /* ─── Type ────────────────────────────────────────────── */
  --font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI Variable", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: -apple-system, "SF Pro Display", "Segoe UI Variable Display", "Segoe UI", ui-sans-serif, system-ui, Roboto, Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  --text-h1: clamp(2.1rem, 4.6vw, 3.6rem);
  --text-h2: clamp(1.7rem, 3.4vw, 2.6rem);
  --text-h3: 1.375rem;
  --text-body-lg: 1.125rem;
  --text-body: 1rem;
  --text-small: 0.875rem;
  --text-micro: 0.75rem;

  --tracking-h1: -0.03em;
  --tracking-h2: -0.02em;
  --tracking-h3: -0.01em;
  --tracking-body: 0;
  --tracking-eyebrow: 0.14em;

  --leading-tight: 1.06;
  --leading-snug: 1.16;
  --leading-normal: 1.5;
  --leading-relaxed: 1.65;

  /* ─── Color — brand + accent (edited per category) ────── */
  --color-brand: #4f46e5;         /* 5.9:1 on white — body pass */
  --color-brand-dark: #3730a3;
  --color-brand-light: #7c74f2;
  --color-brand-soft: #ebeafe;

  --color-accent: #ef6a4f;        /* coral — warmth beat */
  --color-accent-dark: #c04326;   /* 4.7:1 on white — body pass */
  --color-accent-soft: #ffe6df;

  /* Icon-tile accent palette */
  --color-accent-blue: #2563eb;
  --color-accent-teal: #0d9488;
  --color-accent-coral: #ef6a4f;
  --color-accent-amber: #d97706;
  --color-accent-violet: #7c3aed;
  --color-accent-emerald: #059669;

  /* ─── Neutrals ────────────────────────────────────────── */
  --color-neutral-0: #ffffff;
  --color-neutral-50: #fafbfc;
  --color-neutral-100: #f4f6f9;
  --color-neutral-200: #e6eaf1;
  --color-neutral-300: #cdd4de;
  --color-neutral-400: #99a3b4;
  --color-neutral-500: #6b7385;   /* 4.9:1 on white — body pass */
  --color-neutral-600: #4b5262;
  --color-neutral-700: #363b48;
  --color-neutral-800: #22262f;
  --color-neutral-900: #12141a;   /* 15:1 on white — body pass */
  --color-neutral-950: #08090c;

  /* ─── Semantic surfaces + text ────────────────────────── */
  --color-surface: var(--color-neutral-0);
  --color-surface-alt: var(--color-neutral-50);
  --color-surface-tinted: color-mix(in oklab, var(--color-brand) 4%, var(--color-neutral-0));
  --color-surface-inverse: var(--color-neutral-900);

  --color-text-primary: var(--color-neutral-900);
  --color-text-secondary: var(--color-neutral-700);
  --color-text-muted: var(--color-neutral-500);
  --color-text-inverse: var(--color-neutral-0);
  --color-text-brand: var(--color-brand);

  --color-border: var(--color-neutral-200);
  --color-border-strong: var(--color-neutral-300);

  /* ─── Gradients ───────────────────────────────────────── */
  --gradient-brand: linear-gradient(135deg, var(--color-brand-light) 0%, var(--color-brand) 55%, var(--color-brand-dark) 100%);
  --gradient-brand-soft: linear-gradient(135deg, var(--color-brand-soft) 0%, var(--color-surface) 100%);
  --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  --gradient-hero-fade: linear-gradient(180deg, var(--color-surface-tinted) 0%, var(--color-surface) 100%);
  --gradient-mesh-1: radial-gradient(60% 60% at 18% 8%, color-mix(in oklab, var(--color-brand) 24%, transparent), transparent 70%),
                     radial-gradient(52% 52% at 92% 26%, color-mix(in oklab, var(--color-accent) 20%, transparent), transparent 70%);
  --gradient-mesh-2: radial-gradient(45% 60% at 82% 92%, color-mix(in oklab, var(--color-brand-light) 16%, transparent), transparent 70%),
                     radial-gradient(40% 40% at 8% 84%, color-mix(in oklab, var(--color-accent) 13%, transparent), transparent 70%);

  /* ─── Shadows ─────────────────────────────────────────── */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 4px 8px -4px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 2px 4px rgba(15, 23, 42, 0.04), 0 8px 20px -8px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 4px 12px rgba(15, 23, 42, 0.06), 0 20px 40px -20px rgba(15, 23, 42, 0.18);
  --shadow-xl: 0 8px 24px rgba(15, 23, 42, 0.08), 0 32px 64px -32px rgba(15, 23, 42, 0.24);
  --shadow-brand-glow: 0 10px 28px -12px color-mix(in oklab, var(--color-brand) 55%, transparent);
  --shadow-accent-glow: 0 10px 28px -12px color-mix(in oklab, var(--color-accent) 55%, transparent);

  /* ─── Radius ──────────────────────────────────────────── */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-2xl: 24px;
  --radius-pill: 999px;

  /* ─── Spacing ─────────────────────────────────────────── */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;

  --pad-section-sm: clamp(2rem, 4vw, 3rem);
  --pad-section: clamp(3rem, 6vw, 5rem);
  --pad-section-lg: clamp(4rem, 8vw, 7rem);

  /* ─── Motion ──────────────────────────────────────────── */
  --duration-fast: 150ms;
  --duration-med: 240ms;
  --duration-slow: 400ms;
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-body);
  color: var(--color-text-primary);
  background: var(--color-surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: var(--weight-bold); line-height: var(--leading-snug); }
h1 { font-size: var(--text-h1); letter-spacing: var(--tracking-h1); line-height: var(--leading-tight); }
h2 { font-size: var(--text-h2); letter-spacing: var(--tracking-h2); }
h3 { font-size: var(--text-h3); letter-spacing: var(--tracking-h3); font-weight: var(--weight-semibold); }
p { line-height: var(--leading-relaxed); }

.eyebrow {
  display: inline-block;
  font-size: var(--text-micro);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-text-brand);
  margin-bottom: var(--space-3);
}

*:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ─── Layout containers ─────────────────────────────────── */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.container-narrow {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.container-wide {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 3rem);
}

.section { padding-block: var(--pad-section); }
.section--lg { padding-block: var(--pad-section-lg); }
.section--sm { padding-block: var(--pad-section-sm); }
.section--tinted { background: var(--color-surface-tinted); }
.section--alt { background: var(--color-surface-alt); }

.section-head--center { text-align: center; max-width: 62ch; margin-inline: auto; margin-bottom: var(--space-6); }
.section-head--left { text-align: left; max-width: 54ch; margin-bottom: var(--space-5); }
.section-head p { color: var(--color-text-secondary); margin-top: var(--space-3); font-size: var(--text-body-lg); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-brand);
  color: var(--color-text-inverse);
  padding: 12px 16px;
  z-index: 100;
  border-radius: 0 0 var(--radius-md) 0;
}
.skip-link:focus { top: 0; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  letter-spacing: -0.005em;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--duration-med) var(--ease-out-quart),
              box-shadow var(--duration-med) var(--ease-out-quart),
              background var(--duration-med) var(--ease-out-quart);
  white-space: nowrap;
}
.btn--md { padding: 0.75rem 1.5rem; font-size: var(--text-body); border-radius: var(--radius-lg); min-height: 44px; }
.btn--lg { padding: 1rem 2rem; font-size: var(--text-body-lg); border-radius: var(--radius-lg); min-height: 56px; }

.btn-primary {
  background: var(--gradient-brand);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-brand-glow);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px -12px color-mix(in oklab, var(--color-brand) 70%, transparent);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary svg { transition: transform var(--duration-med) var(--ease-out-quart); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-secondary {
  background: transparent;
  color: var(--color-brand);
  box-shadow: inset 0 0 0 1.5px var(--color-brand);
}
.btn-secondary:hover { background: var(--color-brand-soft); transform: translateY(-1px); }

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

/* ─── Pills ─────────────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.375rem 0.75rem;
  font-size: var(--text-micro);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
}
.pill svg { width: 14px; height: 14px; }
.pill--brand {
  background: var(--color-brand-soft);
  color: var(--color-brand-dark);
  border-color: color-mix(in oklab, var(--color-brand) 20%, transparent);
}

/* ─── Header / nav ──────────────────────────────────────── */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in oklab, var(--color-surface) 85%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  height: 72px;
  display: flex;
  align-items: center;
  transition: height var(--duration-med) var(--ease-out-quart);
}
header.site-header[data-compact="true"] { height: 56px; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  text-decoration: none;
}
.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-md);
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-brand-glow);
}
.brand__mark svg { width: 20px; height: 20px; }
.site-header .btn { display: none; }
@media (min-width: 640px) { .site-header .btn { display: inline-flex; } }

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.5rem, 6vw, 5rem);
  background: var(--gradient-hero-fade);
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -5% auto -5%;
  height: 120%;
  background: var(--gradient-mesh-1);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.grid-hero { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 1024px) {
  .grid-hero { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); }
}
.hero h1 { max-width: 16ch; }
.hero .sub-hero {
  margin-top: var(--space-4);
  font-size: var(--text-body-lg);
  color: var(--color-text-secondary);
  max-width: 54ch;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}
@media (max-width: 520px) { .hero-cta-row .btn { width: 100%; } }
.hero-meta {
  margin-top: var(--space-4);
  font-size: var(--text-small);
  color: var(--color-text-muted);
}
.trust-anchor {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  padding: 0.5rem 1rem;
  background: color-mix(in oklab, var(--color-accent) 10%, var(--color-surface));
  color: var(--color-accent-dark);
  font-size: var(--text-small);
  font-weight: var(--weight-medium);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-xs);
  border: 1px solid color-mix(in oklab, var(--color-accent) 22%, transparent);
}
.trust-anchor svg { width: 16px; height: 16px; }

.hero-visual {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(15, 23, 42, 0.16));
  border-radius: var(--radius-2xl);
}
@media (min-width: 1024px) { .hero-visual { max-width: 640px; margin-inline-start: auto; } }

/* ─── Audience strip ────────────────────────────────────── */
.audience-strip { text-align: center; }
.audience-strip .eyebrow { color: var(--color-text-muted); }
.audience-strip p {
  max-width: 60ch;
  margin-inline: auto;
  color: var(--color-text-secondary);
  font-size: var(--text-body-lg);
}

/* ─── Problem (inverted band) ───────────────────────────── */
.band-dark {
  position: relative;
  overflow: hidden;
  background: var(--color-surface-inverse);
  color: var(--color-text-inverse);
}
.band-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh-2);
  opacity: 0.6;
  pointer-events: none;
}
.band-dark .container { position: relative; z-index: 1; }
.band-dark h2 { color: #fff; }
.band-dark p { color: color-mix(in oklab, #fff 78%, transparent); }
.problem-grid { display: grid; gap: var(--space-4); margin-top: var(--space-5); }
@media (min-width: 768px) { .problem-grid { grid-template-columns: 1fr 1fr; } }
.problem-card {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: color-mix(in oklab, #fff 6%, transparent);
  border: 1px solid color-mix(in oklab, #fff 12%, transparent);
}
.problem-card h3 { color: #fff; margin-bottom: var(--space-2); }
.problem-card p { font-size: var(--text-small); }

/* ─── Solution (two-column asymmetric) ──────────────────── */
.grid-split { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 900px) { .grid-split { grid-template-columns: 1.05fr 0.95fr; } }
.first-session {
  list-style: none;
  padding: 0;
  margin-top: var(--space-4);
  display: grid;
  gap: var(--space-3);
}
.first-session li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: var(--space-2);
  align-items: start;
  color: var(--color-text-secondary);
}
.first-session .tick {
  display: inline-grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: var(--radius-pill);
  background: var(--color-brand-soft);
  color: var(--color-brand);
}
.first-session .tick svg { width: 15px; height: 15px; }
.solution-panel {
  padding: var(--space-5);
  border-radius: var(--radius-2xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}
.solution-panel .eyebrow { margin-bottom: var(--space-2); }

/* ─── Feature grid (icon tiles) ─────────────────────────── */
.feature-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.feature-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--space-3);
  align-items: start;
  padding: var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: transform var(--duration-med) var(--ease-out-quart),
              box-shadow var(--duration-med) var(--ease-out-quart);
}
.feature-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.feature-item h3 { font-size: 1.0625rem; margin-bottom: 0.25rem; }
.feature-item p { font-size: var(--text-small); color: var(--color-text-secondary); line-height: var(--leading-normal); }
.icon-tile {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-lg);
  background: var(--tile-bg);
  color: var(--tile-fg);
  transition: transform var(--duration-med) var(--ease-out-quart);
}
.feature-item:hover .icon-tile { transform: scale(1.06); }
.icon-tile--blue    { --tile-bg: color-mix(in oklab, var(--color-accent-blue) 15%, var(--color-surface));    --tile-fg: var(--color-accent-blue); }
.icon-tile--teal    { --tile-bg: color-mix(in oklab, var(--color-accent-teal) 15%, var(--color-surface));    --tile-fg: var(--color-accent-teal); }
.icon-tile--coral   { --tile-bg: color-mix(in oklab, var(--color-accent-coral) 16%, var(--color-surface));   --tile-fg: var(--color-accent-dark); }
.icon-tile--amber   { --tile-bg: color-mix(in oklab, var(--color-accent-amber) 15%, var(--color-surface));   --tile-fg: var(--color-accent-amber); }
.icon-tile--violet  { --tile-bg: color-mix(in oklab, var(--color-accent-violet) 15%, var(--color-surface));  --tile-fg: var(--color-accent-violet); }
.icon-tile--emerald { --tile-bg: color-mix(in oklab, var(--color-accent-emerald) 15%, var(--color-surface)); --tile-fg: var(--color-accent-emerald); }
.icon-tile--brand   { --tile-bg: var(--color-brand-soft); --tile-fg: var(--color-brand); }

/* ─── Steps ─────────────────────────────────────────────── */
.steps {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  counter-reset: step;
}
.step {
  position: relative;
  padding: var(--space-5) var(--space-4) var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
}
.step__num {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: var(--gradient-brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: 1.125rem;
  box-shadow: var(--shadow-brand-glow);
  margin-bottom: var(--space-3);
}
.step h3 { font-size: 1.0625rem; margin-bottom: 0.35rem; }
.step p { font-size: var(--text-small); color: var(--color-text-secondary); line-height: var(--leading-normal); }

/* ─── Margin / benefit cards ────────────────────────────── */
.benefit-grid { display: grid; gap: var(--space-4); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.benefit-card {
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transition: transform var(--duration-med) var(--ease-out-quart), box-shadow var(--duration-med) var(--ease-out-quart);
}
.benefit-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.benefit-card .icon-tile { margin-bottom: var(--space-3); }
.benefit-card h3 { margin-bottom: var(--space-2); }
.benefit-card p { color: var(--color-text-secondary); font-size: var(--text-body); }

/* ─── Testimonial placeholder ───────────────────────────── */
.proof-wrap { max-width: 640px; margin-inline: auto; }
.testimonial--placeholder {
  border: 2px dashed var(--color-border-strong);
  background: var(--color-surface-alt);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--color-text-muted);
}
.testimonial--placeholder .testimonial__hint {
  font-style: italic;
  font-size: var(--text-small);
  margin: 0;
}

/* ─── Audience cards ────────────────────────────────────── */
.who-grid { display: grid; gap: var(--space-4); grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.who-card {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}
.who-card .icon-tile { width: 38px; height: 38px; margin-bottom: var(--space-3); }
.who-card .icon-tile svg { width: 18px; height: 18px; }
.who-card h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.who-card p { font-size: var(--text-small); color: var(--color-text-secondary); line-height: var(--leading-normal); }
.who-note {
  margin-top: var(--space-5);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--color-surface-tinted);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  font-size: var(--text-small);
}
.who-note strong { color: var(--color-text-primary); }

/* ─── Pricing ───────────────────────────────────────────── */
.pricing-grid { display: grid; gap: var(--space-5); align-items: start; }
@media (min-width: 900px) { .pricing-grid { grid-template-columns: 1.05fr 0.95fr; } }

.pricing-card-featured {
  position: relative;
  padding: 2px;
  background: var(--gradient-brand);
  border-radius: calc(var(--radius-2xl) + 2px);
  box-shadow: var(--shadow-lg);
}
.pricing-ribbon {
  position: absolute;
  top: -12px; right: 24px;
  z-index: 1;
  padding: 0.25rem 0.75rem;
  background: var(--color-accent);
  color: #fff;
  font-size: var(--text-micro);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
}
.pricing-card-inner {
  background: var(--color-surface);
  border-radius: var(--radius-2xl);
  padding: var(--space-5);
}
.price-line { display: flex; align-items: baseline; gap: var(--space-2); margin-block: var(--space-2) var(--space-1); }
.price-amount { font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 3.4rem); font-weight: var(--weight-bold); letter-spacing: -0.03em; line-height: 1; }
.price-term { color: var(--color-text-muted); font-weight: var(--weight-medium); }
.price-sub { color: var(--color-text-secondary); margin-bottom: var(--space-4); }
.price-includes { list-style: none; padding: 0; margin: 0 0 var(--space-5); display: grid; gap: var(--space-2); }
.price-includes li { display: grid; grid-template-columns: 22px 1fr; gap: var(--space-2); align-items: start; font-size: var(--text-small); color: var(--color-text-secondary); }
.price-includes .tick { color: var(--color-accent-emerald); }
.price-includes .tick svg { width: 18px; height: 18px; }
.pricing-card-inner .btn { margin-top: var(--space-2); }

.upgrade-stack { display: grid; gap: var(--space-3); }
.upgrade-head { margin-bottom: var(--space-1); }
.upgrade-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}
.upgrade-card h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.upgrade-card p { font-size: var(--text-small); color: var(--color-text-secondary); line-height: var(--leading-normal); }
.upgrade-card .up-price {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: 1.25rem;
  color: var(--color-brand);
  white-space: nowrap;
}
.guarantee-note {
  margin-top: var(--space-5);
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: color-mix(in oklab, var(--color-accent-emerald) 8%, var(--color-surface));
  border: 1px solid color-mix(in oklab, var(--color-accent-emerald) 22%, transparent);
}
.guarantee-note .g-icon { color: var(--color-accent-emerald); flex-shrink: 0; }
.guarantee-note .g-icon svg { width: 28px; height: 28px; }
.guarantee-note p { font-size: var(--text-small); color: var(--color-text-secondary); }
.guarantee-note strong { color: var(--color-text-primary); }

/* ─── Comparison table ──────────────────────────────────── */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--color-border); }
table.compare { width: 100%; border-collapse: collapse; min-width: 620px; background: var(--color-surface); }
table.compare th, table.compare td { padding: 0.9rem 1rem; text-align: left; border-bottom: 1px solid var(--color-border); font-size: var(--text-small); }
table.compare thead th { font-family: var(--font-display); font-size: var(--text-body); background: var(--color-surface-alt); }
table.compare thead th.col-own { background: var(--color-brand-soft); color: var(--color-brand-dark); }
table.compare td.col-own { background: color-mix(in oklab, var(--color-brand) 4%, var(--color-surface)); font-weight: var(--weight-medium); color: var(--color-text-primary); }
table.compare tbody th { font-weight: var(--weight-semibold); color: var(--color-text-primary); }
table.compare tr:last-child td, table.compare tr:last-child th { border-bottom: 0; }

/* ─── FAQ ───────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin-inline: auto; display: grid; gap: var(--space-3); }
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: 1.0625rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  flex-shrink: 0;
  transition: transform var(--duration-med) var(--ease-out-quart);
  color: var(--color-brand);
}
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-body { padding: 0 var(--space-4) var(--space-4); }
.faq-body p { color: var(--color-text-secondary); font-size: var(--text-body); }

/* ─── Final CTA ─────────────────────────────────────────── */
.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--color-surface-inverse);
  color: #fff;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--gradient-mesh-1);
  opacity: 0.5;
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.final-cta p { color: color-mix(in oklab, #fff 78%, transparent); max-width: 56ch; margin: var(--space-3) auto 0; }
.final-cta .btn { margin-top: var(--space-5); }
.final-cta .btn-primary { background: #fff; color: var(--color-brand-dark); box-shadow: 0 12px 30px -12px rgba(0,0,0,0.5); }
.final-cta .btn-primary:hover { background: #fff; }

/* ─── Footer ────────────────────────────────────────────── */
footer.site-footer {
  background: var(--color-neutral-950);
  color: color-mix(in oklab, #fff 72%, transparent);
  padding-block: var(--space-6);
  font-size: var(--text-small);
}
footer.site-footer .brand { color: #fff; margin-bottom: var(--space-3); }
footer.site-footer nav { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-block: var(--space-3); }
footer.site-footer a { color: color-mix(in oklab, #fff 80%, transparent); text-decoration: none; }
footer.site-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
footer.site-footer .foot-legal { margin-top: var(--space-3); color: color-mix(in oklab, #fff 55%, transparent); font-size: var(--text-micro); line-height: var(--leading-normal); }

/* ─── Before/After hero SVG accents ─────────────────────── */
.ba-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── Sticky mobile CTA ─────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: color-mix(in oklab, var(--color-surface) 92%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-border);
  z-index: 50;
  transform: translateY(100%);
  transition: transform var(--duration-med) var(--ease-out-quart);
}
.sticky-cta[data-visible="true"] { transform: translateY(0); }
@media (min-width: 768px) { .sticky-cta { display: none; } }

/* ─── Scroll fade-in ────────────────────────────────────── */
main > section { opacity: 0; transform: translateY(18px); transition: opacity var(--duration-slow) var(--ease-out-quart), transform var(--duration-slow) var(--ease-out-quart); }
main > section[data-visible="true"] { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  main > section { opacity: 1; transform: none; }
  .sticky-cta { transition: none; }
}
