:root {
  --ink: #20272d;
  --paper: #fffefa;
  --cream: #fff8e9;
  --cobalt: #315fa3;
  --deep: #244879;
  --coral: #f06d69;
  --marigold: #f7c75f;
  --mint: #cce8dc;
  --mint-deep: #8dcbb6;
  --lilac: #cfc3ee;
  --white: #fff;
  --shadow: 5px 5px 0 var(--ink);
  --max: 1160px;
  --read: 760px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: Sarabun, system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.7;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

h1, h2, h3, summary, .cta, .section-no, .eyebrow {
  font-family: Anuphan, system-ui, sans-serif;
}
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 5.3vw, 76px); line-height: 1.14; letter-spacing: -.02em; margin-bottom: 26px; }
h2 { font-size: clamp(32px, 3.4vw, 48px); line-height: 1.27; margin-bottom: 24px; }
h3 { font-size: clamp(22px, 2.1vw, 30px); line-height: 1.35; }
p { margin-bottom: 14px; }
a { color: inherit; }
strong { font-weight: 700; }

.skip-link { position: fixed; left: 12px; top: -60px; background: var(--deep); color: white; padding: 12px 18px; z-index: 999; }
.skip-link:focus { top: 12px; }
.site-head {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: rgba(255,254,250,.94);
  border-bottom: 2px solid var(--ink);
  position: relative;
  z-index: 10;
}
.site-head img { width: 116px; height: 54px; object-fit: contain; display: block; }

.wide { width: min(var(--max), calc(100% - 44px)); margin-inline: auto; }
.narrow { width: min(var(--read), calc(100% - 44px)); margin-inline: auto; }
.section { padding: 105px 0; position: relative; overflow: hidden; }
.section-no { font-size: 13px; letter-spacing: .16em; font-weight: 700; color: var(--cobalt); margin-bottom: 18px; }
.section-no::after { content: ""; display: inline-block; width: 56px; height: 2px; background: currentColor; vertical-align: middle; margin-left: 12px; }
.paper-grid { background-color: var(--cream); background-image: linear-gradient(rgba(49,95,163,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(49,95,163,.08) 1px, transparent 1px); background-size: 28px 28px; }
.paper-dots { background-color: var(--paper); background-image: radial-gradient(rgba(32,39,45,.12) .8px, transparent .8px); background-size: 17px 17px; }

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0,1.04fr) minmax(390px,.96fr);
  gap: 68px;
  align-items: center;
  padding: 76px max(32px, calc((100vw - var(--max))/2));
  overflow: hidden;
}
.hero::after { content: ""; position: absolute; right: -90px; bottom: -120px; width: 430px; height: 430px; background: var(--mint); border: 2px solid var(--ink); transform: rotate(8deg); z-index: 0; }
.hero-copy, .hero-media { position: relative; z-index: 1; }
.eyebrow { display: inline-block; background: var(--marigold); border: 2px solid var(--ink); padding: 7px 14px; font-size: 13px; font-weight: 700; letter-spacing: .13em; transform: rotate(-1.5deg); box-shadow: 3px 3px 0 var(--ink); }
.callout { color: var(--deep); font-weight: 700; font-size: 20px; margin-bottom: 2px; }
.hero h1 { margin-top: 18px; max-width: 760px; text-decoration: underline; text-decoration-color: var(--coral); text-decoration-thickness: .17em; text-underline-offset: .08em; text-decoration-skip-ink: none; }
.hero-lines { padding-left: 18px; border-left: 5px solid var(--mint-deep); margin: 24px 0; }
.hero-lines p { margin: 2px 0; }
.mini-flow { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 26px 0; font-size: 15px; }
.mini-flow span { background: var(--paper); border: 1.5px solid var(--ink); padding: 7px 10px; font-weight: 600; }
.mini-flow b { color: var(--coral); }
.hero-promise { color: var(--deep); font-size: clamp(30px, 3vw, 45px); }
.price-note, .trust-line { text-align: center; }
.price-note { margin: 15px 0 0; text-decoration: line-through; color: #69747d; }
.trust-line { font-size: 14px; margin: 8px 0 0; font-weight: 600; }
.preorder-ribbon { display: inline-block; margin: 18px 0 0; padding: 9px 13px; background: var(--marigold); border: 2px solid var(--ink); box-shadow: 3px 3px 0 var(--ink); transform: rotate(-.6deg); font-weight: 600; }
.preorder-ribbon strong { text-transform: uppercase; color: var(--deep); }

.cta {
  width: min(620px,100%);
  margin: 34px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 14px 22px;
  background: var(--deep);
  color: white;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
  text-decoration: none;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease;
  cursor: pointer;
}
.cta:hover { transform: translate(2px,2px); box-shadow: 3px 3px 0 var(--ink); }
.cta:focus-visible { outline: 4px solid var(--marigold); outline-offset: 3px; }
.cta span { font-size: 19px; font-weight: 700; }
.cta small { font-family: Sarabun, sans-serif; font-size: 13px; opacity: .88; font-weight: 500; }

.hero-media { display: grid; gap: 28px; }
.video-placeholder { aspect-ratio: 16/9; background: var(--ink); color: white; border: 2px solid var(--ink); box-shadow: 8px 8px 0 var(--coral); display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; transform: rotate(1deg); }
.video-tag { position: absolute; top: 14px; left: 14px; background: var(--mint); color: var(--ink); padding: 5px 10px; font: 700 11px Anuphan,sans-serif; letter-spacing: .12em; }
.video-placeholder button { width: 66px; height: 66px; border-radius: 50%; border: 2px solid white; background: var(--coral); color: var(--ink); font-size: 25px; padding-left: 6px; }
.video-placeholder p { font-weight: 700; margin: 15px 0 0; }
.video-placeholder small { opacity: .7; }
.scrapbook-card { position: relative; background: var(--paper); border: 2px solid var(--ink); box-shadow: var(--shadow); }
.tape { position: absolute; width: 104px; height: 29px; background: rgba(247,199,95,.78); top: -16px; left: 50%; transform: translateX(-50%) rotate(-2deg); z-index: 2; clip-path: polygon(3% 9%,97% 0,100% 92%,0 100%); }
.phone-note { width: 72%; justify-self: end; padding: 22px; transform: rotate(-2deg); }
.phone-shell { width: 210px; margin: auto; background: var(--ink); border: 2px solid var(--ink); border-radius: 25px; padding: 11px; box-shadow: 4px 4px 0 var(--cobalt); }
.phone-top { width: 70px; height: 7px; border-radius: 9px; background: #687078; margin: 0 auto 9px; }
.phone-screen { background: var(--cream); border-radius: 13px; padding: 18px 12px; min-height: 290px; }
.screen-label { font: 700 10px Anuphan,sans-serif; color: var(--cobalt); letter-spacing: .08em; }
.phone-screen h3 { font-size: 19px; margin: 8px 0 13px; }
.phrase-card { background: var(--paper); border: 1.5px solid var(--ink); padding: 10px; margin-bottom: 9px; box-shadow: 2px 2px 0 var(--mint-deep); }
.phrase-card strong, .phrase-card span { display: block; font-size: 12px; line-height: 1.45; }
.phrase-card button { margin-top: 8px; border: 0; background: var(--cobalt); color: white; padding: 5px 8px; font-weight: 700; }
.phrase-card.muted { opacity: .62; }
.caption { text-align: center; font-size: 12px; margin: 10px 0 0; color: #5f6b73; }

blockquote { margin: 26px auto; padding: 18px 24px; background: var(--mint); border-left: 6px solid var(--cobalt); font-size: 1.16em; font-weight: 600; }
.pain-section { background: var(--paper); }
.moment-stack { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin: 40px 0 54px; }
.moment-stack article { border: 2px solid var(--ink); padding: 22px; background: var(--cream); box-shadow: 4px 4px 0 var(--mint-deep); }
.moment-stack article:nth-child(2), .moment-stack article:nth-child(3) { background: var(--mint); }
.moment-stack strong { font-family: Anuphan,sans-serif; font-size: 20px; }
.moment-stack p { margin: 6px 0 0; }
.center-story { text-align: center; }
.center-story blockquote { text-align: left; }
.marker-text { display: inline; background: linear-gradient(transparent 57%, var(--marigold) 57%); font: 700 clamp(25px,3vw,38px) Anuphan,sans-serif; }

.solution-section { border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; }
.word-scraps { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
.word-scraps span { padding: 7px 11px; border: 1.5px solid var(--ink); background: var(--paper); font-weight: 600; box-shadow: 2px 2px 0 var(--lilac); }
.word-scraps span:nth-child(2n) { transform: rotate(1.2deg); background: var(--mint); }
.word-scraps span:nth-child(3n) { transform: rotate(-1.2deg); background: var(--marigold); }
.thought-flow { padding: 32px; display: flex; flex-direction: column; gap: 7px; text-align: center; transform: rotate(1deg); }
.thought-flow span { border-bottom: 1px solid #d9ddd8; padding: 6px; }
.thought-flow b { color: var(--coral); }
.thought-flow strong { font: 700 28px Anuphan,sans-serif; color: #a43b38; }
.top-space { margin-top: 90px; }
.statement { color: var(--deep); background: var(--marigold); padding: 8px 14px; display: inline-block; transform: rotate(-.5deg); }
.routine-demo { margin-top: 58px; display: grid; grid-template-columns: .75fr 1.25fr; gap: 34px; align-items: center; }
.routine-copy { background: var(--deep); color: white; padding: 32px; border: 2px solid var(--ink); box-shadow: var(--shadow); }
.audio-cards { display: grid; gap: 13px; }
.audio-cards article { padding: 18px 20px; border: 2px solid var(--ink); background: var(--paper); display: grid; grid-template-columns: 1fr auto; align-items: center; box-shadow: 3px 3px 0 var(--mint-deep); }
.audio-cards strong, .audio-cards span { display: block; grid-column: 1; }
.audio-cards button { grid-column: 2; grid-row: 1/3; background: var(--cobalt); color: white; border: 0; padding: 9px 11px; }
.method-board { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 64px auto; }
.method-board > div { padding: 30px; border: 2px solid var(--ink); box-shadow: var(--shadow); }
.method-board span, .method-board strong { display: block; }
.method-board strong { font: 700 22px/1.5 Anuphan,sans-serif; margin-top: 12px; }
.old-method { background: #f8d8d5; }
.new-method { background: var(--mint); }

.science-section { background: var(--deep); color: white; }
.science-section .section-no { color: var(--marigold); }
.science-section h2, .science-section h3 { color: white; }
.science-section .statement { color: var(--ink); }
.method-strip { margin: 34px auto; padding: 22px; background: var(--mint); color: var(--ink); border: 2px solid var(--ink); box-shadow: 5px 5px 0 var(--coral); text-align: center; font: 700 clamp(18px,2.2vw,28px) Anuphan,sans-serif; transform: rotate(-.5deg); }
.research-link { display: block; width: fit-content; margin: 36px auto 24px; padding: 13px 18px; border: 2px solid white; color: white; text-decoration: none; font-weight: 700; }
.disclaimer { font-size: 14px; opacity: .78; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.35); }
.science-section .cta { background: var(--marigold); color: var(--ink); }

.benefits-section { border-bottom: 2px solid var(--ink); }
.lead { text-align: center; }
.transformation-list { display: grid; gap: 15px; margin: 44px 0; }
.transformation-list article { display: grid; grid-template-columns: 1fr 40px 1fr; align-items: center; gap: 12px; padding: 23px 26px; background: var(--paper); border: 2px solid var(--ink); box-shadow: 3px 3px 0 var(--mint-deep); }
.transformation-list b { text-align: center; color: var(--coral); font-size: 24px; }
.transformation-list strong { color: var(--deep); font: 700 19px/1.55 Anuphan,sans-serif; }
.transformation-list .featured { background: var(--mint); transform: rotate(-.4deg); }
.routine-ribbon { margin: 60px 0 0; padding: 42px; background: var(--paper); border: 2px solid var(--ink); text-align: center; }
.routine-ribbon div { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 24px 0; }
.routine-ribbon span { background: var(--mint); border: 1.5px solid var(--ink); padding: 7px 12px; }

.before-after-section { background: var(--cream); }
.warm-copy { text-align: center; margin: 36px auto 52px; }
.compare-table { border: 2px solid var(--ink); box-shadow: var(--shadow); }
.compare-table > div { display: grid; grid-template-columns: 1fr 1fr; }
.compare-table span, .compare-table strong { padding: 17px 20px; border-bottom: 1px solid var(--ink); }
.compare-table span:first-child, .compare-table strong:first-child { border-right: 1px solid var(--ink); }
.compare-table .compare-head { background: var(--ink); color: white; font-family: Anuphan,sans-serif; font-size: 20px; }
.compare-table > div:last-child span { border-bottom: 0; }
.compare-table > div:not(.compare-head) span:last-child { background: var(--mint); }
.day-story { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; margin: 80px 0; align-items: start; }
.day-story article { padding: 38px; }
.before-card { transform: rotate(-.7deg); }
.after-card { transform: rotate(.7deg); background: var(--mint); }
.card-label { font: 700 13px Anuphan,sans-serif; letter-spacing: .14em; color: var(--cobalt); }
.sound-list { list-style: none; padding: 0; font-weight: 600; }
.sound-list li { padding: 5px 0; border-bottom: 1px dashed rgba(32,39,45,.35); }
.after-manifesto { padding-top: 20px; }

.proof-placeholder { background: var(--mint); text-align: center; border-block: 2px solid var(--ink); }
.proof-empty { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 38px; }
.proof-empty span { background: rgba(255,255,255,.56); border: 2px dashed var(--ink); padding: 26px 18px; font-weight: 700; }

.offer-section { background-color: var(--cream); }
.offer-section > .wide > h2 { text-align: center; }
.product-name { color: var(--deep); }
.offer-stack { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin: 50px 0; }
.offer-stack article { background: var(--paper); border: 2px solid var(--ink); padding: 28px; box-shadow: 4px 4px 0 var(--mint-deep); }
.offer-stack article:nth-child(3n) { box-shadow: 4px 4px 0 var(--marigold); }
.offer-stack article:nth-child(4n) { box-shadow: 4px 4px 0 var(--lilac); }
.offer-stack .offer-core { grid-column: 1/-1; background: var(--deep); color: white; box-shadow: 6px 6px 0 var(--coral); }
.offer-stack h3 { margin: 6px 0; }
.offer-stack .offer-core h3 { color: white; }
.offer-stack article > div > span { font: 700 12px Anuphan,sans-serif; letter-spacing: .1em; color: var(--cobalt); }
.offer-stack .offer-core > div > span { color: var(--marigold); }
.value-recap { width: min(760px,100%); padding: 42px; margin: 80px auto 0; transform: rotate(-.4deg); }
.value-recap h3 { text-align: center; }
.value-recap ul { list-style: none; padding: 0; margin: 30px 0; }
.value-recap li { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; border-bottom: 1px dashed #9aa2a8; }
.value-recap > p { text-align: center; }
.total-value, .founding-price { display: block; text-align: center; font: 700 clamp(40px,6vw,72px) Anuphan,sans-serif; color: var(--deep); }
.total-value { text-decoration: line-through; text-decoration-color: var(--coral); }
.founding-price { color: #a03f3b; text-decoration: none; }

.guarantee-section { background: var(--mint); text-align: center; border-block: 2px solid var(--ink); }
.guarantee-seal { width: 145px; height: 145px; margin: 25px auto; border: 5px double var(--ink); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--marigold); font: 700 60px/1 Anuphan,sans-serif; transform: rotate(-7deg); box-shadow: 4px 4px 0 var(--ink); }
.guarantee-seal span { font-size: 20px; }
.seal-caption { font-weight: 700; color: var(--deep); }

.faq-section details { background: var(--paper); border: 2px solid var(--ink); margin-bottom: 13px; box-shadow: 3px 3px 0 var(--mint-deep); }
.faq-section summary { padding: 20px 24px; cursor: pointer; font-size: 19px; font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-section summary::after { content: "+"; font-size: 27px; color: var(--cobalt); }
.faq-section details[open] summary::after { content: "−"; }
.faq-section details > :not(summary) { margin-inline: 24px; }
.faq-section details > :last-child { margin-bottom: 22px; }

.final-section { background: var(--deep); color: white; }
.final-section h2, .final-section h3 { color: white; }
.meefai { width: min(290px,64vw); height: auto; object-fit: contain; display: block; margin: -30px auto 28px; }
.regular-price { text-decoration: line-through; opacity: .7; }
.final-price { font: 700 30px Anuphan,sans-serif; color: var(--marigold); }
.final-section .cta { background: var(--marigold); color: var(--ink); }
.ps-section { background: var(--cream); }
.ps-section > .scrapbook-card { padding: 46px; transform: rotate(.4deg); }

footer { padding: 46px 24px; text-align: center; background: var(--ink); color: white; }
footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px 22px; font-size: 14px; }
footer a { color: white; }

/* 2026 visual rhythm pass: tighter reading groups, paper collage anchors and one CTA system. */
.section > .narrow,
.section > .wide { position: relative; z-index: 1; }

.center-story {
  width: min(700px, 100%);
  margin-inline: auto;
}
.center-story > p {
  width: min(620px, 100%);
  margin: 0 auto 8px;
}
.center-story > h2,
.center-story > h3,
.center-story > blockquote { margin-top: 28px; }
.pain-section .center-story,
.after-manifesto {
  padding: clamp(28px, 5vw, 48px);
  background: rgba(255,248,233,.78);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--lilac);
  transform: rotate(-.25deg);
}
.warm-copy { width: min(680px,100%); }
.warm-copy p { margin-bottom: 7px; }
.warm-copy h3 { margin: 28px 0 0; }

.pain-section::after,
.benefits-section::before,
.faq-section::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  background: url('/images/meefai-master.png') center/contain no-repeat;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(4px 5px 0 rgba(32,39,45,.18));
}
.pain-section::after { right: max(18px,calc((100vw - 1220px)/2)); top: 95px; transform: rotate(8deg); }
.benefits-section::before { left: max(14px,calc((100vw - 1220px)/2)); bottom: 74px; transform: rotate(-9deg); }
.faq-section::after { right: max(12px,calc((100vw - 1220px)/2)); bottom: 42px; width: 145px; height: 145px; transform: rotate(7deg); }

.family-transformation {
  margin: 52px auto 62px;
  padding: 12px;
  background: var(--paper);
  transform: rotate(-.3deg);
  box-shadow: 8px 8px 0 var(--coral);
}
.family-transformation img { display: block; width: 100%; height: auto; }
.family-transformation figcaption {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 15px 12px 7px;
  font-size: 15px;
  line-height: 1.45;
}
.family-transformation figcaption span:last-child { text-align: right; }
.family-transformation b { display: block; color: var(--deep); font-family: Anuphan,sans-serif; letter-spacing: .08em; }

.cta,
.pay-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--marigold);
  background-image:
    radial-gradient(circle at 12% 30%, rgba(255,255,255,.72) 0 11%, transparent 12% 100%),
    radial-gradient(circle at 82% 18%, rgba(240,109,105,.72) 0 16%, transparent 17% 100%),
    radial-gradient(circle at 70% 92%, rgba(207,195,238,.84) 0 18%, transparent 19% 100%),
    radial-gradient(circle at 25% 105%, rgba(204,232,220,.95) 0 22%, transparent 23% 100%);
  background-size: 170% 170%, 145% 155%, 160% 150%, 155% 145%;
  color: var(--ink);
  animation: mindle-lava 8s ease-in-out infinite alternate;
}
.cta span,
.cta small { position: relative; z-index: 1; }
.science-section .cta,
.final-section .cta { background-color: var(--marigold); color: var(--ink); }
@keyframes mindle-lava {
  0% { background-position: -28% 12%, 118% -18%, 96% 125%, -25% 122%; }
  48% { background-position: 34% 56%, 60% 42%, 25% 95%, 48% 55%; }
  100% { background-position: 112% 78%, -18% 105%, -20% -20%, 112% -18%; }
}

.total-value,
.founding-price { font-size: clamp(34px, 4.8vw, 56px); }
.final-price { font-size: clamp(24px, 3vw, 28px); }

footer { padding-block: 38px; }
.footer-powered { margin: 0 0 4px; font: 500 17px Anuphan,sans-serif; letter-spacing: .01em; }
.footer-powered strong { color: var(--marigold); }
footer > p:not(.footer-powered) { margin-bottom: 18px; opacity: .72; font-size: 14px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .cta, .pay-button { animation: none; }
}

@media (max-width: 900px) {
  body { font-size: 17px; }
  .section { padding: 78px 0; }
  .hero { grid-template-columns: 1fr; padding: 55px 28px 80px; gap: 50px; }
  .hero-media { grid-template-columns: minmax(0,1fr) minmax(250px,.72fr); align-items: center; }
  .phone-note { width: 100%; }
  .split, .routine-demo { grid-template-columns: 1fr; gap: 35px; }
  .thought-flow { width: min(580px,100%); margin-inline: auto; }
  .method-board { grid-template-columns: 1fr; }
  .offer-stack { grid-template-columns: 1fr; }
  .offer-stack .offer-core { grid-column: auto; }
}

@media (max-width: 640px) {
  body { font-size: 16px; line-height: 1.68; }
  h1 { font-size: 42px; }
  h2 { font-size: 30px; }
  h3 { font-size: 21px; }
  .site-head { height: 66px; }
  .site-head img { width: 104px; height: 48px; }
  .wide, .narrow { width: min(100% - 30px, var(--max)); }
  .section { padding: 66px 0; }
  .hero { min-height: 0; padding: 48px 18px 70px; }
  .hero::after { width: 260px; height: 260px; right: -100px; bottom: -90px; }
  .callout { font-size: 17px; }
  .mini-flow { gap: 6px; }
  .mini-flow span { font-size: 13px; }
  .hero-media { grid-template-columns: 1fr; }
  .phone-note { width: min(300px,90%); justify-self: center; }
  .cta { min-height: 68px; padding: 12px 15px; box-shadow: 4px 4px 0 var(--ink); }
  .cta span { font-size: 17px; }
  .moment-stack, .day-story { grid-template-columns: 1fr; }
  .moment-stack { gap: 13px; }
  .routine-demo, .method-board { margin-block: 45px; }
  .audio-cards article { grid-template-columns: 1fr; }
  .audio-cards button { grid-column: 1; grid-row: auto; width: fit-content; margin-top: 10px; }
  .transformation-list article { grid-template-columns: 1fr; text-align: left; }
  .transformation-list b { transform: rotate(90deg); text-align: left; margin-left: 18px; }
  .routine-ribbon { padding: 28px 20px; }
  .compare-table { overflow-x: auto; }
  .compare-table > div { min-width: 0; }
  .compare-table span, .compare-table strong { padding: 12px 10px; font-size: 13px; line-height: 1.5; }
  .day-story article, .value-recap, .ps-section > .scrapbook-card { padding: 30px 22px; }
  .proof-empty { grid-template-columns: 1fr; }
  .value-recap li { font-size: 14px; }
  .pain-section .center-story, .after-manifesto { padding: 27px 19px; }
  .family-transformation { margin-block: 42px 48px; padding: 7px; }
  .family-transformation figcaption { gap: 9px; padding: 12px 6px 5px; font-size: 12px; }
  .pain-section::after, .benefits-section::before, .faq-section::after { width: 88px; height: 88px; opacity: .2; }
}
