:root {
  --paper: #fffdf8;
  --ink: #241f25;
  --muted: #6e666e;
  --line: rgba(36, 31, 37, 0.15);
  --lilac: #eadbf5;
  --lilac-strong: #a66bc2;
  --pink: #e77ca6;
  --mint: #ddf3e5;
  --yellow: #fff0a8;
  --shell: min(100% - 96px, 1240px);
  --radius: 28px;
  --ease: cubic-bezier(.22, .72, .24, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img,
video { display: block; max-width: 100%; }

a { color: inherit; }
button { color: inherit; font: inherit; }

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }
.section-shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 50%;
  width: var(--shell);
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transform: translateX(-50%);
  transition: min-height 180ms ease, background 180ms ease, padding 180ms ease, top 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  min-height: 64px;
  padding: 0 20px;
  border: 1px solid rgba(36,31,37,.08);
  border-radius: 16px;
  background: rgba(255,253,248,.96);
  box-shadow: 0 14px 36px rgba(36,31,37,.08);
  backdrop-filter: blur(14px);
}

.wordmark {
  color: var(--ink);
  font-family: "Fredoka", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: .85;
  text-decoration: none;
}

.wordmark span {
  display: block;
  color: #9b62b5;
  font-family: "Caveat", cursive;
  font-size: .72rem;
  font-weight: 600;
}

.site-nav { display: flex; align-items: center; gap: 28px; }

.site-nav a {
  position: relative;
  padding-block: 7px;
  font-size: .72rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--pink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 840px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.hero-photo {
  position: absolute;
  inset: 0 0 0 48%;
  overflow: hidden;
  background: #dfcfc0;
}

.hero-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}

.image-credit {
  position: absolute;
  right: 16px;
  bottom: 14px;
  padding: 5px 8px;
  border-radius: 5px;
  background: rgba(255,253,248,.9);
  color: #594f56;
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(47%, 610px);
  margin-left: max(48px, calc((100vw - 1240px) / 2));
  padding: 164px 42px 78px 0;
}

.eyebrow,
.section-label {
  margin: 0 0 20px;
  color: #9259aa;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(4rem, 6.5vw, 6.7rem);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .88;
}

.hero h1 em {
  display: inline-block;
  color: var(--pink);
  font-family: "Caveat", cursive;
  font-size: .88em;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -.025em;
  transform: rotate(-1deg);
}

.hero-lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: #554e55;
  font-size: 1rem;
  line-height: 1.7;
}

.maker-value {
  max-width: 590px;
  margin: 24px 0 0;
  padding: 15px 0 15px 18px;
  border-left: 3px solid var(--pink);
  color: #514a50;
  font-size: .78rem;
  line-height: 1.6;
}

.maker-value span {
  display: block;
  margin-bottom: 4px;
  color: #8d4e70;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 28px; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 20px;
  border: 0;
  border-radius: 10px;
  font-size: .79rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms var(--ease), box-shadow 160ms var(--ease), background 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible,
.text-link:focus-visible,
.conversion-band a:focus-visible,
.faq-checkout:focus-visible { outline: 3px solid var(--pink); outline-offset: 4px; }

.button-dark { background: var(--ink); color: #fff; box-shadow: 5px 5px 0 var(--pink); }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-size: .76rem; font-weight: 800; text-underline-offset: 5px; }

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 28px 0 0;
  padding: 0;
  color: #5a5259;
  font-size: .62rem;
  font-weight: 700;
  list-style: none;
}

.hero-facts li { display: flex; align-items: center; gap: 8px; }
.hero-facts li::before { width: 6px; height: 6px; border-radius: 50%; background: var(--pink); content: ""; }

.hero-proof {
  position: absolute;
  z-index: 4;
  right: max(28px, calc((100vw - 1320px) / 2));
  bottom: 34px;
  width: 160px;
  margin: 0;
  padding: 10px 10px 8px;
  border: 1px solid rgba(36,31,37,.15);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(36,31,37,.18);
  transform: rotate(2deg);
}

.hero-proof img { width: 100%; max-height: 245px; object-fit: cover; object-position: top; border-radius: 15px; }
.hero-proof figcaption { display: flex; justify-content: space-between; gap: 8px; padding: 9px 2px 2px; color: var(--muted); font-size: .5rem; }
.hero-proof figcaption span { color: #844c9d; font-weight: 800; text-transform: uppercase; }

.js .hero-copy { opacity: 0; transform: translateY(12px); }
.js .hero-photo { opacity: .8; transform: scale(1.012); }
.js.is-ready .hero-copy { opacity: 1; transform: none; transition: opacity 520ms var(--ease), transform 520ms var(--ease); }
.js.is-ready .hero-photo { opacity: 1; transform: none; transition: opacity 620ms var(--ease), transform 680ms var(--ease); }

.conversion-band {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 8vw, 110px);
  padding: 15px max(24px, calc((100vw - 1240px) / 2));
  background: var(--ink);
  color: #fff;
}

.conversion-band p { margin: 0; font-size: .78rem; line-height: 1.45; }
.conversion-band p strong { color: var(--yellow); }
.conversion-band a { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 22px; color: var(--yellow); font-size: .76rem; font-weight: 800; text-underline-offset: 5px; }

.product-strip { padding: 105px 0 118px; overflow: hidden; border-bottom: 1px solid var(--line); }
.strip-head { display: flex; align-items: center; flex-direction: column; gap: 28px; margin-bottom: 38px; text-align: center; }
.strip-head > div:first-child { max-width: 820px; }
.strip-head h2 { margin: 0; font-family: "Fredoka", sans-serif; font-size: clamp(2.4rem, 4vw, 4.15rem); line-height: .98; letter-spacing: -.04em; }
.strip-head > div > p:last-child { max-width: 58ch; margin: 18px auto 0; color: var(--muted); font-size: .86rem; line-height: 1.65; }
.strip-controls { display: flex; gap: 8px; }
.strip-controls button { width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; transition: background 160ms ease, color 160ms ease, transform 160ms var(--ease); }
.strip-controls button:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.strip-controls button:focus-visible,
.mechanism-tabs button:focus-visible,
.menu-toggle:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; }

.product-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 0 max(48px, calc((100vw - 1240px) / 2)) 20px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #c29bd5 transparent;
}

.product-rail figure {
  flex: 0 0 clamp(250px, 23vw, 350px);
  aspect-ratio: 1.08;
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(36,31,37,.1);
  border-radius: 22px;
  scroll-snap-align: start;
  transition: transform 180ms var(--ease);
}

.product-rail figure:nth-child(4n+1) { background: var(--lilac); }
.product-rail figure:nth-child(4n+2) { background: var(--yellow); }
.product-rail figure:nth-child(4n+3) { background: var(--mint); }
.product-rail figure:nth-child(4n+4) { background: #f6dce7; }
.product-rail figure:hover { transform: translateY(-5px); }
.product-rail img { width: 92%; height: 92%; object-fit: contain; }

.mechanism {
  display: grid;
  grid-template-columns: .78fr 1.32fr;
  gap: clamp(54px, 8vw, 120px);
  align-items: start;
  padding-block: 138px;
}

.mechanism-intro { position: sticky; top: 116px; }
.mechanism-intro h2,
.lifestyle-copy h2,
.real-copy h2,
.access-heading h2,
.faq-intro h2,
.closing h2 { margin: 0; font-family: "Fredoka", sans-serif; font-size: clamp(2.8rem, 4.7vw, 5.15rem); line-height: .97; letter-spacing: -.045em; }

.mechanism-intro > p:not(.section-label),
.lifestyle-copy > p:not(.section-label):not(.handwritten),
.real-copy > p,
.access-heading > p:last-child,
.faq-intro > p:last-of-type,
.closing-copy > p:not(.section-label):not(.closing-fine) { max-width: 52ch; margin: 27px 0 0; color: var(--muted); line-height: 1.75; }

.client-benefit { margin-top: 34px; padding: 18px 0 0; border-top: 1px solid var(--line); }
.client-benefit span { color: #9259aa; font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.client-benefit p { max-width: 44ch; margin: 8px 0 0; color: #50494f; font-size: .78rem; line-height: 1.65; }
.mechanism-ui { min-width: 0; }
.mechanism-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.mechanism-tabs button { display: grid; gap: 6px; min-height: 132px; padding: 22px 18px; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; transition: background 160ms ease; }
.mechanism-tabs button:first-child { border-left: 1px solid var(--line); }
.mechanism-tabs button[aria-selected="true"] { background: var(--yellow); }
.mechanism-tabs span { color: #9259aa; font-size: .64rem; font-weight: 800; letter-spacing: .12em; }
.mechanism-tabs strong { font-family: "Fredoka", sans-serif; font-size: 1.18rem; }
.mechanism-tabs small { color: var(--muted); font-size: .67rem; line-height: 1.4; }

.mechanism-progress { position: relative; height: 15px; margin-top: 10px; }
.mechanism-progress span { position: absolute; top: 7px; right: 0; left: 0; height: 1px; background: var(--line); }
.mechanism-progress i { position: absolute; top: 3px; left: calc(16.666% - 5px); width: 10px; height: 10px; border-radius: 50%; background: var(--pink); transition: left 260ms var(--ease), background 260ms ease; }
.mechanism-ui[data-step="2"] .mechanism-progress i { left: calc(50% - 5px); background: var(--lilac-strong); }
.mechanism-ui[data-step="3"] .mechanism-progress i { left: calc(83.333% - 5px); background: #6aac85; }

.mechanism-stage { position: relative; min-height: 590px; margin-top: 2px; overflow: hidden; border-radius: var(--radius); background: var(--lilac); }
.mechanism-panel { position: absolute; inset: 0; display: grid; grid-template-rows: 1fr auto; margin: 0; padding: 36px 36px 26px; opacity: 0; visibility: hidden; transform: translateX(8px); transition: opacity 260ms var(--ease), transform 260ms var(--ease), visibility 260ms; }
.mechanism-panel.is-active { opacity: 1; visibility: visible; transform: none; }
.mechanism-panel.is-leaving { opacity: 0; visibility: visible; transform: translateX(-8px); }
.mechanism-panel figcaption { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid rgba(36,31,37,.16); }
.mechanism-panel figcaption strong { font-size: .85rem; }
.mechanism-panel figcaption span { color: var(--muted); font-size: .72rem; }
.panel-product { display: grid; place-items: center; min-height: 0; }
.panel-product img { width: min(75%, 430px); height: 100%; object-fit: contain; }
.panel-scan { width: 240px; height: 430px; margin: auto; padding: 9px; border-radius: 24px; background: var(--ink); box-shadow: 8px 8px 0 #c18bd7; }
.panel-scan img { width: 100%; height: 100%; border-radius: 17px; object-fit: cover; }
.panel-phone { width: 220px; height: 435px; margin: auto; padding: 8px; overflow: hidden; border: 7px solid var(--ink); border-radius: 27px; background: #fff; box-shadow: 8px 8px 0 var(--yellow); }
.panel-phone img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 14px; }

.lifestyle-band { display: grid; grid-template-columns: 1.36fr .86fr; min-height: 710px; background: #eee4d9; }
.lifestyle-photo { position: relative; min-height: 620px; }
.lifestyle-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.lifestyle-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px, 7vw, 120px); background: var(--lilac); }
.lifestyle-copy h2 { font-size: clamp(2.8rem, 4vw, 4.65rem); }
.handwritten { margin: 34px 0 0; color: #a14f75; font-family: "Caveat", cursive; font-size: clamp(2rem, 3.2vw, 3.3rem); line-height: 1; transform: rotate(-1deg); }

.real-experience { display: grid; grid-template-columns: .9fr .72fr; gap: clamp(70px, 11vw, 170px); align-items: center; padding-block: 148px; }
.real-copy h2 { font-size: clamp(3rem, 4.4vw, 4.8rem); }
.proof-facts { margin: 40px 0 0; border-top: 1px solid var(--line); }
.proof-facts div { display: grid; grid-template-columns: 56px 1fr; gap: 16px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.proof-facts dt { color: #9a60b4; font-size: .64rem; font-weight: 800; letter-spacing: .1em; }
.proof-facts dd { margin: 0; font-size: .82rem; font-weight: 700; }
.video-frame { position: relative; justify-self: center; width: min(100%, 390px); margin: 0; padding: 12px; border: 2px solid var(--ink); border-radius: 32px; background: var(--ink); box-shadow: 12px 12px 0 var(--pink); transition: box-shadow 200ms ease; }
.video-frame.is-playing { box-shadow: 12px 12px 0 var(--lilac-strong); }
.video-frame video { width: 100%; aspect-ratio: 9 / 16; border-radius: 22px; background: #111; object-fit: cover; }
.video-frame figcaption { display: flex; justify-content: space-between; padding: 13px 4px 3px; color: #fff; font-size: .62rem; letter-spacing: .04em; }

.access-offer { padding: 126px 0 132px; background: var(--ink); color: #fff; }
.access-shell { width: var(--shell); margin-inline: auto; }
.access-heading { display: flex; align-items: center; flex-direction: column; gap: 0; margin-bottom: 70px; text-align: center; }
.access-heading .section-label { margin-bottom: 20px; color: var(--pink); }
.access-heading h2 { max-width: 780px; font-size: clamp(3.2rem, 5.5vw, 6rem); }
.access-heading h2 em { color: var(--yellow); font-family: "Caveat", cursive; font-style: normal; font-weight: 600; }
.access-heading > p:last-child { max-width: 68ch; margin-inline: auto; color: #cfc6ce; }
.offer-layout { display: grid; grid-template-columns: .76fr 1.24fr; border-top: 1px solid rgba(255,255,255,.22); border-bottom: 1px solid rgba(255,255,255,.22); }
.plan-panel { position: relative; padding: 58px 62px 58px 0; border-right: 1px solid rgba(255,255,255,.22); }
.plan-day-mark { position: absolute; top: 60px; right: 54px; width: 90px; height: 12px; }
.plan-day-mark::before { position: absolute; top: 6px; right: 0; left: 0; height: 1px; background: rgba(255,255,255,.24); content: ""; }
.plan-day-mark span { position: absolute; z-index: 1; top: 2px; left: 34px; width: 9px; height: 9px; border-radius: 50%; background: var(--pink); }
.plan-day-mark i { position: absolute; z-index: 1; top: 2px; left: 66px; width: 9px; height: 9px; border: 1px solid var(--yellow); border-radius: 50%; }
.plan-kicker,
.included-kicker { margin: 0; color: var(--pink); font-size: .65rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.plan-panel h3 { margin: 12px 0 0; font-family: "Fredoka", sans-serif; font-size: 2rem; letter-spacing: -.03em; }
.plan-price { display: flex; align-items: flex-start; gap: 14px; margin-top: 42px; }
.plan-price > span { margin-top: 14px; color: var(--yellow); font-size: 1.2rem; font-weight: 800; }
.plan-price strong { display: flex; align-items: flex-start; color: var(--yellow); font-family: "Fredoka", sans-serif; font-size: clamp(5.2rem, 8vw, 7.8rem); font-weight: 600; letter-spacing: -.07em; line-height: .72; }
.plan-price small { margin: 10px 6px 0 0; font-family: "Manrope", sans-serif; font-size: .95rem; letter-spacing: 0; }
.plan-payment { margin: 26px 0 0; color: #d7cfd6; font-size: .8rem; }
.plan-payment span { margin-inline: 7px; color: var(--pink); }
.button-checkout { margin-top: 34px; background: var(--yellow); color: var(--ink); box-shadow: 6px 6px 0 var(--pink); }
.button-checkout:hover { background: #fff5bd; box-shadow: 8px 8px 0 var(--pink); }
.secure-note { display: flex; align-items: flex-start; gap: 11px; margin: 30px 0 0; color: #bfb7be; font-size: .65rem; line-height: 1.5; }
.secure-note svg { flex: 0 0 20px; width: 20px; fill: none; stroke: var(--pink); stroke-width: 1.7; }
.secure-note strong { display: block; color: #fff; }
.included-panel { padding: 58px 0 58px 62px; }
.included-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 42px; margin: 30px 0 0; padding: 0; list-style: none; }
.included-list li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; min-height: 76px; align-items: start; padding: 17px 0; border-top: 1px solid rgba(255,255,255,.16); }
.included-list li:nth-child(-n+2) { border-top-color: rgba(255,255,255,.35); }
.included-list li > span { color: var(--pink); font-size: .58rem; font-weight: 800; letter-spacing: .08em; }
.included-list p { margin: -3px 0 0; color: #cfc7ce; font-size: .76rem; line-height: 1.55; }
.included-list strong { color: #fff; font-size: .84rem; }

.faq { display: grid; grid-template-columns: .68fr 1.2fr; gap: clamp(64px, 10vw, 145px); padding-block: 146px; }
.faq-intro { position: sticky; top: 116px; align-self: start; }
.faq-intro h2 { font-size: clamp(3rem, 4.25vw, 4.75rem); }
.faq-intro h2 em { color: var(--lilac-strong); font-family: "Caveat", cursive; font-style: normal; font-weight: 600; }
.faq-checkout { display: inline-flex; align-items: center; gap: 20px; margin-top: 30px; color: #9259aa; font-size: .74rem; font-weight: 800; text-underline-offset: 5px; }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 30px; cursor: pointer; font-family: "Fredoka", sans-serif; font-size: 1.05rem; font-weight: 500; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; flex: 0 0 28px; width: 28px; height: 28px; place-items: center; border: 1px solid var(--ink); border-radius: 50%; transition: transform 180ms ease, background 180ms ease; }
.faq-list details[open] summary span { background: var(--yellow); transform: rotate(45deg); }
.faq-list details p { max-width: 62ch; margin: -3px 0 26px; color: var(--muted); font-size: .88rem; line-height: 1.7; }

.closing { display: grid; grid-template-columns: 1.02fr .98fr; min-height: 650px; margin-bottom: 48px; overflow: hidden; border-radius: 30px; background: var(--lilac); }
.closing-photo { position: relative; min-height: 610px; overflow: hidden; background: #dfcfc0; }
.closing-photo > img { width: 100%; height: 100%; object-fit: cover; object-position: 48% center; }
.closing-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(48px, 6vw, 96px); }
.closing h2 { font-size: clamp(3rem, 4.3vw, 4.8rem); }
.closing h2 em { color: #a24d75; font-family: "Caveat", cursive; font-style: normal; font-weight: 600; }
.closing .button { align-self: flex-start; }
.closing-fine { margin: 22px 0 0; color: #776d76; font-size: .62rem; }

.site-footer { width: var(--shell); min-height: 110px; display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: center; gap: 20px; margin-inline: auto; color: var(--muted); font-size: .64rem; }
.site-footer p:nth-child(2) { text-align: center; }
.site-footer p:last-child { text-align: right; }
.footer-mark { color: var(--ink); font-family: "Fredoka", sans-serif; font-size: .9rem; font-weight: 600; line-height: .8; }
.footer-mark span { display: block; color: #9b62b5; font-family: "Caveat", cursive; font-size: .62rem; }

@media (max-width: 1080px) {
  :root { --shell: min(100% - 56px, 940px); }
  .site-nav { gap: 20px; }
  .hero-copy { width: 51%; margin-left: 30px; padding-right: 28px; }
  .hero-photo { left: 52%; }
  .hero h1 { font-size: clamp(4rem, 7.6vw, 5.5rem); }
  .maker-value { font-size: .72rem; }
  .hero-proof { width: 135px; }
  .mechanism { grid-template-columns: 1fr; gap: 52px; padding-block: 110px; }
  .mechanism-intro { position: static; }
  .lifestyle-band { grid-template-columns: 1fr; }
  .lifestyle-photo { min-height: 620px; }
  .lifestyle-copy { padding: 80px max(28px, calc((100vw - 900px) / 2)); }
  .offer-layout { grid-template-columns: .86fr 1.14fr; }
  .plan-panel { padding-right: 38px; }
  .included-panel { padding-left: 38px; }
  .included-list { grid-template-columns: 1fr; }
  .included-list li:nth-child(2) { border-top-color: rgba(255,255,255,.16); }
  .faq { grid-template-columns: 1fr; gap: 55px; }
  .faq-intro { position: static; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100% - 36px); --radius: 20px; }
  html { scroll-padding-top: 80px; }
  .site-header { top: 8px; width: calc(100vw - 32px); min-height: 58px; padding-inline: 16px; border: 1px solid rgba(36,31,37,.09); border-radius: 15px; background: rgba(255,253,248,.95); backdrop-filter: blur(14px); }
  .site-header.is-scrolled { top: 8px; min-height: 58px; padding-inline: 16px; }
  .menu-toggle { width: 38px; height: 38px; display: grid; place-content: center; gap: 5px; padding: 0; border: 0; background: transparent; }
  .menu-toggle > span:not(.sr-only) { width: 20px; height: 2px; background: var(--ink); transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: absolute; top: 66px; right: 0; left: 0; display: none; gap: 0; padding: 10px; border: 1px solid rgba(36,31,37,.08); border-radius: 15px; background: var(--paper); box-shadow: 0 18px 40px rgba(36,31,37,.12); }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 13px 10px; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border-bottom: 0; }

  .hero { min-height: 1040px; }
  .hero-copy { width: auto; margin: 0 21px; padding: 104px 0 0; }
  .hero h1 { max-width: 360px; font-size: clamp(3.4rem, 15.8vw, 4.45rem); line-height: .88; }
  .hero-lead { max-width: 360px; margin-top: 21px; font-size: .88rem; line-height: 1.6; }
  .maker-value { max-width: 352px; margin-top: 18px; padding-block: 10px; font-size: .68rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; margin-top: 22px; }
  .hero-facts { max-width: 330px; gap: 7px 14px; margin-top: 21px; font-size: .56rem; }
  .hero-photo { top: 650px; right: 0; bottom: 0; left: 0; }
  .hero-photo > img { object-position: 54% center; }
  .hero-proof { right: 14px; bottom: 16px; width: 108px; padding: 7px; border-radius: 18px; }
  .hero-proof img { max-height: 160px; border-radius: 11px; }
  .hero-proof figcaption { font-size: .4rem; }
  .hero .image-credit { right: auto; left: 14px; }

  .conversion-band { min-height: 0; align-items: flex-start; flex-direction: column; gap: 12px; padding: 20px 20px 22px; }
  .conversion-band p { font-size: .71rem; }
  .conversion-band a { font-size: .7rem; }
  .product-strip { padding: 78px 0 86px; }
  .strip-head { align-items: center; gap: 20px; margin-bottom: 28px; }
  .strip-head h2 { font-size: 2.35rem; }
  .strip-head > div > p:last-child { font-size: .75rem; }
  .strip-controls button { width: 40px; height: 40px; }
  .product-rail { gap: 12px; padding-inline: 18px; }
  .product-rail figure { flex-basis: 74vw; border-radius: 18px; }

  .mechanism { gap: 38px; padding-block: 88px; }
  .mechanism-intro h2,
  .lifestyle-copy h2,
  .real-copy h2,
  .access-heading h2,
  .faq-intro h2,
  .closing h2 { font-size: clamp(2.55rem, 12.5vw, 3.55rem); }
  .mechanism-tabs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mechanism-tabs button { min-height: 118px; padding: 18px 10px; }
  .mechanism-tabs strong { font-size: 1rem; }
  .mechanism-tabs small { font-size: .58rem; }
  .mechanism-stage { min-height: 510px; }
  .mechanism-panel { padding: 25px 20px 21px; }
  .mechanism-panel figcaption { flex-direction: column; gap: 6px; }
  .panel-scan { width: 205px; height: 365px; }
  .panel-phone { width: 185px; height: 365px; }

  .lifestyle-photo { min-height: 505px; }
  .lifestyle-photo img { object-position: 35% center; }
  .lifestyle-copy { padding: 70px 22px 76px; }
  .real-experience { grid-template-columns: 1fr; gap: 58px; padding-block: 90px; }
  .video-frame { width: min(88%, 350px); }

  .access-offer { padding: 84px 0 88px; }
  .access-heading { margin-bottom: 48px; }
  .access-heading > p:last-child { font-size: .82rem; }
  .offer-layout { grid-template-columns: 1fr; }
  .plan-panel { padding: 42px 0 48px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
  .plan-day-mark { top: 42px; right: 0; width: 72px; }
  .plan-price { margin-top: 38px; }
  .plan-price strong { font-size: 6rem; }
  .button-checkout { width: 100%; gap: 17px; text-align: center; }
  .included-panel { padding: 48px 0 30px; }
  .included-list { column-gap: 0; }
  .included-list li { min-height: 68px; }

  .faq { gap: 46px; padding-block: 90px; }
  .faq-list summary { min-height: 74px; gap: 18px; font-size: .95rem; line-height: 1.35; }
  .faq-list details p { font-size: .8rem; }
  .closing { grid-template-columns: 1fr; width: calc(100% - 24px); margin-bottom: 24px; border-radius: 24px; }
  .closing-photo { min-height: 430px; }
  .closing-photo > img { object-position: 43% center; }
  .closing-copy { padding: 56px 24px 64px; }
  .closing .button { width: 100%; }
  .site-footer { min-height: 150px; grid-template-columns: 1fr auto; gap: 14px; }
  .site-footer p:nth-child(2) { grid-column: 1 / -1; grid-row: 2; text-align: left; }
}

@media (max-width: 390px) {
  .hero { min-height: 1080px; }
  .hero-photo { top: 688px; }
  .hero h1 { font-size: 3.42rem; }
  .strip-controls { align-self: center; }
  .mechanism-tabs button { min-height: 110px; padding-inline: 7px; }
  .plan-day-mark { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .js .hero-copy,
  .js .hero-photo { opacity: 1; transform: none; }
  .product-rail figure,
  .button { transform: none; }
}
