/* ============================================================================
   Minerva — marketing site styles
   "Active Minimalism": expansive negative space, an editorial cream canvas,
   one blue accent, and two typographic voices —
     Libre Baskerville (Italic)  — high-impact display accents, used sparingly
     Work Sans                   — headlines (SemiBold) and body (Regular)
   Note: Google's Libre Baskerville has no true Bold Italic, so display
   moments use Italic 400 at large sizes (it reads elegant at scale) rather
   than a faux-bold. Fonts are loaded from index.html, not @import.
   ========================================================================= */

:root {
  /* ---- the four-colour system ---- */
  --bg:         #F9FCF4;                 /* editorial cream — primary canvas */
  --bg-alt:     #F7F7F7;                 /* minimal gray — segmenting bands  */
  --accent:     #1C5A81;                 /* minerva blue — the ONE accent    */
  --accent-ink: #F9FCF4;                 /* text on blue                     */
  --ink:        #242424;                 /* charcoal — type, icons, borders  */
  --ink-soft:   rgba(36, 36, 36, .66);
  --ink-faint:  rgba(36, 36, 36, .38);
  --line:       rgba(36, 36, 36, .13);   /* hairlines                        */
  --card:       #FFFFFF;

  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-sans:    'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* editorial pacing wants more air than a normal landing page */
  --space-section: clamp(96px, 13vw, 172px);
  --radius: 3px;                          /* near-square = editorial */
  --maxw: 1200px;
}

/* ===========================================================================
   Base
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* no native smooth scrolling — Lenis owns the glide (and they fight) */

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background-color: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: rgba(28, 90, 129, .16); color: var(--ink); }

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

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* white bands cleanly segment the structural blocks */
.band-alt { background: var(--bg-alt); }

/* ----- the "wind" motif ----------------------------------------------------
   Faded dandelion seeds, injected ONLY into the white (band-alt) sections —
   never the cream ones. motion.js drifts them gently left → right as the
   page scrolls; kept at texture-level opacity. */
.seeds { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.seeds ~ .wrap, .seeds ~ .feature-flow, .seeds ~ .feature-pin { position: relative; z-index: 1; }
.seed {
  position: absolute; height: auto;
  color: var(--ink); opacity: .20;
  will-change: transform;
}
.privacy, .platforms, .faq { position: relative; }

/* the features-section seed layer floats FIXED over the viewport for as
   long as the section is in range (toggled by motion.js) — it reads as an
   ambient overlay that drifts left-right and bobs in place, rather than
   scrolling away with the page content beneath it. */
.features .seeds.is-fixed { position: fixed; inset: 0; }

/* visually hidden but available to screen readers & search engines */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ----- shared typographic pieces ----------------------------------------- */
h1, h2, h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--ink);
  line-height: 1.14;
}
/* the single artistic voice inside headlines: Baskerville italic, blue */
h2 em, h3 em, .punch em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0;
}

/* the small tracked eyebrow above section headings — a thin blue rule + caps */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11.5px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--accent); flex: none;
}
.eyebrow-invert { color: rgba(249, 252, 244, .75); }
.eyebrow-invert::before { background: var(--accent-ink); }

.section-head { max-width: 680px; margin-bottom: clamp(48px, 6vw, 72px); }
.section-head h2 { font-size: clamp(30px, 4.2vw, 46px); margin: 20px 0 16px; }
.section-head p { color: var(--ink-soft); font-size: 17.5px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* [data-reveal] elements are revealed by motion.js (ScrollTrigger.batch).
   They stay visible by default so the page reads perfectly with JS off;
   the script hides them an instant before animating them in. */

/* ----- buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 600; letter-spacing: .01em;
  padding: 13px 26px; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, background .2s ease, box-shadow .2s ease,
              border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; flex: none; }
.btn-primary {
  color: var(--accent-ink); background: var(--accent); border-color: var(--accent);
}
.btn-primary:hover {
  transform: translateY(-1px);
  background: #17496a;
  box-shadow: 0 10px 26px rgba(28, 90, 129, .22);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }
/* cream-outline button for the blue band */
.btn-invert {
  color: var(--accent-ink); background: transparent; border-color: rgba(249, 252, 244, .55);
}
.btn-invert:hover { background: var(--accent-ink); color: var(--accent); border-color: var(--accent-ink); }
.btn-lg { font-size: 15px; padding: 16px 32px; }
.btn-block { width: 100%; }


/* ===========================================================================
   Header / top nav — minimalist fixed bar
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(249, 252, 244, .86);
  backdrop-filter: saturate(1.3) blur(10px);
  -webkit-backdrop-filter: saturate(1.3) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, transform .45s ease, opacity .45s ease;
}
/* the nav steps aside while the pinned hero owns the screen (motion.js) */
.hero-immersive .site-header { transform: translateY(-100%); opacity: 0; pointer-events: none; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-word {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 20px; line-height: 1; color: var(--ink); letter-spacing: -.01em;
  transform: translateY(1px); /* optical baseline against the mark */
}
.site-header.is-scrolled { border-bottom-color: var(--line); }

.header-inner { display: flex; align-items: center; gap: 18px; height: 66px; }

.brand { display: flex; align-items: center; flex: none; }
/* the "m" logo mark + the "Minerva" wordmark (owner note 2026-07-25) */
.brand-mark {
  width: 48px; height: 33px; color: var(--accent); display: block;
  transition: transform .25s ease;
}
.brand:hover .brand-mark { transform: translateY(-1px); }

.site-nav { margin-left: auto; display: flex; align-items: center; gap: 34px; }
.site-nav .links { display: flex; align-items: center; gap: 30px; }
.site-nav a.navlink {
  font-size: 14px; color: var(--ink-soft); font-weight: 500;
  transition: color .2s ease;
}
.site-nav a.navlink:hover { color: var(--accent); }

.nav-toggle {
  display: none; margin-left: auto;
  background: none; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 8px 12px; cursor: pointer; color: var(--ink-soft);
  font-family: var(--font-sans); font-size: 12px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
}


/* ===========================================================================
   HERO — the scroll-driven story
   ---------------------------------------------------------------------------
   The markup is authored in its calm END state (title + sorted columns +
   punchline in normal flow), which is what no-JS visitors, small screens and
   reduced-motion visitors see. When motion.js decides the full choreography
   can run, it adds html.hero-anim: the layers become absolutely-positioned
   scenes inside a pinned viewport, and GSAP scrubs the story.
   ========================================================================= */
.hero { position: relative; background: var(--bg); }

/* ----- static composed state (the default) ------------------------------- */
.hero-pin {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(48px, 7vw, 84px);
  padding: clamp(56px, 8vh, 96px) 32px clamp(72px, 10vh, 120px);
}
.hero-anim .hero-pin {
  display: block; height: 100svh; overflow: hidden; padding: 0; gap: 0;
}

/* ----- scene 1 · intro ---------------------------------------------------- */
.hero-intro { text-align: center; max-width: 920px; }
.hero-anim .hero-intro {
  position: absolute; inset: 0; z-index: 3; max-width: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  /* the padding-bottom biases the whole intro upward — less head space
     between the menu bar and the opening content */
  padding: 0 32px 12vh; pointer-events: none;
}
.hero-kicker {
  font-size: 12px; font-weight: 500; letter-spacing: .3em;
  text-transform: uppercase; color: var(--ink-soft);
  margin-bottom: clamp(12px, 2vh, 20px);
}
/* "Minerva" — demoted to a serif subheading above the value proposition */
.hero-brandline {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(28px, 3.2vw, 42px); line-height: 1.1;
  color: var(--ink); letter-spacing: -.01em;
}
.hero-brandline .dot { color: var(--accent); font-style: normal; }
/* the H1 — the largest, boldest text on the page: the value proposition */
.hero-h1 {
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 58px); line-height: 1.1;
  letter-spacing: -.028em; color: var(--ink);
  max-width: 24ch; margin: clamp(16px, 2.6vh, 26px) auto 0;
  text-wrap: balance;
}
.hero-h1 em {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  color: var(--accent); letter-spacing: 0;
}
.hero-lede {
  font-size: clamp(15.5px, 1.6vw, 17.5px); color: var(--ink-soft); max-width: 46ch;
  margin: clamp(14px, 2.4vh, 22px) auto 0;
}

/* ----- scenes 2–3 · the looming pile -------------------------------------- */
.pile { display: none; }
.hero-anim .pile {
  /* z-index 3: the flying chips stay ABOVE the sorted app windows, so their
     journey into place is never hidden behind the cards */
  display: block; position: absolute; z-index: 3;
  inset: 9vh 6vw 12vh;
  pointer-events: none;
}
.pile-kicker {
  position: absolute; left: 50%; top: -4vh; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  white-space: nowrap;
}
.pile-kicker .pk-time {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(26px, 3.4vw, 40px); color: var(--accent); line-height: 1.1;
}
.pile-kicker .pk-time em { font-size: .55em; font-style: italic; margin-left: .1em; }
.pile-kicker .pk-desc {
  font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-soft);
}

/* a fragment of the brain dump. Placed by art-directed custom properties;
   GSAP owns every transform (centring, rotation, and the flight home). */
.frag {
  position: absolute;
  left: var(--x); top: var(--y);
  font-size: calc(var(--fs) * clamp(15px, 1.7vw, 22px));
  line-height: 1.3; color: var(--ink);
  max-width: 20ch; text-align: center; text-wrap: balance;
  display: grid; place-items: center;
  will-change: transform, opacity;
}
.frag--serif { font-family: var(--font-display); font-style: italic; }
.frag--noise { color: var(--ink-faint); }
.frag-raw, .frag-title { grid-area: 1 / 1; }
/* the distilled title is a native-styled chip — matching the landing chips
   in its destination app's UI, so the hand-off on landing is seamless */
.frag-title {
  opacity: 0;
  font-style: normal; text-align: left;
  white-space: nowrap; width: max-content; text-wrap: initial;
}
/* task → a Google Tasks row, lifted */
.frag[data-kind="task"] .frag-title {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-gtasks); font-size: 14px; font-weight: 400;
  color: #202124; line-height: 1.3;
  background: #fff; border: 1px solid rgba(60, 64, 67, .16); border-radius: 8px;
  padding: 10px 16px 10px 12px;
  box-shadow: 0 10px 26px rgba(36, 36, 36, .12);
}
/* event → an Apple Calendar event block, lifted */
.frag[data-kind="event"] .frag-title {
  display: block;
  font-family: var(--font-apple); line-height: 1.3;
  background: #E4EFFB; border-radius: 7px;
  border-left: 4px solid #1A73C7;
  padding: 7px 14px 8px 10px;
  box-shadow: 0 10px 26px rgba(36, 36, 36, .12);
}
/* note → a Notion page row, lifted */
.frag[data-kind="note"] .frag-title {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-notion); font-size: 14px; font-weight: 500;
  color: #37352F; line-height: 1.3;
  background: #fff; border: 1px solid rgba(36, 36, 36, .12); border-radius: 6px;
  padding: 9px 14px 9px 11px;
  box-shadow: 0 10px 26px rgba(36, 36, 36, .12);
}

/* ----- scenes 4–5 · the sorted columns ------------------------------------ */
.sorted { width: 100%; }
.hero-anim .sorted {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 0 0 4vh;
}
.sorted-inner {
  width: 100%; max-width: 1040px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3.5vw, 48px);
}
.hero-anim .sorted-inner { padding: 0 32px; }
/* each column is a small native app window: Google Tasks / Apple Calendar /
   Notion. The near-system font stacks below approximate each ecosystem
   without loading extra webfonts. */
:root {
  --font-gtasks: Roboto, 'Segoe UI', Arial, sans-serif;
  --font-apple: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', sans-serif;
  --font-notion: ui-sans-serif, -apple-system, 'Segoe UI', Helvetica, sans-serif;
}
.sort-col {
  min-width: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 14px 36px rgba(36, 36, 36, .07);
  padding: 16px 16px 18px;
}
.sc-head { margin-bottom: 12px; }
.sc-app { display: flex; align-items: center; gap: 9px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.app-ic { width: 20px; height: 20px; flex: none; display: block; }
.app-ic svg { width: 100%; height: 100%; display: block; }
.sc-label {
  font-size: 14px; font-weight: 600; letter-spacing: .01em;
  text-transform: none; color: var(--ink);
}
.sc-appname {
  margin-left: auto; font-size: 10.5px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft);
}

/* ----- the destination-app conveyor ----------------------------------------
   A full-width band of platform logos riding sideways beneath the sorted
   columns — a continuous CSS marquee, persistent and completely decoupled
   from the page's vertical scroll. The track holds two identical sets, so
   −50% loops seamlessly. */
.logo-marquee {
  width: 100vw; margin: clamp(48px, 8vh, 88px) 0 0 calc(50% - 50vw);
  /* the band floats slightly above the page: an elevated white strip with a
     soft drop shadow */
  background: rgba(255, 255, 255, .85);
  box-shadow: 0 16px 38px rgba(36, 36, 36, .10), 0 3px 10px rgba(36, 36, 36, .05);
  padding: 15px 0;
}
.lm-clip {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 12%, #000 88%, transparent 100%);
}
.lm-track {
  display: flex; width: max-content; will-change: transform;
  animation: lm-run 44s linear infinite;
}
.lm-set {
  display: flex; align-items: center;
  gap: clamp(34px, 4.5vw, 64px); padding-right: clamp(34px, 4.5vw, 64px);
}
.lm-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; color: var(--ink-soft);
  white-space: nowrap;
}
.lm-item svg { width: 21px; height: 21px; flex: none; }
@keyframes lm-run { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .lm-track { animation: none; } }

.sc-slots { display: flex; flex-direction: column; align-items: stretch; }

/* --- Tasks column · Google Tasks rows ------------------------------------ */
.sort-col[data-kind="task"] .sc-slots { gap: 0; }
.sort-col[data-kind="task"] .slot-chip {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 4px;
  border-bottom: 1px solid rgba(60, 64, 67, .12);
  font-family: var(--font-gtasks); font-size: 14px; font-weight: 400;
  color: #202124; line-height: 1.3;
}
.sort-col[data-kind="task"] .slot-chip:last-child { border-bottom: 0; }
.chip-check {
  width: 18px; height: 18px; flex: none;
  border: 2px solid #80868B; border-radius: 50%;
}

/* --- Events column · Apple Calendar blocks -------------------------------- */
.sort-col[data-kind="event"] .sc-slots { gap: 8px; }
.sort-col[data-kind="event"] .slot-chip {
  display: block;
  background: #E4EFFB; border-radius: 7px;
  border-left: 4px solid #1A73C7;
  padding: 7px 12px 8px 10px;
  font-family: var(--font-apple); line-height: 1.3;
}
.chip-title { display: block; }
.sort-col[data-kind="event"] .chip-title,
.frag[data-kind="event"] .chip-title {
  font-size: 13.5px; font-weight: 600; color: #0F4C81;
}
.chip-meta { display: block; font-size: 12px; color: rgba(15, 76, 129, .68); margin-top: 1px; }

/* --- Notes column · Notion page rows -------------------------------------- */
.sort-col[data-kind="note"] .sc-slots { gap: 2px; }
.sort-col[data-kind="note"] .slot-chip {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 6px; border-radius: 4px;
  font-family: var(--font-notion); font-size: 14px; font-weight: 500;
  color: #37352F; line-height: 1.3;
}
.sort-col[data-kind="note"] .slot-chip:hover { background: rgba(55, 53, 47, .06); }
.chip-page {
  width: 13px; height: 16px; flex: none;
  border: 1.5px solid #A7A5A1; border-radius: 2.5px;
  background:
    linear-gradient(#C9C7C3, #C9C7C3) 50% 32% / 55% 1.5px no-repeat,
    linear-gradient(#C9C7C3, #C9C7C3) 50% 58% / 55% 1.5px no-repeat;
}
/* inline chips inside task/note rows keep their titles on one line */
.sort-col[data-kind="task"] .chip-title,
.sort-col[data-kind="note"] .chip-title { display: inline; }

/* ----- scene 5 · the call to action ----------------------------------------
   Lives inside .sorted, tight under the conveyor (owner note 2026-07-25) —
   it centres with the cards + marquee cluster instead of hugging the
   bottom edge of the screen. */
.hero-punch { text-align: center; margin-top: clamp(28px, 5vh, 48px); }

/* ----- the scroll guide ---------------------------------------------------- */
.scroll-guide { display: none; }
.hero-anim .scroll-guide {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 4; pointer-events: none;
}
.sg-txt {
  font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-soft);
}
.sg-track {
  position: relative; width: 1px; height: 64px;
  background: var(--line); overflow: hidden; display: block;
}
.sg-fill {
  position: absolute; left: 0; top: 0; width: 100%; height: 22px;
  background: var(--accent);
  animation: sg-run 2.2s cubic-bezier(.65, 0, .35, 1) infinite;
}
@keyframes sg-run {
  0%   { transform: translateY(-24px); }
  100% { transform: translateY(66px); }
}
@media (prefers-reduced-motion: reduce) { .sg-fill { animation: none; } }


/* ===========================================================================
   The floating pill CTA — the page's one round element
   ========================================================================= */
.pill-cta {
  position: fixed; right: 28px; bottom: 28px; z-index: 60;
  font-size: 14px; font-weight: 600; color: var(--accent-ink);
  background: var(--accent); border-radius: 999px; padding: 14px 26px;
  box-shadow: 0 6px 24px rgba(28, 90, 129, .30);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity .4s ease, transform .4s cubic-bezier(.22, .61, .36, 1);
}
.pill-cta.is-visible { opacity: 1; transform: none; pointer-events: auto; }
/* it steps back near the waitlist, and yields when a native button is hovered */
.pill-cta.is-suppressed { opacity: 0; transform: translateY(16px); pointer-events: none; }
.pill-cta.is-yielding { transform: scale(.84); opacity: .55; }
.pill-cta:hover { transform: translateY(-2px); }


/* ===========================================================================
   HOW IT WORKS — the 50/50 scroll-linked feature story.
   Left column: feature copy that snaps into place while you read.
   Right column: a sticky stage of Minerva-in-action mockups; motion.js adds
   html.fx-anim on desktop and swaps scenes as the matching step arrives.
   Without JS / on small screens everything simply stacks.
   ========================================================================= */
.features { position: relative; padding: var(--space-section) 0 clamp(48px, 7vw, 104px); }
/* under the pinned choreography the head carries its own nav clearance,
   so the long editorial run-up above it reads as dead space — tightened
   per the owner's 2026-07-25 annotations */
.fx-anim .features { padding-top: clamp(40px, 6vh, 72px); }
.features .wrap { position: relative; z-index: 1; }

.feature-flow {
  display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 5vw, 84px); align-items: start;
}

/* --- left · the copy steps ------------------------------------------------ */
.fc-step { max-width: 46ch; padding: 40px 0; }
.fc-fig {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(40px, 4.4vw, 58px); line-height: 1; color: var(--accent);
  display: block; margin-bottom: 16px;
}
.fc-step h3 { font-size: clamp(21px, 2.2vw, 27px); margin-bottom: 12px; }
.fc-step p { color: var(--ink-soft); font-size: 15.5px; }
.fc-points { list-style: none; margin-top: 18px; display: grid; gap: 8px; }
.fc-points li {
  position: relative; padding-left: 22px;
  font-size: 13.5px; font-weight: 500; color: var(--ink);
}
.fc-points li::before {
  content: ""; position: absolute; left: 0; top: .52em;
  width: 12px; height: 1.5px; background: var(--accent);
}
.fc-tag {
  display: inline-block; margin-left: 6px; padding: 2px 8px;
  font-size: 9.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); border: 1px solid var(--line); border-radius: 999px;
  vertical-align: 2px;
}

/* full choreography (html.fx-anim, desktop): head + 50/50 grid are PINNED
   together for the length of the story (motion.js) — the section head
   holds at the top of the screen while the four steps play beneath it
   (owner note 2026-07-25). The copy steps stack in one grid cell and
   cross-fade — scrolling is dwell time in the "snapped" position, with
   quick handovers between steps and a pause at both ends. */
.fx-anim .feature-pin {
  height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  gap: clamp(14px, 3vh, 32px); /* head sits tight above the steps */
  padding-top: clamp(72px, 9vh, 96px); /* clear the fixed nav */
}
.fx-anim .feature-pin > .wrap:first-child { flex: none; }
.fx-anim .feature-pin .section-head { margin-bottom: 0; }
.fx-anim .feature-flow { flex: none; min-height: 0; align-items: center; }
.fx-anim .feature-copy { display: grid; align-items: center; align-self: stretch; }
.fx-anim .fc-step {
  grid-area: 1 / 1; padding: 0;
  opacity: 0; visibility: hidden;
}
.fx-anim .fc-step.is-active { opacity: 1; visibility: visible; }

/* --- right · the visual stage ---------------------------------------------- */
/* default (no JS / mobile): scenes stack as plain figures */
.feature-stage { min-width: 0; }
.stage-frame { display: grid; gap: 56px; }
.scene {
  margin: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 18px;
}
/* choreographed: scenes stack in the pinned stage and cross-fade */
.fx-anim .feature-stage {
  align-self: stretch;
  display: flex; align-items: center;
}
.fx-anim .stage-frame {
  display: block; position: relative;
  width: 100%; height: min(540px, 60svh);
}
.fx-anim .scene {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
}
.fx-anim .scene.is-active { opacity: 1; visibility: visible; }

.scene-tag {
  display: flex; align-items: center; gap: 8px;
  font-size: 10.5px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink-soft);
}
.tag-dot { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.tag-dot--live { background: #2E9E63; }
.tag-dot--soon { background: #C98A2B; }

/* shared waveform bars (menu bar, phone, watch) */
.md-wave, .ph-wave, .w-wave { display: flex; align-items: center; justify-content: center; gap: 3px; }
.md-wave i, .ph-wave i, .w-wave i {
  display: block; width: 4px; border-radius: 2px; background: var(--accent);
  height: 34px; transform: scaleY(.3); transform-origin: center;
  animation: wave-bob 1.15s ease-in-out infinite;
}
.md-wave i:nth-child(2n)  { animation-delay: .12s; }
.md-wave i:nth-child(3n)  { animation-delay: .28s; height: 26px; }
.md-wave i:nth-child(4n)  { animation-delay: .40s; height: 42px; }
.md-wave i:nth-child(5n)  { animation-delay: .55s; }
.ph-wave i:nth-child(2n), .w-wave i:nth-child(2n) { animation-delay: .18s; }
.ph-wave i:nth-child(3n), .w-wave i:nth-child(3n) { animation-delay: .34s; height: 22px; }
@keyframes wave-bob {
  0%, 100% { transform: scaleY(.28); }
  50%      { transform: scaleY(1); }
}
@media (prefers-reduced-motion: reduce) {
  .md-wave i, .ph-wave i, .w-wave i { animation: none; transform: scaleY(.6); }
}

/* --- scene 1 · Mac menu bar ------------------------------------------------ */
.mac-screen {
  width: min(520px, 100%);
  background: linear-gradient(160deg, #FDFEFB, #F0F4EA);
  border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 30px 64px rgba(36, 36, 36, .13);
  overflow: hidden;
}
.mac-menubar {
  display: flex; align-items: center; gap: 14px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, .78);
  border-bottom: 1px solid var(--line);
  font-size: 11.5px; color: var(--ink-soft);
}
.mb-apple { display: flex; }
.mb-apple svg { width: 12px; height: 12px; color: var(--ink); }
.mb-item--app { font-weight: 600; color: var(--ink); }
.mb-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.mb-m { width: 17px; height: 17px; color: var(--accent); }
.mb-time { font-variant-numeric: tabular-nums; }
.mac-dropdown {
  width: min(300px, 82%);
  margin: 16px 20px 30px auto;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 20px 46px rgba(36, 36, 36, .15);
  padding: 16px 18px;
}
.md-head { display: flex; align-items: center; gap: 8px; }
.md-m { width: 19px; height: 19px; color: var(--accent); flex: none; }
.md-name { font-weight: 600; font-size: 13.5px; }
.md-state {
  margin-left: auto; display: flex; align-items: center; gap: 6px;
  font-size: 9.5px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: #2E9E63;
}
.md-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #2E9E63;
  animation: md-pulse 1.6s ease-in-out infinite;
}
@keyframes md-pulse { 50% { opacity: .35; } }
@media (prefers-reduced-motion: reduce) { .md-dot { animation: none; } }
.md-wave { height: 48px; margin: 14px 0 6px; }
.md-timer {
  text-align: center; font-size: 13px; color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}
.md-hint {
  text-align: center; margin-top: 10px;
  font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-faint);
}

/* --- scene 2 · understanding ---------------------------------------------- */
.doc-card {
  width: min(500px, 100%);
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 30px 64px rgba(36, 36, 36, .13);
  padding: 26px 28px;
}
.doc-kicker {
  font-size: 10px; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: 14px;
}
.doc-text {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(15.5px, 1.6vw, 18px); line-height: 1.85; color: var(--ink);
}
.hl { padding: 1px 5px; border-radius: 3px; font-style: normal; font-family: var(--font-sans); font-size: .88em; font-weight: 500; white-space: normal; }
.hl-task  { background: rgba(66, 133, 244, .13); box-shadow: inset 0 -2px 0 #4285F4; color: #1a4f9c; }
.hl-event { background: rgba(236, 78, 61, .11);  box-shadow: inset 0 -2px 0 #EC4E3D; color: #a2372b; }
.hl-note  { background: rgba(36, 36, 36, .07);   box-shadow: inset 0 -2px 0 #37352F; color: #37352F; }
.doc-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.doc-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px;
}
.doc-badge i { width: 7px; height: 7px; border-radius: 50%; }
.db-task i  { background: #4285F4; }
.db-event i { background: #EC4E3D; }
.db-note i  { background: #37352F; }

/* --- scene 3 · routing ----------------------------------------------------- */
.route-stage {
  position: relative; width: min(520px, 100%); min-height: 300px;
  display: flex; align-items: center; justify-content: space-between;
}
.route-from {
  width: 92px; height: 92px; flex: none;
  display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 50%;
  box-shadow: 0 18px 44px rgba(36, 36, 36, .12);
  position: relative; z-index: 1;
}
.rf-m { width: 46px; height: 46px; color: var(--accent); }
.route-lines { position: absolute; inset: 0; z-index: 0; }
.route-lines svg { width: 100%; height: 100%; }
.rl {
  fill: none; stroke: rgba(28, 90, 129, .38); stroke-width: 1.6;
  stroke-dasharray: 5 8; stroke-linecap: round;
  animation: rl-flow 1.4s linear infinite;
}
.rl-2 { animation-duration: 1.15s; }
.rl-3 { animation-duration: 1.6s; }
@keyframes rl-flow { to { stroke-dashoffset: -26; } }
@media (prefers-reduced-motion: reduce) { .rl { animation: none; } }
.route-to { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
.app-tile {
  display: flex; align-items: center; gap: 11px;
  width: min(252px, 58vw);
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 12px 30px rgba(36, 36, 36, .09);
  padding: 10px 14px;
}
.app-tile .app-ic { width: 22px; height: 22px; }
.at-copy { min-width: 0; }
.at-copy b { display: block; font-size: 12.5px; font-weight: 600; letter-spacing: .01em; }
.at-copy small {
  display: block; font-size: 11.5px; color: var(--ink-soft);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* --- scene 4 · iPhone + Apple Watch ---------------------------------------- */
.devices { display: flex; align-items: flex-end; gap: clamp(24px, 3vw, 44px); }
.phone {
  position: relative; width: clamp(180px, 15vw, 210px); aspect-ratio: 10 / 20.2;
  background: var(--ink); border-radius: 36px; padding: 9px;
  box-shadow: 0 34px 70px rgba(36, 36, 36, .22);
}
.ph-notch {
  position: absolute; top: 17px; left: 50%; transform: translateX(-50%);
  width: 74px; height: 17px; border-radius: 10px; background: var(--ink); z-index: 2;
}
.ph-screen {
  height: 100%; background: var(--bg); border-radius: 28px;
  padding: 40px 14px 18px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  overflow: hidden;
}
.ph-head { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; }
.ph-m { width: 18px; height: 18px; color: var(--accent); }
.ph-wave { height: 34px; margin-top: 6px; }
.ph-wave i { width: 3.5px; height: 26px; }
.ph-timer { font-size: 12px; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.ask-card {
  margin-top: auto; width: 100%;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 10px 24px rgba(36, 36, 36, .10);
  padding: 10px 12px;
}
.ask-q { font-size: 11px; line-height: 1.5; color: var(--ink); }
.ask-opts { display: flex; gap: 7px; margin-top: 8px; }
.ask-opt {
  font-size: 10.5px; font-weight: 600; padding: 3px 12px;
  border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft);
}
.ask-opt.is-picked { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.ph-rec {
  margin-top: 12px; width: 44px; height: 44px; flex: none;
  border: 2px solid var(--accent); border-radius: 50%; background: transparent;
  display: grid; place-items: center; cursor: default; pointer-events: none;
}
.ph-rec i { width: 26px; height: 26px; border-radius: 50%; background: var(--accent); }
.watch {
  position: relative; width: clamp(120px, 9.5vw, 140px);
}
.w-crown, .w-btn {
  position: absolute; right: -5px; width: 5px; border-radius: 3px; background: #4a4a4a;
}
.w-crown { top: 34%; height: 22px; }
.w-btn { top: 56%; height: 30px; }
.w-screen {
  aspect-ratio: 10 / 11.6;
  background: #101010; border: 7px solid #2e2e2e; border-radius: 30px;
  box-shadow: 0 26px 54px rgba(36, 36, 36, .24);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px;
  color: var(--bg);
}
.w-m { width: 20px; height: 20px; color: #7FB4D8; }
.w-wave { height: 22px; }
.w-wave i { width: 3px; height: 16px; background: #7FB4D8; }
.w-timer { font-size: 11px; color: rgba(249, 252, 244, .75); font-variant-numeric: tabular-nums; }
.w-rec { width: 9px; height: 9px; border-radius: 50%; background: #E4544A; }


/* ===========================================================================
   The three item types
   ========================================================================= */
.types { padding: var(--space-section) 0; }
.type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.type-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  border-top: 2px solid var(--accent);
  padding: 30px 28px;
  transition: transform .25s ease;
}
.type-card:hover { transform: translateY(-3px); }
.type-badge {
  display: inline-block; font-size: 10.5px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--accent);
  border: 1px solid rgba(28, 90, 129, .35); border-radius: var(--radius);
  padding: 4px 10px; margin-bottom: 18px;
}
.type-card h3 { font-size: 20px; margin-bottom: 9px; }
.type-card p { font-size: 14.5px; color: var(--ink-soft); }
.type-card .dest-line {
  font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line);
}
.type-card .dest-line b { color: var(--accent); font-weight: 600; }


/* ===========================================================================
   Privacy / control — two-column editorial block
   ========================================================================= */
.privacy { padding: var(--space-section) 0; }
.privacy-grid {
  display: grid; grid-template-columns: .95fr 1.05fr;
  gap: clamp(40px, 7vw, 96px); align-items: start;
}
.privacy-lede h2 { font-size: clamp(32px, 4.4vw, 52px); margin: 20px 0 18px; }
.privacy-pull {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(17px, 1.9vw, 21px); line-height: 1.6; color: var(--ink-soft);
}
.privacy-list { list-style: none; display: grid; gap: 26px; }
.privacy-list li { display: flex; gap: 16px; border-top: 1px solid var(--line); padding-top: 22px; }
.privacy-list li:first-child { border-top: 2px solid var(--ink); }
.privacy-list .ic {
  width: 34px; height: 34px; flex: none; color: var(--accent);
  border: 1px solid var(--line); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.privacy-list .ic svg { width: 16px; height: 16px; }
.privacy-list h3 { font-size: 16.5px; margin-bottom: 4px; }
.privacy-list p { font-size: 14.5px; color: var(--ink-soft); }


/* ===========================================================================
   "Built in the open" — honest project status
   ========================================================================= */
.vision { padding: var(--space-section) 0; }
.vision-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 6vw, 80px); align-items: center;
}
.quote-stack { display: grid; gap: 40px; }
.quote-card { position: relative; padding-left: 34px; }
.quote-card::before {
  content: "\201C";
  font-family: var(--font-display); font-style: italic;
  font-size: 72px; color: var(--accent); line-height: 1;
  position: absolute; top: -6px; left: 0;
}
.quote-card blockquote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(19px, 2vw, 23px); color: var(--ink); line-height: 1.55;
}
.quote-card .attr {
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 12px;
}

.openbox {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px;
}
.openbox .version {
  display: inline-block; font-size: 10.5px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent);
  border: 1px solid rgba(28, 90, 129, .35); border-radius: var(--radius);
  padding: 4px 10px; margin-bottom: 20px;
}
.openbox h3 { font-size: 21px; margin-bottom: 10px; }
.openbox p { color: var(--ink-soft); font-size: 15px; margin-bottom: 22px; }
.status-list { list-style: none; display: grid; gap: 12px; }
.status-list li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--ink); }
.status-list .tick { width: 18px; height: 18px; flex: none; background: var(--accent); border-radius: var(--radius); position: relative; }
.status-list .tick::after {
  content: ""; position: absolute; left: 6px; top: 2.5px; width: 5px; height: 9px;
  border: solid var(--accent-ink); border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.status-list .roadmap-tag {
  margin-left: auto; font-size: 10px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft);
}


/* ===========================================================================
   Platforms strip
   ========================================================================= */
.platforms { padding: clamp(72px, 9vw, 120px) 0; }
.platform-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 8px; }
.platform-chip {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--card);
  padding: 11px 20px;
  font-size: 13px; font-weight: 500; color: var(--ink);
  letter-spacing: .04em; text-transform: uppercase;
}
.platform-chip svg { width: 15px; height: 15px; color: var(--ink-soft); }
.platform-chip .state { font-size: 10px; letter-spacing: .14em; color: var(--ink-soft); }
.platform-chip.live { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.platform-chip.live svg { color: var(--accent-ink); }
.platform-chip.live .state { color: rgba(249, 252, 244, .8); }


/* ===========================================================================
   Beta / early-access block + the waitlist form
   ========================================================================= */
.beta { padding: var(--space-section) 0; }
.beta-box {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(36px, 5vw, 64px);
}
.beta-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px); align-items: start;
}
.beta-grid h2 { font-size: clamp(28px, 3.6vw, 40px); margin: 18px 0 14px; }
.beta-grid > .beta-copy p { color: var(--ink-soft); font-size: 16px; margin-bottom: 16px; }
.beta-points { list-style: none; display: grid; gap: 12px; margin-top: 22px; }
.beta-points li { display: flex; gap: 12px; font-size: 14.5px; color: var(--ink); align-items: flex-start; }
.beta-points .b {
  width: 18px; height: 18px; flex: none; margin-top: 2px;
  color: var(--accent); border: 1px solid rgba(28, 90, 129, .4); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.beta-points .b svg { width: 10px; height: 10px; }

.wl-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; background: var(--bg); }
#waitlist-form { display: grid; gap: 18px; }
.wl-field { display: grid; gap: 7px; }
.wl-field label {
  font-size: 11px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-soft);
}
.wl-field label .req { color: var(--accent); }
.wl-field label .opt { color: var(--ink-soft); text-transform: none; letter-spacing: 0; font-weight: 400; }
.wl-field input,
.wl-field textarea {
  font-family: var(--font-sans); font-size: 15px; color: var(--ink);
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 13px 15px; width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.wl-field input::placeholder, .wl-field textarea::placeholder { color: var(--ink-soft); }
.wl-field input:focus, .wl-field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(28, 90, 129, .14);
}
.wl-field textarea { resize: vertical; min-height: 84px; }
.wl-field.has-error input, .wl-field.has-error textarea {
  border-color: #a33b2a;
  box-shadow: 0 0 0 3px rgba(163, 59, 42, .10);
}
.wl-error { font-size: 12.5px; color: #a33b2a; min-height: 0; line-height: 1.3; }
.wl-field.has-error .wl-error { min-height: 16px; }

/* the platform multi-select */
.wl-platforms { display: grid; gap: 7px; }
.platform-opts { display: flex; flex-wrap: wrap; gap: 9px; }
.platform-opt { position: relative; cursor: pointer; }
.platform-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.platform-opt span {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 15px; transition: all .18s ease;
}
.platform-opt span::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  border: 1.5px solid var(--ink-faint); transition: all .18s ease;
}
.platform-opt input:checked + span {
  color: var(--accent-ink); border-color: var(--accent); background: var(--accent);
}
.platform-opt input:checked + span::before { background: var(--accent-ink); border-color: var(--accent-ink); }
.platform-opt input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }

/* the status banner + submit */
.wl-status { font-size: 14.5px; border-radius: var(--radius); padding: 13px 16px; line-height: 1.45; }
.wl-status.is-empty { display: none; }
.wl-status.is-success {
  color: var(--accent); background: rgba(28, 90, 129, .08); border: 1px solid rgba(28, 90, 129, .3);
}
.wl-status.is-error {
  color: #a33b2a; background: rgba(163, 59, 42, .07); border: 1px solid rgba(163, 59, 42, .3);
}
.wl-submit { position: relative; }
.wl-submit .spinner {
  width: 15px; height: 15px; border: 2px solid rgba(249, 252, 244, .4);
  border-top-color: var(--accent-ink);
  border-radius: 50%; display: none; animation: spin .7s linear infinite;
}
.is-submitting .wl-submit .spinner { display: inline-block; }
.is-submitting .wl-submit .label-go { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.wl-fine {
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-soft); text-align: center; margin-top: 2px; line-height: 1.6;
}


/* ===========================================================================
   FAQ — hairline dividers only, no card chrome
   ========================================================================= */
.faq { padding: var(--space-section) 0; }
.faq-list { max-width: 760px; margin: 0 auto; border-top: 2px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 16px;
  padding: 22px 4px;
  font-family: var(--font-sans); font-size: 17px; font-weight: 600;
  color: var(--ink); letter-spacing: -.01em;
}
.faq-q .chev {
  margin-left: auto; flex: none; width: 17px; height: 17px; color: var(--accent);
  transition: transform .3s ease;
}
.faq-item.is-open .faq-q .chev { transform: rotate(180deg); }
/* height animates via grid-template-rows (compositor-friendly — no layout
   thrash from max-height guessing), driven purely by .is-open */
.faq-a {
  display: grid; grid-template-rows: 0fr; overflow: hidden;
  transition: grid-template-rows .35s cubic-bezier(.22, .61, .36, 1);
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; padding: 0 4px; color: var(--ink-soft); font-size: 15px; line-height: 1.65; }
/* the answer's bottom breathing room lives as in-flow content — padding on
   the clamped child would hold the closed row open by its own height */
.faq-a > div::after { content: ""; display: block; height: 24px; }
@media (prefers-reduced-motion: reduce) { .faq-a { transition: none; } }


/* ===========================================================================
   Final CTA band — the page's single blue moment
   ========================================================================= */
.final-cta {
  padding: var(--space-section) 0; text-align: center;
  background: var(--accent); color: var(--accent-ink);
}
.final-cta .inner { max-width: 640px; margin: 0 auto; }
.final-cta h2 { font-size: clamp(34px, 5vw, 56px); margin: 20px 0 18px; color: var(--accent-ink); }
.final-cta h2 em {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  color: var(--accent-ink);
}
.final-cta p { color: rgba(249, 252, 244, .8); font-size: 17.5px; margin-bottom: 32px; }


/* ===========================================================================
   Footer
   ========================================================================= */
.site-footer { border-top: 1px solid var(--line); background: var(--bg); padding: 60px 0 32px; overflow: hidden; }
.footer-top { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; margin-bottom: 24px; }
.footer-brand { max-width: 320px; }
.footer-mark { width: 52px; height: 36px; color: var(--accent); display: block; }
.footer-brand p { color: var(--ink-soft); font-size: 14px; margin-top: 12px; line-height: 1.6; }

/* the massive typographic anchor — "Minerva" spanning nearly the full
   footer width, in the italic Baskerville title voice */
.footer-giant {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(60px, 24.5vw, 540px);
  line-height: .95; letter-spacing: -.02em;
  text-align: center; white-space: nowrap;
  color: var(--ink);
  margin: clamp(20px, 4vw, 48px) 0 clamp(18px, 3vw, 40px);
  user-select: none;
}
.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h4 {
  font-size: 10.5px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px;
}
.footer-col a, .footer-col span {
  display: block; font-size: 14px; color: var(--ink-soft); margin-bottom: 9px;
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
}
.footer-bottom .copy {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft); line-height: 1.6;
}


/* ===========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1023px) {
  /* the pinned hero + feature choreography are desktop-only (see motion.js
     matchMedia); below 1024px the hero stays in its static composed state,
     the sorted columns stack, and the feature steps + scenes interleave */
  .sorted-inner { grid-template-columns: 1fr; max-width: 520px; gap: 32px; }
  .feature-flow { grid-template-columns: 1fr; }
  .fc-step { padding: 28px 0; }
  .stage-frame { gap: 64px; }
}

@media (max-width: 940px) {
  .type-grid { grid-template-columns: repeat(2, 1fr); }
  .privacy-grid, .vision-grid, .beta-grid { grid-template-columns: 1fr; }
  .beta-grid > .wl-card { max-width: 540px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .site-nav {
    position: fixed; inset: 66px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 48px rgba(36, 36, 36, .10);
    margin: 0; padding: 8px 0 16px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .site-nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .site-nav .links { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav .links a.navlink { padding: 13px 32px; border-bottom: 1px solid var(--line); }
  .site-nav .btn { margin: 14px 32px 0; }
  .nav-toggle { display: inline-flex; align-items: center; gap: 7px; }

  .type-grid { grid-template-columns: 1fr; }
  .devices { transform: scale(.86); transform-origin: center bottom; }
  .footer-top { flex-direction: column; }
  .footer-cols { gap: 36px; }
  .pill-cta { right: 18px; bottom: 18px; padding: 12px 20px; }
}

@media (max-width: 420px) {
  .wrap { padding: 0 22px; }
}


/* ===========================================================================
   SUBPAGES — shared pieces for /how-it-works/, /platforms/, /integrations/,
   /faq/ and /changelog/. Everything below reuses the landing page's tokens
   and vocabulary; truly page-specific rules live in each page's own <style>.
   ========================================================================= */

/* the current page's nav link gets a quiet underline */
.site-nav a.navlink[aria-current="page"] {
  color: var(--ink);
  box-shadow: inset 0 -2px 0 var(--accent);
  padding-bottom: 2px;
}

/* ----- page hero — the editorial opening every subpage shares ------------- */
.page-hero {
  position: relative;
  padding: clamp(72px, 10vw, 128px) 0 clamp(40px, 6vw, 72px);
  text-align: center;
}
.page-hero .wrap { max-width: 860px; }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 400; font-style: normal;
  font-size: clamp(32px, 4.6vw, 54px); line-height: 1.18;
  letter-spacing: -.01em; margin: 22px 0 18px;
  text-wrap: balance;
}
.page-hero h1 em {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  color: var(--accent);
}
.page-hero .lede {
  color: var(--ink-soft); font-size: clamp(16px, 1.7vw, 18px);
  max-width: 56ch; margin: 0 auto;
}

/* generic band pacing for subpage sections */
.page-band { position: relative; padding: var(--space-section) 0; }
.page-band--tight { padding: clamp(56px, 8vw, 104px) 0; }

/* ----- numbered editorial steps (how-it-works) ---------------------------- */
.step-list { list-style: none; display: grid; gap: clamp(40px, 6vw, 64px); max-width: 720px; margin: 0 auto; }
.step-item { display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 3vw, 36px); align-items: start; }
.step-item .fig {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(44px, 5vw, 64px); line-height: 1; color: var(--accent);
}
.step-item h3 { font-size: clamp(20px, 2.2vw, 26px); margin-bottom: 10px; }
.step-item p { color: var(--ink-soft); font-size: 15.5px; max-width: 52ch; }
.step-item .step-extra { margin-top: 14px; }

/* small Task / Event / Note chips */
.kind-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.kind-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(28, 90, 129, .35);
  border-radius: var(--radius); padding: 4px 10px; background: var(--card);
}
.kind-chip i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

/* ----- the notification mock ("Questions, not guesses") ------------------- */
.notify-mock {
  width: min(380px, 100%); margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 24px 56px rgba(36, 36, 36, .13);
  padding: 16px 18px; text-align: left;
}
.notify-mock .nm-head {
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
  font-size: 12.5px; font-weight: 600; color: var(--ink);
}
.notify-mock .nm-m { width: 18px; height: 18px; color: var(--accent); flex: none; }
.notify-mock .nm-when { margin-left: auto; font-size: 10.5px; color: var(--ink-faint); font-weight: 400; }
.notify-mock .nm-q { font-size: 14px; line-height: 1.55; color: var(--ink); }
.notify-mock .nm-opts { display: flex; gap: 8px; margin-top: 12px; }
.notify-mock .nm-opt {
  font-size: 12px; font-weight: 600; padding: 5px 16px;
  border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft);
}
.notify-mock .nm-opt.is-picked { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }

/* a 50/50 editorial band: copy one side, a visual the other */
.duo-band {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 88px); align-items: center;
}
.duo-band > .duo-copy h2 { font-size: clamp(26px, 3.4vw, 40px); margin: 18px 0 14px; }
.duo-band > .duo-copy p { color: var(--ink-soft); font-size: 16px; }
.duo-band > .duo-copy p + p { margin-top: 12px; }
.duo-visual { display: flex; justify-content: center; }

/* ----- platform bands (platforms page) ------------------------------------ */
.plat-band { border-top: 1px solid var(--line); }
.plat-band:first-of-type { border-top: 2px solid var(--ink); }
.plat-row {
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 72px); align-items: center;
  padding: clamp(48px, 7vw, 88px) 0;
}
.plat-row.flip { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
.plat-row.flip .plat-copy { order: 2; }
.plat-row.flip .plat-visual { order: 1; }
.plat-copy h2 { font-size: clamp(24px, 3vw, 36px); margin: 14px 0 12px; }
.plat-copy p { color: var(--ink-soft); font-size: 15.5px; max-width: 50ch; }
.plat-visual { display: flex; justify-content: center; min-width: 0; }
.status-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 999px; padding: 5px 13px;
  color: var(--ink-soft); background: var(--card);
}
.status-tag i { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.status-tag.live { color: var(--accent); border-color: rgba(28, 90, 129, .35); }
.status-tag.live i { background: #2E9E63; }
.status-tag.soon i { background: #C98A2B; }

/* the quiet aside (e.g. cloud processing) — kept handy, not headline */
.aside-note {
  max-width: 620px; margin: 0 auto;
  border-left: 2px solid var(--accent);
  padding: 6px 0 6px 22px;
}
.aside-note p {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(16px, 1.8vw, 19px); line-height: 1.6; color: var(--ink-soft);
}
.aside-note .who {
  display: block; margin-top: 10px;
  font-family: var(--font-sans); font-style: normal;
  font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-soft);
}

/* ----- routing diagram (integrations page) -------------------------------- */
.route-diagram { max-width: 980px; margin: 0 auto; }
.rd-memo {
  width: min(360px, 100%); margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 18px 44px rgba(36, 36, 36, .10);
  padding: 16px 20px; display: flex; align-items: center; gap: 14px;
}
.rd-memo .rd-m { width: 26px; height: 26px; color: var(--accent); flex: none; }
.rd-memo .rd-wave { display: flex; align-items: center; gap: 3px; flex: 1; min-width: 0; overflow: hidden; }
.rd-memo .rd-wave i {
  display: block; width: 4px; border-radius: 2px; background: var(--accent);
  opacity: .75;
}
.rd-memo .rd-time { font-size: 12px; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.rd-split { display: flex; flex-direction: column; align-items: center; padding: 6px 0; }
.rd-split .stem { width: 1px; height: 34px; background: var(--accent); opacity: .5; }
.rd-split .word {
  font-size: 10.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-soft); padding: 8px 0;
}
.rd-lanes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.5vw, 28px); }
.rd-lane {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  border-top: 2px solid var(--accent); padding: 24px 22px;
  display: flex; flex-direction: column; gap: 14px; min-width: 0;
}
.rd-lane h3 { font-size: 17px; }
.rd-lane .rd-eg { font-size: 13.5px; color: var(--ink-soft); font-style: italic; font-family: var(--font-display); }
.rd-lane .rd-dests { margin-top: auto; display: flex; flex-direction: column; gap: 8px; padding-top: 14px; border-top: 1px solid var(--line); }
.dest-chip {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 500; color: var(--ink);
  border: 1px solid var(--line); border-radius: 999px;
  background: #fff; padding: 7px 14px; width: max-content; max-width: 100%;
}
.dest-chip svg { width: 17px; height: 17px; flex: none; }
.dest-chip .st { font-size: 9.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-left: 2px; }
.dest-chip.live .st { color: #1E7548; }

/* ----- FAQ page (full canonical list, no accordions) ---------------------- */
.faq-toc {
  position: sticky; top: 66px; z-index: 40;
  background: rgba(249, 252, 244, .92);
  backdrop-filter: saturate(1.3) blur(10px);
  -webkit-backdrop-filter: saturate(1.3) blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.faq-toc .chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.faq-toc a {
  font-size: 11.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft); border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 14px; background: var(--card);
  transition: color .2s ease, border-color .2s ease;
}
.faq-toc a:hover { color: var(--accent); border-color: rgba(28, 90, 129, .4); }
.faq-full { max-width: 760px; margin: 0 auto; }
.faq-group { padding-top: clamp(40px, 6vw, 64px); }
.faq-group > h2 {
  font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 8px;
  padding-bottom: 14px; border-bottom: 2px solid var(--ink);
  scroll-margin-top: 130px;
}
.faq-entry { border-bottom: 1px solid var(--line); padding: 22px 4px 24px; }
.faq-entry h3 { font-size: 17px; margin-bottom: 8px; letter-spacing: -.01em; }
.faq-entry p { color: var(--ink-soft); font-size: 15px; line-height: 1.65; }
.faq-entry p + p { margin-top: 10px; }
.faq-entry a { color: var(--accent); box-shadow: inset 0 -1px 0 rgba(28, 90, 129, .35); }

/* "All questions →" link under common-question bands */
.all-q-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 26px;
  font-size: 14px; font-weight: 600; color: var(--accent);
}
.all-q-link:hover { text-decoration: underline; }

/* ----- changelog page ------------------------------------------------------ */
.log-list { max-width: 720px; margin: 0 auto; border-top: 2px solid var(--ink); }
.log-entry { border-bottom: 1px solid var(--line); padding: clamp(28px, 4vw, 40px) 4px; }
.log-entry .log-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.log-entry .version {
  display: inline-block; font-size: 10.5px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent);
  border: 1px solid rgba(28, 90, 129, .35); border-radius: var(--radius);
  padding: 4px 10px;
}
.log-entry .log-date {
  font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft);
}
.log-entry h3 { font-size: clamp(19px, 2.2vw, 24px); margin-bottom: 8px; }
.log-entry p { color: var(--ink-soft); font-size: 15px; line-height: 1.65; }
.log-entry .log-status {
  margin-left: auto; font-size: 10px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft);
}

/* ----- footer link row (FAQ · Changelog · Privacy · Contact) --------------- */
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 28px; align-items: center; }
.footer-links a {
  font-size: 14px; color: var(--ink-soft);
  transition: color .2s ease;
}
.footer-links a:hover { color: var(--accent); }

/* ----- mobile hero fragments -----------------------------------------------
   Drifting thought-fragments for the landing hero's mobile choreography.
   The elements are created ENTIRELY by motion.js (below 1024px, full-motion
   only) and removed again on cleanup — nothing here renders without JS. */
.m-frag-layer {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 3; overflow: visible;
}
.m-frag {
  position: absolute;
  font-size: clamp(13px, 3.8vw, 16px); line-height: 1.35;
  max-width: 60vw; text-wrap: balance;
  color: var(--ink-soft); opacity: 0;
  will-change: transform, opacity;
}
.m-frag--serif { font-family: var(--font-display); font-style: italic; }

/* ----- subpage responsive -------------------------------------------------- */
@media (max-width: 940px) {
  .duo-band { grid-template-columns: 1fr; }
  .plat-row, .plat-row.flip { grid-template-columns: 1fr; }
  .plat-row.flip .plat-copy { order: 1; }
  .plat-row.flip .plat-visual { order: 2; }
  .rd-lanes { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}
@media (max-width: 720px) {
  .step-item { grid-template-columns: 1fr; gap: 10px; }
  .faq-toc { top: 66px; }
  .faq-group > h2 { scroll-margin-top: 150px; }
}


/* ===========================================================================
   THE DANDELION HERO (winner of the 2026-07-24 A/B review)
   ---------------------------------------------------------------------------
   motion.js stamps html.hero-dandy on every JS-capable visit; the header
   composes text-left / dandelion-right on desktop, stacks on mobile, and
   no-JS visitors get the plain composed page (the .dandy ships hidden).
   ========================================================================= */
.dandy { display: none; }
.hero-dandy .dandy {
  display: block; position: relative;
  width: min(320px, 64vw); margin: 0 auto;
  color: var(--ink);
}
.dandy-svg { width: 100%; height: auto; display: block; }
.dl-seed--blue { color: var(--accent); }
.dandy-loose { position: absolute; width: 34px; height: 68px; color: var(--ink); opacity: .3; }
.dandy-loose--a { top: 3%; right: -7%; rotate: 14deg; }
.dandy-loose--b { top: 20%; right: -15%; width: 26px; height: 52px; rotate: -10deg; }

/* reduced header copy: the H1 carries the opening alone */
.hero-dandy .hero-kicker,
.hero-dandy .hero-brandline,
.hero-dandy .hero-lede { display: none; }

/* full desktop choreography: text left, dandelion right */
.hero-dandy.hero-anim .hero-intro {
  align-items: flex-start; text-align: left;
  padding: 0 46vw 8vh clamp(40px, 7vw, 110px);
}
.hero-dandy.hero-anim .hero-h1 {
  margin-top: 0; max-width: 14ch;
  font-size: clamp(30px, 3.6vw, 52px);
}
.hero-dandy.hero-anim .dandy {
  position: absolute; z-index: 3; right: 3vw; top: 50%;
  width: min(42vw, 560px); margin: 0;
  transform: translateY(-53%);
  pointer-events: none;
}
