/* G — Lyncx-inspired chaptered landing. Scroll-snap scenes + sticky day beats. */
@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,SOFT,wght@0,9..144,0..100,500;0,9..144,0..100,600;1,9..144,0..100,500&family=IBM+Plex+Mono:wght@400;500&family=Public+Sans:wght@400;500;600;700&display=swap");

:root {
  --max: 1200px;
  --accent: #4a7774;
  --accent-ink: #345957;
  --ink: #2c2e32;
  --ink-2: #5a5e66;
  --ink-3: #8a8f97;
  --paper: #faf8f5;
  --band: linear-gradient(90deg, #faf8f5 0%, #e4ece9 38%, #b7cdc9 72%, #8fafa9 100%);
  --privacy-pink: #f5e8e6;
  --privacy-deep: #f0d6d4;
  --mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;
  --line: rgba(44, 46, 50, 0.1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --banner-h: 34px;
  --nav-h: 56px;
}

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

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  background: var(--paper);
}

body {
  margin: 0;
  font-family: "Public Sans", "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

.wrap {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border: 1px solid transparent;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, color 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark {
  background: var(--ink);
  color: #f7f3ec;
}
.btn-dark:hover { box-shadow: 0 6px 20px rgba(44, 46, 50, 0.28); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(44, 46, 50, 0.14);
}
.btn-ghost.on-sand {
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.kicker {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.lede {
  margin: 16px 0 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 40ch;
}
.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Demo banner */
.demo-banner {
  position: relative;
  z-index: 60;
  background: var(--ink);
  color: #efe8dc;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px clamp(20px, 4vw, 56px);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  min-height: var(--banner-h);
}
.demo-banner a {
  color: #efe8dc;
  border-bottom: 1px solid rgba(239, 232, 220, 0.35);
}
.demo-banner a:hover { border-color: #efe8dc; }

/* Minimal transparent nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  pointer-events: none;
}
.nav-links {
  pointer-events: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 28px);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  opacity: var(--nav-fade, 1);
}
.nav-links a:hover { color: var(--ink); }

/* Chapter progress dots */
.chapter-dots {
  position: fixed;
  right: clamp(12px, 2vw, 28px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 55;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.chapter-dots a {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(44, 46, 50, 0.22);
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s;
}
.chapter-dots a[aria-current="true"] {
  background: var(--accent);
  transform: scale(1.35);
  box-shadow: 0 0 0 3px rgba(74, 119, 116, 0.22);
}
.chapter-dots a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .chapter-dots { display: none; }
}

/* Shared chapter shell */
.chapter {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.chapter-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(48px, 8vh, 96px) clamp(20px, 4vw, 56px);
}

h1, h2 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
h1 {
  font-size: clamp(2.8rem, 5.5vw + 0.6rem, 5.4rem);
  max-width: 14ch;
}
h1 em {
  font-style: normal;
  color: var(--accent);
}
h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  max-width: 16ch;
}

/* ---------- 01 Hero ---------- */
.chapter-hero {
  margin-top: calc(-1 * var(--nav-h));
  padding-top: var(--nav-h);
  overflow: hidden;
  background: #cfd8d4;
  justify-content: flex-end;
}
.hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
}
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  pointer-events: none;
}
.hero-copy {
  --hero-copy-fade: 1;
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(80px, 12vh, 128px) clamp(20px, 4vw, 56px) clamp(36px, 6vh, 72px);
  background: linear-gradient(
    to top,
    rgba(250, 248, 245, 0.98) 0%,
    rgba(250, 248, 245, 0.96) 78%,
    rgba(250, 248, 245, 0.4) 90%,
    transparent 100%
  );
  opacity: var(--hero-copy-fade, 1);
}
.hero-copy h1 { max-width: none; }
.hero-copy .lede {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.hero-copy .cta { justify-content: center; }

.hero-copy.is-reveal {
  /* Transform-only so scroll-linked --hero-copy-fade opacity keeps working */
  animation: rise-in-y 0.7s var(--ease) both;
}
.pipeline-stage.is-reveal,
.day-stage.is-reveal .day-copy,
.privacy-in.is-reveal,
.price-in.is-reveal {
  animation: rise-in 0.7s var(--ease) both;
}

@keyframes rise-in-y {
  from { transform: translateY(22px); }
  to { transform: none; }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- 02 Pipeline ---------- */
.chapter-pipeline {
  background: var(--paper);
}
.pipeline-stage {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}
.pipeline-head .lede { margin-top: 14px; }

.wm-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 0;
  flex-wrap: wrap;
}
.wm-icons img { width: 28px; height: 28px; }
.wm-more {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px dashed rgba(44, 46, 50, 0.25);
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--ink-3);
}

.pipeline-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
}
.pipe-col {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 14px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.pipe-col-activity {
  min-height: 280px;
}
.pipe-label {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.signal-scatter {
  position: relative;
  flex: 1;
  min-height: 240px;
  padding: 4px 0;
}
.signal-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(44, 46, 50, 0.11);
  background: rgba(255, 255, 255, 0.92);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(44, 46, 50, 0.05);
}
.signal-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--chip-dot, #7a8fa3);
  flex-shrink: 0;
}
.signal-label { font-weight: 500; color: var(--ink); }
.signal-meta {
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}
.signal-chip:nth-child(1) { top: 4%;  left: 2%;  transform: rotate(-2deg);  --chip-dot: #c48a93; }
.signal-chip:nth-child(2) { top: 18%; left: 22%; transform: rotate(2.5deg); --chip-dot: #c4a86a; }
.signal-chip:nth-child(3) { top: 6%;  left: 48%; transform: rotate(-1.5deg); --chip-dot: #8aab9a; }
.signal-chip:nth-child(4) { top: 34%; left: 4%;  transform: rotate(2deg);   --chip-dot: #7a8fa3; }
.signal-chip:nth-child(5) { top: 44%; left: 36%; transform: rotate(-2.5deg); --chip-dot: #c48a93; }
.signal-chip:nth-child(6) { top: 26%; left: 58%; transform: rotate(1deg);   --chip-dot: #c4a86a; }
.signal-chip:nth-child(7) { top: 58%; left: 14%; transform: rotate(-1deg);  --chip-dot: #8aab9a; }
.signal-chip:nth-child(8) { top: 68%; left: 46%; transform: rotate(2deg);   --chip-dot: #7a8fa3; }
.signal-chip:nth-child(9) { top: 78%; left: 6%;  transform: rotate(-2deg);  --chip-dot: #c48a93; }
.pipe-story {
  margin: 4px 0 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
.task-lines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.task-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(250, 248, 245, 0.9);
  border: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 600;
}
.task-time {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  font-weight: 500;
}
.pipe-arrow {
  display: grid;
  place-items: center;
  color: var(--ink-3);
  opacity: 0.7;
}
.pipe-arrow svg { width: 28px; height: 48px; }

.cal-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cal-block {
  border-radius: 10px;
  padding: 10px 12px;
  display: grid;
  gap: 2px;
  font-size: 12.5px;
}
.cal-block span:first-child {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}
.cal-block strong { font-weight: 650; }
.cal-rose { background: #f0ddd8; }
.cal-gold { background: #ebe4c4; }
.cal-sage { background: #d7e6dc; }
.cal-slate { background: #dce3e8; }

@media (max-width: 900px) {
  .pipeline-flow {
    grid-template-columns: 1fr;
  }
  .pipe-arrow {
    transform: rotate(90deg);
    height: 28px;
  }
  .pipe-col { min-height: 0; }
  .pipe-col-activity { min-height: 220px; }
  .signal-scatter { min-height: 220px; }
  .signal-chip { font-size: 10px; padding: 6px 10px; gap: 6px; }
  .signal-meta { display: none; }
}

/* ---------- 03 Day sticky storytelling ---------- */
/* No scroll-snap here — snap fights the tall sticky track (Lyncx uses sticky, not snap). */
.chapter-day {
  display: block;
  min-height: auto;
  background: var(--paper);
  scroll-snap-align: none;
}
.day-track {
  position: relative;
  height: 400vh;
}
.day-sticky {
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  height: calc(100dvh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}
.day-stage {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.day-copy {
  position: relative;
  min-height: 220px;
}
.day-panel-copy {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
}
.day-panel-copy.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.day-panel-copy h2 { max-width: 14ch; }
.day-panel-copy .lede { max-width: 36ch; }
.beat-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.beat-list li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  padding-left: 14px;
  position: relative;
}
.beat-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
}

.day-progress {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}
.day-progress span {
  height: 3px;
  flex: 1;
  max-width: 48px;
  border-radius: 999px;
  background: rgba(44, 46, 50, 0.12);
  transition: background 0.3s, transform 0.3s;
}
.day-progress span.is-on {
  background: var(--accent);
  transform: scaleY(1.4);
}

.day-visual {
  position: relative;
  min-height: min(68vh, 560px);
  width: 100%;
}
.day-panel-visual {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(16px) scale(0.985);
  pointer-events: none;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), visibility 0.45s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.day-panel-visual.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.rim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.rim-grid .rim-screen {
  aspect-ratio: 5 / 3.4;
}
.rim-mock { margin: 0; text-align: center; }
.rim-screen {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background: #f3f0ea;
  border: 3px solid var(--rim-color, rgba(44, 46, 50, 0.1));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--rim-color) 35%, transparent),
    0 0 24px 3px color-mix(in srgb, var(--rim-color) 40%, transparent);
}
.rim-inner {
  position: absolute;
  inset: 10px;
  border-radius: 8px;
  background: linear-gradient(165deg, #faf8f5, #ece8e0);
}
.rim-mock figcaption {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.rim-distracted { --rim-color: #ddb8bc; }
.rim-wandering { --rim-color: #ddd4a8; }
.rim-present { --rim-color: #b8cfc0; }
.rim-zen { --rim-color: #b4c8d4; }

.during-stack {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 480px;
  align-content: center;
}
.during-shot {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px -22px rgba(44, 46, 50, 0.35);
  background: #fff;
}
.during-shot img {
  width: 100%;
  height: auto;
  display: block;
}

.after-card {
  width: 100%;
  max-width: 560px;
  background: transparent;
}
.after-card-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f4ee 0%, #eef3ef 100%);
  box-shadow: 0 18px 40px -24px rgba(44, 46, 50, 0.3);
}
.after-sliver {
  padding: 10px 10px 12px;
  border-right: 1px solid rgba(44, 46, 50, 0.08);
  min-width: 0;
}
.after-sliver-head {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-2);
}
.after-sliver-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ab {
  position: relative;
  border-radius: 6px;
  padding: 7px 22px 7px 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(44, 46, 50, 0.05);
  min-width: 0;
}
.ab.is-ok { background: rgba(107, 204, 140, 0.18); }
.ab.is-pending { background: rgba(44, 46, 50, 0.05); }
.ab.is-on {
  background: rgba(196, 168, 106, 0.24);
  box-shadow: 0 0 0 1.5px rgba(196, 168, 106, 0.55);
}
.ab-title {
  font-family: Fraunces, Georgia, serif;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.25;
  color: rgba(20, 20, 22, 0.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ab-meta {
  font-size: 10px;
  color: rgba(44, 46, 50, 0.62);
}
.ab-check {
  position: absolute;
  top: 6px;
  right: 7px;
  color: #3d8f5c;
  font-size: 10px;
  font-weight: 700;
}
.after-side {
  padding: 12px 14px 14px;
  min-width: 0;
  background: rgba(44, 46, 50, 0.03);
}
.after-side-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.after-side h3 {
  margin: 0 0 8px;
  font-family: Fraunces, Georgia, serif;
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.after-meta {
  margin: 8px 0 0;
  font-family: var(--mono);
  font-size: 11.5px;
  font-variant-numeric: tabular-nums;
  color: var(--ink-2);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  background: rgba(196, 168, 106, 0.28);
  color: #6f5c2a;
}
.after-actions {
  display: flex;
  gap: 14px;
  margin: 10px 0 0;
  font-size: 13px;
  color: #3b6ea5;
}
.after-actions span { cursor: default; }
.after-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 11px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3);
}
.after-field > span,
.after-desc {
  font-family: Fraunces, Georgia, serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(44, 46, 50, 0.1);
  border-radius: 6px;
  padding: 7px 9px;
}
.after-desc {
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.45;
  display: block;
}
.after-cap {
  margin: 12px 0 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.reflect-card {
  width: 100%;
  max-width: 440px;
  background:
    radial-gradient(900px 320px at 20% -20%, rgba(183, 214, 198, 0.2), transparent 55%),
    linear-gradient(180deg, #f7f4ee 0%, #eef3ef 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 22px 16px;
  box-shadow: 0 18px 40px -24px rgba(44, 46, 50, 0.28);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.reflect-lead {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--ink);
  max-width: 34ch;
}
.reflect-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.reflect-bullets li {
  position: relative;
  padding-left: 14px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-2);
}
.reflect-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7a8fa3;
}
.reflect-query {
  align-self: flex-end;
  margin: 4px 0 0;
  max-width: 72%;
  padding: 9px 12px;
  border-radius: 12px 12px 4px 12px;
  background: rgba(122, 143, 163, 0.16);
  border: 1px solid rgba(122, 143, 163, 0.22);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.reflect-composer {
  margin-top: 4px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(44, 46, 50, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 2px 10px rgba(44, 46, 50, 0.04);
}
.reflect-input {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-style: italic;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--ink-3);
}
.reflect-hint {
  margin: 2px 0 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

@media (max-width: 860px) {
  .day-track { height: auto; }
  .day-sticky {
    position: relative;
    top: auto;
    height: auto;
    display: block;
    overflow: visible;
  }
  .day-stage {
    grid-template-columns: 1fr;
    padding: clamp(40px, 6vh, 72px) clamp(20px, 4vw, 56px);
    gap: 28px;
  }
  .day-copy { min-height: 0; }
  .day-panel-copy {
    position: relative !important;
    inset: auto;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto;
    margin-bottom: 8px;
  }
  .day-panel-copy + .day-panel-copy {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--line);
  }
  .day-visual {
    display: none;
  }
  .day-mobile-visual {
    display: block;
    margin-top: 18px;
  }
  .day-progress { display: none; }
  .after-card-inner {
    grid-template-columns: 1fr;
  }
  .after-sliver {
    border-right: 0;
    border-bottom: 1px solid rgba(44, 46, 50, 0.08);
  }
  .after-sliver-list .ab:nth-child(n+4) { display: none; }
  .during-stack { max-width: none; }
}

@media (min-width: 861px) {
  .day-mobile-visual { display: none; }
}

/* ---------- 04 Privacy ---------- */
.chapter-privacy {
  background:
    linear-gradient(180deg, #faf8f5 0%, #f5e8e6 42%, #f0d6d4 78%, #f5e8e6 100%);
  text-align: center;
}
.privacy-in {
  max-width: 640px;
  margin: 0 auto;
}
.privacy-in h2 {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.privacy-in .lede {
  margin-left: auto;
  margin-right: auto;
  max-width: 46ch;
}

/* ---------- 05 Pricing ---------- */
.chapter-price {
  background: var(--band);
  text-align: center;
}
.price-in {
  max-width: 640px;
  margin: 0 auto;
}
.price-in h2 {
  margin-left: auto;
  margin-right: auto;
}
.big0 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(5rem, 12vw, 8.5rem);
  font-weight: 500;
  line-height: 0.85;
  margin: 10px 0 0;
  color: var(--accent);
}
.price-sub {
  margin: 14px 0 0;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.price-in .lede {
  margin-left: auto;
  margin-right: auto;
}
.price-in .cta { justify-content: center; }

/* ---------- 06 FAQ ---------- */
.chapter-faq {
  background: var(--paper);
  justify-content: flex-start;
  min-height: auto;
  padding: clamp(64px, 10vh, 120px) 0 48px;
}
.faq-head {
  text-align: center;
  margin-bottom: 40px;
}
.faq-head h2 {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.faq-head h2 a {
  text-decoration: underline;
  text-underline-offset: 0.12em;
  text-decoration-thickness: 0.07em;
}
.faq-head h2 a:hover { color: var(--accent); }
.faqgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 48px;
}
.qa {
  border-top: 1px solid var(--line);
  padding: 20px 0 10px;
}
.qa h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.02em;
}
.qa p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
}

@media (max-width: 720px) {
  .faqgrid { grid-template-columns: 1fr; }
}

/* ---------- 07 Blog ---------- */
.chapter-blog {
  background: var(--paper);
  justify-content: flex-start;
  min-height: auto;
  padding: clamp(64px, 10vh, 120px) 0 48px;
  scroll-snap-align: none;
}
.blog-head {
  max-width: 640px;
}
.blog-head h2 {
  max-width: 18ch;
}
.blog-head .lede {
  max-width: 50ch;
}
.blog-posts {
  margin-top: clamp(32px, 5vh, 48px);
  display: grid;
  gap: 12px;
}
.blog-post {
  display: block;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  transition: transform 0.18s var(--ease), border-color 0.18s, box-shadow 0.2s;
}
.blog-post:hover {
  transform: translateY(-2px);
  border-color: rgba(74, 119, 116, 0.45);
  box-shadow: 0 14px 34px -22px rgba(44, 46, 50, 0.35);
}
.blog-post-meta {
  margin: 0 0 6px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.blog-post h3 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-weight: 500;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
}
.blog-post:hover h3 { color: var(--accent-ink); }
.blog-post-lede {
  margin: 8px 0 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 62ch;
}

/* Footer */
footer.site {
  border-top: 1px solid var(--line);
  padding: 48px 0 40px;
  background: var(--paper);
  scroll-snap-align: none;
}
.footrow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.brand img { width: 22px; height: 22px; }
.wordmark {
  font-family: Fraunces, Georgia, serif;
  font-weight: 500;
  font-size: 22px;
}
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  color: var(--ink-2);
}
.foot-links a:hover { color: var(--ink); }
.footbase {
  margin-top: 28px;
  font-size: 13px;
  color: var(--ink-3);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; scroll-snap-type: none; }
  .hero-copy.is-reveal,
  .pipeline-stage.is-reveal,
  .day-stage.is-reveal .day-copy,
  .privacy-in.is-reveal,
  .price-in.is-reveal {
    animation: none;
  }
  .nav-links,
  .hero-copy {
    opacity: 1 !important;
  }
  .day-panel-copy,
  .day-panel-visual {
    transition: none;
  }
}
