/* ─────────────────────────────────────────────────────────────────
   Boujie — design tokens
   Aspirational + warm, editorial. Deep navy + cream + champagne.
   Never slang-mimicry. Domain expertise = credibility.
   ───────────────────────────────────────────────────────────────── */
:root {
  /* color */
  --c-ink: #0F1419;            /* near-black, slight blue */
  --c-ink-soft: #1A1F2B;
  --c-paper: #FAF6F1;          /* warm cream */
  --c-paper-2: #F2ECE2;        /* a touch warmer */
  --c-paper-3: #E8DFCE;        /* champagne-tinted divider */
  --c-gold: #C9A36B;           /* champagne accent */
  --c-gold-deep: #A67F47;
  --c-terracotta: #B85C38;     /* "fear" accent */
  --c-emerald: #1F4D3C;        /* "safe" accent */
  --c-rule: rgba(15, 20, 25, 0.10);
  --c-rule-light: rgba(250, 246, 241, 0.14);

  /* type */
  --ff-serif: "Fraunces", "GT Sectra", Georgia, "Times New Roman", serif;
  --ff-sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  /* scale */
  --fs-7xl: clamp(3.5rem, 7vw + 1rem, 7rem);   /* hero */
  --fs-6xl: clamp(2.5rem, 5vw + 1rem, 5rem);   /* section h2 */
  --fs-5xl: clamp(2rem, 3vw + 1rem, 3.25rem);
  --fs-4xl: clamp(1.75rem, 2vw + 1rem, 2.5rem);
  --fs-3xl: clamp(1.4rem, 1.4vw + 0.8rem, 1.875rem);
  --fs-2xl: 1.5rem;
  --fs-xl: 1.25rem;
  --fs-lg: 1.125rem;
  --fs-base: 1rem;
  --fs-sm: 0.9375rem;
  --fs-xs: 0.8125rem;

  /* space */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;
  --s-section: clamp(4rem, 9vw, 8rem);

  /* layout */
  --max-w: 1180px;
  --max-w-narrow: 760px;
  --pad-x: clamp(1.25rem, 4vw, 3rem);

  /* misc */
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15, 20, 25, 0.06);
  --shadow-md: 0 6px 20px -8px rgba(15, 20, 25, 0.18);
  --shadow-lg: 0 24px 60px -20px rgba(15, 20, 25, 0.22);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ─────────────────────────────────────────────────────────────────
   reset
   ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--ff-sans);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.55;
  color: var(--c-ink);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
button, input { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection { background: var(--c-gold); color: var(--c-ink); }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--c-ink); color: var(--c-paper);
  padding: var(--s-3) var(--s-4); z-index: 100;
}
.skip:focus { left: var(--s-4); top: var(--s-4); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.container--narrow { max-width: var(--max-w-narrow); }

/* ─────────────────────────────────────────────────────────────────
   type
   ───────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.05;
}
em {
  font-style: italic;
  font-variation-settings: "opsz" 144;
}

.eyebrow, .section-eyebrow {
  font-family: var(--ff-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
}

.section-h2 {
  font-size: var(--fs-6xl);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-top: var(--s-3);
  max-width: 22ch;
}
.section-h2--light { color: var(--c-paper); }
.section-h2 em { color: var(--c-gold-deep); font-weight: 300; }
.section-h2--light em { color: var(--c-gold); }

/* ─────────────────────────────────────────────────────────────────
   brand mark + nav
   ───────────────────────────────────────────────────────────────── */
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--c-ink);
  color: var(--c-gold);
  border-radius: 8px;
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  padding-top: 2px;
}
.brand-word {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  margin-left: var(--s-3);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: var(--s-6);
  padding: var(--s-4) var(--pad-x);
  background: rgba(250, 246, 241, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--c-rule);
}
.nav__brand { display: flex; align-items: center; }
.nav__links {
  display: flex;
  gap: var(--s-6);
  margin-left: auto;
  font-size: var(--fs-sm);
  font-weight: 500;
}
.nav__links a {
  color: var(--c-ink);
  opacity: 0.78;
  transition: opacity 200ms var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__cta { margin-left: var(--s-2); }

@media (max-width: 820px) {
  .nav__links { display: none; }
}
@media (max-width: 360px) {
  .nav { gap: var(--s-3); padding-left: var(--s-4); padding-right: var(--s-4); }
  .nav__cta { padding-left: var(--s-4); padding-right: var(--s-4); font-size: var(--fs-xs); }
  .brand-word { font-size: 1.2rem; }
}

/* ─────────────────────────────────────────────────────────────────
   buttons
   ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 14px var(--s-5);
  min-height: 44px;
  font-family: var(--ff-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.005em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 180ms var(--ease),
    background-color 220ms var(--ease),
    color 220ms var(--ease),
    border-color 220ms var(--ease),
    box-shadow 240ms var(--ease);
}
.btn--primary {
  background: var(--c-ink);
  color: var(--c-paper);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  background: var(--c-ink-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.btn--secondary {
  background: var(--c-paper);
  color: var(--c-ink);
  border-color: var(--c-ink);
}
.btn--secondary:hover { background: var(--c-paper-2); }
.btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-rule);
}
.btn--ghost:hover { background: var(--c-paper-2); border-color: var(--c-ink); }
.btn--large {
  padding: var(--s-4) var(--s-7);
  font-size: var(--fs-base);
  border-radius: 999px;
}

/* ─────────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────────── */
.hero {
  padding: clamp(2.5rem, 8vw, 6rem) var(--pad-x) var(--s-section);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(201, 163, 107, 0.15), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(184, 92, 56, 0.06), transparent 60%),
    var(--c-paper);
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero__h1 {
  font-size: var(--fs-7xl);
  line-height: 0.94;
  letter-spacing: -0.038em;
  margin-top: var(--s-5);
  max-width: 16ch;
  font-weight: 400;
}
.hero__h1 em {
  color: var(--c-gold-deep);
  font-weight: 300;
}
.hero__sub {
  font-size: clamp(1.125rem, 1vw + 0.875rem, 1.5rem);
  line-height: 1.45;
  max-width: 36em;
  margin-top: var(--s-6);
  color: rgba(15, 20, 25, 0.78);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-7);
}
@media (max-width: 480px) {
  .hero__ctas .btn { flex: 1 1 100%; }
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-6);
  margin-top: var(--s-8);
  font-size: var(--fs-sm);
  color: rgba(15, 20, 25, 0.7);
}
@media (max-width: 480px) {
  .trust-strip { gap: var(--s-3) var(--s-5); }
}
.trust-strip li {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--c-emerald);
  color: var(--c-paper);
  font-size: 11px;
  font-weight: 700;
}

.hero__ribbon {
  margin-top: var(--s-7);
  padding: var(--s-5) var(--s-6);
  border-left: 3px solid var(--c-terracotta);
  background: var(--c-paper-2);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: var(--fs-base);
  line-height: 1.55;
  color: var(--c-ink);
  max-width: 64ch;
}
.hero__ribbon strong { color: var(--c-terracotta); font-weight: 600; letter-spacing: -0.01em; }

/* ─────────────────────────────────────────────────────────────────
   WHY
   ───────────────────────────────────────────────────────────────── */
.why { padding: var(--s-section) 0; background: var(--c-paper); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-5);
  margin-top: var(--s-7);
}
.why__card {
  padding: var(--s-6);
  border: 1px solid var(--c-rule);
  border-radius: var(--radius);
  background: var(--c-paper);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}
.why__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-paper-3);
}
.why__card h3 {
  font-size: var(--fs-3xl);
  letter-spacing: -0.02em;
  margin-bottom: var(--s-3);
  font-weight: 400;
  color: var(--c-ink);
}
.why__card p {
  font-size: var(--fs-base);
  color: rgba(15, 20, 25, 0.75);
  line-height: 1.6;
}
.why__card strong { color: var(--c-terracotta); font-weight: 600; }

/* ─────────────────────────────────────────────────────────────────
   PAIN
   ───────────────────────────────────────────────────────────────── */
.pain {
  padding: var(--s-section) 0;
  background: var(--c-ink);
  color: var(--c-paper);
  background-image:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(201, 163, 107, 0.10), transparent 70%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(184, 92, 56, 0.07), transparent 70%);
}
.pain .section-eyebrow { color: var(--c-gold); }
.pain__lede {
  font-size: var(--fs-lg);
  max-width: 46em;
  margin-top: var(--s-6);
  color: rgba(250, 246, 241, 0.75);
}
.pain__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--s-5);
  margin-top: var(--s-8);
}
.pain__card {
  padding: var(--s-6);
  background: rgba(250, 246, 241, 0.04);
  border: 1px solid var(--c-rule-light);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: transform 260ms var(--ease), background 260ms var(--ease), border-color 260ms var(--ease);
}
.pain__card:hover {
  transform: translateY(-3px);
  background: rgba(250, 246, 241, 0.07);
  border-color: rgba(201, 163, 107, 0.4);
}
.pain__number {
  font-family: var(--ff-serif);
  font-size: var(--fs-7xl);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--c-gold);
  font-variation-settings: "opsz" 144;
  margin-bottom: var(--s-2);
}
.pain__number-unit {
  font-size: 0.32em;
  color: rgba(201, 163, 107, 0.65);
  margin-left: 0.05em;
  font-weight: 400;
  letter-spacing: 0;
}
.pain__title {
  font-size: var(--fs-2xl);
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--c-paper);
}
.pain__body {
  color: rgba(250, 246, 241, 0.78);
  font-size: var(--fs-base);
  line-height: 1.6;
}
.pain__body strong, .pain__body em {
  color: var(--c-paper);
  font-weight: 600;
  font-style: normal;
}
.pain__tag {
  margin-top: auto;
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-rule-light);
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 600;
}

.pain__cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  margin-top: var(--s-8);
  padding: var(--s-6);
  background: rgba(201, 163, 107, 0.08);
  border-radius: var(--radius);
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .pain__cta-wrap { flex-direction: column; align-items: flex-start; padding: var(--s-5); }
  .pain__cta-wrap .btn { width: 100%; }
}
.pain__cta-wrap p {
  font-size: var(--fs-lg);
  color: var(--c-paper);
  max-width: 36em;
}
.pain__cta-wrap .btn--primary {
  background: var(--c-gold);
  color: var(--c-ink);
}
.pain__cta-wrap .btn--primary:hover {
  background: var(--c-paper);
}

.pain__checklist {
  margin-top: var(--s-5);
  text-align: center;
  font-size: var(--fs-sm);
  color: rgba(250, 246, 241, 0.65);
  line-height: 1.55;
}
.pain__checklist a {
  color: var(--c-gold);
  text-decoration: underline;
  text-decoration-color: rgba(201, 163, 107, 0.4);
  text-underline-offset: 3px;
  transition: color 200ms var(--ease), text-decoration-color 200ms var(--ease);
}
.pain__checklist a:hover {
  color: var(--c-paper);
  text-decoration-color: var(--c-paper);
}
.pain__checklist strong {
  color: var(--c-paper);
  letter-spacing: 0.06em;
  font-weight: 700;
}

/* ─────────────────────────────────────────────────────────────────
   UNLOCK — light counterpart to the dark PAIN section
   ───────────────────────────────────────────────────────────────── */
.unlock {
  padding: var(--s-section) 0;
  background: var(--c-paper-2);
  background-image:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(31, 77, 60, 0.08), transparent 70%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(201, 163, 107, 0.10), transparent 70%);
}
.unlock__eyebrow { color: var(--c-emerald); }
.unlock .section-h2 em { color: var(--c-emerald); font-weight: 300; }
.unlock__lede {
  font-size: var(--fs-lg);
  max-width: 46em;
  margin-top: var(--s-6);
  color: rgba(15, 20, 25, 0.72);
}
.unlock__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--s-5);
  margin-top: var(--s-8);
}
.unlock__card {
  padding: var(--s-6);
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: transform 260ms var(--ease), background 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease);
}
.unlock__card:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 77, 60, 0.4);
  box-shadow: var(--shadow-md);
}
.unlock__number {
  font-family: var(--ff-serif);
  font-size: var(--fs-7xl);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--c-emerald);
  font-variation-settings: "opsz" 144;
  margin-bottom: var(--s-2);
}
.unlock__number-unit {
  font-size: 0.32em;
  color: rgba(31, 77, 60, 0.65);
  margin-left: 0.05em;
  font-weight: 400;
  letter-spacing: 0;
}
.unlock__title {
  font-size: var(--fs-2xl);
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--c-ink);
}
.unlock__body {
  color: rgba(15, 20, 25, 0.75);
  font-size: var(--fs-base);
  line-height: 1.6;
}
.unlock__body strong, .unlock__body em {
  color: var(--c-ink);
  font-weight: 600;
  font-style: normal;
}
.unlock__tag {
  margin-top: auto;
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-rule);
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-emerald);
  font-weight: 600;
}

.unlock__cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  margin-top: var(--s-8);
  padding: var(--s-6);
  background: rgba(31, 77, 60, 0.08);
  border-radius: var(--radius);
  flex-wrap: wrap;
}
.unlock__cta-wrap p {
  font-size: var(--fs-lg);
  color: var(--c-ink);
  max-width: 36em;
}
.unlock__cta-wrap .btn--primary {
  background: var(--c-emerald);
  color: var(--c-paper);
}
.unlock__cta-wrap .btn--primary:hover {
  background: #163828;
}
@media (max-width: 600px) {
  .unlock__cta-wrap { flex-direction: column; align-items: flex-start; padding: var(--s-5); }
  .unlock__cta-wrap .btn { width: 100%; }
}

/* ─────────────────────────────────────────────────────────────────
   INCLUDED
   ───────────────────────────────────────────────────────────────── */
.included { padding: var(--s-section) 0; background: var(--c-paper); }
.included__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  margin-top: var(--s-7);
  background: var(--c-rule);
  border: 1px solid var(--c-rule);
  border-radius: var(--radius);
  overflow: hidden;
}
.incl {
  padding: var(--s-6);
  background: var(--c-paper);
}
.incl h3 {
  font-size: var(--fs-2xl);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-4);
  color: var(--c-ink);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--c-paper-3);
}
.incl ul {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.incl li {
  font-size: var(--fs-sm);
  line-height: 1.55;
  padding-left: var(--s-5);
  position: relative;
  color: rgba(15, 20, 25, 0.78);
}
.incl li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 12px;
  height: 1px;
  background: var(--c-gold-deep);
}

/* ─────────────────────────────────────────────────────────────────
   PRICING
   ───────────────────────────────────────────────────────────────── */
.pricing { padding: var(--s-section) 0; background: var(--c-paper-2); }
.pricing__lede {
  font-size: var(--fs-lg);
  max-width: 44em;
  margin-top: var(--s-5);
  color: rgba(15, 20, 25, 0.7);
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s-5);
  margin-top: var(--s-8);
  align-items: stretch;
}
.tier {
  position: relative;
  padding: var(--s-7) var(--s-6) var(--s-6);
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}
.tier:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.tier--featured {
  background: var(--c-ink);
  color: var(--c-paper);
  border-color: var(--c-ink);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}
.tier--featured:hover { transform: scale(1.02) translateY(-3px); }
.tier__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--s-2) var(--s-4);
  background: var(--c-gold);
  color: var(--c-ink);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}
.tier__head { display: flex; flex-direction: column; gap: var(--s-2); }
.tier__name {
  font-size: var(--fs-3xl);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.tier__band {
  font-size: var(--fs-sm);
  color: rgba(15, 20, 25, 0.65);
}
.tier--featured .tier__band { color: rgba(250, 246, 241, 0.7); }

.tier__price {
  display: flex;
  align-items: baseline;
  font-family: var(--ff-serif);
  letter-spacing: -0.035em;
  margin-top: var(--s-2);
}
.tier__currency { font-size: var(--fs-2xl); font-weight: 400; }
.tier__amount { font-size: var(--fs-6xl); font-weight: 400; line-height: 1; }
.tier__per { font-family: var(--ff-sans); font-size: var(--fs-base); font-weight: 500; color: rgba(15, 20, 25, 0.6); margin-left: var(--s-2); }
.tier--featured .tier__per { color: rgba(250, 246, 241, 0.65); }
.tier__onboarding {
  font-size: var(--fs-sm);
  color: rgba(15, 20, 25, 0.55);
  margin-top: calc(var(--s-2) * -1);
}
.tier--featured .tier__onboarding { color: rgba(250, 246, 241, 0.55); }

.tier__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-rule);
}
.tier--featured .tier__list { border-top-color: var(--c-rule-light); }
.tier__list li {
  font-size: var(--fs-sm);
  line-height: 1.55;
  padding-left: var(--s-5);
  position: relative;
}
.tier__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--c-gold-deep);
  font-weight: 600;
}
.tier--featured .tier__list li::before { color: var(--c-gold); }

.tier__prevents {
  margin-top: auto;
  padding: var(--s-4);
  background: var(--c-paper-2);
  border-left: 3px solid var(--c-terracotta);
  border-radius: 0 8px 8px 0;
}
.tier--featured .tier__prevents { background: rgba(184, 92, 56, 0.18); }
.tier__prevents-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-terracotta);
  margin-bottom: var(--s-2);
}
.tier--featured .tier__prevents-label { color: #E68F6F; }
.tier__prevents-body {
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: rgba(15, 20, 25, 0.8);
}
.tier--featured .tier__prevents-body { color: rgba(250, 246, 241, 0.85); }

.tier__cta { width: 100%; }
.tier--featured .btn--secondary { background: var(--c-paper); }

.founding {
  margin-top: var(--s-7);
  padding: var(--s-5);
  text-align: center;
  background: var(--c-paper);
  border: 1px dashed var(--c-gold-deep);
  border-radius: var(--radius);
  font-size: var(--fs-base);
  color: rgba(15, 20, 25, 0.78);
}
.founding strong { color: var(--c-gold-deep); font-weight: 700; }

/* ─────────────────────────────────────────────────────────────────
   HOW
   ───────────────────────────────────────────────────────────────── */
.how { padding: var(--s-section) 0; background: var(--c-paper); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s-6);
  margin-top: var(--s-7);
  counter-reset: step;
}
.step {
  padding: var(--s-6);
  border-top: 2px solid var(--c-ink);
  position: relative;
}
.step__num {
  font-family: var(--ff-serif);
  font-size: var(--fs-3xl);
  font-weight: 400;
  color: var(--c-gold-deep);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: var(--s-3);
}
.step__h3 {
  font-size: var(--fs-2xl);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-3);
}
.step p {
  font-size: var(--fs-base);
  color: rgba(15, 20, 25, 0.72);
  line-height: 1.6;
}

.how__note {
  margin-top: var(--s-8);
  padding: var(--s-6);
  background: var(--c-paper-2);
  border-radius: var(--radius);
  font-size: var(--fs-lg);
  line-height: 1.55;
  color: var(--c-ink);
}
.how__note strong { color: var(--c-gold-deep); font-weight: 600; }

.founder {
  margin-top: var(--s-7);
  display: flex;
  align-items: center;
  gap: var(--s-5);
  padding: var(--s-5) var(--s-6);
  background: var(--c-paper-2);
  border-radius: var(--radius);
  border-left: 3px solid var(--c-gold-deep);
}
.founder__avatar {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--c-ink);
  color: var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  padding-bottom: 4px;
}
.founder__body { flex: 1; }
.founder__line {
  font-size: var(--fs-base);
  line-height: 1.6;
  color: rgba(15, 20, 25, 0.82);
}
.founder__line strong { color: var(--c-ink); font-weight: 600; }
@media (max-width: 600px) {
  .founder { flex-direction: column; align-items: flex-start; gap: var(--s-4); padding: var(--s-5); }
  .founder__avatar { width: 56px; height: 56px; font-size: 28px; }
}

/* ─────────────────────────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────────────────────────── */
.faq { padding: var(--s-section) 0; background: var(--c-paper-2); }
.faq__list {
  margin-top: var(--s-7);
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--c-paper-3);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq__item {
  background: var(--c-paper);
  transition: background 200ms var(--ease);
}
.faq__item[open] { background: var(--c-paper); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-5) var(--s-6);
  min-height: 56px;
  font-family: var(--ff-serif);
  font-size: var(--fs-xl);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.35;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  transition: color 200ms var(--ease);
}
@media (max-width: 480px) {
  .faq__item summary { font-size: var(--fs-lg); padding: var(--s-4) var(--s-5); }
  .faq__body { padding: 0 var(--s-5) var(--s-5); }
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--ff-sans);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--c-gold-deep);
  transition: transform 240ms var(--ease);
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: var(--c-gold-deep); }
.faq__body {
  padding: 0 var(--s-6) var(--s-6);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: rgba(15, 20, 25, 0.78);
  max-width: 60ch;
}
.faq__body em { color: var(--c-ink); font-style: italic; }

/* ─────────────────────────────────────────────────────────────────
   CTA-FINAL
   ───────────────────────────────────────────────────────────────── */
.cta-final {
  padding: var(--s-section) 0;
  background: var(--c-ink);
  color: var(--c-paper);
  text-align: center;
  background-image:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201, 163, 107, 0.15), transparent 70%);
}
.cta-final__h2 {
  font-family: var(--ff-serif);
  font-size: var(--fs-6xl);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 400;
}
.cta-final p {
  font-size: var(--fs-lg);
  margin-top: var(--s-5);
  color: rgba(250, 246, 241, 0.75);
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
}
.cta-final__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3);
  margin-top: var(--s-7);
}
@media (max-width: 480px) {
  .cta-final__buttons .btn { width: 100%; }
}
.cta-final .btn--primary {
  background: var(--c-gold);
  color: var(--c-ink);
}
.cta-final .btn--primary:hover { background: var(--c-paper); }
.cta-final .btn--ghost {
  color: var(--c-paper);
  border-color: rgba(250, 246, 241, 0.3);
}
.cta-final .btn--ghost:hover {
  background: rgba(250, 246, 241, 0.08);
  border-color: var(--c-paper);
}

/* ─────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────── */
.footer {
  padding: var(--s-8) 0 var(--s-6);
  background: var(--c-paper-2);
  border-top: 1px solid var(--c-rule);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--s-7);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid var(--c-rule);
}
@media (max-width: 720px) { .footer__inner { grid-template-columns: 1fr; } }
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-3);
}
.footer__brand .brand-mark + .brand-word { margin-left: var(--s-3); }
.footer__brand .brand-mark, .footer__brand .brand-word {
  display: inline-block;
}
.footer__tag {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: var(--fs-lg);
  color: rgba(15, 20, 25, 0.6);
  margin-top: var(--s-2);
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}
@media (max-width: 860px) { .footer__nav { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .footer__nav { grid-template-columns: 1fr; } }
.footer__nav h4 {
  font-family: var(--ff-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  margin-bottom: var(--s-3);
}
.footer__nav a, .footer__parent, .footer__address {
  display: block;
  font-size: var(--fs-sm);
  color: rgba(15, 20, 25, 0.78);
  padding: var(--s-2) 0;
  transition: color 200ms var(--ease);
  font-style: normal;
  line-height: 1.55;
}
.footer__nav a {
  min-height: 32px;
  display: flex;
  align-items: center;
}
.footer__nav a:hover { color: var(--c-ink); }
@media (max-width: 460px) {
  .footer__nav a { min-height: 40px; padding: var(--s-3) 0; }
}
.footer__legal {
  padding-top: var(--s-5);
  font-size: var(--fs-xs);
  color: rgba(15, 20, 25, 0.55);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.footer__disclaimer { max-width: 80ch; line-height: 1.55; }

/* ─────────────────────────────────────────────────────────────────
   reduced motion
   ───────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
