:root {
  --obsidian: #383027;
  --fresh-linen: #FCFBED;
  --warm-stone: #ECEBE6;
  --warn-umber: #544133;
  --glow-above: #FFB15A;
  --glow-below: #FF7E5A;
  --body-bg: #FFFFFF;
  --dark-primary: #181B25;
  --grey: #8A8884;
  --grey-mid: #CACFD8;
  --positive: #2A7A44;
  --negative: #B23A3A;
  --caution: #C4892D;

  --radius-card: 16px;
  --radius-pill: 999px;
  --radius-chip: 12px;

  --shadow-card: 0 1px 2px rgba(56, 48, 39, 0.04), 0 8px 24px rgba(56, 48, 39, 0.06);
  --shadow-card-hover: 0 1px 2px rgba(56, 48, 39, 0.05), 0 16px 40px rgba(56, 48, 39, 0.10);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--body-bg);
  color: var(--obsidian);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* === Layout === */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 760px; }

.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
@media (max-width: 640px) {
  .section { padding: 40px 0; }
  .section--tight { padding: 28px 0; }
}
.section--canvas { background: var(--warm-stone); }
.section--canvas + .section--canvas { padding-top: 0; }

/* === Typography === */
.h1 {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.2px;
  margin: 0 0 16px;
}
.h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.2px;
  margin: 0 0 12px;
}
.h3 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.2px;
  margin: 0 0 12px;
}
.h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.2px;
  margin: 0 0 8px;
}
.h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 8px;
}
.body1 { font-size: 16px; font-weight: 400; line-height: 1.55; }
.body2 { font-size: 14px; font-weight: 400; line-height: 1.55; }
.body3 { font-size: 12px; font-weight: 500; line-height: 1.4; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--warn-umber);
  background: var(--warm-stone);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.muted { color: var(--grey); }

/* === Header === */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(56, 48, 39, 0.08);
}
header.site .inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.2px;
  color: var(--obsidian);
}
.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(155deg, var(--glow-above) 0%, var(--glow-below) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(255, 126, 90, 0.35);
}
header.site nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header.site nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--warn-umber);
  transition: color 0.15s ease, border-color 0.15s ease;
}
header.site nav a.navlink {
  position: relative;
  padding-bottom: 3px;
  border-bottom: 1.5px solid transparent;
}
header.site nav a.navlink:hover {
  color: var(--obsidian);
  border-bottom-color: var(--obsidian);
}
header.site nav a:hover { color: var(--obsidian); }
header.site nav a.btn { color: var(--fresh-linen); }
header.site nav a.btn:hover { color: var(--fresh-linen); border-bottom-color: transparent; }
header.site nav a[aria-current="page"] { color: var(--obsidian); border-bottom-color: var(--obsidian); }
header.site nav a.navlink--muted { opacity: 0.6; font-size: 13px; }
header.site nav a.navlink--muted:hover { opacity: 1; }
@media (max-width: 640px) {
  header.site nav .navlink:not(.navlink--muted):not(.navlink--keep-mobile) { display: none; }
}

/* === Buttons (CTAButton) === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--obsidian);
  color: var(--fresh-linen);
}
.btn--primary:hover { background: #2a241d; box-shadow: 0 8px 24px rgba(56, 48, 39, 0.22); }

.btn--secondary {
  background: transparent;
  color: var(--obsidian);
  border-color: var(--obsidian);
}
.btn--secondary:hover { background: var(--obsidian); color: var(--fresh-linen); }

.btn--compact { height: 44px; padding: 0 20px; font-size: 14px; }

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

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* === Hero === */
.hero {
  position: relative;
  padding: 96px 0 64px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.55;
}
.hero::before {
  width: 520px; height: 520px;
  background: var(--glow-above);
  top: -180px; right: -120px;
}
.hero::after {
  width: 420px; height: 420px;
  background: var(--glow-below);
  bottom: -180px; left: -100px;
  opacity: 0.35;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero { padding-top: 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 640px) {
  .hero { padding: 32px 0 40px; }
  .hero-title { font-size: 36px; margin-bottom: 14px; }
  .hero-sub { font-size: 17px; margin-bottom: 20px; }
  .hero-grid { gap: 32px; }
}

.hero-title {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin: 0 0 20px;
  color: var(--obsidian);
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--glow-above), var(--glow-below));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 640px) { .hero-title { font-size: 40px; } }
@media (max-width: 480px) {
  .hero-title { font-size: clamp(28px, 8vw, 32px); }
  .hero-sub { font-size: 15px; }
}

.hero-sub {
  font-size: 19px;
  line-height: 1.5;
  color: var(--warn-umber);
  margin: 0 0 32px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-ctas--center { justify-content: center; }
.hero .hero-ctas .btn--primary {
  box-shadow: 0 8px 24px rgba(255, 126, 90, 0.28);
}
.hero .hero-ctas .btn--primary:hover {
  box-shadow: 0 12px 32px rgba(255, 126, 90, 0.38);
}

.hero-hint {
  font-size: 13px;
  color: var(--warn-umber);
  margin: 0 0 20px;
  opacity: 0.8;
}
.hero-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--grey);
  font-size: 13px;
  font-weight: 500;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--positive); }

/* === Language switch === */
.lang-switch { font-size: 13px; color: var(--warn-umber); display: inline-flex; align-items: center; gap: 6px; }
.lang-switch a { opacity: 0.6; transition: opacity 0.15s ease; }
.lang-switch a:hover { opacity: 1; }
.lang-switch .lang-sep { opacity: 0.35; }
@media (max-width: 640px) { .lang-switch { display: none; } }

/* === Page hero (support, privacy) === */
.page-hero {
  position: relative;
  padding: 88px 0 32px;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: var(--glow-above);
  filter: blur(90px);
  opacity: 0.35;
  top: -200px; right: -120px;
  z-index: -1;
}
.page-hero h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.4px;
  margin: 0 0 12px;
  color: var(--obsidian);
}
.page-hero p.lede {
  font-size: 18px;
  color: var(--warn-umber);
  margin: 0;
  max-width: 600px;
}
@media (max-width: 640px) {
  .page-hero h1 { font-size: 36px; }
  .page-hero { padding-top: 56px; }
}

/* === Phone preview === */
.phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.phone-caption {
  font-size: 13px;
  color: var(--warn-umber);
  text-align: center;
  max-width: 320px;
  margin: 0;
  line-height: 1.5;
}
.phone-frame {
  position: relative;
  width: 100%;
  max-width: 320px;
  padding: 10px;
  background: var(--obsidian);
  border-radius: 48px;
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.08),
    0 1px 2px rgba(56, 48, 39, 0.12),
    0 24px 48px rgba(56, 48, 39, 0.20),
    0 50px 100px rgba(255, 126, 90, 0.20);
}
.phone-frame::before {
  /* Dynamic Island */
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 28px;
  background: #000;
  border-radius: 16px;
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.phone-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 38px;
  background: var(--warm-stone);
}

/* === Section headers === */
.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-head .h2 { font-size: 38px; letter-spacing: -0.2px; }
.section-head p {
  color: var(--warn-umber);
  font-size: 17px;
  margin: 12px 0 0;
}
@media (max-width: 640px) {
  .section-head .h2 { font-size: 30px; }
}

/* === Audience cards === */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) { .audience-grid { grid-template-columns: 1fr; } }

.audience-card {
  background: #fff;
  border: 1px solid rgba(56, 48, 39, 0.08);
  border-radius: 24px;
  padding: 36px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.audience-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.audience-card.is-primary {
  background: linear-gradient(160deg, var(--warm-stone) 0%, var(--fresh-linen) 100%);
  border-color: rgba(255, 177, 90, 0.30);
}
.audience-card .badge {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--radius-pill);
  background: var(--obsidian); color: var(--fresh-linen);
  margin-bottom: 20px;
}
.audience-card.is-primary .badge { background: linear-gradient(135deg, var(--glow-above), var(--glow-below)); }
.audience-card.is-secondary .badge { background: var(--warn-umber); }
.audience-card .h3 { font-size: 28px; margin-bottom: 12px; }
.audience-card p { color: var(--warn-umber); margin: 0 0 24px; font-size: 16px; }

.audience-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.audience-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px;
  color: var(--obsidian);
}
.audience-list .check {
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--obsidian); color: var(--fresh-linen);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
  margin-top: 1px;
}
.audience-card.is-primary .check { background: linear-gradient(135deg, var(--glow-above), var(--glow-below)); }

/* === Features grid === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.features-grid > .is-accent { grid-column: span 2; }
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } .features-grid > .is-accent { grid-column: span 2; } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } .features-grid > .is-accent { grid-column: auto; } }

.feature {
  background: #fff;
  border: 1px solid rgba(56, 48, 39, 0.08);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: rgba(56, 48, 39, 0.16);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--warm-stone);
  color: var(--warn-umber);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.feature.is-accent .feature-icon {
  background: linear-gradient(135deg, var(--glow-above), var(--glow-below));
  color: #fff;
}
.feature h3 { font-size: 18px; font-weight: 600; margin: 0 0 8px; }
.feature p { color: var(--warn-umber); font-size: 14px; margin: 0; line-height: 1.55; }

/* === Pillars strip (mission) === */
.pillars {
  background: var(--warm-stone);
  padding: 48px 0;
  border-top: 1px solid rgba(56, 48, 39, 0.06);
  border-bottom: 1px solid rgba(56, 48, 39, 0.06);
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pillar-grid--two { grid-template-columns: repeat(2, 1fr); gap: 48px; }
@media (max-width: 820px) { .pillar-grid, .pillar-grid--two { grid-template-columns: 1fr; gap: 28px; } }
.pillar-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--warn-umber);
  opacity: 0.55;
  margin-bottom: 10px;
}
.pillar h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--obsidian);
  margin: 0 0 10px;
  letter-spacing: -0.1px;
  line-height: 1.2;
}
.pillar p {
  font-size: 15px;
  color: var(--warn-umber);
  margin: 0;
  line-height: 1.55;
}

/* === Two-path grid (solo / trainer) === */
.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) { .path-grid { grid-template-columns: 1fr; } }

.path-card {
  background: #fff;
  border: 1px solid rgba(56, 48, 39, 0.08);
  border-radius: 24px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.path-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.path-card .h3 { font-size: 28px; margin: 0; }
.path-card > p { color: var(--warn-umber); margin: 0; font-size: 16px; line-height: 1.55; }
.path-card .check-list { flex-grow: 1; }
.path-card .btn { margin-top: 8px; }

.path-card--solo {
  background: linear-gradient(160deg, #fff 0%, var(--warm-stone) 130%);
}
.path-card--trainer {
  background: linear-gradient(160deg, var(--obsidian) 0%, #1e1913 100%);
  color: var(--fresh-linen);
  border-color: rgba(255, 177, 90, 0.30);
}
.path-card--trainer .h3 { color: var(--fresh-linen); }
.path-card--trainer > p { color: rgba(252, 251, 237, 0.78); }
.path-card--trainer .check-list li { color: var(--fresh-linen); }
.path-card--trainer .check {
  background: linear-gradient(135deg, var(--glow-above), var(--glow-below));
  color: #fff;
}
.path-card--trainer .btn--secondary {
  background: transparent;
  color: var(--fresh-linen);
  border-color: rgba(252, 251, 237, 0.35);
}
.path-card--trainer .btn--secondary:hover { background: var(--fresh-linen); color: var(--obsidian); }

.badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--radius-pill);
  background: var(--warm-stone); color: var(--warn-umber);
}
.badge--solo { background: var(--warn-umber); color: var(--fresh-linen); }
.badge--trainer { background: linear-gradient(135deg, var(--glow-above), var(--glow-below)); color: #fff; }
.badge--featured { background: linear-gradient(135deg, var(--glow-above), var(--glow-below)); color: #fff; }

/* Shared check list (used in path cards + pricing) */
.check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px;
  color: var(--obsidian);
  line-height: 1.45;
}
.check-list .check {
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--obsidian); color: var(--fresh-linen);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
  margin-top: 1px;
}

/* === Quote grid (testimonials) === */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.quote-card {
  background: #fff;
  border: 1px solid rgba(56, 48, 39, 0.08);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.quote-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: rgba(56, 48, 39, 0.16); }
.quote-body {
  font-size: 16px;
  line-height: 1.55;
  color: var(--obsidian);
  margin: 0 0 16px;
}
.quote-attrib {
  font-size: 13px;
  font-weight: 600;
  color: var(--warn-umber);
  margin: 0;
  letter-spacing: 0.1px;
}

/* === Pricing grid === */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-grid--two { grid-template-columns: 1fr 1fr; }
@media (max-width: 820px) { .price-grid, .price-grid--two { grid-template-columns: 1fr; } }

.price-card {
  background: #fff;
  border: 1px solid rgba(56, 48, 39, 0.08);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.price-card .check-list { flex-grow: 1; }

.price-card--featured {
  background: linear-gradient(160deg, var(--warm-stone) 0%, var(--fresh-linen) 100%);
  border-color: rgba(255, 177, 90, 0.35);
  box-shadow: var(--shadow-card);
}

.price { margin: 0; display: flex; align-items: baseline; gap: 6px; }
.price-amount { font-size: 40px; font-weight: 700; color: var(--obsidian); letter-spacing: -0.5px; }
.price-per { font-size: 15px; color: var(--warn-umber); font-weight: 500; }
.price-line { font-size: 13px; color: var(--warn-umber); margin: 0; letter-spacing: 0.1px; }

/* === Workflow band === */
.workflow-band {
  background: var(--warm-stone);
  border-radius: 32px;
  padding: 72px 56px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 640px) { .workflow-band { padding: 48px 24px; border-radius: 24px; } }

.workflow-band::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--glow-above);
  filter: blur(80px);
  opacity: 0.3;
  top: -120px; right: -80px;
  pointer-events: none;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.steps--three { grid-template-columns: repeat(3, 1fr); max-width: 900px; margin-left: auto; margin-right: auto; }
.steps--three .step { text-align: center; }
.steps--three .step .step-num { margin-left: auto; margin-right: auto; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .steps--three { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .steps { grid-template-columns: 1fr; }
  .steps--three { grid-template-columns: 1fr; }
}

.step .step-num {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--obsidian);
  color: var(--fresh-linen);
  font-weight: 700; font-size: 14px;
  margin-bottom: 16px;
}
.step h4 { font-size: 17px; font-weight: 600; margin: 0 0 6px; color: var(--obsidian); }
.step p { font-size: 14px; color: var(--warn-umber); margin: 0; line-height: 1.5; }
.workflow-cta { text-align: center; margin: 40px 0 0; position: relative; z-index: 1; }
.workflow-cta a { color: var(--obsidian); font-weight: 600; font-size: 15px; letter-spacing: 0.1px; border-bottom: 1.5px solid var(--obsidian); padding-bottom: 3px; transition: opacity 0.15s ease; }
.workflow-cta a:hover { opacity: 0.7; }

/* === Closing CTA band === */
.cta-band {
  background: var(--obsidian);
  color: var(--fresh-linen);
  border-radius: 32px;
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 640px) { .cta-band { padding: 56px 28px; border-radius: 24px; } }
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(70px); z-index: -1;
}
.cta-band::before {
  width: 320px; height: 320px;
  background: var(--glow-above);
  top: -120px; left: -80px; opacity: 0.35;
}
.cta-band::after {
  width: 280px; height: 280px;
  background: var(--glow-below);
  bottom: -120px; right: -60px; opacity: 0.30;
}
.cta-band .h2 { font-size: 36px; margin-bottom: 16px; }
.cta-band p { color: rgba(252, 251, 237, 0.75); font-size: 17px; margin: 0 auto 32px; max-width: 520px; }
.cta-band .btn--primary { background: var(--fresh-linen); color: var(--obsidian); }
.cta-band .btn--primary:hover { background: #fff; }
.cta-band .btn--secondary { color: var(--fresh-linen); border-color: rgba(252, 251, 237, 0.4); }
.cta-band .btn--secondary:hover { background: var(--fresh-linen); color: var(--obsidian); }
.cta-founder-note { color: rgba(252, 251, 237, 0.55); font-size: 13px; margin: 24px auto 0; max-width: 480px; }

/* === Sticky mobile CTA === */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid rgba(56, 48, 39, 0.10);
  box-shadow: 0 -8px 24px rgba(56, 48, 39, 0.06);
  align-items: center;
  gap: 12px;
}
.mobile-cta .mobile-cta-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.mobile-cta .mobile-cta-price strong { font-size: 15px; font-weight: 700; color: var(--obsidian); letter-spacing: -0.2px; }
.mobile-cta .mobile-cta-price span { font-size: 12px; color: var(--warn-umber); font-weight: 500; }
.mobile-cta.is-hidden { transform: translateY(120%); transition: transform 0.24s ease; }
.mobile-cta { transition: transform 0.24s ease; }
.mobile-cta .btn { flex: 1; height: 48px; padding: 0 20px; font-size: 15px; }
@media (max-width: 720px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 88px; }
}

/* === Pricing toggle === */
.pricing-toggle-wrap { text-align: center; margin-bottom: 32px; }
.pricing-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--warm-stone);
  border-radius: var(--radius-pill);
}
.pricing-toggle-btn {
  border: 0;
  background: transparent;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  color: var(--warn-umber);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pricing-toggle-btn:hover { color: var(--obsidian); }
.pricing-toggle-btn.is-active {
  background: #fff;
  color: var(--obsidian);
  box-shadow: 0 1px 2px rgba(56, 48, 39, 0.08), 0 4px 12px rgba(56, 48, 39, 0.05);
}
.pricing-toggle-save {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--glow-above), var(--glow-below));
  color: #fff;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.pricing-fineprint {
  list-style: none;
  padding: 0;
  margin: 32px auto 0;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: var(--warn-umber);
  text-align: center;
}
.pricing-fineprint li { line-height: 1.5; }

/* === Trust band === */
.trust-lede {
  max-width: 620px;
  margin: 0 auto 24px;
  text-align: center;
  font-size: 16px;
  line-height: 1.55;
  color: var(--warn-umber);
}
.trust-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px 36px;
  background: #fff;
  border: 1px solid rgba(56, 48, 39, 0.08);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}
@media (max-width: 820px) { .trust-band { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .trust-band { grid-template-columns: 1fr; padding: 24px 20px; gap: 20px; } }
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-item strong { font-size: 14px; font-weight: 600; color: var(--obsidian); letter-spacing: 0.1px; }
.trust-item span { font-size: 13px; color: var(--warn-umber); line-height: 1.5; }

/* === Solo funnel band === */
.solo-band {
  background: linear-gradient(160deg, var(--warm-stone) 0%, var(--fresh-linen) 100%);
  border: 1px solid rgba(255, 177, 90, 0.24);
  border-radius: 24px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.solo-band > div { flex: 1 1 300px; }
.solo-band .eyebrow { background: #fff; margin-bottom: 12px; }
.solo-band .h3 { font-size: 24px; margin: 0 0 8px; }
.solo-band p { margin: 0; color: var(--warn-umber); font-size: 15px; }
.solo-band .btn { flex-shrink: 0; }

/* === Content (support / privacy) === */
.content { max-width: 760px; margin: 0 auto; padding: 0 24px 96px; }
.content h2 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--obsidian);
  margin: 56px 0 20px;
}
.content h2:first-of-type { margin-top: 32px; }
.content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--obsidian);
  margin: 24px 0 8px;
}
.content p, .content ul, .content ol { margin: 0 0 14px; font-size: 16px; line-height: 1.6; color: var(--obsidian); }
.content ul, .content ol { padding-left: 22px; }
.content li { margin-bottom: 8px; }
.content a { color: var(--obsidian); text-decoration: underline; text-decoration-color: rgba(56, 48, 39, 0.35); text-underline-offset: 3px; transition: text-decoration-color 0.15s ease; }
.content a:hover { text-decoration-color: var(--obsidian); }
.content strong { font-weight: 600; }

.tldr {
  background: linear-gradient(160deg, var(--warm-stone) 0%, var(--fresh-linen) 100%);
  border: 1px solid rgba(255, 177, 90, 0.30);
  border-radius: 20px;
  padding: 24px 28px;
  margin: 8px 0 40px;
}
.tldr p { margin: 0 0 10px; font-size: 16px; color: var(--obsidian); }
.tldr p:last-child { margin-bottom: 0; }
.tldr strong { color: var(--warn-umber); }

.faq {
  background: #fff;
  border: 1px solid rgba(56, 48, 39, 0.08);
  border-radius: var(--radius-card);
  padding: 22px 24px;
  margin-bottom: 12px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.faq:hover { border-color: rgba(56, 48, 39, 0.16); box-shadow: var(--shadow-card); }
.faq h3 { margin: 0 0 8px; font-size: 17px; }
.faq p { margin: 0 0 10px; font-size: 15px; color: var(--warn-umber); line-height: 1.6; }
.faq p:last-child { margin-bottom: 0; }

.contact-card {
  background: var(--obsidian);
  color: var(--fresh-linen);
  border-radius: 20px;
  padding: 32px;
  margin: 48px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.contact-card::after {
  content: ""; position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: var(--glow-above);
  filter: blur(70px);
  opacity: 0.3;
  top: -100px; right: -60px;
  z-index: -1;
}
.contact-card h2 { color: var(--fresh-linen); margin: 0; font-size: 22px; }
.contact-card p { color: rgba(252, 251, 237, 0.75); margin: 0; font-size: 15px; }
.contact-card .btn { align-self: flex-start; }
.contact-card .btn--primary { background: var(--fresh-linen); color: var(--obsidian); }
.contact-card .btn--primary:hover { background: #fff; }

/* === Footer === */
footer.site {
  border-top: 1px solid rgba(56, 48, 39, 0.08);
  padding: 40px 0;
  margin-top: 24px;
}
footer.site .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
footer.site .links { display: flex; gap: 24px; }
footer.site a {
  font-size: 14px;
  color: var(--warn-umber);
  transition: color 0.15s ease;
}
footer.site a:hover { color: var(--obsidian); }
footer.site .copy { font-size: 13px; color: var(--grey); }

/* iteration 6 visual polish */
.pricing-eyebrow-note {
  max-width: 640px;
  margin: 0 auto 24px;
  padding: 12px 20px;
  text-align: center;
  font-size: 14px;
  color: var(--obsidian);
  background: var(--warm-stone);
  border-radius: var(--radius-pill);
}
.pricing-eyebrow-note strong { color: var(--obsidian); font-weight: 700; }

.faq:nth-child(even) {
  background: color-mix(in oklab, var(--warm-stone) 60%, transparent);
}

.feature.is-accent {
  box-shadow: var(--shadow-card-hover);
}

.trust-item strong::before {
  content: "\2022";
  color: var(--glow-above);
  margin-right: 8px;
  font-weight: 700;
}
