/* ============================================================
   Dayfold - site, refonted on the design system
   Faithful recreation of the live dayfold.app layout. Only the
   TYPE has changed: Hanken Grotesk for text, JetBrains Mono for
   time + numerals, and the palette nudged onto DS tokens.
   ============================================================ */

:root {
  --page: var(--paper-card);
  --surface: var(--paper-50);
  --surface-2: var(--paper-100);
  --cream: var(--paper-150);
  --ink: var(--ink-strong);
  --soft-ink: var(--ink-muted);
  --muted: var(--ink-subtle);
  --faint: var(--line);
  --sand: var(--camel);
  --sandstone: #E3D0BA; /* DS token --sand (Sandstone); local --sand is remapped to the accent */
  --sand-dark: var(--camel-deep);
  --sage: var(--olive);
  --lavender: var(--lavender);
  --shadow: 0 24px 76px rgba(42, 36, 32, .10);
  --soft-shadow: 0 14px 46px rgba(42, 36, 32, .075);
  --line2: rgba(73, 70, 65, .10);
  --radius: 34px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(circle at 10% 8%, color-mix(in srgb, var(--camel) 13%, transparent), transparent 26%),
    radial-gradient(circle at 88% 14%, color-mix(in srgb, var(--olive) 16%, transparent), transparent 24%),
    linear-gradient(180deg, var(--paper-card) 0%, var(--paper-50) 56%, var(--paper-100) 100%);
  transition: background-color .45s ease, color .35s ease;
}
body, .nav, .button, .miniTimeline, .todayTL, .roleProofCard, .roleTrack, .showPhone, .faqCta, .privacyBand, .footer, .badge, .heroForm, .waitForm, .screenCard, .supportingGrid article, .stepList article, .pillarGrid article, .faqGrid article, .statusNote, .tlPills span, .apCtl, .apSeg, .apSeg b, .apSw i { transition: background-color .4s ease, border-color .4s ease, color .35s ease, box-shadow .4s ease; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- reveal-on-scroll (gentle) ---------- */
.rv { opacity: 0; transform: translateY(22px); }
.rv.in { opacity: 1; transform: none; transition: opacity .7s cubic-bezier(.22,.61,.21,1), transform .7s cubic-bezier(.22,.61,.21,1); transition-delay: var(--d, 0ms); }
@media (prefers-reduced-motion: reduce) { .rv, .rv.in { opacity: 1 !important; transform: none !important; transition: none !important; } }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 14px clamp(20px, 5vw, 72px);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  background: color-mix(in srgb, var(--paper-50) 80%, transparent);
  border-bottom: 1px solid var(--border-subtle);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 19px; font-weight: 800; letter-spacing: -.03em; color: var(--ink-strong); }
.navlinks { display: flex; align-items: center; gap: 24px; color: var(--muted); font-size: 14.5px; font-weight: 600; }
.navlinks a:hover { color: var(--sand-dark); }
.logoCompact { width: 30px; height: 30px; border-radius: 9px; }

/* ---------- type ---------- */
.eyebrow {
  margin: 0 0 16px; color: var(--sand-dark);
  text-transform: uppercase; letter-spacing: .16em; font-size: 11.5px; font-weight: 800;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 900px;
  font-size: clamp(52px, 7.4vw, 104px);
  font-weight: 800; line-height: .98; letter-spacing: -.045em;
  margin-bottom: 24px; text-wrap: balance; color: var(--ink-strong);
}
h2 {
  font-size: clamp(32px, 3.9vw, 56px);
  font-weight: 800; line-height: 1.04; letter-spacing: -.035em;
  margin-bottom: 16px; text-wrap: balance; color: var(--ink-strong);
}
h3 { font-size: 23px; line-height: 1.12; letter-spacing: -.025em; margin-bottom: 11px; font-weight: 700; color: var(--ink-strong); }
.lead { max-width: 760px; font-size: clamp(19px, 1.9vw, 24px); color: var(--soft-ink); line-height: 1.5; letter-spacing: -.01em; }
.heroNote { max-width: 690px; margin-top: 22px; color: var(--soft-ink); line-height: 1.62; font-size: 15px; }

/* ---------- buttons ---------- */
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border-radius: 999px; font-weight: 700; font-size: 15px; border: 1px solid var(--border-default); transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-1px); }
.primary { background: var(--sand); color: var(--text-on-brand); border-color: transparent; box-shadow: 0 14px 30px rgba(160,127,88,.22); }
.primary:hover { background: var(--camel-hover, var(--brand-hover)); }
.secondary { background: rgba(255,255,255,.72); color: var(--ink); }
.secondary:hover { background: var(--surface-hover); }

/* ---------- hero ---------- */
.hero {
  display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: center; gap: clamp(40px, 7vw, 110px);
  padding: clamp(52px, 7vw, 96px) clamp(22px, 6vw, 96px) clamp(70px, 8vw, 110px);
  overflow: hidden;
}
.heroCopy { position: relative; z-index: 2; }
.heroStack { position: relative; height: min(70vw, 700px); min-height: 540px; }
.phoneShot {
  position: absolute; top: 50%; left: 50%; margin: 0; padding: 9px;
  border-radius: 42px; background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.9); box-shadow: var(--shadow);
}
.phoneShot img { width: 100%; border-radius: 33px; object-fit: cover; }
.shotFront { z-index: 3; width: min(50vw, 340px); transform: translate(-50%, -50%); }
.shotRoles { z-index: 1; width: min(34vw, 244px); transform: translate(-130%, -56%) rotate(-6deg); }
.shotCalendar { z-index: 2; width: min(34vw, 244px); transform: translate(28%, -46%) rotate(5deg); }

/* ---------- hero: email capture + meta badges ---------- */
.heroForm { display: flex; gap: 8px; margin-top: 30px; max-width: 480px; padding: 6px; border-radius: 999px; background: rgba(255,255,255,.7); border: 1px solid var(--border-default); box-shadow: var(--soft-shadow); }
.heroForm input { flex: 1; min-width: 0; border: none; background: transparent; padding: 0 16px; font-family: var(--font-sans); font-size: 15.5px; color: var(--ink); }
.heroForm input::placeholder { color: var(--ink-subtle); }
.heroForm input:focus { outline: none; }
.heroForm .button { min-height: 44px; padding: 0 20px; white-space: nowrap; }
.heroAside { margin-top: 14px; font-size: 14px; }
.heroAside a { color: var(--sand-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.heroMeta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.badge { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; background: var(--surface-card); border: 1px solid var(--border-default); color: var(--ink-muted); }
.badge .lucide { width: 15px; height: 15px; }
.badge.accent { background: var(--camel-soft); border-color: transparent; color: var(--camel-deep); }
.badge.accent .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--camel); }
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--camel); flex: none; }

/* ---------- role proof section ---------- */
.roleProof { padding: 0 clamp(22px, 6vw, 96px) clamp(88px, 11vw, 136px); }
.roleProofCard { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(28px, 5vw, 64px); align-items: center; border-radius: calc(var(--radius) + 8px); padding: clamp(32px, 5vw, 60px); background: linear-gradient(140deg, var(--paper-card), var(--paper-50) 60%, var(--sky-soft)); border: 1px solid var(--border-subtle); box-shadow: var(--shadow); }
.roleProofCard h2 { margin-bottom: 14px; }
.roleProofCard p.sectionLead { margin-top: 0; }
.roleProofCard p.roleWhy { margin-top: 16px; font-size: 16px; color: var(--text-secondary); }
.roleFree { display: inline-flex; align-items: center; gap: 9px; margin-top: 20px; padding: 11px 18px; border-radius: 999px; background: var(--camel-soft); color: var(--camel-deep); font-size: 14.5px; font-weight: 600; }
.roleFree .lucide { width: 16px; height: 16px; }
.roleBars { display: grid; gap: 18px; }
.roleTrack { background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: 20px; padding: 18px 20px; box-shadow: var(--soft-shadow); }
.roleHead { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 11px; }
.roleHead .name { display: inline-flex; align-items: center; gap: 9px; font-size: 15.5px; font-weight: 700; color: var(--ink-strong); }
.roleHead .name i { width: 11px; height: 11px; border-radius: 50%; background: var(--rc, var(--camel)); }
.roleHead .val { font-family: var(--font-mono); font-size: 13px; color: var(--ink-muted); white-space: nowrap; }
.roleBar { height: 11px; border-radius: 999px; background: var(--paper-100); overflow: hidden; }
.roleBar i { display: block; position: relative; height: 100%; border-radius: 999px; background: var(--rc, var(--camel)); transform: scaleX(0); transform-origin: left; transition: transform 1s cubic-bezier(.22,.61,.21,1); transition-delay: var(--rd, 0ms); overflow: hidden; }
.rv.in .roleBar i { transform: scaleX(var(--rw, 1)); }
@media (prefers-reduced-motion: no-preference) {
  .roleBar i::after { content: ""; position: absolute; inset: 0; border-radius: 999px; background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.6) 50%, transparent 70%); background-size: 260% 100%; background-position: 220% 0; opacity: 0; }
  .rv.in .roleBar i::after { animation: roleSheen 1.5s cubic-bezier(.3,.5,.4,1) 2; animation-delay: calc(var(--rd, 0ms) + 850ms); }
}
@keyframes roleSheen { 0% { background-position: 220% 0; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { background-position: -140% 0; opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .roleBar i { transform: scaleX(var(--rw, 1)) !important; transition: none !important; } }
@media (max-width: 920px) { .roleProofCard { grid-template-columns: 1fr; } }

/* ---------- routines band ---------- */
.routineBand { margin: 0 clamp(22px, 6vw, 96px) clamp(88px, 11vw, 136px); padding: clamp(30px, 5vw, 58px); border-radius: calc(var(--radius) + 10px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .92fr); gap: clamp(28px, 5vw, 60px); align-items: center; background: var(--surface-sunken); border: 1px solid var(--border-subtle); box-shadow: var(--soft-shadow); }
.routineCopy h2 { margin-bottom: 14px; }
.routineCopy p.sectionLead + p.sectionLead { margin-top: 14px; }
.routineDemo { width: min(340px, 100%); margin: 0 auto; background: none; border: none; border-radius: 0; padding: 0; box-shadow: none; }
.routineDayHead { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 0 0 14px; width: 100%; padding: 0 4px; }
.routineHint { position: absolute; right: 98px; top: -33px; transform: rotate(-6deg); z-index: 2; }
.routineHint.scribbleArch .scribbleMark {
  width: clamp(16px, 1.9vw, 25px);
  aspect-ratio: 101 / 356;
  -webkit-mask-image: url('/public/assets/scribbles/arrow-up-left.png');
  mask-image: url('/public/assets/scribbles/arrow-up-left.png');
  background: currentColor;
  transform: translateY(-2px);
}
.routineTitle { display: inline-flex; align-items: baseline; gap: .35em; min-width: 0; font-family: var(--font-mono); font-size: 13px; line-height: 1.3; letter-spacing: .03em; color: var(--muted); }
.routineTitleCall { white-space: nowrap; }
.routineSwitch { display: inline-flex; align-items: center; gap: 10px; flex: none; cursor: pointer; background: none; border: none; padding: 0; font: inherit; color: var(--muted); }
.rsLabel { font-size: 13px; line-height: 1.16; font-weight: 700; text-align: right; }
.rsTrack { width: 46px; height: 28px; flex: 0 0 46px; border-radius: 999px; background: var(--paper-100); position: relative; box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--paper-200) 72%, var(--camel) 28%); transition: background-color .22s ease, box-shadow .22s ease; }
.rsKnob { position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: #fff; box-shadow: 0 2px 5px rgba(42,36,32,.18); transform: translateX(0); transition: transform .22s cubic-bezier(.22,.61,.21,1); }
.routineSwitch.on .rsTrack { background: var(--camel); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--camel) 88%, #fff 12%); }
.routineSwitch.on .rsKnob { transform: translateX(18px); }
.routineDay { display: flex; flex-direction: column; }
.routinePhone { position: relative; width: min(340px, 100%); margin: 0 auto; overflow: hidden; border-radius: 16px; border: 1px solid var(--border-subtle); box-shadow: var(--soft-shadow); background: #fff; padding: 7px 7px 14px; }
.rViewport { position: relative; aspect-ratio: 1206 / 1350; overflow: hidden; border-radius: 10px; }
.rShot { position: absolute; top: 0; left: 0; width: 100%; height: auto; transform: translateY(-27.5%); transition: opacity .42s cubic-bezier(.22,.61,.21,1); }
.rShot.rOff { opacity: 0; }
.routinePhone.hideRoutines .rOff { opacity: 1; }
.routinePhone.hideRoutines .rOn { opacity: 0; }
@media (max-width: 920px) { .routineBand { grid-template-columns: 1fr; } }
@media (max-width: 560px) {
  .routineDayHead { width: 100%; align-items: center; gap: 8px; padding: 0 2px; flex-wrap: wrap; }
  .routineTitle { flex-direction: column; align-items: flex-start; gap: 2px; line-height: 1.25; }
  .routineHint { position: static; order: 3; flex-basis: 100%; margin: -4px 0 -2px auto; transform: rotate(-4deg); }
  .routineSwitch { gap: 9px; margin-left: auto; }
  .rsLabel { max-width: 74px; }
}
@media (prefers-reduced-motion: reduce) { .rShot { transition: opacity .2s ease; } }

/* ---------- showcase: sticky scrollytelling ---------- */
.showcase { padding: clamp(20px, 4vw, 56px) clamp(22px, 6vw, 96px) clamp(40px, 6vw, 80px); }
.showcase .sectionIntro { margin: 0 auto clamp(20px, 4vw, 44px); }
.showWrap { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(28px, 5vw, 80px); align-items: start; }
.showPhoneCol { --show-sticky-top: 72px; position: sticky; top: var(--show-sticky-top); height: calc(100svh - var(--show-sticky-top)); min-height: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.showPhone { position: relative; width: min(34vw, 300px, 35svh); aspect-ratio: 1170 / 2532; flex: 0 0 auto; padding: 9px; border-radius: 46px; background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.9); box-shadow: var(--shadow); }
.showPhone img { position: absolute; inset: 9px; width: calc(100% - 18px); height: calc(100% - 18px); object-fit: cover; object-position: top; border-radius: 37px; opacity: 0; transform: scale(1.012); transition: opacity .6s cubic-bezier(.22,.61,.21,1), transform .6s cubic-bezier(.22,.61,.21,1); }
.showPhone img.active { opacity: 1; transform: none; }
.showPhoneGlow { position: absolute; inset: -12% -10%; z-index: -1; border-radius: 50%; background: radial-gradient(closest-side, var(--glow, var(--camel-soft)), transparent 72%); opacity: .85; transition: background .6s ease; filter: blur(10px); }
.showSteps { display: grid; padding-bottom: calc(100svh - 72px); }
.spaceStep { min-height: 108vh; display: flex; flex-direction: column; justify-content: center; opacity: .3; transition: opacity .5s cubic-bezier(.22,.61,.21,1); }
.spaceStep.active { opacity: 1; }
.spaceStep:first-child { min-height: 86vh; }
.spaceStep:last-child { min-height: 86vh; }
.stepNum { font-family: var(--font-mono); font-size: 13px; color: var(--ink-subtle); letter-spacing: .04em; }
.stepEyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 14px 0 18px; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--sc, var(--sand-dark)); }
.stepEyebrow .scIc { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 11px; background: var(--scsoft, var(--camel-soft)); color: var(--sc, var(--camel-deep)); }
.stepEyebrow .scIc .lucide { width: 17px; height: 17px; }
.spaceStep h3 { font-size: clamp(30px, 3.4vw, 46px); font-weight: 800; letter-spacing: -.035em; line-height: 1.04; margin-bottom: 16px; color: var(--ink-strong); }
.spaceStep p { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.56; color: var(--soft-ink); max-width: 30ch; }
.stepShot { display: none; }
.mobileShowHead, .galCopy { display: none; }

/* showcase gallery: per-space variants (swipe between modes) */
.showPhone[data-gallery] { touch-action: pan-y; }
.galArrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 28px; height: 56px; display: none; place-items: center; cursor: pointer; border: none; background: none; padding: 0; color: var(--ink-faint); opacity: .55; transition: opacity .2s ease, transform .2s ease, color .2s ease; }
.galArrow .lucide { width: 26px; height: 26px; stroke-width: 1.75; }
.galArrow:hover { opacity: 1; color: var(--camel-deep); }
.galArrow.prev { left: -40px; }
.galArrow.next { right: -40px; }
.galArrow.prev:hover { transform: translateY(-50%) translateX(-2px); }
.galArrow.next:hover { transform: translateY(-50%) translateX(2px); }
.showPhone.hasModes .galArrow { display: grid; }
@media (max-width: 1100px) { .galArrow.prev { left: -30px; } .galArrow.next { right: -30px; } }
.galBar { display: flex; flex: 0 0 64px; height: 64px; flex-direction: column; align-items: center; justify-content: center; gap: 10px; min-height: 64px; }
.galBar[hidden] { display: flex; visibility: hidden; pointer-events: none; }
.galTop { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 29px; }
.galName { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .04em; color: var(--text-secondary); }
.galSub { display: inline-flex; min-width: 74px; min-height: 29px; gap: 3px; padding: 3px; border-radius: 999px; background: var(--surface-sunken); border: 1px solid var(--border-subtle); }
.galSub[hidden] { display: none; }
.galSub button { appearance: none; border: none; cursor: pointer; min-width: 26px; height: 22px; padding: 0 8px; border-radius: 999px; background: transparent; color: var(--muted); font-family: var(--font-mono); font-size: 12px; font-weight: 600; line-height: 1; transition: background-color .18s ease, color .18s ease; }
.galSub button.on { background: var(--paper-50); color: var(--ink-strong); box-shadow: 0 1px 2px rgba(42,36,32,.10); }
.galDots { display: inline-flex; align-items: center; justify-content: center; gap: 7px; min-height: 17px; }
.galDots i { width: 7px; height: 7px; border-radius: 50%; background: var(--paper-200); cursor: pointer; transition: background-color .25s ease, transform .25s ease; }
.galDots i.on { background: var(--camel); transform: scale(1.25); }
.galDots button { appearance: none; width: 17px; height: 17px; padding: 0; border: none; background: none; display: grid; place-items: center; cursor: pointer; }
.galDots button::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--paper-200); transition: background-color .25s ease, transform .25s ease; }
.galDots button.on::before { background: var(--camel); transform: scale(1.3); }
.galDots button:focus-visible, .apSeg b:focus-visible, .apSw button:focus-visible { outline: 2px solid var(--camel-deep); outline-offset: 2px; border-radius: 999px; }
.modeHint { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; padding: 7px 13px; border-radius: 999px; background: var(--surface-sunken); border: 1px solid var(--border-subtle); font-size: 12.5px; font-weight: 600; color: var(--text-secondary); width: fit-content; }
.modeHint .lucide { width: 14px; height: 14px; color: var(--camel-deep); }
.scribbleHint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  color: color-mix(in srgb, var(--camel-deep) 88%, var(--ink-strong));
  transform: rotate(-3deg);
  opacity: .9;
  transition: color .35s ease, opacity .25s ease;
  pointer-events: none;
}
.scribbleLabel,
.scribbleMark {
  display: block;
  flex: none;
  background: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.scribbleTap .scribbleLabel { width: clamp(86px, 9vw, 134px); aspect-ratio: 437 / 148; -webkit-mask-image: url('/public/assets/scribbles/label-tap-me.png'); mask-image: url('/public/assets/scribbles/label-tap-me.png'); }
.scribbleDrag .scribbleLabel { width: clamp(126px, 10.8vw, 178px); aspect-ratio: 337 / 100; -webkit-mask-image: url('/public/assets/scribbles/label-drag-me.png'); mask-image: url('/public/assets/scribbles/label-drag-me.png'); }
.scribbleTry .scribbleLabel { width: clamp(92px, 9.4vw, 138px); aspect-ratio: 430 / 166; -webkit-mask-image: url('/public/assets/scribbles/label-try-me.png'); mask-image: url('/public/assets/scribbles/label-try-me.png'); }
.scribbleLoopUp .scribbleMark { width: clamp(38px, 4.4vw, 58px); aspect-ratio: 218 / 365; -webkit-mask-image: url('/public/assets/scribbles/arrow-loop-up.png'); mask-image: url('/public/assets/scribbles/arrow-loop-up.png'); transform: translateY(-8px); }
.scribbleLoopDown .scribbleMark { width: clamp(36px, 4vw, 54px); aspect-ratio: 158 / 269; -webkit-mask-image: url('/public/assets/scribbles/arrow-loop-down.png'); mask-image: url('/public/assets/scribbles/arrow-loop-down.png'); transform: translateY(-4px); }
.scribbleArch .scribbleMark { width: clamp(56px, 6.6vw, 88px); aspect-ratio: 314 / 217; -webkit-mask-image: url('/public/assets/scribbles/arrow-arch-down.png'); mask-image: url('/public/assets/scribbles/arrow-arch-down.png'); transform: translateY(-10px); }
.scribbleGripArrow { display: block; width: clamp(180px, 16vw, 244px); height: clamp(104px, 9.2vw, 140px); }
.scribbleGripArrow .scribbleLabel { position: absolute; left: 82px; top: 0; transform: rotate(-1deg); }
.scribbleGripArrow .scribbleMark { position: absolute; left: 0; top: -20px; width: clamp(20px, 1.8vw, 27px); aspect-ratio: 71 / 272; -webkit-mask-image: url('/public/assets/scribbles/arrow-drag-grip.png'); mask-image: url('/public/assets/scribbles/arrow-drag-grip.png'); transform: rotate(1deg); }
.rv.in .scribbleHint, .scribbleHint.rv.in { animation: scribbleNudge .75s cubic-bezier(.22,.61,.21,1) .35s both; }
@keyframes scribbleNudge { 0% { transform: translateY(5px) rotate(-3deg); opacity: .25; } 58% { transform: translateY(-1px) rotate(-4deg); opacity: .9; } 100% { transform: rotate(-3deg); opacity: .88; } }

@media (max-width: 920px) {
  .showcase { overflow: visible; }
  .showWrap { display: block; }
  .showSteps { padding-bottom: 0; }
  .showPhoneCol {
    position: sticky;
    top: 0;
    height: auto;
    min-height: 100svh;
    padding: max(10px, env(safe-area-inset-top)) 0 28px;
    z-index: 6;
    background: transparent;
    box-shadow: none;
    justify-content: flex-start;
    gap: clamp(10px, 2.2svh, 18px);
  }
  .mobileShowHead {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "title title"
      "kicker num";
    align-items: end;
    column-gap: 14px;
    row-gap: 9px;
    width: min(82vw, 340px);
    min-height: 0;
    padding: 0;
  }
  .mobileShowKicker {
    grid-area: kicker;
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    color: var(--sc, var(--camel-deep));
    font-size: 10px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: .10em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .mobileShowKicker .scIc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: var(--scsoft, var(--camel-soft));
    color: var(--sc, var(--camel-deep));
  }
  .mobileShowKicker .scIc .lucide { width: 14px; height: 14px; }
  .mobileShowTitle {
    grid-area: title;
    justify-self: start;
    font-size: clamp(29px, 8.2vw, 40px);
    line-height: .96;
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--ink-strong);
  }
  .mobileShowNum {
    grid-area: num;
    justify-self: end;
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: .03em;
    color: var(--ink-subtle);
    white-space: nowrap;
  }
  .showPhone { width: min(60vw, 244px); margin-top: clamp(2px, 1svh, 8px); }
  .galArrow.prev { left: -34px; }
  .galArrow.next { right: -34px; }
  .galBar {
    flex: 0 0 auto;
    height: auto;
    min-height: 0;
    gap: 6px;
    padding: 4px 0 0;
  }
  .galTop { min-height: 24px; gap: 8px; }
  .galName { font-size: 12px; }
  .galSub { min-height: 25px; min-width: 66px; padding: 2px; }
  .galSub button { min-width: 24px; height: 20px; padding: 0 7px; font-size: 11px; }
  .galDots { min-height: 12px; gap: 6px; }
  .galDots button { width: 13px; height: 13px; }
  .galDots button::before { width: 6px; height: 6px; }
  .galDots button.on::before { transform: scale(1.18); }
  .galCopy {
    display: block;
    max-width: min(31ch, 78vw);
    min-height: 42px;
    margin: 2px auto 0;
    color: var(--soft-ink);
    font-size: 14px;
    line-height: 1.42;
    text-align: center;
    text-wrap: balance;
  }
  .spaceStep {
    min-height: 84svh;
    opacity: 1;
    padding: 0;
    align-items: center;
    text-align: center;
    pointer-events: none;
  }
  .spaceStep:first-child, .spaceStep:last-child { min-height: 84svh; }
  .stepShot { display: none; }
  .spaceStep > .stepNum,
  .spaceStep > .stepEyebrow,
  .spaceStep > h3,
  .spaceStep > p,
  .spaceStep > .modeHint {
    opacity: 0;
    visibility: hidden;
  }
}

/* ---------- supporting spaces: icons (legacy) ---------- */

/* ---------- waitlist / availability ---------- */
.waitForm { display: flex; gap: 8px; flex: 1; max-width: 460px; padding: 6px; border-radius: 999px; background: rgba(255,255,255,.78); border: 1px solid var(--border-default); }
.waitForm input { flex: 1; min-width: 0; border: none; background: transparent; padding: 0 16px; font-family: var(--font-sans); font-size: 15px; color: var(--ink); }
.waitForm input::placeholder { color: var(--ink-subtle); }
.waitForm input:focus { outline: none; }
.waitForm .button { min-height: 44px; white-space: nowrap; }
.heroForm.sent, .waitForm.sent { justify-content: center; background: var(--camel-soft); border-color: transparent; box-shadow: none; }
.formThanks { display: inline-flex; align-items: center; gap: 9px; min-height: 44px; padding: 0 14px; font-size: 14.5px; font-weight: 600; color: var(--camel-deep); text-align: center; text-wrap: balance; }
.formThanks .lucide { width: 17px; height: 17px; flex: none; }
.availRow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

/* ---------- section scaffolding ---------- */
.sectionIntro { padding: 0; max-width: 1120px; }
.sectionIntro.centered { margin: 0 auto 34px; text-align: center; }
.sectionIntro.centered .sectionLead { margin-left: auto; margin-right: auto; }
.apIntroHint { margin-top: 16px; }
.compactIntro { margin-bottom: 24px; }
.sectionLead { max-width: 800px; color: var(--soft-ink); line-height: 1.64; font-size: 18px; margin: -2px 0 0; }
.productSection, .screensSection, .featureSection, .supportingSection, .appearanceSection, .workflowSteps, .faqSection { padding: 0 clamp(22px, 6vw, 96px) clamp(88px, 11vw, 136px); }

/* shared card surface */
.miniTimeline, .productText, .pillarGrid article, .supportingGrid article, .stepList article, .faqGrid article, .screenCard {
  border-radius: var(--radius);
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--soft-shadow);
}

/* ---------- product pair + mini timeline ---------- */
.productPair { display: grid; grid-template-columns: minmax(300px, .95fr) minmax(0, 1.05fr); gap: clamp(18px, 4vw, 54px); align-items: center; }
.miniTimeline { padding: clamp(24px, 4vw, 38px); overflow: hidden; }
.appTimelineRow { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 18px; align-items: start; }
.appTimelineRow time { font-family: var(--font-mono); color: var(--ink-muted); font-size: 14px; font-weight: 500; white-space: nowrap; letter-spacing: -.02em; }
.appTimelineRow h3 { margin: 0; font-size: 18px; line-height: 1.12; letter-spacing: -.025em; }
.timelineStart p, .freeGap p { position: relative; margin: 12px 0 14px; padding-left: 18px; color: var(--sand-dark); font-size: 15px; line-height: 1.35; }
.timelineStart p::before, .freeGap::before { content: ""; position: absolute; width: 3px; border-radius: 99px; background: rgba(194,160,121,.3); }
.timelineStart p::before { left: 0; top: -2px; height: 42px; }
.timelinePills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.timelineStart .timelinePills, .freeGap .timelinePills { padding-left: 18px; }
.timelinePills span { display: inline-flex; align-items: center; gap: 6px; justify-content: center; min-width: 82px; height: 38px; padding: 0 14px; border-radius: 999px; color: var(--ink-muted); font-size: 14px; font-weight: 600; background: rgba(255,255,255,.66); border: 1px solid var(--border-default); }
.timelinePills .lucide { width: 15px; height: 15px; }
.eventRow { margin: 12px 0 16px; }
.eventRow article { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px; min-height: 82px; padding: 18px 20px; border-radius: 0 22px 22px 0; box-shadow: inset 5px 0 0 var(--camel); }
.eventRow h3 { margin: 0; }
.eventRow small { font-family: var(--font-mono); color: var(--ink-subtle); font-size: 13.5px; font-weight: 500; }
.workoutRow article { background: var(--ochre-soft); box-shadow: inset 5px 0 0 var(--ochre); }
.clientRow article { min-height: 124px; background: var(--olive-soft); box-shadow: inset 5px 0 0 var(--olive); }
.freeGap { position: relative; margin: 0 0 8px 110px; }
.freeGap::before { left: 0; top: 6px; height: 44px; }
.longFreeGap { margin-bottom: 18px; }
.timelineEnd { margin-top: 6px; }
.productText { padding: clamp(28px, 5vw, 54px); }
.productText p, .pillarGrid p, .supportingGrid p, .stepList p, .privacyCopy p, .faqGrid p, .screenCard p { color: var(--soft-ink); line-height: 1.64; font-size: 16px; }
.productText p:last-child { margin-bottom: 0; }

/* ---------- animated Today timeline ---------- */
.todayTL { position: relative; overflow: hidden; padding: clamp(24px, 4vw, 36px); border-radius: var(--radius); background: var(--surface-card); border: 1px solid var(--border-subtle); box-shadow: var(--soft-shadow); }
.tlTop { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.tlTop .d { width: 8px; height: 8px; border-radius: 50%; background: var(--camel); }
.todayTL.tlPlay .tlTop .d { animation: tlpulse 2.6s ease-out infinite; }
.tlTop b { font-size: 15px; font-weight: 700; letter-spacing: -.015em; color: var(--ink-strong); }
.tlTop time { margin-left: auto; font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-muted); }
@keyframes tlpulse { 0% { box-shadow: 0 0 0 0 rgba(194,160,121,.45); } 70% { box-shadow: 0 0 0 9px rgba(194,160,121,0); } 100% { box-shadow: 0 0 0 0 rgba(194,160,121,0); } }

.tlBody { position: relative; display: flex; flex-direction: column; gap: 4px; }
.tlSpine { position: absolute; left: 76px; top: 8px; bottom: 12px; width: 2px; transform: translateX(-50%); background: var(--paper-150); border-radius: 2px; overflow: hidden; }
.tlSpine i { position: absolute; inset: 0; transform-origin: top; background: linear-gradient(var(--camel), var(--olive) 60%, var(--lavender)); }
.tlNow { position: absolute; left: 76px; top: 6%; width: 13px; height: 13px; border-radius: 50%; transform: translate(-50%, -50%); background: var(--camel); box-shadow: 0 0 0 5px var(--camel-soft); opacity: 0; z-index: 4; pointer-events: none; }

.tlRow { display: grid; grid-template-columns: 64px 24px minmax(0, 1fr); align-items: start; }
.tlRow > time { font-family: var(--font-mono); font-size: 12px; color: var(--ink-muted); white-space: nowrap; padding-top: 3px; letter-spacing: -.02em; }
.tlNode { width: 13px; height: 13px; border-radius: 50%; background: var(--surface-card); border: 2.5px solid var(--nc, var(--camel)); margin: 2px auto 0; position: relative; z-index: 3; }
.tlLabel { padding: 1px 0 10px 4px; }
.tlLabel h4 { margin: 0; font-size: 17px; font-weight: 700; letter-spacing: -.02em; color: var(--ink-strong); }
.tlBlock { margin: 2px 0 12px 4px; border-radius: 0 16px 16px 0; padding: 13px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; background: var(--bbg, var(--ochre-soft)); box-shadow: inset 4px 0 0 var(--bbar, var(--ochre)); }
.tlBlock.tall { padding-top: 20px; padding-bottom: 20px; }
.tlBlock h4 { margin: 0; font-size: 16px; font-weight: 700; letter-spacing: -.02em; color: var(--ink-strong); }
.tlBlock small { font-family: var(--font-mono); font-size: 12px; color: var(--ink-subtle); }
.tlFree { grid-column: 3 / 4; padding: 4px 0 8px 4px; }
.tlFree .ft { display: inline-flex; align-items: center; gap: 8px; color: var(--camel-deep); font-size: 14px; font-weight: 600; }
.tlFree .ft .lucide { width: 15px; height: 15px; }
.tlPills { display: flex; gap: 8px; margin-top: 10px; }
.tlPills span { display: inline-flex; align-items: center; gap: 6px; height: 34px; padding: 0 14px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--ink-muted); background: rgba(255,255,255,.66); border: 1px solid var(--border-default); }
.tlPills .lucide { width: 14px; height: 14px; }

/* armed (JS present) → hidden until played */
.tlReady .todayTL .tlSpine i { transform: scaleY(0); }
.tlReady .todayTL .tlNode { transform: scale(0); }
.tlReady .todayTL .tlStagger { opacity: 0; transform: translateY(10px); }
.tlReady .todayTL .tlBlock { clip-path: inset(0 100% 0 0); }
.todayTL.tlPlay .tlSpine i { transform: scaleY(1); transition: transform 1.2s cubic-bezier(.22,.61,.21,1); }
.todayTL.tlPlay .tlNode { transform: scale(1); transition: transform .42s cubic-bezier(.34,1.56,.64,1); transition-delay: var(--nd, 0ms); }
.todayTL.tlPlay .tlStagger { opacity: 1; transform: none; transition: opacity .5s ease-out, transform .5s cubic-bezier(.22,.61,.21,1); transition-delay: var(--nd, 0ms); }
.todayTL.tlPlay .tlBlock { clip-path: inset(0 0 0 0); transition: clip-path .6s cubic-bezier(.22,.61,.21,1); transition-delay: var(--nd, 0ms); }
.todayTL.tlPlay .tlNow { animation: tlnow 1.7s cubic-bezier(.5,.05,.5,.95) .5s 1 both; }
@keyframes tlnow { 0% { top: 7%; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 93%; opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .tlReady .todayTL .tlSpine i, .tlReady .todayTL .tlNode, .tlReady .todayTL .tlStagger { transform: none !important; opacity: 1 !important; }
  .tlReady .todayTL .tlBlock { clip-path: none !important; }
  .tlNow { display: none; }
}

/* ---------- Today modules (Built around the whole day) ---------- */
.todayMods { position: relative; border-radius: var(--radius); background: var(--surface-card); border: 1px solid var(--border-subtle); box-shadow: var(--soft-shadow); padding: clamp(22px,3.5vw,30px); align-self: center; }
.todayMods, .todayMods * { -webkit-tap-highlight-color: transparent; }
.todayMods > .h { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin: 0 0 16px; padding-right: 0; text-align: right; }
.todayMods > .scribbleHint { position: absolute; top: -18px; left: 18px; z-index: 2; transform: rotate(-8deg) scale(.58); transform-origin: top left; }
.todayMods > .scribbleGripArrow { top: 44px; left: 44px; transform: rotate(-1deg); }
.modRow { display: flex; align-items: center; gap: 13px; padding: 13px 14px; border-radius: 16px; background: var(--surface-sunken); transition: opacity .25s ease, background-color .4s ease, box-shadow .2s ease, transform .2s ease; -webkit-user-select: none; user-select: none; -webkit-touch-callout: none; touch-action: manipulation; }
.modRow + .modRow { margin-top: 8px; }
.modRow.off { opacity: .45; }
.modGrip { display: flex; color: var(--ink-faint); cursor: grab; }
.modGrip .lucide { width: 18px; height: 18px; }
.modIc { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: var(--mcs, var(--camel-soft)); color: var(--mc, var(--camel-deep)); flex: none; }
.modIc .lucide { width: 18px; height: 18px; }
.modText { flex: 1; min-width: 0; }
.modText b { display: block; font-size: 15.5px; font-weight: 700; letter-spacing: -.01em; color: var(--ink-strong); }
.modText span { font-size: 12.5px; color: var(--text-muted); }
.modToggle { flex: none; width: 46px; height: 28px; border-radius: 999px; background: var(--paper-200); position: relative; cursor: pointer; border: none; padding: 0; transition: background-color .22s ease; }
.modToggle::after { content: ""; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.22); transition: transform .22s cubic-bezier(.34,1.56,.64,1); }
.modRow.on .modToggle { background: var(--camel); }
.modRow.on .modToggle::after { transform: translateX(18px); }
.modLock { flex: none; font-family: var(--font-mono); font-size: 10.5px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); padding: 5px 10px; border-radius: 999px; background: var(--paper-100); }
.modRow.locked .modGrip { opacity: .5; cursor: default; color: var(--text-muted); }
.modRow.locked { -webkit-user-drag: none; user-select: none; }
.modRow.locked * { -webkit-user-drag: none; }
.modRow.locked .modGrip .lucide { width: 15px; height: 15px; }
.modRow[data-mod] { cursor: default; }
.modRow[data-mod]:not(.locked) { touch-action: none; }
.modRow[data-mod], .modRow[data-mod] * { -webkit-user-select: none; user-select: none; -webkit-touch-callout: none; -webkit-user-drag: none; }
.modRow[data-mod] .modGrip { cursor: grab; }
.modRow.dragging { opacity: .92; background: var(--surface-card); box-shadow: 0 16px 34px -14px rgba(42,36,32,.42); transform: scale(1.015); cursor: grabbing; }
.modRow.dragging .modGrip { cursor: grabbing; }
body.isReorderingToday, body.isReorderingToday * { cursor: grabbing !important; -webkit-user-select: none !important; user-select: none !important; }
.todayMods .cap { margin: 16px 4px 0; font-size: 13.5px; line-height: 1.55; color: var(--text-secondary); }

/* ---------- screens grid ---------- */
.screenGrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 26px; }
.screenCard { overflow: hidden; padding: 12px; transition: transform .22s cubic-bezier(.22,.61,.21,1), box-shadow .22s cubic-bezier(.22,.61,.21,1); }
.screenCard:hover { transform: translateY(-4px); box-shadow: 0 22px 52px -26px rgba(42,36,32,.28); }
.screenCard img { width: min(100%, 252px); height: auto; object-fit: contain; object-position: top; border-radius: 24px; margin: 0 auto; background: #fff; }
.screenCard > div { padding: 16px 10px 8px; }
.screenCard span { color: var(--sand-dark); text-transform: uppercase; letter-spacing: .13em; font-size: 10px; font-weight: 800; }
.screenCard h3 { margin-top: 8px; }
.screenCard p { margin-bottom: 0; }

/* ---------- pillars / supporting / steps / faq ---------- */
.pillarGrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.pillarGrid article, .supportingGrid article, .stepList article, .faqGrid article { padding: 26px; }
.pillarGrid article { min-height: 250px; }
.supportingGrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.supportingGrid article { min-height: 200px; }
.supportingGrid article:nth-child(1) { background: var(--paper-card); }
.supportingGrid article:nth-child(2) { background: var(--olive-soft); }
.supportingGrid article:nth-child(3) { background: var(--lavender-soft); }
.supportingGrid article:nth-child(4) { background: var(--rose-soft); }
.supportingGrid article:nth-child(5) { background: var(--sand-soft); }
.supportingGrid article:nth-child(6) { background: var(--sky-soft); }

/* ---------- appearance ---------- */
.appearanceSection .sectionLead { max-width: 900px; }
.appearancePreview { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 26px; }
.appearancePanel { min-height: 430px; padding: clamp(26px, 4vw, 44px); border-radius: calc(var(--radius) + 8px); box-shadow: var(--soft-shadow); border: 1px solid var(--border-subtle); }
.lightPanel { background: linear-gradient(180deg, var(--paper-card), var(--paper-50)); color: var(--ink); }
.darkPanel { background: linear-gradient(180deg, #2A2420, #211c19); color: #f3eadb; border-color: rgba(255,255,255,.08); }
.appearanceTop { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-bottom: 34px; font-size: 14px; color: var(--muted); }
.darkPanel .appearanceTop { color: rgba(243,234,219,.56); }
.appearanceTop strong { color: currentColor; font-size: 22px; letter-spacing: -.03em; }
.settingGroup { margin-top: 28px; }
.settingGroup > span { display: block; margin-bottom: 10px; color: currentColor; font-size: 18px; font-weight: 700; letter-spacing: -.015em; }
.segmented { display: grid; grid-template-columns: repeat(3, 1fr); padding: 4px; border-radius: 999px; background: var(--paper-100); }
.darkPanel .segmented { background: rgba(58,50,43,.96); }
.segmented b { display: grid; place-items: center; min-height: 50px; border-radius: 999px; font-size: 15px; font-weight: 600; color: var(--ink-muted); }
.darkPanel .segmented b { color: rgba(243,234,219,.84); }
.segmented .selected.sand { background: var(--camel); color: var(--text-on-brand); box-shadow: 0 10px 22px rgba(160,127,88,.2); }
.segmented .selected.stone { background: #b8aec5; color: #fffefa; box-shadow: 0 10px 22px rgba(184,174,197,.16); }
.swatchRow { display: grid; grid-template-columns: repeat(10, 1fr); gap: 12px; margin-top: 38px; }
.swatchRow i { display: block; aspect-ratio: 1; border-radius: 999px; box-shadow: inset 0 0 0 1px rgba(60,56,50,.05); transition: transform .16s cubic-bezier(.22,.61,.21,1); }
.swatchRow i:hover { transform: scale(1.12); }
.darkPanel .swatchRow i { box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }

/* ---------- steps ---------- */
.stepList { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.stepList article { min-height: 250px; }
.stepList .num { display: inline-flex; margin-bottom: 38px; font-family: var(--font-mono); color: var(--sand-dark); font-weight: 500; letter-spacing: .06em; font-size: 13px; }

/* ---------- privacy band ---------- */
.privacyBand { margin: 0 clamp(22px, 6vw, 96px) clamp(88px, 11vw, 136px); padding: clamp(30px, 5vw, 58px); border-radius: calc(var(--radius) + 10px); display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; background: var(--surface-sunken); color: var(--ink); box-shadow: var(--soft-shadow); border: 1px solid var(--border-subtle); }
.privacyBand h2 { margin-bottom: 0; }
.statusNote { margin: 22px 0 0; padding: 18px 20px; border-radius: 22px; background: var(--surface-card); border: 1px solid var(--border-subtle); }
.privacyLink { display: inline-flex; align-items: center; gap: 7px; margin-top: 2px; color: var(--sand-dark); font-weight: 600; font-size: 15px; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.privacyLink .lucide { width: 15px; height: 15px; }

/* ---------- maker band ---------- */
.makerBand { max-width: 760px; margin: 0 auto; padding: 0 22px clamp(88px, 11vw, 136px); text-align: center; }
.makerIcon { width: 46px; height: 46px; border-radius: 13px; margin: 0 auto 18px; box-shadow: var(--soft-shadow); }
.makerBand .eyebrow { margin-bottom: 14px; }
.makerText { margin: 0 auto; max-width: 56ch; font-size: clamp(17px, 1.8vw, 20px); line-height: 1.62; color: var(--soft-ink); text-wrap: pretty; }

/* ---------- faq ---------- */
.faqGrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.faqGrid article { min-height: 200px; }
.faqCta { margin-top: 18px; padding: 24px 26px; border-radius: var(--radius); background: var(--surface-card); display: flex; align-items: center; justify-content: space-between; gap: 18px; box-shadow: var(--soft-shadow); border: 1px solid var(--border-subtle); }
.faqCta p { margin: 0; font-size: 20px; line-height: 1.25; letter-spacing: -.015em; font-weight: 700; color: var(--ink-strong); }
.faqCta > div > span { display: block; margin-top: 8px; max-width: 620px; color: var(--muted); font-size: 14px; line-height: 1.45; font-weight: 400; }

/* ---------- footer ---------- */
.footer { display: flex; justify-content: space-between; gap: 20px; padding: 30px clamp(20px, 5vw, 72px); border-top: 1px solid var(--border-subtle); color: var(--muted); font-size: 14px; }
.footer strong { color: var(--ink); }
.footerLinks { display: flex; gap: 18px; flex-wrap: wrap; }
.footerLinks a:hover { color: var(--sand-dark); }

/* ---------- responsive ---------- */
@media (max-width: 1180px) {
  .hero { grid-template-columns: 1fr; }
  .heroStack { height: 600px; min-height: 600px; max-width: 760px; width: 100%; justify-self: center; }
  .shotFront { width: 330px; transform: translate(-50%, -50%); }
  .pillarGrid, .stepList { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 920px) {
  .productPair, .privacyBand, .faqGrid { grid-template-columns: 1fr; }
  .productPair > * { min-width: 0; }
  .todayTL, .todayMods { width: 100%; max-width: 100%; }
  .shotRoles, .shotCalendar { display: none; }
  .appearancePreview { grid-template-columns: 1fr; }
  .screenGrid, .supportingGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .privacyBand { margin-left: 22px; margin-right: 22px; }
}
@media (max-width: 680px) {
  .nav { align-items: center; position: static; }
  .navlinks { gap: 14px; }
  .navlinks a:not(.navCta) { display: none; }
  h1 { font-size: clamp(44px, 13vw, 66px); }
  .lead { font-size: 17px; line-height: 1.54; }
  .sectionLead { font-size: 16px; line-height: 1.58; }
  .spaceStep p { font-size: 16px; line-height: 1.54; }
  .roleProofCard p.roleWhy { font-size: 15px; line-height: 1.58; }
  .legal .lede { font-size: 16px; line-height: 1.58; }
  .legal p, .legal li { font-size: 15px; line-height: 1.62; }
  .hero { padding-top: 44px; }
  .heroStack { min-height: 500px; height: 500px; }
  .phoneShot { padding: 7px; border-radius: 34px; }
  .phoneShot img { border-radius: 27px; }
  .shotFront { width: 248px; transform: translate(-50%, -50%); }
  .screenGrid, .pillarGrid, .supportingGrid, .stepList, .faqGrid { grid-template-columns: 1fr; }
  .appearancePanel { min-height: auto; padding: 24px 18px; }
  .appTimelineRow { grid-template-columns: 76px minmax(0, 1fr); gap: 12px; }
  .freeGap { margin-left: 88px; }
  .todayMods > .h { padding-right: 0; margin-bottom: 16px; text-align: right; }
  .todayMods > .scribbleHint { position: absolute; top: -18px; left: 18px; margin: 0; transform: rotate(-8deg) scale(.58); }
  .todayMods > .scribbleGripArrow { top: 44px; left: 44px; transform: rotate(-1deg); }
  .faqCta { flex-direction: column; align-items: flex-start; }
  .footer { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .button { transition: none; } }

/* ---------- legal pages (privacy / terms) ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: clamp(40px, 7vw, 88px) clamp(22px, 6vw, 40px) clamp(80px, 12vw, 140px); }
.legalHead { margin-bottom: clamp(32px, 5vw, 52px); }
.legalHead .eyebrow { display: block; margin-bottom: 14px; }
.legal h1 { font-size: clamp(36px, 6vw, 60px); font-weight: 800; letter-spacing: -.03em; line-height: 1.04; color: var(--ink-strong); }
.legal .updated { margin-top: 16px; font-family: var(--font-mono); font-size: 13px; color: var(--text-muted); }
.legal .lede { margin-top: 20px; font-size: 18px; line-height: 1.6; color: var(--text-secondary); text-wrap: pretty; }
.legal h2 { font-size: clamp(21px, 2.6vw, 26px); font-weight: 700; letter-spacing: -.02em; color: var(--ink-strong); margin: clamp(34px, 5vw, 48px) 0 12px; }
.legal h2 .n { font-family: var(--font-mono); font-size: 14px; color: var(--camel-deep); margin-right: 10px; font-weight: 500; }
.legal p, .legal li { font-size: 16px; line-height: 1.66; color: var(--soft-ink); }
.legal p { margin: 0 0 14px; text-wrap: pretty; }
.legal ul { margin: 0 0 14px; padding-left: 22px; display: grid; gap: 8px; }
.legal li::marker { color: var(--camel); }
.legal a { color: var(--sand-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.legal strong { color: var(--ink-strong); }
.legal .note { margin-top: 36px; padding: 18px 20px; border-radius: 16px; background: var(--surface-sunken); border: 1px solid var(--border-subtle); font-size: 14px; color: var(--text-secondary); }
.backLink { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; font-size: 14.5px; font-weight: 600; color: var(--text-secondary); }
.backLink:hover { color: var(--ink-strong); }
.backLink .lucide { width: 16px; height: 16px; }

/* nav persistent CTA */
.navCta { display: inline-flex; align-items: center; white-space: nowrap; padding: 9px 18px; border-radius: 999px; background: var(--camel); color: var(--text-on-brand, #fff); font-weight: 700; box-shadow: 0 8px 20px -8px color-mix(in srgb, var(--camel) 60%, transparent); transition: background-color .3s ease, transform .16s ease; }
.navCta:hover { background: var(--camel-hover, var(--camel)); transform: translateY(-1px); }

/* closing statement */
.closing { text-align: center; padding: clamp(80px, 12vw, 150px) clamp(22px, 6vw, 96px); }
.closing .eyebrow { display: block; margin-bottom: 18px; }
.closing h2 { font-size: clamp(32px, 5.2vw, 60px); font-weight: 800; letter-spacing: -.03em; line-height: 1.08; color: var(--ink-strong); text-wrap: balance; }
.closing h2 br { display: block; }

/* ============================================================
   THEME PLAYGROUND - background styles, dark mode, 10 accents
   Variables live on <html>; everything downstream references
   --paper-* / --camel* / --ink* so a single swap re-skins all.
   ============================================================ */
/* ---- LIGHT background styles (page + surfaces match app) ---- */
/* Sand = warm (base, from tokens). Mist = cool blue-green. Stone = neutral gray. */
[data-bg="mist"]  { --paper-card:#FCFEFE; --paper-50:#F5FAFB; --paper-100:#EAF1F2; --paper-150:#DFE9EA; --paper-200:#D4DEDF;
  --line-subtle:rgba(40,70,76,.08); --line:rgba(40,70,76,.13); --line-strong:rgba(40,70,76,.2); }
[data-bg="stone"] { --paper-card:#FCFCFD; --paper-50:#F4F5F6; --paper-100:#E9EAEC; --paper-150:#DEE0E2; --paper-200:#D3D5D8;
  --line-subtle:rgba(40,42,48,.08); --line:rgba(40,42,48,.12); --line-strong:rgba(40,42,48,.19); }

/* ---- DARK mode: shared light ink, surfaces vary by background style ---- */
[data-theme="dark"] {
  --paper-card:#2A2420; --paper-50:#1F1C19; --paper-100:#2E2823; --paper-150:#38312B; --paper-200:#443C34;
  --ink-strong:#F3EADB; --ink:#E7DDCD; --ink-muted:#B6AB9B; --ink-subtle:#8C8273; --ink-faint:#6b6256;
  --line-subtle:rgba(255,255,255,.07); --line:rgba(255,255,255,.11); --line-strong:rgba(255,255,255,.17);
}
/* Sand dark = warm brown (default dark) */
[data-theme="dark"] body { background:
    radial-gradient(circle at 10% 8%, color-mix(in srgb, var(--camel) 20%, transparent), transparent 26%),
    radial-gradient(circle at 88% 14%, color-mix(in srgb, var(--camel) 9%, transparent), transparent 24%),
    linear-gradient(180deg, #221d19 0%, #1d1815 60%, #181410 100%); }
/* Mist dark = cool blue-green */
[data-theme="dark"][data-bg="mist"] {
  --paper-card:#202D33; --paper-50:#172126; --paper-100:#1E2A30; --paper-150:#28363D; --paper-200:#324249;
  --line-subtle:rgba(180,220,228,.08); --line:rgba(180,220,228,.12); --line-strong:rgba(180,220,228,.18);
}
[data-theme="dark"][data-bg="mist"] body { background:
    radial-gradient(circle at 10% 8%, color-mix(in srgb, var(--camel) 16%, transparent), transparent 26%),
    linear-gradient(180deg, #1a262c 0%, #16201f 60%, #121b1d 100%); }
/* Stone dark = neutral gray */
[data-theme="dark"][data-bg="stone"] {
  --paper-card:#24292F; --paper-50:#1A1D21; --paper-100:#21262B; --paper-150:#2B3137; --paper-200:#353C42;
  --line-subtle:rgba(220,224,230,.08); --line:rgba(220,224,230,.12); --line-strong:rgba(220,224,230,.18);
}
[data-theme="dark"][data-bg="stone"] body { background:
    radial-gradient(circle at 10% 8%, color-mix(in srgb, var(--camel) 15%, transparent), transparent 26%),
    linear-gradient(180deg, #1d2125 0%, #181c20 60%, #15181c 100%); }

[data-theme="dark"] .nav { background: color-mix(in srgb, var(--paper-50) 92%, transparent); }
[data-theme="dark"] .button.secondary { background: rgba(255,255,255,.06); color: var(--ink-strong); }
[data-theme="dark"] .heroForm, [data-theme="dark"] .waitForm { background: rgba(255,255,255,.05); }
[data-theme="dark"] .tlPills span, [data-theme="dark"] .timelinePills span { background: rgba(255,255,255,.06); }
[data-theme="dark"] .statusNote { background: rgba(255,255,255,.04); }
[data-theme="dark"] .badge { background: rgba(255,255,255,.05); }
[data-theme="dark"] .phoneShot, [data-theme="dark"] .showPhone { background: #3A322B; border-color: rgba(255,255,255,.09); }
[data-theme="dark"] .routinePhone { background: #3A322B; border-color: rgba(255,255,255,.09); }

/* 10 accents - EXACT app palette (sampled from app screenshots), app order.
   Only the brand/accent family swaps; categorical colors stay. */
[data-accent="clay"]     { --camel:#866C5F; --camel-soft:#E4DCD6; --camel-deep:#6B5549; --camel-hover:#73594C; }
[data-accent="rose"]     { --camel:#C07A6E; --camel-soft:#F0DDD8; --camel-deep:#9E5C50; --camel-hover:#A9655A; }
[data-accent="ochre"]    { --camel:#C29366; --camel-soft:#EFE2D2; --camel-deep:#9C7448; --camel-hover:#AC8052; }
[data-accent="sand"]     { --camel:#CDB094; --camel-soft:#F1E8DC; --camel-deep:#A2825F; --camel-hover:#B89A78; }
[data-accent="olive"]    { --camel:#A6AF8A; --camel-soft:#E6E9DB; --camel-deep:#7C8661; --camel-hover:#8C9670; }
[data-accent="sage"]     { --camel:#7D907F; --camel-soft:#DBE2DC; --camel-deep:#5E7163; --camel-hover:#697C6E; }
[data-accent="steel"]    { --camel:#8898A8; --camel-soft:#DEE4EA; --camel-deep:#647488; --camel-hover:#728498; }
[data-accent="sky"]      { --camel:#A8BDCB; --camel-soft:#E6EEF3; --camel-deep:#7393A6; --camel-hover:#8AAABD; }
[data-accent="lavender"] { --camel:#9C93A5; --camel-soft:#E4DFE8; --camel-deep:#766C82; --camel-hover:#857A93; }
[data-accent="gray"]     { --camel:#A3A19C; --camel-soft:#E5E4E1; --camel-deep:#75736E; --camel-hover:#88867F; }

/* appearance control */
.apCtl { position: relative; width: fit-content; max-width: 100%; margin: 40px auto 0; padding: clamp(42px,5vw,58px) clamp(24px,4vw,38px) clamp(24px,4vw,38px); border-radius: calc(var(--radius) + 6px); background: var(--surface-card); border: 1px solid var(--border-subtle); box-shadow: var(--soft-shadow); }
.apHint { position: absolute; top: 8px; right: clamp(18px, 4vw, 42px); transform: rotate(-4deg); z-index: 2; }
.apGroup + .apGroup { margin-top: 26px; }
.apGroup > span { display: block; margin-bottom: 11px; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); }
.apSeg { display: inline-grid; grid-auto-flow: column; gap: 2px; padding: 4px; border-radius: 999px; background: var(--paper-100); }
.apSeg b { display: inline-flex; align-items: center; gap: 7px; justify-content: center; min-width: 96px; padding: 10px 16px; border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--text-secondary); cursor: pointer; user-select: none; }
.apSeg b .lucide { width: 15px; height: 15px; }
/* inline panel: segmented toggles span exactly the accent palette width
   (leftmost circle to rightmost): 10 swatches × 38px + 9 gaps × 12px = 488px */
.apCtl .apSeg { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; width: 488px; max-width: 100%; }
.apCtl .apSeg b { min-width: 0; }
.apSeg b.on { background: var(--camel); color: var(--text-on-brand, #fff); box-shadow: 0 4px 13px -3px color-mix(in srgb, var(--camel) 55%, transparent); }
.apSeg b.on .lucide { color: var(--text-on-brand, #fff); }
.apSw { display: flex; flex-wrap: wrap; gap: 12px; }
.apSw button { width: 38px; height: 38px; padding: 0; border-radius: 999px; border: 2px solid transparent; background: var(--sw); cursor: pointer; position: relative; transition: transform .16s cubic-bezier(.34,1.56,.64,1); box-shadow: inset 0 0 0 1px rgba(60,56,50,.08); }
.apSw button:hover { transform: scale(1.12); }
.apSw button.on { border-color: transparent; transform: scale(1.04); box-shadow: inset 0 0 0 1px rgba(60,56,50,.08), 0 0 0 2px var(--surface-card), 0 0 0 4px color-mix(in srgb, var(--sw) 70%, var(--ink-strong)); }
@media (max-width: 560px) {
  .apCtl { width: 100%; padding-top: 52px; }
  .apHint { top: 8px; right: 18px; transform: rotate(-4deg) scale(.88); transform-origin: top right; }
  .apSeg b { min-width: 0; flex: 1; }
  .apSeg { display: grid; grid-auto-flow: column; width: 100%; }
  .apCtl .apSeg { width: 100%; }
  .apSw { flex-wrap: nowrap; gap: 7px; }
  .apSw button { flex: 1 1 0; width: auto; min-width: 0; height: auto; aspect-ratio: 1; }
}

/* floating appearance widget */
.apFab { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 54px; height: 54px; border-radius: 50%; border: 1px solid var(--border-default); background: var(--surface-card); box-shadow: 0 16px 36px -14px rgba(42,36,32,.42); display: grid; place-items: center; cursor: pointer; color: var(--ink-strong); transition: transform .18s ease, background-color .4s ease, border-color .4s ease; }
.apFab:hover { transform: translateY(-2px) rotate(-8deg); }
.apFab .lucide { width: 23px; height: 23px; }
.apPop { position: fixed; right: 22px; bottom: 88px; z-index: 80; width: 304px; max-width: calc(100vw - 44px); padding: 18px; border-radius: 22px; background: var(--surface-card); border: 1px solid var(--border-subtle); box-shadow: 0 28px 64px -24px rgba(42,36,32,.5); opacity: 0; transform: translateY(10px) scale(.98); transform-origin: bottom right; pointer-events: none; transition: opacity .2s ease, transform .22s cubic-bezier(.22,.61,.21,1); }
.apPop.open { opacity: 1; transform: none; pointer-events: auto; }
.apHead { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.apHead b { font-size: 14px; font-weight: 700; color: var(--ink-strong); letter-spacing: -.01em; }
.apReset { background: none; border: none; cursor: pointer; font-family: var(--font-sans); font-size: 12.5px; font-weight: 600; color: var(--sand-dark); }
.apReset:hover { text-decoration: underline; }
.apPop .apGroup + .apGroup { margin-top: 16px; }
.apPop .apGroup > span { margin-bottom: 8px; font-size: 11px; }
.apPop .apSeg { display: grid; grid-auto-flow: column; width: 100%; }
.apPop .apSeg b { min-width: 0; flex: 1; padding: 8px 8px; font-size: 13px; gap: 5px; }
.apPop .apSeg b .lucide { width: 13px; height: 13px; }
.apPop .apSw { gap: 9px; }
.apPop .apSw button { width: 30px; height: 30px; }
@media (max-width: 560px) { .apPop .apSeg b { font-size: 12px; } }
