/* ═══════════════════════════════════════════════════════════
   ZepSquat — zepsquat.com landing page
   Mobile-first. Desktop layer at ≥1024px.
   Tokens mirror the in-app design system (M3 Expressive).
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #FDFCF5;
  --ink: #1B1C17;
  --ink-2: #47483D;
  --teal: #006A6A;
  --teal-deep: #00504F;
  --lime: #DAFC50;
  --lime-ink: #151F00;
  --orange: #F57C1F;
  --apricot: #FFE0C2;
  --purple: #6D4FA3;
  --lavender: #E5D4FF;
  --sky: #83E7FF;

  --pad: 24px;
  --font: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --spring: cubic-bezier(0.3, 1.6, 0.5, 1);
  --rise: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
h1, h2, h3, p { margin: 0; }

.zs-icon {
  font-family: 'Material Symbols Rounded';
  font-weight: normal; font-style: normal;
  line-height: 1; display: inline-block;
  letter-spacing: normal; text-transform: none; white-space: nowrap;
  font-variation-settings: 'FILL' 1, 'wght' 500, 'opsz' 24;
  user-select: none;
  /* Hidden until the icon font is confirmed loaded (html.fonts-ready via JS) —
     otherwise a slow/failed load shows the raw ligature words ("download"). */
  visibility: hidden;
}
.fonts-ready .zs-icon { visibility: visible; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--teal); color: var(--bg);
  padding: 12px 20px; border-radius: 0 0 12px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  /* Real glass: low opacity so content shows through, high blur + saturation
     so what shows through reads as frosted rather than muddy. */
  background: rgba(253, 252, 245, 0.55);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-bottom: 1px solid rgba(21, 31, 0, .07);
}
.site-header__logo { display: flex; flex: none; align-items: center; padding: 10px 10px 10px 0; margin: -10px 0; }
.site-header__logo img { height: 19px; width: auto; }

.cta-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teal); color: var(--bg);
  font-weight: 700; font-size: 13px; text-decoration: none;
  padding: 9px 16px; border-radius: 999px;
  transition: transform .4s var(--spring), box-shadow .4s ease, background .3s ease;
}
.cta-pill .zs-icon { font-size: 15px; }
.cta-pill__long { display: none; }
.cta-pill:hover {
  transform: translateY(-2px);
  background: var(--teal-deep);
  box-shadow: 0 14px 28px -14px rgba(0, 106, 106, .7);
}

/* ── Shared section furniture ───────────────────────────── */
.section { padding: 0 var(--pad); margin-top: 60px; }

.eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--teal);
}
.section__title {
  font-size: 30px; font-weight: 800; letter-spacing: -.02em;
  line-height: 1.1; margin-top: 10px; margin-bottom: 26px;
}

.badge-appstore {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--ink); color: var(--bg);
  padding: 12px 22px 12px 17px; border-radius: 17px;
  text-decoration: none;
  transition: transform .4s var(--spring), box-shadow .4s ease;
}
.badge-appstore svg { width: 24px; height: 24px; flex: none; }
.badge-appstore__text { display: flex; flex-direction: column; line-height: 1.15; }
.badge-appstore__small { font-size: 10px; font-weight: 500; opacity: .8; }
.badge-appstore__big { font-size: 17px; font-weight: 700; }
.badge-appstore:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -16px rgba(27, 28, 23, .6);
}

/* ── Stickers ───────────────────────────────────────────── */
.sticker { position: absolute; pointer-events: none; user-select: none; z-index: 2; }

@keyframes zsFloat1 {
  from { transform: translateY(-9px) rotate(-5deg); }
  to   { transform: translateY(11px) rotate(6deg); }
}
@keyframes zsFloat2 {
  from { transform: translateY(10px) rotate(7deg); }
  to   { transform: translateY(-10px) rotate(-4deg); }
}
@keyframes zsFloat3 {
  from { transform: translateY(-7px) rotate(3deg) scale(1.04); }
  to   { transform: translateY(9px) rotate(-7deg) scale(.97); }
}
.float-1 { animation: zsFloat1 9s ease-in-out infinite alternate; animation-delay: -2s; }
.float-2 { animation: zsFloat2 11s ease-in-out infinite alternate; animation-delay: -5s; }
.float-3 { animation: zsFloat3 8s ease-in-out infinite alternate; animation-delay: -3.5s; }

/* ── Hero ───────────────────────────────────────────────── */
.hero { padding: 30px var(--pad) 60px; position: relative; }
/* Atmosphere — the app lives in gradients; the page shouldn't be flat around it. */
.hero::before {
  content: ""; position: absolute; z-index: -1;
  inset: -12% 0 25% 35%;
  background: radial-gradient(closest-side, rgba(218, 252, 80, .32), rgba(218, 252, 80, 0) 72%);
}
.hero::after {
  content: ""; position: absolute; z-index: -1;
  inset: 55% 55% -10% 0;
  background: radial-gradient(closest-side, rgba(131, 231, 255, .2), rgba(131, 231, 255, 0) 70%);
}

.hero__title {
  font-size: 42px; font-weight: 800; line-height: 1.04; letter-spacing: -.02em;
}
.hero__title .hl {
  background: linear-gradient(transparent 60%, var(--lime) 60%);
}
/* Word-by-word entrance. Initial state lives INSIDE the keyframes, so
   prefers-reduced-motion (animation: none) leaves every word visible. */
.hero__title .w { display: inline-block; animation: zsWord .7s var(--rise) both; }
@keyframes zsWord {
  from { opacity: 0; transform: translateY(.4em); }
  to   { opacity: 1; transform: none; }
}
.hero__title .w:nth-child(2) { animation-delay: .07s; }
.hero__title .w:nth-child(3) { animation-delay: .14s; }
.hero__title .w:nth-child(4) { animation-delay: .21s; }
.hero__title .hl .w:nth-child(1) { animation-delay: .3s; }
.hero__title .hl .w:nth-child(2) { animation-delay: .38s; }
.hero__sub {
  font-size: 16.5px; line-height: 1.55; color: var(--ink-2);
  margin: 18px 0 26px;
}

.checkin { margin-bottom: 26px; }
.checkin__label { font-size: 14.5px; font-weight: 700; margin-bottom: 12px; }

.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: inherit; font-size: 14px; font-weight: 700; line-height: 1;
  color: var(--ink-2);
  background: rgba(253, 252, 245, .6);
  border: 2px solid rgba(71, 72, 61, .3);
  border-radius: 999px;
  padding: 13px 17px; min-height: 44px;
  cursor: pointer;
  transition: transform .55s var(--spring), background .35s ease,
              color .35s ease, border-color .35s ease, box-shadow .45s ease;
}
.chip .zs-icon { font-size: 18px; }
.chip:hover { transform: translateY(-3px) scale(1.04); }
.chip.is-selected {
  color: var(--lime-ink);
  border-color: rgba(21, 31, 0, .12);
  transform: scale(1.07);
  box-shadow: 0 12px 26px -14px rgba(21, 31, 0, .5);
}
.chip.is-selected[data-mood="rough"] { background: var(--apricot); }
.chip.is-selected[data-mood="okay"]  { background: var(--sky); }
.chip.is-selected[data-mood="good"]  { background: var(--lime); }

.checkin__response {
  font-size: 14.5px; font-weight: 600; color: var(--teal);
  min-height: 22px; margin-top: 14px;
}

/* Hero stage — phone + stickers */
.hero__stage {
  position: relative;
  height: 560px;
  margin-top: 44px;
  display: flex; align-items: center; justify-content: center;
}
.hero__glow {
  position: absolute; inset: 6% 0 10%;
  background: radial-gradient(closest-side, rgba(218, 252, 80, .55), rgba(218, 252, 80, 0));
  border-radius: 50%;
  z-index: 0;
}
.sticker--d2    { width: 72px; top: 0; left: 2%; }
.sticker--s2    { display: none; }
.sticker--d1    { width: 60px; bottom: 24%; left: -2%; }
.sticker--d3    { width: 52px; top: 34%; right: 3%; }
.sticker--sn    { width: 86px; bottom: 1%; left: 4%; }
.sticker--woman { width: 132px; bottom: -2%; right: -3%; }

.phone__hint {
  position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  font-size: 12.5px; font-weight: 700; color: var(--ink-2);
  background: rgba(253, 252, 245, .9);
  border-radius: 999px; padding: 7px 14px;
  box-shadow: 0 8px 20px -12px rgba(21, 31, 0, .5);
  opacity: 0; transition: opacity .5s ease;
  z-index: 5;
}
.phone__hint.is-on { opacity: 1; }
.phone__hint .zs-icon { font-size: 15px; color: var(--teal); }

/* ── Phone shell ────────────────────────────────────────── */
.phone { position: relative; z-index: 3; }
.phone__shell {
  background: var(--lime-ink);
  border-radius: 44px; padding: 9px;
  box-shadow: 0 46px 90px -34px rgba(0, 80, 80, .5);
}
.phone--hero { width: 256px; transform: rotate(3deg); }
.phone--hero .phone__shell { border-radius: 44px; }
/* The screen is the query container. Note: an element cannot query itself,
   so every cqw-based font-size lives on a CHILD (.scr, .statusbar), never here. */
.phone__screen {
  border-radius: 36px; overflow: hidden;
  aspect-ratio: 9 / 19.5;
  width: 100%;
  position: relative;
  container-type: inline-size;
  background: var(--bg);
}

.phone--card { width: 240px; margin: 0 auto; }
.phone--card .phone__shell { border-radius: 40px; padding: 8px; }
.phone--card .phone__screen { border-radius: 33px; }

/* ── Live app screens ───────────────────────────────────── */
.zsapp { background: linear-gradient(165deg, #F0F7DC 0%, #ECF6C9 42%, #DFC5F4 100%); transition: background .8s ease; }
.zsapp[data-mood="rough"] { background: linear-gradient(165deg, #FCF4E9 0%, #FFE0C2 42%, #F5CBDE 100%); }
.zsapp[data-mood="okay"]  { background: linear-gradient(165deg, #F0F7DC 0%, #E4F3E9 42%, #DFC5F4 100%); }
.zsapp[data-mood="good"]  { background: linear-gradient(165deg, #F7FDE2 0%, #E4FB9E 42%, #A8E9D6 100%); }

.statusbar {
  position: absolute; top: 0; left: 0; right: 0; height: 9%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6cqw; z-index: 10;
  font-size: 4.25cqw; font-weight: 700; color: var(--lime-ink);
  transition: opacity .3s ease;
}
.statusbar__island {
  position: absolute; left: 50%; top: 24%; transform: translateX(-50%);
  width: 32%; height: 46%; background: #000; border-radius: 999px;
}
.statusbar__right { display: flex; gap: .3em; }
.statusbar__right .zs-icon { font-size: 1.1em; }

.scr {
  position: absolute; inset: 0;
  padding: 11% 6cqw 6%;
  display: flex; flex-direction: column; align-items: center;
  font-size: 3.4cqw;
  opacity: 0; visibility: hidden;
  transform: translateX(28%);
  transition: transform .62s var(--rise), opacity .42s ease, visibility .62s;
}
.scr.is-active { opacity: 1; visibility: visible; transform: none; }
.scr.is-out { transform: translateX(-22%); opacity: 0; }

/* Check-in screen */
.scr__date  { font-size: 1.05em; color: rgba(21, 31, 0, .66); font-weight: 600; }
.scr__greet { font-size: 1.62em; font-weight: 500; margin-top: .28em; }
.scr__name  { font-size: 2.5em; font-weight: 800; line-height: 1.05; }
.scr__q {
  font-size: 1.82em; font-weight: 800; line-height: 1.15;
  text-align: center; margin-top: .75em; max-width: 15ch;
}
.scr__hint { font-size: 1.02em; color: rgba(21, 31, 0, .6); margin-top: .6em; text-align: center; }

.carousel {
  align-self: stretch;          /* fills the content box, then the negative
                                   margins bleed it to the full 100cqw screen */
  margin: auto -6cqw 0;
  overflow: hidden;
  padding: 4cqw 0;
}
.carousel__track {
  display: flex; gap: 6cqw; align-items: center;
  transform: translateX(calc(27cqw - var(--sel, 2) * 52cqw));
  transition: transform .6s var(--rise);
}
.mood {
  flex: 0 0 46cqw;
  display: flex; flex-direction: column; align-items: center; gap: .5em;
  background: rgba(255, 255, 255, .55);
  border: none; border-radius: 7cqw; cursor: pointer;
  padding: 4cqw 2cqw; font-family: inherit;
  transform: scale(.8); opacity: .5;
  transition: transform .6s var(--spring), opacity .5s ease, background .5s ease, box-shadow .5s ease;
}
.mood.is-sel {
  transform: scale(1); opacity: 1;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 4cqw 8cqw -4cqw rgba(21, 31, 0, .35);
}
.mood__face { width: 62%; display: block; }
.mood__face svg { width: 100%; height: auto; display: block; }
.mood__label { font-size: 1.28em; font-weight: 700; color: rgba(21, 31, 0, .55); }
.mood.is-sel .mood__label { color: var(--lime-ink); font-weight: 800; }

.scr__select {
  margin-top: auto;
  background: var(--teal); color: #fff;
  font-family: inherit; font-size: 1.3em; font-weight: 700;
  border: none; border-radius: 999px;
  padding: .82em 2.6em; cursor: pointer;
  transition: transform .45s var(--spring), background .3s ease;
}
.scr__select:hover { transform: scale(1.05); background: var(--teal-deep); }
@keyframes zsPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 106, 106, .45); }
  50%      { transform: scale(1.04); box-shadow: 0 0 0 2.5cqw rgba(0, 106, 106, 0); }
}
.scr__select.is-pulsing { animation: zsPulse 1.6s ease-out 2; }

/* Plan screen — live recreation of the app's Today screen */
.scr--plan { align-items: stretch; }
.scr--plan .mp__head { margin-top: 5cqw; }
.scr--plan .mp__moves { margin-top: 4cqw; }
.scr__planfoot {
  margin-top: auto; text-align: center;
  font-size: 1.05em; font-weight: 600; color: rgba(21, 31, 0, .55);
}
.scr__moodchip {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: .45em;
  padding: .5em 1.1em;
  border-radius: 999px;
  font-size: 1.16em; font-weight: 700; color: var(--lime-ink);
  background: var(--lime);
  transition: background .5s ease;
  white-space: nowrap;
}
.scr__moodchip-face { width: 1.35em; height: 1.35em; flex: none; }
.zsapp[data-mood="rough"] .scr__moodchip { background: var(--apricot); }
.zsapp[data-mood="okay"]  .scr__moodchip { background: #7FDDD0; }
.zsapp[data-mood="good"]  .scr__moodchip { background: var(--lime); }

/* Session screen (live rep counting).
   Also used standalone inside a feature card, so it carries its own layout
   rather than relying on .scr. */
.scr--session {
  display: flex; flex-direction: column; align-items: center;
  justify-content: flex-start;
  padding: 11% 6cqw 6%;
  font-size: 3.4cqw;
  background: linear-gradient(180deg, #C5ECDD 0%, #D2DEE5 52%, #DFE8CB 100%);
}
/* Standalone copy inside a feature card — fills the screen, always visible. */
.scr--session.is-live {
  position: absolute; inset: 0;
  opacity: 1; visibility: visible; transform: none;
}
.sess__set  { font-size: 1.15em; font-weight: 700; color: rgba(21, 31, 0, .7); margin-top: 2%; }
.sess__goal { font-size: 2.3em; font-weight: 800; letter-spacing: -.02em; margin-top: .1em; }
.sess__ring { position: relative; width: 46%; margin-top: 4%; }
.sess__ring svg { width: 100%; height: auto; transform: rotate(-90deg); display: block; }
.ring__track {
  fill: #fff; stroke: rgba(0, 106, 106, .22); stroke-width: 9;
  stroke-dasharray: 46 15; stroke-linecap: round;
}
.ring__fill {
  fill: none; stroke: var(--teal); stroke-width: 10; stroke-linecap: round;
  stroke-dasharray: 327; stroke-dashoffset: 327;
  transition: stroke-dashoffset .35s var(--rise);
}
.sess__count {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.1em; font-weight: 800; color: var(--teal);
  font-variant-numeric: tabular-nums;
}
.sess__figure {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 62%; height: auto;
}

.confetti { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.confetti i {
  position: absolute; display: block;
  width: 2.4cqw; height: 2.4cqw; border-radius: 50%;
  opacity: 0; transform: scale(0);
}
.confetti i.is-pop { animation: zsPop .9s var(--rise) forwards; }
@keyframes zsPop {
  0%   { opacity: 0; transform: scale(0) translateY(0); }
  35%  { opacity: 1; transform: scale(1.15) translateY(-6cqw); }
  100% { opacity: 0; transform: scale(.9) translateY(-16cqw); }
}

/* Done screen */
.scr--done {
  background: linear-gradient(170deg, #E4FB9E 0%, var(--lime) 55%, #A8E9D6 100%);
  justify-content: center; gap: .5em;
}
.done__tick { font-size: 5em; color: var(--teal); }
.done__title { font-size: 2em; font-weight: 800; text-align: center; line-height: 1.15; }
.done__sub { font-size: 1.15em; color: rgba(21, 31, 0, .7); text-align: center; }
.done__streak {
  display: inline-flex; align-items: center; gap: .4em;
  background: rgba(255, 255, 255, .75); border-radius: 999px;
  padding: .5em 1.2em; font-size: 1.2em; font-weight: 700; margin-top: .8em;
}
.done__streak .zs-icon { font-size: 1.3em; color: var(--orange); }

/* ── How it works ───────────────────────────────────────── */
.how__grid { display: flex; flex-direction: column; gap: 16px; }
.step { padding: 26px; border-radius: 28px; }
.step__head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.step__chip {
  width: 46px; height: 46px; border-radius: 16px;
  display: grid; place-items: center; flex: none;
}
.step__chip .zs-icon { font-size: 23px; }
.step__num { font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.step h3 { font-size: 21px; font-weight: 800; margin-bottom: 8px; }
.step p { font-size: 15px; line-height: 1.5; }

.step--1 { background: var(--lime); }
.step--1 .step__chip { background: rgba(21, 31, 0, .1); }
.step--1 .step__chip .zs-icon { color: var(--lime-ink); }
.step--1 .step__num { color: rgba(21, 31, 0, .78); } /* .55 was 3.68:1 on lime — AA fail at 13px */
.step--1 h3 { color: var(--lime-ink); }
.step--1 p { color: rgba(21, 31, 0, .78); }

.step--2 { background: var(--apricot); }
.step--2 .step__chip { background: rgba(245, 124, 31, .18); }
.step--2 .step__chip .zs-icon { color: var(--orange); }
.step--2 .step__num { color: rgba(245, 124, 31, .8); }
.step--2 p { color: rgba(60, 35, 10, .78); }

.step--3 { background: var(--lavender); }
.step--3 .step__chip { background: rgba(109, 79, 163, .16); }
.step--3 .step__chip .zs-icon { color: var(--purple); }
.step--3 .step__num { color: rgba(109, 79, 163, .8); }
.step--3 p { color: rgba(45, 30, 75, .78); }

/* ── Rep band ───────────────────────────────────────────── */
.band {
  position: relative; overflow: hidden;
  background: var(--teal); border-radius: 32px;
  padding: 36px 28px 120px;
}
.band__badge {
  display: inline-flex; align-items: center; gap: .45em;
  background: var(--lime); color: var(--lime-ink);
  font-size: 11.5px; font-weight: 800; letter-spacing: .12em;
  padding: 7px 12px; border-radius: 999px;
}
.band__badge .zs-icon { font-size: 14px; }
.band__num {
  font-size: 130px; font-weight: 800; line-height: .84; letter-spacing: -.05em;
  color: var(--lime); font-variant-numeric: tabular-nums;
  margin-top: 14px; display: flex; align-items: baseline; gap: .12em;
}
.band__unit { font-size: 22px; font-weight: 700; color: rgba(218, 252, 80, .85); letter-spacing: 0; }
.band__text {
  font-size: 17px; font-weight: 600; line-height: 1.45; color: var(--bg);
  max-width: 30ch; margin-top: 18px;
}
.band__figure {
  position: absolute; right: -10px; bottom: -14px; width: 130px;
}

/* ── Features ───────────────────────────────────────────── */
.features__grid { display: flex; flex-direction: column; gap: 18px; }
/* Height is content-driven — these screens are live and their lower half
   carries the payoff, so nothing gets cropped. */
.feat {
  border-radius: 30px; padding: 28px 28px 0;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.feat h3 { font-size: 21px; font-weight: 800; margin-bottom: 8px; }
.feat > p { font-size: 15px; line-height: 1.5; }
.feat__note {
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 600; margin-top: 10px; opacity: .6;
}
.feat__note .zs-icon { font-size: 14px; }
/* flex:none is load-bearing — as a shrinkable flex item the phone gets
   squashed vertically and aspect-ratio is overridden, so it looks fat. */
.feat .phone { margin-top: auto; padding-top: 20px; flex: none; }
/* In a card the screen is clipped by the card's bottom edge, so the figure
   is lifted to sit fully inside the visible area. */
.phone--card .sess__figure { bottom: 3%; width: 58%; }

.feat--1 { background: var(--lime); color: var(--lime-ink); }
.feat--1 > p { color: rgba(21, 31, 0, .78); }
.feat--1 .phone__shell { box-shadow: 0 34px 70px -30px rgba(21, 31, 0, .55); }

.feat--2 { background: var(--apricot); }
.feat--2 > p { color: rgba(60, 35, 10, .78); }
.feat--2 .phone__shell { box-shadow: 0 34px 70px -30px rgba(245, 124, 31, .5); }

.feat--3 { background: var(--lavender); }
.feat--3 > p { color: rgba(45, 30, 75, .78); }
.feat--3 .phone__shell { box-shadow: 0 34px 70px -30px rgba(109, 79, 163, .45); }

.feat--4 { background: var(--sky); }
.feat--4 > p { color: rgba(0, 60, 80, .8); }
.feat--4 .phone__shell { box-shadow: 0 34px 70px -30px rgba(0, 106, 130, .45); }

/* ── Live mini screens inside the feature cards ─────────── */
.mini {
  position: absolute; inset: 0;
  font-size: 3.4cqw;
  display: flex; flex-direction: column;
  padding: 9% 6cqw 6%;
  overflow: hidden;
}

/* 2 · pick a mood → loading → today's plan */
.mini--plan { background: linear-gradient(170deg, #F7FDE2 0%, #EBF7D6 45%, #E4D9F7 100%); }
.mp__stage {
  position: absolute; inset: 0;
  padding: 11% 6cqw 8%;
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(5%);
  transition: opacity .4s ease, transform .55s var(--rise);
  pointer-events: none;
}
.mp__stage.is-on { opacity: 1; transform: none; }

.mp__stage--pick { align-items: center; }
.mp__q { font-size: 1.55em; font-weight: 800; text-align: center; line-height: 1.2; max-width: 15ch; }
.mp__hint { font-size: 1em; color: rgba(21, 31, 0, .58); margin-top: .6em; text-align: center; }
.mp__select {
  margin-top: auto;
  background: var(--teal); color: #fff;
  font-size: 1.25em; font-weight: 700;
  border-radius: 999px; padding: .8em 2.5em;
  transition: transform .4s var(--spring);
}
/* the "tap" beat, right before the plan builds */
.mood.is-tapped { animation: zsTap .5s var(--spring); }
@keyframes zsTap {
  0%   { transform: scale(1); }
  45%  { transform: scale(.93); }
  100% { transform: scale(1); }
}
.mp__select.is-tapped { animation: zsTap .5s var(--spring); }

.mp__stage--load { align-items: center; justify-content: center; gap: 1.1em; }
.mp__spinner {
  width: 13cqw; height: 13cqw; border-radius: 50%;
  border: 2.6cqw solid rgba(0, 106, 106, .16);
  border-top-color: var(--teal);
  animation: zsSpin .85s linear infinite;
}
@keyframes zsSpin { to { transform: rotate(360deg); } }
.mp__stage--load p { font-size: 1.2em; font-weight: 700; color: var(--teal); }

.mp__head { display: flex; align-items: center; justify-content: space-between; }
.mp__label { font-size: .98em; font-weight: 800; letter-spacing: .1em; color: rgba(21, 31, 0, .5); }
.mp__time {
  display: inline-flex; align-items: center; gap: .3em;
  font-size: 1.02em; font-weight: 700;
  background: rgba(255, 255, 255, .8); border-radius: 999px; padding: .35em .8em;
}
.mp__time .zs-icon { font-size: 1.1em; }
.mp__moves { list-style: none; margin: 4cqw 0 0; padding: 0; display: flex; flex-direction: column; gap: 3cqw; }
.mp__move {
  display: flex; align-items: center; gap: 3cqw;
  border-radius: 5cqw; padding: 2cqw 4cqw;
  opacity: 0; transform: translateX(10%);
  transition: opacity .45s ease, transform .6s var(--rise);
}
.mp__move.is-in { opacity: 1; transform: none; }
.mp__move:nth-child(1) { background: var(--lime); }
.mp__move:nth-child(2) { background: #B8ECE0; }
.mp__move:nth-child(3) { background: var(--lavender); }
.mp__move img { width: 15cqw; height: auto; flex: none; }
.mp__name { font-size: 1.2em; font-weight: 800; flex: 1; line-height: 1.15; }
.mp__reps { font-size: 1em; font-weight: 700; opacity: .6; white-space: nowrap; }

/* 3 · a calendar filling with smileys */
.mini--cal { background: linear-gradient(180deg, #FDFCF5 0%, #F2F7E2 100%); }
.mc__head { display: flex; align-items: center; justify-content: space-between; }
.mc__month { font-size: 1.65em; font-weight: 800; }
.mc__streak {
  display: inline-flex; align-items: center; gap: .3em;
  background: var(--lime); border-radius: 999px;
  padding: .35em .85em; font-size: 1.15em; font-weight: 800;
}
.mc__streak .zs-icon { font-size: 1.15em; color: #E8590C; }
.mc__dow {
  display: grid; grid-template-columns: repeat(7, 1fr);
  margin-top: 5cqw; font-size: .92em; font-weight: 700;
  color: rgba(21, 31, 0, .4); text-align: center;
}
.mc__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1.5cqw; margin-top: 2cqw; }
.mc__cell { aspect-ratio: 1; }
.mc__cell svg {
  width: 100%; height: 100%; display: block;
  opacity: 0; transform: scale(.3);
}
.mc__cell.is-on svg {
  opacity: 1; transform: none;
  transition: opacity .3s ease, transform .55s var(--spring);
}
.mc__foot {
  font-size: 1.02em; font-weight: 600; color: rgba(21, 31, 0, .68);
  margin-top: 5cqw; text-align: center;
}

/* 4 · reminder settings, and the nudge it sends */
.mini--rem { background: linear-gradient(180deg, #E8F5FF 0%, #F6FBFF 55%, #FDFCF5 100%); }
.mr__notif {
  position: absolute; top: 4%; left: 5%; right: 5%; z-index: 3;
  display: flex; gap: 2.6cqw; align-items: center;
  background: rgba(255, 255, 255, .94);
  border-radius: 5cqw; padding: 3cqw;
  box-shadow: 0 3cqw 8cqw -3cqw rgba(0, 40, 60, .38);
  opacity: 0; transform: translateY(-150%);
  transition: transform .75s var(--spring), opacity .4s ease;
}
.mr__notif.is-in { opacity: 1; transform: none; }
.mr__icon { width: 9cqw; height: 9cqw; border-radius: 2.4cqw; flex: none; }
.mr__text { display: flex; flex-direction: column; line-height: 1.28; }
.mr__text b { font-size: 1.05em; font-weight: 800; }
.mr__text span { font-size: .98em; color: rgba(21, 31, 0, .68); }
.mr__label { font-size: 1.02em; font-weight: 700; color: rgba(0, 60, 80, .7); margin-top: 20%; }
.mr__time { display: flex; align-items: baseline; gap: .18em; font-size: 3.2em; font-weight: 800; letter-spacing: -.03em; }
.mr__time span { font-size: .33em; font-weight: 700; opacity: .6; }
.mr__row {
  display: flex; align-items: center; justify-content: space-between;
  background: #fff; border-radius: 4cqw; padding: 3cqw 4cqw;
  margin-top: 5cqw; font-size: 1.12em; font-weight: 700;
}
.mr__toggle {
  width: 12cqw; height: 6.8cqw; border-radius: 999px; flex: none;
  background: rgba(21, 31, 0, .18); position: relative;
  transition: background .4s ease;
}
.mr__toggle i {
  position: absolute; top: .7cqw; left: .7cqw;
  width: 5.4cqw; height: 5.4cqw; border-radius: 50%; background: #fff;
  box-shadow: 0 1cqw 2cqw rgba(0, 0, 0, .22);
  transition: transform .45s var(--spring);
}
.mr__toggle.is-on { background: var(--teal); }
.mr__toggle.is-on i { transform: translateX(5.2cqw); }
.mr__days { display: flex; gap: 1.6cqw; margin-top: 4cqw; }
.mr__days span {
  flex: 1; aspect-ratio: 1; display: grid; place-items: center;
  border-radius: 50%; font-size: .98em; font-weight: 700;
  background: rgba(255, 255, 255, .7); color: rgba(21, 31, 0, .4);
}
.mr__days span.on { background: var(--sky); color: var(--lime-ink); }

/* ── Exercises ──────────────────────────────────────────── */
.exercises { text-align: center; position: relative; }
.exercises::before {
  content: ""; position: absolute; z-index: -1;
  inset: -30% 0 -160% 0;
  background: radial-gradient(closest-side, rgba(229, 212, 255, .3), rgba(229, 212, 255, 0) 72%);
}
.exercises__sub {
  font-size: 16px; line-height: 1.55; color: var(--ink-2);
  max-width: 56ch; margin: 14px auto 0;
}
.marquee {
  margin-top: 30px; overflow: hidden;
  display: flex; flex-direction: column; gap: 14px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__row {
  display: flex; gap: 14px; width: max-content;
  animation: zsSlide var(--dur, 46s) linear infinite;
}
.marquee__row--rev { animation-direction: reverse; }
.marquee:hover .marquee__row { animation-play-state: paused; }
@keyframes zsSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--shift, -50%)); }
}
.exc {
  margin: 0; flex: none; width: 132px;
  border-radius: 24px; padding: 12px 8px 12px;
  display: flex; flex-direction: column; align-items: center;
  transition: transform .45s var(--spring);
}
.exc:hover { transform: translateY(-6px) scale(1.05); }
.exc img { width: 74%; height: auto; aspect-ratio: 260 / 462; } /* reserve space pre-load — no card-height pop */
.exc figcaption {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 800; margin-top: 6px; line-height: 1.2;
}
.exc__badge {
  font-size: 9px; font-weight: 800; letter-spacing: .07em;
  background: rgba(21, 31, 0, .15); border-radius: 999px; padding: 3px 7px;
}
.exc--lime     { background: var(--lime); color: var(--lime-ink); }
.exc--apricot  { background: var(--apricot); }
.exc--lavender { background: var(--lavender); }
.exc--sky      { background: var(--sky); }

/* ── Manifesto ──────────────────────────────────────────── */
.manifesto {
  position: relative; overflow: hidden;
  background: var(--teal-deep);
  padding: 64px 30px;
  margin-top: 60px;
}
.manifesto p {
  color: var(--lime);
  font-size: 23px; font-weight: 600; line-height: 1.45; letter-spacing: -.01em;
  max-width: 30ch;
  position: relative; z-index: 1;
}
.manifesto strong { font-weight: 800; }
.manifesto__sn { width: 66px; top: 18px; right: 18px; }
.manifesto__d2 { display: none; }

/* ── Pricing ────────────────────────────────────────────── */
.pricing {
  position: relative; text-align: center;
  padding: 64px 28px 56px; margin-top: 0;
}
.pricing__title {
  font-size: 31px; font-weight: 800; letter-spacing: -.02em;
  line-height: 1.1; margin-top: 10px;
}
.pricing__body {
  font-size: 16px; line-height: 1.55; color: var(--ink-2);
  max-width: 52ch; margin: 16px auto 26px;
}
.pricing__d3 { display: none; }
.pricing__d1 { display: none; }

/* Plan chips — mirrors the in-app paywall (Yearly pre-selected, SAVE 30%). */
.plans {
  display: flex; flex-direction: column; gap: 10px;
  max-width: 340px; margin: 0 auto 26px;
}
.plan {
  position: relative;
  display: flex; align-items: center; gap: 10px;
  border-radius: 18px; padding: 14px 18px;
  text-align: left;
}
.plan--year {
  background: rgba(218, 252, 80, .38);
  border: 2px solid var(--lime-ink);
}
.plan--month {
  background: rgba(253, 252, 245, .6);
  border: 2px solid rgba(71, 72, 61, .25);
  color: var(--ink-2);
}
.plan__name { font-size: 15px; font-weight: 800; }
.plan__price { font-size: 15px; font-weight: 700; margin-left: auto; }
.plan__price em { font-style: normal; font-weight: 600; font-size: 12.5px; opacity: .65; }
.plan__tick { font-size: 20px; color: var(--teal); }
.plan__save {
  position: absolute; top: -9px; right: 14px;
  background: var(--lime-ink); color: var(--lime);
  font-size: 10px; font-weight: 800; letter-spacing: .08em;
  border-radius: 999px; padding: 3px 9px;
}

.trust {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; font-weight: 600; margin-top: 40px;
  flex-wrap: wrap;
}
.trust .zs-icon { font-size: 17px; color: var(--teal); }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--ink); color: var(--bg);
  padding: 36px 28px; margin-top: 60px;
  display: flex; flex-direction: column; gap: 22px;
}
/* flex:none — without it the row layout shrinks the width while the fixed
   height stays, and the wordmark stretches at narrow widths. */
.site-footer__logo { height: 19px; width: auto; flex: none; align-self: flex-start; }
.site-footer__links { display: flex; flex-direction: column; gap: 2px; }
.site-footer__links a {
  font-size: 14px; font-weight: 600; text-decoration: none;
  color: rgba(253, 252, 245, .75);
  transition: color .3s ease;
  /* 44px touch target without changing the visual rhythm */
  display: inline-flex; align-items: center; min-height: 44px;
}
.site-footer__links a:hover { color: var(--lime); }
.site-footer__copy { font-size: 13px; color: rgba(253, 252, 245, .5); }

/* ── Scroll reveal ──────────────────────────────────────── */
[data-reveal] {
  opacity: 0; transform: translateY(26px);
}
[data-reveal].is-in {
  opacity: 1; transform: none;
  transition: opacity .7s ease var(--rd, 0ms), transform .9s var(--rise) var(--rd, 0ms);
}

/* ═══ Desktop ≥1024px ═══════════════════════════════════ */
@media (min-width: 1024px) {
  :root { --pad: 110px; }
  body { font-size: 16.5px; }

  .site-header { padding: 20px var(--pad); }
  .site-header__logo img { height: 26px; }
  .cta-pill { font-size: 15px; padding: 12px 24px; gap: 8px; }
  .cta-pill .zs-icon { font-size: 18px; }
  .cta-pill__long { display: inline; }
  .cta-pill__short { display: none; }

  .section { margin-top: 110px; }
  .section__title { font-size: 44px; margin-bottom: 34px; }

  .badge-appstore { padding: 13px 24px 13px 19px; border-radius: 18px; gap: 12px; }
  .badge-appstore svg { width: 26px; height: 26px; }
  .badge-appstore__small { font-size: 11px; }
  .badge-appstore__big { font-size: 19px; }

  /* Hero */
  .hero {
    display: grid; grid-template-columns: 1.02fr .98fr;
    gap: 40px; align-items: center;
    padding: 50px var(--pad) 110px;
  }
  .hero__title { font-size: 74px; line-height: 1.02; letter-spacing: -.025em; }
  .hero__sub { font-size: 20px; max-width: 50ch; margin: 24px 0 34px; }
  .checkin__label { font-size: 16px; }
  .chip { font-size: 16.5px; padding: 13px 22px; gap: 8px; }
  .chip .zs-icon { font-size: 21px; }
  .checkin__response { font-size: 16px; min-height: 24px; }

  .hero__stage { height: 740px; margin-top: 0; }
  .hero__glow { inset: 8% 4% 12%; }
  .phone--hero { width: 340px; }
  .phone--hero .phone__shell { border-radius: 54px; padding: 11px; }
  .phone--hero .phone__screen { border-radius: 44px; }

  .sticker--d2    { width: 110px; top: 0; left: 4%; }
  .sticker--s2    { display: block; width: 104px; top: 9%; right: 0; }
  .sticker--d1    { width: 88px; bottom: 26%; left: -2%; }
  .sticker--d3    { width: 76px; top: 40%; right: 7%; }
  .sticker--sn    { width: 130px; bottom: 2%; left: 7%; }
  .phone__hint { font-size: 13.5px; bottom: -22px; }

  /* How */
  .how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .step { padding: 34px; border-radius: 34px; min-height: 240px; }
  .step__head { margin-bottom: 44px; }
  .step__chip { width: 56px; height: 56px; border-radius: 20px; }
  .step__chip .zs-icon { font-size: 28px; }
  .step__num { font-size: 13px; }
  .step h3 { font-size: 25px; }
  .step p { font-size: 16.5px; }

  /* Band */
  .band {
    border-radius: 44px; padding: 56px 80px;
    display: flex; align-items: center; gap: 60px;
  }
  .band__badge { font-size: 12.5px; padding: 8px 14px; }
  .band__badge .zs-icon { font-size: 16px; }
  .band__num { font-size: 210px; line-height: .82; margin-top: 18px; }
  .band__unit { font-size: 30px; }
  .band__text { font-size: 24px; line-height: 1.4; max-width: 40ch; margin-top: 0; }
  .band__figure { width: 190px; right: 40px; bottom: -14px; }

  /* Features */
  .features__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
  .feat { border-radius: 38px; padding: 38px 38px 0; height: 730px; }
  .feat h3 { font-size: 27px; }
  .feat > p { font-size: 17px; max-width: 46ch; }
  .feat__note { font-size: 13.5px; }
  .feat__note .zs-icon { font-size: 16px; }
  .phone--card { width: 250px; }
  .phone--card .phone__shell { border-radius: 46px; padding: 10px; }
  .phone--card .phone__screen { border-radius: 38px; }

  /* Exercises */
  .exercises__sub { font-size: 19px; margin-top: 18px; }
  .marquee { margin-top: 44px; gap: 20px; }
  .marquee__row { gap: 20px; }
  .exc { width: 168px; border-radius: 30px; padding: 18px 12px 16px; }
  .exc figcaption { font-size: 15px; margin-top: 8px; }
  .exc__badge { font-size: 10px; padding: 4px 9px; }

  /* Manifesto */
  .manifesto { padding: 110px; margin-top: 110px; text-align: center; }
  .manifesto p { font-size: 38px; line-height: 1.4; margin: 0 auto; }
  .manifesto__sn { width: 110px; top: 40px; right: 60px; }
  .manifesto__d2 { display: block; width: 90px; bottom: 40px; left: 60px; }

  /* Pricing */
  .pricing { padding: 110px var(--pad) 90px; }
  .pricing__title { font-size: 48px; }
  .pricing__body { font-size: 19px; margin: 18px auto 30px; }
  .plans { flex-direction: row; max-width: 560px; margin-bottom: 34px; }
  .plan { flex: 1; border-radius: 20px; padding: 16px 20px; }
  .pricing__d3 { display: block; width: 70px; top: 22%; left: 12%; }
  .pricing__d1 { display: block; width: 76px; bottom: 24%; right: 12%; }
  .trust { font-size: 16px; margin-top: 56px; }
  .trust .zs-icon { font-size: 19px; }

  /* Footer */
  .site-footer {
    flex-direction: row; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 30px; padding: 46px var(--pad); margin-top: 0;
  }
  .site-footer__logo { height: 22px; }
  .site-footer__links { flex-direction: row; gap: 28px; }
  .site-footer__links a { font-size: 14.5px; }
}

/* ═══ Reduced motion ════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .scr { transition: none; }
}
