:root {
  --ink: #102846;
  --ink-2: #1b3453;
  --lavender: #8588de;
  --lavender-soft: #f0f1ff;
  --lavender-mid: #dfe1fb;
  --coral: #ef786f;
  --coral-dark: #df625b;
  --gold: #efbf68;
  --cream: #fffdf9;
  --white: #ffffff;
  --muted: #5f6875;
  --line: #dfe3eb;
  --shadow: 0 24px 70px rgba(16, 40, 70, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(780px, calc(100% - 40px)); margin-inline: auto; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}
h1 { margin-bottom: 26px; font-size: clamp(2.45rem, 5.2vw, 4.15rem); }
h2 { margin-bottom: 28px; font-size: clamp(2rem, 4.2vw, 3.25rem); }
h3 { margin-bottom: 7px; font-size: 1.25rem; }
p { margin-bottom: 22px; }

.hero {
  overflow: hidden;
  padding: 44px 0 74px;
  background:
    radial-gradient(circle at 18% 22%, rgba(133,136,222,.14), transparent 28%),
    radial-gradient(circle at 84% 72%, rgba(239,120,111,.12), transparent 25%),
    var(--lavender-soft);
  text-align: center;
}
.hero-copy { max-width: 1080px; }
.eyebrow, .section-kicker {
  display: inline-block;
  margin-bottom: 18px;
  border-radius: 7px;
  padding: 6px 16px;
  background: var(--lavender);
  color: var(--white);
  font-size: .82rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.25;
}
.section-kicker { padding: 0; background: transparent; color: var(--lavender); font-style: normal; letter-spacing: .09em; text-transform: uppercase; }
.section-kicker.gold { color: var(--gold); }
.hero h1 { max-width: 980px; margin-inline: auto; }
.hero h1 .headline-line { display: inline; }
.hero h1 .headline-outcome { color: var(--lavender); font-weight: 900; }
.hero h1 .headline-without {
  color: var(--coral);
  font-style: italic;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: .09em;
  text-underline-offset: .08em;
}
.hero h1 .headline-time { white-space: nowrap; }
.hero-subtitle { max-width: 770px; margin: 0 auto 32px; color: #25374f; font-size: clamp(1.05rem, 2.1vw, 1.3rem); line-height: 1.5; }

.hero-visual { position: relative; width: min(720px, 94%); margin: 8px auto 0; min-height: 510px; }
.hero-visual img { width: min(550px, 76%); margin: 0 auto; filter: drop-shadow(0 30px 30px rgba(16,40,70,.22)); }
.pain-label, .calm-label {
  position: absolute;
  z-index: 2;
  max-width: 225px;
  border-radius: 14px;
  padding: 13px 17px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 30px rgba(16,40,70,.08);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  backdrop-filter: blur(9px);
}
.pain-label { top: 115px; left: 0; }
.calm-label { right: 0; bottom: 92px; }
.pain-label b, .calm-label b { display: inline-grid; width: 25px; height: 25px; margin-right: 5px; place-items: center; border-radius: 50%; color: white; }
.pain-label b { background: var(--coral); }
.calm-label b { background: #36b67c; }
.included-badge {
  position: absolute;
  top: 32px;
  right: 78px;
  z-index: 3;
  transform: rotate(2deg);
  border-radius: 28px;
  padding: 13px 23px;
  background: var(--coral);
  box-shadow: 0 12px 28px rgba(239,120,111,.28);
  color: white;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.15;
}
.included-badge strong { font-size: 1.15rem; }

.button {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
  border: 0;
  border-radius: 10px;
  padding: 18px 34px;
  background: var(--coral);
  box-shadow: 0 14px 28px rgba(239,120,111,.28), inset 0 -3px 0 rgba(142,54,49,.16);
  color: white;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); background: var(--coral-dark); box-shadow: 0 18px 35px rgba(239,120,111,.34); }
.button:focus-visible, summary:focus-visible, footer a:focus-visible { outline: 4px solid rgba(239,191,104,.52); outline-offset: 4px; }
.microcopy { margin-top: 12px; color: var(--muted); font-size: .84rem; }

.section { padding: 86px 0; }
.white { background: var(--white); }
.lavender { background: var(--lavender-soft); }
.navy { background: #081a33; color: white; }
.soft-navy { background: #102846; color: white; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .88fr); gap: 70px; align-items: center; }
.pain-grid { grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr); }
.copy-col > p:not(.section-kicker) { color: inherit; }
.image-card { overflow: hidden; margin: 0; border-radius: 22px; box-shadow: var(--shadow); }
.image-card img { width: 100%; height: auto; object-fit: cover; }
.image-card.tall { max-width: 480px; margin-inline: auto; }

.contrast-mini { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; margin-top: 46px; }
.contrast-mini > div { min-height: 190px; border-radius: 18px; padding: 28px; background: var(--lavender-soft); text-align: center; }
.contrast-mini strong { display: block; margin: 10px 0 6px; font-size: 1.2rem; }
.contrast-mini p { margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.45; }
.contrast-mini .arrow { color: var(--coral); font-size: 2rem; font-weight: 900; }
.icon { display: inline-grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: white; font-weight: 900; }
.icon.no { background: var(--coral); }
.icon.yes { background: #36b67c; }

.check-list { display: grid; gap: 17px; margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 38px; }
.check-list li::before { position: absolute; top: -.06em; left: 0; color: var(--coral); content: "×"; font-size: 1.55rem; font-weight: 900; }
.story-letter p { font-size: 1.06rem; }
.story-letter .big-line { margin: 34px 0 18px; color: var(--coral); font-size: 1.45rem; font-weight: 900; }

.offer-grid { grid-template-columns: minmax(340px, .86fr) minmax(0, 1fr); }
.offer-image { margin: 0; }
.offer-image img { width: 100%; border-radius: 22px; box-shadow: 0 25px 75px rgba(0,0,0,.32); }
.light-copy > p { color: #dbe2ee; }
.feature-list { display: grid; gap: 24px; margin: 34px 0 10px; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.15); }
.feature-list li > span { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-size: .78rem; font-weight: 900; }
.feature-list strong { display: block; margin-bottom: 4px; color: white; font-size: 1.07rem; }
.feature-list p { margin: 0; color: #bac7d8; font-size: .94rem; line-height: 1.45; }
.gold-button { background: var(--gold); box-shadow: 0 14px 30px rgba(239,191,104,.22), inset 0 -3px 0 rgba(114,73,15,.18); color: #17243b; }
.gold-button:hover { background: #f6ca7b; box-shadow: 0 18px 36px rgba(239,191,104,.28); }

.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.benefit-grid article { display: grid; grid-template-columns: 32px 1fr; gap: 12px; border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.benefit-grid span { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: #e2f6ec; color: #178454; font-weight: 900; }
.benefit-grid p { margin: 0; font-size: .96rem; line-height: 1.48; }
.honest-badge { display: grid; grid-template-columns: 50px 1fr; gap: 17px; align-items: center; margin-top: 32px; border: 1px solid #ccd0ef; border-radius: 16px; padding: 20px; background: rgba(255,255,255,.62); }
.honest-badge > span { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; background: var(--ink); color: var(--gold); font-size: 1.5rem; }
.honest-badge p { margin: 0; font-size: .92rem; line-height: 1.42; }

.steps { margin-top: 42px; }
.steps article { display: grid; grid-template-columns: 105px 1fr; gap: 28px; border-top: 1px solid var(--line); padding: 23px 0; }
.steps article:last-child { border-bottom: 1px solid var(--line); }
.steps span { padding-top: 4px; color: var(--lavender); font-size: .78rem; font-weight: 900; letter-spacing: .08em; }
.steps p { margin: 0; color: var(--muted); }

.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 36px; }
.quote-grid blockquote { margin: 0; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; padding: 26px; background: rgba(255,255,255,.06); color: white; font-size: 1.05rem; font-style: italic; font-weight: 700; line-height: 1.45; }
.quote-note { margin: 18px 0 0; color: #afbdd0; font-size: .75rem; }

.faq { margin-top: 34px; border-bottom: 1px solid var(--line); }
details { border-top: 1px solid var(--line); }
summary { position: relative; padding: 22px 48px 22px 0; cursor: pointer; font-size: 1.04rem; font-weight: 900; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { position: absolute; top: 20px; right: 8px; color: var(--coral); content: "+"; font-size: 1.55rem; line-height: 1; }
details[open] summary::after { content: "−"; }
details p { padding-right: 36px; color: var(--muted); font-size: .96rem; }

.final-offer { background: #081a33; color: white; }
.final-card { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 58px; align-items: center; }
.final-card > div > p:not(.section-kicker):not(.microcopy) { color: #cad5e4; }
.final-card figure { margin: 0; }
.final-card figure img { max-height: 570px; margin-inline: auto; border-radius: 22px; box-shadow: 0 30px 80px rgba(0,0,0,.38); }
.compact-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; margin: 28px 0 4px; padding: 0; list-style: none; }
.compact-list li { position: relative; padding-left: 24px; color: white; font-size: .94rem; }
.compact-list li::before { position: absolute; left: 0; color: var(--gold); content: "✓"; font-weight: 900; }
.microcopy.light { color: #9facc0; }
.author-note { padding: 25px 0; background: #0c203d; color: #c8d2df; text-align: center; }
.author-note p { margin: 0; font-size: .9rem; }

footer { padding: 34px 0 30px; background: #061327; color: #9caabd; font-size: .76rem; }
.footer-row { display: flex; justify-content: space-between; gap: 28px; align-items: center; }
.footer-row p { margin: 0; }
.footer-row nav { display: flex; gap: 20px; }
.footer-row a { text-decoration: none; }
.footer-row a:hover { color: white; }
.disclaimer { width: min(780px, calc(100% - 40px)); margin: 22px auto 0; text-align: center; }
.mobile-cta { display: none; }

@media (max-width: 820px) {
  body { font-size: 17px; }
  .section { padding: 68px 0; }
  .split, .offer-grid, .final-card { grid-template-columns: 1fr; gap: 44px; }
  .pain-grid .image-card { order: -1; }
  .promise-grid .image-card { order: -1; }
  .offer-image { max-width: 540px; margin-inline: auto; }
  .final-card figure { order: -1; }
  .final-card figure img { max-height: 480px; }
  .hero-visual { min-height: 475px; }
  .pain-label { top: 120px; left: 0; }
  .calm-label { right: 0; bottom: 75px; }
  .included-badge { right: 30px; }
}

@media (max-width: 620px) {
  body { padding-bottom: 68px; }
  .container, .narrow { width: min(100% - 28px, 780px); }
  .hero { padding: 28px 0 54px; }
  .eyebrow { border-radius: 5px; padding: 5px 10px; font-size: .68rem; }
  h1 { font-size: clamp(1.55rem, 6.8vw, 1.85rem); line-height: 1.05; }
  h2 { font-size: clamp(1.85rem, 8.7vw, 2.55rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero h1 .headline-line { display: block; }
  .hero h1 .headline-time { margin-top: 4px; white-space: normal; }
  .hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    min-height: 0;
    margin-top: 12px;
  }
  .hero-visual img { grid-column: 1 / -1; width: 100%; height: auto; }
  .pain-label, .calm-label {
    position: static;
    max-width: none;
    padding: 10px;
    font-size: .72rem;
  }
  .pain-label { grid-column: 1; }
  .calm-label { grid-column: 2; }
  .pain-label b, .calm-label b { width: 20px; height: 20px; }
  .included-badge { top: 76px; right: 4px; border-radius: 20px; padding: 10px 14px; font-size: .58rem; }
  .included-badge strong { font-size: .82rem; }
  .button { width: 100%; min-height: 58px; padding: 16px 20px; font-size: .93rem; }
  .image-card, .offer-image { width: 100%; }
  .image-card img, .offer-image img { width: 100%; height: auto; object-fit: contain; }
  .final-card figure img { width: min(88%, 330px); max-height: none; height: auto; }
  .contrast-mini { grid-template-columns: 1fr; gap: 12px; }
  .contrast-mini .arrow { transform: rotate(90deg); text-align: center; }
  .benefit-grid, .quote-grid, .compact-list { grid-template-columns: 1fr; }
  .steps article { grid-template-columns: 82px 1fr; gap: 14px; }
  .feature-list li { grid-template-columns: 44px 1fr; gap: 14px; }
  .feature-list li > span { width: 40px; height: 40px; }
  .footer-row { flex-direction: column; text-align: center; }
  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 10px;
    left: 12px;
    z-index: 20;
    display: block;
    transform: translateY(120%);
    border-radius: 9px;
    padding: 14px 18px;
    background: var(--coral);
    box-shadow: 0 10px 28px rgba(16,40,70,.35);
    color: white;
    font-size: .84rem;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    transition: transform .2s ease;
  }
  .mobile-cta.visible { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
