/* ===================================================================
   TORCH — clay design system
   Tokens lifted from clay.md. Cream canvas, saturated feature cards,
   dark-ink primary CTAs, generous radius, 96px section rhythm,
   cream footer. Plain Black substituted with Inter 500 + negative
   letter-spacing per the system's "Note on Font Substitutes". A
   secondary serif (Fraunces 500) handles a few feature-card titles
   to evoke the rounded-display character.
   =================================================================== */

:root {
  /* Brand & accent */
  --primary: #0a0a0a;
  --primary-active: #1f1f1f;
  --primary-disabled: #e5e5e5;
  --ink: #0a0a0a;
  --body: #3a3a3a;
  --body-strong: #1a1a1a;
  --muted: #6a6a6a;
  --muted-soft: #9a9a9a;
  --hairline: #e5e5e5;
  --hairline-soft: #f0f0f0;
  --canvas: #fffaf0;
  --surface-soft: #faf5e8;
  --surface-card: #f5f0e0;
  --surface-strong: #ebe6d6;
  --surface-dark: #0a1a1a;
  --on-primary: #ffffff;
  --on-dark: #ffffff;
  --on-dark-soft: #a0a0a0;

  --brand-pink: #ff4d8b;
  --brand-teal: #1a3a3a;
  --brand-lavender: #b8a4ed;
  --brand-peach: #ffb084;
  --brand-ochre: #e8b94a;
  --brand-mint: #a4d4c5;
  --brand-coral: #ff6b5a;

  /* Radius */
  --r-xs: 6px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 9999px;

  /* Spacing */
  --s-xxs: 4px;
  --s-xs: 8px;
  --s-sm: 12px;
  --s-md: 16px;
  --s-lg: 24px;
  --s-xl: 32px;
  --s-xxl: 48px;
  --s-section: 96px;

  /* Font stacks */
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display-warm: "Fraunces", "Inter", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ====== RESET ====================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--canvas);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; }

ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.03em;
}

p { margin: 0; }

/* ====== TYPE TOKENS ================================================ */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(40px, 8.5vw, 72px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.5vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--body);
  background: var(--surface-card);
  padding: 6px 12px;
  border-radius: var(--r-pill);
}

.eyebrow--inverse {
  background: rgba(255, 255, 255, 0.7);
}

.lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--body);
  max-width: 36em;
}

/* ====== LAYOUT HELPERS ============================================= */
section {
  padding: var(--s-section) 24px;
}

.section__head {
  max-width: 760px;
  margin: 0 auto var(--s-xxl);
  text-align: center;
}

.section__head .eyebrow { margin-bottom: var(--s-md); }
.section__head h2 { margin-bottom: var(--s-md); }
.section__lede {
  font-size: 18px;
  color: var(--body);
  margin: 0 auto;
  max-width: 32em;
}

/* ====== BUTTONS ==================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  height: 44px;
  padding: 0 20px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn--primary {
  background: var(--primary);
  color: var(--on-primary);
}
.btn--secondary {
  background: var(--canvas);
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  padding: 0 12px;
}
.btn--on-color {
  background: var(--canvas);
  color: var(--ink);
}
.btn--lg {
  height: 52px;
  padding: 0 24px;
  font-size: 15px;
}
.btn--xl {
  height: 60px;
  padding: 0 32px;
  font-size: 16px;
}
.btn--block {
  width: 100%;
}

/* ====== TOP NAV ==================================================== */
.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline-soft);
}
.topnav__inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topnav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.04em;
  font-size: 22px;
  color: var(--ink);
}
.topnav__name { line-height: 1; }
.topnav__menu {
  display: none;
  gap: 28px;
  align-items: center;
}
.topnav__menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--body-strong);
}
.topnav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topnav__actions .btn--ghost { display: none; }

@media (min-width: 880px) {
  .topnav__menu { display: inline-flex; }
  .topnav__actions .btn--ghost { display: inline-flex; }
}

/* ====== HERO ======================================================= */
.hero {
  background: var(--canvas);
  padding: 64px 24px var(--s-section);
}

.hero__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 64px;
  }
}

.hero__copy {
  max-width: 720px;
}
.hero__copy .eyebrow { margin-bottom: var(--s-lg); }
.hero__copy h1 { margin-bottom: var(--s-lg); }
.hero__copy .lede { margin-bottom: var(--s-xl); }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-sm);
  margin-bottom: var(--s-xl);
}

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  font-size: 14px;
  color: var(--body);
}
.hero__points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.dot--teal { background: var(--brand-teal); }
.dot--pink { background: var(--brand-pink); }
.dot--ochre { background: var(--brand-ochre); }

/* ===== Hero scene illustration (claymation-style flat composition) === */
.hero__art {
  position: relative;
  min-height: 360px;
}

.scene {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  background: var(--surface-soft);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: inset 0 -40px 80px rgba(232, 185, 74, 0.08);
}

.scene__hill {
  position: absolute;
  left: -10%;
  right: -10%;
  border-radius: 50% 50% 0 0 / 70% 70% 0 0;
}
.scene__hill--back {
  bottom: 18%;
  height: 55%;
  background: var(--brand-mint);
  filter: saturate(0.85);
}
.scene__hill--mid {
  bottom: 0;
  height: 38%;
  background: var(--brand-peach);
  border-radius: 60% 40% 0 0 / 80% 70% 0 0;
}
.scene__sun {
  position: absolute;
  top: 12%;
  right: 14%;
  width: 84px;
  height: 84px;
  background: var(--brand-ochre);
  border-radius: 50%;
  box-shadow: 0 8px 0 -4px rgba(232, 185, 74, 0.4);
}

.scene__phone {
  position: absolute;
  left: 16%;
  bottom: 14%;
  width: 38%;
  max-width: 220px;
  aspect-ratio: 9 / 16;
  background: var(--ink);
  border-radius: 28px;
  padding: 18px 14px;
  box-shadow: 0 16px 32px rgba(10, 26, 26, 0.18), 0 4px 0 rgba(10, 10, 10, 0.4);
  transform: rotate(-7deg);
}
.scene__phone-screen {
  width: 100%;
  height: 100%;
  background: var(--canvas);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 12px;
}
.scene__call-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.scene__call-sub {
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.3;
}
.scene__btn--green {
  background: #22c55e;
  color: white;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 8px 0;
  border-radius: var(--r-pill);
}

.scene__torch {
  position: absolute;
  right: 16%;
  bottom: 22%;
  width: 18%;
  max-width: 84px;
  aspect-ratio: 1 / 2;
}
.scene__torch-stick {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 55%;
  background: var(--brand-teal);
  border-radius: 6px;
}
.scene__flame {
  position: absolute;
  left: 50%;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform: translateX(-50%);
}
.scene__flame--outer {
  bottom: 50%;
  width: 90%;
  height: 65%;
  background: var(--brand-coral);
  border-radius: 50% 50% 50% 50% / 70% 70% 30% 30%;
}
.scene__flame--inner {
  bottom: 53%;
  width: 50%;
  height: 45%;
  background: var(--brand-ochre);
}

.scene__sparkle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--ink);
  border-radius: 50%;
}
.scene__sparkle--a { top: 22%; left: 20%; }
.scene__sparkle--b { top: 36%; right: 8%; width: 6px; height: 6px; }
.scene__sparkle--c { top: 60%; right: 38%; width: 8px; height: 8px; background: var(--brand-pink); }

/* ===== Trust strip ===== */
.trust {
  max-width: 1280px;
  margin: var(--s-xxl) auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-md);
  text-align: center;
}
.trust__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.trust__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
}
.trust__chip {
  font-size: 14px;
  font-weight: 500;
  color: var(--body-strong);
  background: var(--surface-card);
  padding: 8px 14px;
  border-radius: var(--r-pill);
}

/* ====== WHAT — feature card cycle ================================= */
.what {
  background: var(--canvas);
}

.cards {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-lg);
}

@media (min-width: 720px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}

.card {
  position: relative;
  padding: var(--s-xl);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
  min-height: 320px;
  overflow: hidden;
}
.card__tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.78;
}
.card__title {
  font-family: var(--font-display-warm);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0;
  color: inherit;
}
.card__body {
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.92;
}
.card__list {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}
.card__list li {
  background: rgba(255, 255, 255, 0.5);
  padding: 8px 12px;
  border-radius: var(--r-sm);
}

.card--pink {
  background: var(--brand-pink);
  color: var(--on-primary);
}
.card--pink .card__title { color: var(--on-primary); }

.card--teal {
  background: var(--brand-teal);
  color: var(--on-dark);
}
.card--teal .card__title { color: var(--on-dark); }
.card--teal .card__list li { background: rgba(255, 255, 255, 0.12); color: var(--on-dark); }

.card--lavender {
  background: var(--brand-lavender);
  color: var(--ink);
}
.card--lavender .card__title { color: var(--ink); }

.card--peach {
  background: var(--brand-peach);
  color: var(--ink);
}
.card--peach .card__title { color: var(--ink); }

.card--ochre {
  background: var(--brand-ochre);
  color: var(--ink);
}
.card--ochre .card__title { color: var(--ink); }

.card--cream {
  background: var(--surface-card);
  color: var(--ink);
  border: 1px solid var(--hairline);
}
.card--cream .card__title { color: var(--ink); }

/* ====== Mock UI fragments inside cards ============================ */
.mock {
  margin-top: auto;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
}
.card--teal .mock { background: rgba(255, 255, 255, 0.96); }

.mock__head {
  font-size: 11px;
  color: var(--muted);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.mock__btn {
  background: var(--brand-coral);
  color: white;
  font-weight: 600;
  padding: 10px 14px;
  text-align: center;
  border-radius: var(--r-sm);
  font-size: 14px;
}
.mock__row {
  font-size: 13px;
  color: var(--body-strong);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock__pip {
  width: 8px;
  height: 8px;
  background: var(--brand-mint);
  border-radius: 50%;
  filter: saturate(1.5);
}

.mock__email-from {
  font-size: 11px;
  color: var(--muted);
}
.mock__email-subj {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.mock__email-line {
  height: 6px;
  border-radius: 3px;
  background: var(--surface-strong);
}
.mock__email-line--short { width: 60%; }
.mock__email-cta {
  align-self: flex-start;
  background: var(--ink);
  color: white;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 600;
}

.mock__search-bar {
  background: var(--surface-card);
  padding: 8px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  color: var(--body);
  font-family: ui-monospace, monospace;
}
.mock__search-row {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--hairline-soft);
  font-size: 13px;
}
.mock__search-row:last-child { border-bottom: none; }
.mock__search-row--top {
  background: var(--brand-mint);
  padding: 8px;
  border-radius: var(--r-sm);
  border-bottom: none;
  filter: saturate(0.8);
}
.mock__search-rank {
  font-weight: 700;
  font-size: 12px;
  color: var(--muted);
  width: 24px;
}
.mock__search-row--top .mock__search-rank { color: var(--ink); }
.mock__search-name {
  font-weight: 600;
  color: var(--ink);
}
.mock__search-stars {
  font-size: 12px;
  color: var(--body);
}

.mock__bubble {
  font-size: 13px;
  background: var(--surface-card);
  padding: 8px 12px;
  border-radius: 16px 16px 16px 4px;
  align-self: flex-start;
  max-width: 80%;
}
.mock__bubble--us {
  background: var(--ink);
  color: white;
  align-self: flex-end;
  border-radius: 16px 16px 4px 16px;
}

/* ====== HOW (numbered steps) ===================================== */
.how {
  background: var(--surface-soft);
}
.steps {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--s-lg);
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-lg);
  align-items: start;
  background: var(--canvas);
  padding: var(--s-xl);
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline);
}
@media (min-width: 880px) {
  .step {
    grid-template-columns: auto 1fr 220px;
    align-items: center;
  }
}
.step__num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--brand-teal);
}
.step__body { display: flex; flex-direction: column; gap: 8px; }
.step__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.step__body p {
  color: var(--body);
  font-size: 15px;
  line-height: 1.55;
}

.step__art {
  display: none;
  height: 110px;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  padding: 16px;
}
@media (min-width: 880px) { .step__art { display: block; } }
.step__art--mint { background: var(--brand-mint); }
.step__art--peach { background: var(--brand-peach); }
.step__art--lavender { background: var(--brand-lavender); }
.step__art--pink { background: var(--brand-pink); }

.step__art-line {
  height: 8px;
  background: rgba(10, 10, 10, 0.18);
  border-radius: 4px;
  margin-bottom: 8px;
}
.step__art-line--short { width: 60%; }

.step__art-block {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.7);
  margin-right: 8px;
}
.step__art-block--alt { background: var(--brand-coral); }

.step__art-screen {
  width: 100%;
  height: 60%;
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--r-sm);
  margin-bottom: 8px;
}
.step__art-pulse {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand-coral);
  box-shadow: 0 0 0 6px rgba(255, 107, 90, 0.3);
}

.step__art-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.6);
  width: 100px;
  height: 100px;
}
.step__art-ring--mid { width: 70px; height: 70px; border-color: rgba(255, 255, 255, 0.8); }
.step__art-ring--inner { width: 40px; height: 40px; background: white; border: none; }

/* ====== PROOF ===================================================== */
.proof {
  background: var(--canvas);
}
.proof__grid {
  max-width: 1280px;
  margin: 0 auto var(--s-xxl);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-lg);
}
@media (min-width: 880px) {
  .proof__grid { grid-template-columns: repeat(3, 1fr); }
}
.quote {
  margin: 0;
  background: var(--surface-card);
  padding: var(--s-lg);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
}
.quote--alt { background: var(--surface-strong); }
.quote blockquote {
  margin: 0;
  font-family: var(--font-display-warm);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.quote figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.quote__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: white;
  letter-spacing: 0;
}
.quote__avatar--pink { background: var(--brand-pink); }
.quote__avatar--teal { background: var(--brand-teal); }
.quote__avatar--ochre { background: var(--brand-ochre); color: var(--ink); }
.quote__who {
  font-size: 14px;
  color: var(--body);
  line-height: 1.4;
}

.stats {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-sm);
}
@media (min-width: 720px) {
  .stats { grid-template-columns: repeat(4, 1fr); gap: var(--s-md); }
}
.stat {
  background: var(--surface-soft);
  padding: var(--s-lg);
  border-radius: var(--r-lg);
  text-align: left;
  border: 1px solid var(--hairline-soft);
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 8px;
}
.stat__label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* ====== PRICING =================================================== */
.pricing {
  background: var(--canvas);
}
.tiers {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-lg);
}
@media (min-width: 800px) {
  .tiers { grid-template-columns: repeat(2, 1fr); }
}
.tier {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--s-xl);
  display: flex;
  flex-direction: column;
  gap: var(--s-lg);
  position: relative;
}
.tier--featured {
  background: var(--brand-teal);
  color: var(--on-dark);
  border: none;
}
.tier--featured .tier__name,
.tier--featured .tier__price,
.tier--featured .tier__sub,
.tier--featured .tier__list { color: var(--on-dark); }
.tier__badge {
  position: absolute;
  top: -12px;
  left: var(--s-xl);
  background: var(--brand-ochre);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
}
.tier__head { display: flex; flex-direction: column; gap: 8px; }
.tier__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.tier__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
}
.tier__price-num {
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
}
.tier__price-unit {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
}
.tier--featured .tier__price-num { color: var(--on-dark); }
.tier--featured .tier__price-unit { color: var(--on-dark-soft); }
.tier__sub {
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
}
.tier__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
  color: var(--body-strong);
  margin: 0;
  flex: 1;
}
.tier__list li {
  position: relative;
  padding-left: 22px;
}
.tier__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-mint);
}
.tier--featured .tier__list li::before {
  background: var(--brand-ochre);
}

.pricing__fine {
  max-width: 720px;
  margin: var(--s-xl) auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

/* ====== FAQ ======================================================= */
.faq {
  background: var(--canvas);
}
.faq__grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 720px) {
  .faq__grid { grid-template-columns: repeat(2, 1fr); }
}
.faq__item {
  background: var(--surface-soft);
  border-radius: var(--r-lg);
  padding: var(--s-md) var(--s-lg);
  border: 1px solid var(--hairline-soft);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding: 6px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p {
  margin-top: 12px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.6;
}

/* ====== CTA BAND ================================================== */
.cta-band {
  background: var(--canvas);
  padding-bottom: var(--s-section);
}
.cta-band__inner {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--surface-soft);
  border-radius: var(--r-xl);
  padding: 64px 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-xl);
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 880px) {
  .cta-band__inner {
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
    padding: 80px 64px;
  }
}
.cta-band__copy { max-width: 640px; display: flex; flex-direction: column; gap: var(--s-md); }
.cta-band__copy h2 { color: var(--ink); }
.cta-band__sub {
  font-size: 17px;
  color: var(--body);
}
.cta-band__actions {
  margin-top: var(--s-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.cta-band__note {
  font-size: 13px;
  color: var(--muted);
}

.cta-band__art { position: relative; min-height: 240px; }
.cta-scene {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 240px;
}
.cta-scene__mountain {
  position: absolute;
  bottom: 0;
  border-radius: 50% 50% 0 0 / 90% 90% 0 0;
}
.cta-scene__mountain--back {
  left: 5%;
  right: 15%;
  bottom: 8%;
  height: 70%;
  background: var(--brand-lavender);
}
.cta-scene__mountain--front {
  left: 25%;
  right: -5%;
  height: 60%;
  background: var(--brand-teal);
}
.cta-scene__sun {
  position: absolute;
  top: 14%;
  left: 20%;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brand-coral);
}
.cta-scene__torch {
  position: absolute;
  right: 12%;
  bottom: 0;
  width: 16%;
  max-width: 70px;
  aspect-ratio: 1 / 2.2;
}
.cta-scene__stick {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24%;
  height: 60%;
  background: var(--ink);
  border-radius: 4px;
}
.cta-scene__flame {
  position: absolute;
  left: 50%;
  bottom: 45%;
  width: 100%;
  height: 60%;
  background: var(--brand-pink);
  border-radius: 50% 50% 50% 50% / 70% 70% 30% 30%;
  transform: translateX(-50%);
}
.cta-scene__flame--inner {
  width: 60%;
  height: 45%;
  background: var(--brand-ochre);
  bottom: 50%;
}

/* ====== FOOTER (cream, not dark) ================================= */
.footer {
  background: var(--surface-soft);
  padding: 80px 24px 0;
  border-top: 1px solid var(--hairline);
  position: relative;
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-xl);
}
@media (min-width: 880px) {
  .footer__inner { grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr); gap: var(--s-xxl); }
}
.footer__brand { display: flex; flex-direction: column; gap: 12px; }
.footer__tag {
  font-size: 15px;
  color: var(--body);
  max-width: 28em;
  line-height: 1.5;
}
.footer__email {
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-lg);
}
@media (min-width: 720px) {
  .footer__cols { grid-template-columns: repeat(4, 1fr); }
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.footer__col a {
  font-size: 14.5px;
  color: var(--body-strong);
  font-weight: 500;
}

.footer__horizon {
  margin-top: 64px;
  position: relative;
  height: 110px;
}
.footer__mountain {
  position: absolute;
  bottom: 0;
  border-radius: 50% 50% 0 0 / 80% 80% 0 0;
}
.footer__mountain--a {
  left: 0; right: 50%;
  height: 60px;
  background: var(--brand-mint);
}
.footer__mountain--b {
  left: 30%; right: 20%;
  height: 90px;
  background: var(--brand-peach);
}
.footer__mountain--c {
  left: 55%; right: 0;
  height: 70px;
  background: var(--brand-lavender);
}

.footer__legal {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 0 32px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.footer__legal-sep { color: var(--muted-soft); }

/* ====== Mobile tightening ======================================= */
@media (max-width: 640px) {
  section { padding: 64px 20px; }
  .topnav__inner { padding: 0 16px; }
  .topnav__brand { font-size: 19px; }
  .hero { padding: 32px 20px 64px; }
  .hero__copy h1 { line-height: 1.02; }
  .step { padding: var(--s-lg); gap: 14px; }
  .step__num { font-size: 40px; }
  .cta-band__inner { padding: 48px 24px; }
  .footer { padding: 56px 20px 0; }
  .card__title { font-size: 22px; }
  .quote blockquote { font-size: 18px; }
}
