/* =========================================================
   Productivity with ADHD — Landing Page
   Brand: deep teal + coral on warm cream (matches bundle PDFs)
   ========================================================= */

:root {
  /* Brand */
  --teal-900: #112d36;
  --teal-800: #1a3f4d;
  --teal-700: #1f4e5f;       /* primary ink */
  --teal-600: #2c6477;
  --teal-500: #4a8294;

  --coral-700: #b94a36;
  --coral-600: #d05541;
  --coral-500: #e1654f;      /* primary accent */
  --coral-400: #ec8470;

  --cream-50:  #fbf6ee;      /* page bg */
  --cream-100: #f2eae0;      /* section bg / cards */
  --cream-200: #e9ddcc;
  --cream-300: #d8c8b1;

  --ink:       #16252b;
  --ink-soft:  #3b4c52;
  --ink-mute:  #6a7a80;

  --line:      rgba(31,78,95,.14);
  --line-strong: rgba(31,78,95,.28);

  --shadow-sm: 0 1px 2px rgba(17,45,54,.06), 0 1px 3px rgba(17,45,54,.05);
  --shadow-md: 0 8px 24px -8px rgba(17,45,54,.18), 0 2px 6px rgba(17,45,54,.06);
  --shadow-lg: 0 24px 60px -20px rgba(17,45,54,.30), 0 8px 20px -10px rgba(17,45,54,.18);

  /* Type */
  --serif: "Fraunces", ui-serif, "Iowan Old Style", Georgia, serif;
  --sans:  "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Spacing scale */
  --s-1: .25rem;  --s-2: .5rem;   --s-3: .75rem;  --s-4: 1rem;
  --s-5: 1.5rem;  --s-6: 2rem;    --s-7: 2.75rem; --s-8: 3.5rem;
  --s-9: 4.5rem;  --s-10: 6rem;   --s-11: 8rem;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --maxw: 1180px;
}

/* Reset-lite */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 600; letter-spacing: -.01em; color: var(--teal-700); }
p { margin: 0; }
em { font-style: italic; color: var(--coral-600); font-family: var(--serif); }

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.ink { color: var(--coral-500); font-style: italic; }

/* ---------- TOPBAR ---------- */
.topbar {
  background: var(--teal-700);
  color: #fdf6ea;
  font-size: .85rem;
  letter-spacing: .005em;
}
.topbar__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: .55rem clamp(1rem, 4vw, 2rem);
  display: flex; align-items: center; justify-content: center; gap: .65rem;
  flex-wrap: wrap;
  text-align: center;
}
.topbar__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral-400);
  box-shadow: 0 0 0 0 rgba(236,132,112,.6);
  animation: pulse 2.4s cubic-bezier(.4,0,.6,1) infinite;
  flex: none;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(236,132,112,.55)} 50%{box-shadow:0 0 0 7px rgba(236,132,112,0)} }
.topbar__count { opacity: .85; }
.topbar strong { color: #fff; font-weight: 600; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,246,238,.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem;
  padding: .85rem 0;
}
.brand { display: flex; align-items: center; gap: .65rem; color: var(--teal-700); }
.brand__mark { width: 30px; height: 30px; color: var(--teal-700); }
.brand__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -.01em;
  color: var(--teal-700);
}
.brand__amp { color: var(--coral-500); font-style: italic; font-weight: 500; }

.site-nav { display: flex; gap: 1.6rem; }
.site-nav a {
  font-size: .9rem;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
  transition: color .15s ease;
}
.site-nav a:hover { color: var(--teal-700); }
.site-nav a::after {
  content:""; position:absolute; left:0; right:0; bottom:-6px;
  height:2px; background: var(--coral-500); transform: scaleX(0);
  transform-origin:left; transition: transform .25s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }

@media (max-width: 820px) {
  .site-nav { display: none; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .55rem;
  padding: .8rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: -.005em;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--coral-500);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 6px 18px -8px rgba(225,101,79,.55);
}
.btn--primary:hover {
  background: var(--coral-600);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 12px 24px -10px rgba(225,101,79,.65);
}
.btn--primary:active { transform: translateY(0); }
.btn--sm  { padding: .6rem 1rem; font-size: .85rem; }
.btn--lg  { padding: 1.05rem 1.7rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------- ICONOGRAPHY / EYEBROW ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral-600);
}
.eyebrow--center { display: flex; justify-content: center; }
.eyebrow__line { width: 36px; height: 2px; background: var(--coral-500); border-radius: 2px; flex: none; }

.section-title {
  font-size: clamp(1.7rem, 3.4vw + .8rem, 3rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-top: .75rem;
  text-wrap: balance;
}
.section-title--sm { font-size: clamp(1.4rem, 2.4vw + .7rem, 2.1rem); }
.section-lede {
  font-size: clamp(1rem, .4vw + .9rem, 1.15rem);
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 1rem auto 0;
  max-width: 56ch;
  text-wrap: pretty;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 88% 10%, rgba(225,101,79,.08), transparent 60%),
    radial-gradient(50% 40% at 8% 80%, rgba(31,78,95,.06), transparent 65%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; }
}
.hero__title {
  font-size: clamp(2.1rem, 4.5vw + .4rem, 4rem);
  line-height: 1.04;
  letter-spacing: -.025em;
  margin-top: 1rem;
  text-wrap: balance;
}
.hero__title em { display: inline; }
.hero__lede {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, .35vw + 1rem, 1.2rem);
  color: var(--ink-soft);
  max-width: 52ch;
  line-height: 1.6;
}
.hero__cta {
  margin-top: 2rem;
  display: flex; align-items: center; gap: 1rem 1.25rem;
  flex-wrap: wrap;
}
.hero__reassure {
  font-size: .9rem; color: var(--ink-mute);
  display: inline-flex; gap: .5rem; align-items: center; flex-wrap: wrap;
}
.hero__reassure .strike { text-decoration: line-through; color: var(--ink-mute); }
.hero__reassure .dot { color: var(--cream-300); }

.hero__trust {
  list-style: none; padding: 0; margin: 1.6rem 0 0;
  display: flex; flex-wrap: wrap; gap: 1rem 1.4rem;
  font-size: .88rem;
  color: var(--ink-soft);
}
.hero__trust li { display: inline-flex; align-items: center; gap: .45rem; }
.hero__trust svg { color: var(--teal-600); }

/* Hero stack visual */
.hero__stack {
  position: relative;
  padding: 1rem 0;
}
.stack {
  position: relative;
  display: grid;
  gap: .75rem;
  perspective: 1200px;
}
.stack__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: .35rem;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.stack__card:hover { transform: translateY(-3px) rotate(-.3deg); }
.stack__card--1 { transform: rotate(-1.4deg) translateX(-1%); }
.stack__card--2 { transform: rotate(.8deg);  background: var(--cream-100); }
.stack__card--3 { transform: rotate(-.6deg); }
.stack__card--4 { transform: rotate(1.2deg) translateX(1%); background: var(--teal-700); color: #fdf6ea; border-color: var(--teal-700); }
.stack__card--4 .stack__label { color: rgba(253,246,234,.65); }
.stack__card--4 .stack__sub { color: rgba(253,246,234,.7); }
.stack__label {
  font-size: .7rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--coral-600);
}
.stack__title {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 600;
  color: var(--teal-700); letter-spacing: -.01em;
}
.stack__card--4 .stack__title { color: #fff; }
.stack__sub { font-size: .9rem; color: var(--ink-soft); }
.stack__caption {
  margin-top: 1rem; text-align: center;
  font-size: .82rem; color: var(--ink-mute);
  font-style: italic;
}

/* ---------- TRUST STRIP ---------- */
.strip {
  background: var(--teal-700);
  color: #fdf6ea;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}
.strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
}
@media (max-width: 760px) {
  .strip__grid { grid-template-columns: repeat(2, 1fr); }
}
.strip__item {
  display: flex; flex-direction: column; gap: .35rem;
  border-left: 1px solid rgba(253,246,234,.15);
  padding-left: clamp(.9rem, 2vw, 1.4rem);
}
.strip__num {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw + .8rem, 2.6rem);
  font-weight: 600;
  letter-spacing: -.02em;
  color: #fff;
  line-height: 1;
}
.strip__num small { font-size: .55em; color: var(--coral-400); margin-left: .15em; }
.strip__cap { font-size: .88rem; color: rgba(253,246,234,.78); line-height: 1.45; }

/* ---------- PROBLEM ---------- */
.problem {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.problem__inner { text-align: center; }
.problem__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  text-align: left;
}
@media (max-width: 980px) { .problem__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .problem__grid { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card--soft { background: var(--cream-100); border-color: transparent; }
.card h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
  color: var(--teal-700);
  font-weight: 600;
}
.card p { color: var(--ink-soft); font-size: .95rem; line-height: 1.55; }

.pullquote {
  margin: clamp(3rem, 5vw, 4.5rem) auto 0;
  max-width: 60ch;
  padding: 1.6rem 1.6rem 1.6rem 2rem;
  border-left: 3px solid var(--coral-500);
  text-align: left;
}
.pullquote p {
  font-family: var(--serif);
  font-size: clamp(1.1rem, .6vw + 1rem, 1.35rem);
  line-height: 1.45;
  font-style: italic;
  color: var(--teal-700);
  font-weight: 500;
}
.pullquote cite {
  display: block;
  margin-top: .8rem;
  font-style: normal;
  font-size: .85rem;
  color: var(--ink-mute);
  letter-spacing: .03em;
}

/* ---------- INSIDE / FEATURES GRID ---------- */
.inside {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--cream-100);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.inside .eyebrow--center, .inside .section-title, .inside .section-lede { text-align: center; }
.inside .section-lede { margin-bottom: 3rem; }

.inside__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.1rem;
}
.feature {
  grid-column: span 2;
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: flex; flex-direction: column; gap: .85rem;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.feature:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.feature__num {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--coral-500);
  font-weight: 600;
  letter-spacing: .04em;
}
.feature__head { display: flex; flex-direction: column; gap: .2rem; }
.feature__head h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--teal-700);
  line-height: 1.15;
}
.feature__when {
  font-size: .78rem;
  color: var(--ink-mute);
  font-weight: 500;
  letter-spacing: .02em;
}
.feature p {
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.6;
}
.feature__tag {
  align-self: flex-start;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--coral-500);
  padding: .3rem .65rem;
  border-radius: 999px;
  margin-top: auto;
}

.feature--feature {
  grid-column: span 3;
  background: #fff;
  border-color: var(--line-strong);
}
.feature--feature p { font-size: 1.02rem; }
.feature--cta {
  grid-column: span 3;
  background: var(--teal-700);
  color: #fdf6ea;
  border: none;
  align-items: flex-start;
  justify-content: center;
}
.feature--cta h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: .25rem;
}
.feature--cta p { color: rgba(253,246,234,.75); font-size: 1rem; margin-bottom: .65rem; }
.feature--cta .btn { margin-top: .25rem; }

@media (max-width: 980px) {
  .inside__grid { grid-template-columns: repeat(2, 1fr); }
  .feature, .feature--feature, .feature--cta { grid-column: span 1; }
}
@media (max-width: 540px) {
  .inside__grid { grid-template-columns: 1fr; }
}

/* ---------- HOW IT WORKS ---------- */
.how { padding: clamp(4rem, 8vw, 7rem) 0; }
.how__inner { text-align: center; }
.week {
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .75rem;
  text-align: left;
  counter-reset: day;
}
@media (max-width: 980px) { .week { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px) { .week { grid-template-columns: repeat(2, 1fr); } }
.week__day {
  background: var(--cream-100);
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
  display: flex; flex-direction: column; gap: .4rem;
  border: 1px solid transparent;
  transition: border-color .2s ease, transform .2s ease;
}
.week__day:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.week__dow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral-600);
}
.week__focus {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--teal-700);
  line-height: 1.1;
}
.week__do {
  font-size: .85rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.rules {
  margin: 3rem auto 0;
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}
@media (max-width: 760px) { .rules { grid-template-columns: 1fr; } }
.rule {
  padding: 1.4rem 0 1.4rem 1.6rem;
  border-left: 2px solid var(--coral-500);
}
.rule__num {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--coral-500);
  letter-spacing: .04em;
}
.rule h4 {
  font-size: 1.1rem;
  margin: .25rem 0 .5rem;
  font-weight: 600;
  color: var(--teal-700);
}
.rule p { color: var(--ink-soft); font-size: .92rem; line-height: 1.55; }

/* ---------- TESTIMONIALS ---------- */
.testis {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--teal-700);
  color: #fdf6ea;
}
.testis .eyebrow { color: var(--coral-400); }
.testis .eyebrow__line { background: var(--coral-400); }
.testis .section-title { color: #fff; text-align: center; }
.testis .section-title em { color: var(--coral-400); }
.testis__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 920px) { .testis__grid { grid-template-columns: 1fr; max-width: 600px; margin-left: auto; margin-right: auto; } }
.testi {
  margin: 0;
  background: rgba(253,246,234,.05);
  border: 1px solid rgba(253,246,234,.12);
  backdrop-filter: blur(2px);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.testi__stars {
  color: var(--coral-400);
  letter-spacing: .15em;
  font-size: .95rem;
}
.testi blockquote { margin: 0; }
.testi blockquote p {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.55;
  color: #fff;
  font-weight: 400;
}
.testi figcaption { display: flex; flex-direction: column; gap: .15rem; }
.testi__name { font-weight: 600; color: #fff; }
.testi__role { font-size: .82rem; color: rgba(253,246,234,.65); }
.testis__note {
  margin-top: 2rem;
  font-size: .8rem;
  text-align: center;
  color: rgba(253,246,234,.55);
  font-style: italic;
}

/* ---------- PRICING ---------- */
.pricing {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--cream-50);
}
.pricing__inner { text-align: center; }
.pricing__cards {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
  align-items: stretch;
}
@media (max-width: 880px) { .pricing__cards { grid-template-columns: 1fr; } }

.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  display: flex; flex-direction: column; gap: 1.25rem;
  position: relative;
}
.plan__head h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--teal-700);
}
.plan__head p { color: var(--ink-soft); font-size: .95rem; margin-top: .3rem; }

.plan--ghost {
  background: var(--cream-100);
  border-color: var(--line);
}
.plan__items {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .55rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.plan__items li {
  display: flex; justify-content: space-between; gap: 1rem;
  font-size: .95rem;
  color: var(--ink-soft);
}
.plan__price { font-variant-numeric: tabular-nums; color: var(--ink); font-weight: 500; }
.plan__total {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink-mute);
}
.plan__totalprice {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: line-through;
  text-decoration-color: var(--coral-500);
  text-decoration-thickness: 2px;
  font-variant-numeric: tabular-nums;
}

.plan--featured {
  background: linear-gradient(180deg, #fff, #fbf6ee 100%);
  border: 2px solid var(--teal-700);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.plan__ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--coral-500);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px -4px rgba(225,101,79,.5);
}
.plan__amount {
  display: flex; align-items: baseline; gap: .5rem;
  font-family: var(--serif);
  color: var(--teal-700);
}
.plan__currency { font-size: 1.5rem; font-weight: 500; }
.plan__big {
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.03em;
}
.plan__strike {
  font-size: 1.2rem;
  color: var(--ink-mute);
  text-decoration: line-through;
  text-decoration-color: var(--coral-500);
  font-family: var(--sans);
  font-weight: 500;
  margin-left: .25rem;
}
.plan__features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .65rem;
}
.plan__features li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .95rem;
  color: var(--ink-soft);
}
.plan__features svg { color: var(--coral-500); flex: none; }
.plan__pay {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  font-size: .8rem;
  color: var(--ink-mute);
  text-align: center;
  margin-top: .25rem;
}
.plan__pay svg { color: var(--ink-mute); }

.pricing__guarantee {
  margin: 2.5rem auto 0;
  max-width: 640px;
  font-size: .95rem;
  color: var(--ink-soft);
  text-align: center;
  padding: 1.2rem 1.5rem;
  background: var(--cream-100);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  line-height: 1.55;
}
.pricing__guarantee strong { color: var(--teal-700); }

/* ---------- FAQ ---------- */
.faq { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--cream-100); }
.faq__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.faq__list {
  margin-top: 2.5rem;
  display: flex; flex-direction: column; gap: .6rem;
  text-align: left;
}
.faq details {
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  transition: border-color .2s ease, background .2s ease;
}
.faq details[open] { border-color: var(--line-strong); background: #fff; }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--teal-700);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--coral-500);
  flex: none;
  width: 24px;
  text-align: center;
  transition: transform .25s ease;
}
.faq details[open] summary::after { content: "−"; transform: rotate(180deg); }
.faq p {
  margin-top: .75rem;
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.6;
}

/* ---------- EMAIL CAPTURE ---------- */
.capture {
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.capture__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: var(--cream-100);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
}
@media (max-width: 820px) { .capture__inner { grid-template-columns: 1fr; } }
.capture__copy p {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
}
.capture__form {
  display: flex; flex-direction: column; gap: .75rem;
}
.capture__form input[type="email"] {
  font: inherit;
  font-size: 1rem;
  padding: .95rem 1.1rem;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.capture__form input[type="email"]:focus {
  border-color: var(--coral-500);
  box-shadow: 0 0 0 4px rgba(225,101,79,.15);
}
.capture__small {
  font-size: .82rem;
  color: var(--ink-mute);
  text-align: center;
}

/* ---------- FINAL CTA ---------- */
.finalcta {
  padding: clamp(5rem, 10vw, 8rem) 0;
  text-align: center;
  background:
    radial-gradient(50% 60% at 50% 10%, rgba(225,101,79,.07), transparent 70%),
    var(--cream-50);
  border-top: 1px solid var(--line);
}
.finalcta__title {
  font-size: clamp(2rem, 4vw + .5rem, 3.4rem);
  line-height: 1.05;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.finalcta__lede {
  margin: 1.4rem auto 2rem;
  max-width: 56ch;
  color: var(--ink-soft);
  font-size: clamp(1rem, .35vw + .95rem, 1.15rem);
  line-height: 1.6;
}
.finalcta__sub {
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--ink-mute);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--teal-900);
  color: rgba(253,246,234,.75);
  padding: 3rem 0 2rem;
  font-size: .9rem;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 720px) {
  .site-footer__inner { grid-template-columns: 1fr; }
}
.site-footer__brand {
  display: flex; align-items: center; gap: .9rem;
  color: #fdf6ea;
}
.site-footer__brand .brand__mark { color: var(--coral-400); width: 32px; height: 32px; }
.site-footer__name { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: #fff; }
.site-footer__by { font-size: .82rem; color: rgba(253,246,234,.55); }
.site-footer__nav { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.site-footer__nav a { color: rgba(253,246,234,.7); transition: color .15s ease; }
.site-footer__nav a:hover { color: var(--coral-400); }
.site-footer__legal {
  grid-column: 1 / -1;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(253,246,234,.1);
  font-size: .78rem;
  color: rgba(253,246,234,.5);
  line-height: 1.5;
}

/* ---------- A11y / focus ---------- */
:focus-visible {
  outline: 3px solid var(--coral-500);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
