/* ============================================================================
   Sentryn — ethereal glass, carried from the app.
   A dark void, a slow aurora, real frosted surfaces with a lit hairline edge,
   and one jewel tone: Sentryn teal. Calm is the point — motion is atmosphere,
   never distraction. (26s aurora period mirrors the app's own backdrop clock.)
   ============================================================================ */

:root {
  --void:      #060c0e;
  --void-2:    #081114;
  --teal:      #5fa8a0;
  --teal-lift: #7cc3ba;
  --teal-deep: #3f6e68;   /* accentDim — aurora depth only, per the app */
  --mint:      #67c2a6;
  --amber:     #d9a441;   /* semantic warning only (draft notices) — not an accent */
  --rose:      #cf7d7d;   /* the one restrained red — release / danger */

  --text:      #eaf1f0;
  --text-sec:  #a6b6b3;
  --text-hint: #6c7c79;

  --glass-fill: rgba(255, 255, 255, 0.045);
  --glass-flat: rgba(255, 255, 255, 0.035);
  --edge:       rgba(95, 168, 160, 0.34);
  --hair:       rgba(255, 255, 255, 0.09);

  --r-lg: 28px;
  --r-md: 20px;
  --r-sm: 14px;

  --page: min(1080px, 92vw);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--void);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter",
               "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ── Aurora backdrop — independent slow-drifting blobs, blurred to light ── */
.aurora { position: fixed; inset: -20% -10%; z-index: -3; pointer-events: none; }
.aurora span {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  will-change: transform;
}
.aurora .b1 { top: 4%;  left: 8%;  width: 46vw; height: 46vw;
  background: radial-gradient(circle, rgba(95,168,160,0.42), transparent 62%);
  animation: drift1 30s var(--ease) infinite alternate; }
.aurora .b2 { top: -6%; right: 2%; width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(103,194,166,0.30), transparent 62%);
  animation: drift2 38s var(--ease) infinite alternate; }
.aurora .b3 { bottom: 2%; right: 14%; width: 44vw; height: 44vw;
  background: radial-gradient(circle, rgba(63,110,104,0.34), transparent 64%);
  animation: drift3 34s var(--ease) infinite alternate; }
.aurora .b4 { bottom: 6%; left: 4%; width: 38vw; height: 38vw;
  background: radial-gradient(circle, rgba(95,168,160,0.18), transparent 64%);
  animation: drift4 44s var(--ease) infinite alternate; }

@keyframes drift1 { to { transform: translate3d(8%, 6%, 0) scale(1.12); } }
@keyframes drift2 { to { transform: translate3d(-7%, 9%, 0) scale(1.08); } }
@keyframes drift3 { to { transform: translate3d(-9%, -6%, 0) scale(1.14); } }
@keyframes drift4 { to { transform: translate3d(7%, -7%, 0) scale(1.1); } }

/* A fine grain over everything — kills banding on the gradients, adds tactility. */
.grain {
  position: fixed; inset: 0; z-index: -2; pointer-events: none; opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
/* A vignette that sinks the edges so the aurora reads as light within a dark room. */
.vignette {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(120% 80% at 50% 30%, transparent 40%, rgba(4,8,9,0.55) 100%);
}

/* Pointer spotlight — a faint warmth that follows the cursor over the hero only. */
.spotlight {
  position: fixed; width: 620px; height: 620px; left: 0; top: 0; z-index: -1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(95,168,160,0.12), transparent 60%);
  pointer-events: none; opacity: 0; transition: opacity 0.6s ease;
}

/* ── Glass ── */
.glass, .glass-flat {
  position: relative;
  background: var(--glass-fill);
  border-radius: var(--r-md);
  box-shadow:
    0 24px 70px -28px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.glass { backdrop-filter: blur(16px) saturate(1.25); -webkit-backdrop-filter: blur(16px) saturate(1.25); }
/* Flat variant: no backdrop-filter — used where many surfaces stack, so the
   page never pays a screenful of live blurs per frame (the same call the app
   makes with frosted:false). Reads identical at card size over the aurora. */
.glass-flat { background: var(--glass-flat); }

/* The lit hairline: a gradient ring that catches the teal on the top-left edge. */
.glass::before, .glass-flat::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, var(--edge), var(--hair) 42%, rgba(95,168,160,0.14));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
/* A soft tint bloom from the top-left, the surface's own quiet light. */
.glass::after, .glass-flat::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(120% 120% at 12% 8%, rgba(95,168,160,0.10), transparent 55%);
  pointer-events: none;
}

/* ── Layout ── */
.wrap { width: var(--page); margin: 0 auto; }
main { position: relative; }

header.nav {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  background: linear-gradient(rgba(6,12,14,0.72), rgba(6,12,14,0.2));
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
header.nav .wrap { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
/* The app's ".S" mark as a launcher-style tile — dot lit teal, S in white. */
.logo .mark {
  width: 26px; height: 26px; border-radius: 8px;
  text-align: center; line-height: 24px;
  background: linear-gradient(160deg, #101b1d, #080f11);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.09), 0 0 16px rgba(95,168,160,0.28);
  color: var(--text); font-weight: 800; font-size: 13px;
  letter-spacing: 0.5px;
}
.logo .mark i {
  font-style: normal; color: var(--teal);
  text-shadow: 0 0 8px rgba(95,168,160,0.9);
}
.logo b { color: var(--text); font-weight: 700; letter-spacing: 3px; font-size: 14px; text-transform: uppercase; }
header.nav nav a { color: var(--text-hint); text-decoration: none; font-size: 14px; margin-left: 26px; transition: color 0.25s; }
header.nav nav a:hover { color: var(--teal); }
header.nav nav a.first { margin-left: 0; }
@media (max-width: 620px) { header.nav nav a:not(.cta) { display: none; } }

section { padding: 92px 0; }
.eyebrow {
  color: var(--teal); font-size: 12.5px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 18px;
}

h1, h2, h3 { letter-spacing: -0.025em; font-weight: 750; line-height: 1.08; }
h1 { font-size: clamp(46px, 8.5vw, 92px); }
h2 { font-size: clamp(30px, 4.6vw, 46px); line-height: 1.12; }
h3 { font-size: 18px; letter-spacing: -0.01em; }
.lede { color: var(--text-sec); font-size: clamp(17px, 2.1vw, 20px); max-width: 34em; }
p.sec { color: var(--text-sec); }
.hint { color: var(--text-hint); font-size: 13.5px; }

/* ── Hero ── */
.hero { padding: 72px 0 84px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 56px; } }
.hero h1 { margin-bottom: 26px; }
.hero h1 .thin { display: block; font-weight: 300; color: var(--text-sec); }
.hero .cta-row { margin-top: 38px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 15.5px; text-decoration: none;
  padding: 15px 28px; border-radius: 16px; border: 0; cursor: pointer;
  color: #062019;
  background: linear-gradient(135deg, var(--teal-lift), var(--teal) 55%, #4d8b84);
  box-shadow: 0 0 40px rgba(95,168,160,0.32), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 0 56px rgba(95,168,160,0.46), inset 0 1px 0 rgba(255,255,255,0.35); }
.btn.disabled { cursor: default; }
.btn.disabled:hover { transform: none; }
.btn.ghost {
  background: rgba(255,255,255,0.05); color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14);
}
.btn.ghost:hover { box-shadow: inset 0 0 0 1px var(--edge); }

/* ── Device: the Focus panel, working ── */
.device-stage { display: flex; flex-direction: column; align-items: center; align-self: start; perspective: 1400px; }
.sim-hint { margin-top: 20px; color: var(--text-hint); font-size: 13px; text-align: center; }
.device {
  position: relative; width: 300px; border-radius: 40px; padding: 12px;
  background: linear-gradient(160deg, #12201f, #0a1416);
  box-shadow: 0 50px 120px -30px rgba(0,0,0,0.85), inset 0 0 0 1px rgba(255,255,255,0.06);
  transform-style: preserve-3d; transition: transform 0.4s var(--ease);
}
.device::after { /* teal bloom behind the phone */
  content: ""; position: absolute; inset: -8% -6% -4%; z-index: -1; border-radius: 60px;
  background: radial-gradient(60% 50% at 50% 40%, rgba(95,168,160,0.28), transparent 70%);
  filter: blur(10px);
}
.screen {
  position: relative;
  border-radius: 30px; overflow: hidden; padding: 22px 20px 24px;
  background:
    radial-gradient(80% 40% at 20% 0%, rgba(95,168,160,0.14), transparent 60%),
    linear-gradient(180deg, #0a1315, #070d0f);
  min-height: 520px; display: flex; flex-direction: column;
}

/* Demo scenes: stacked absolutely, sequenced by the timeline in app.js.
   The fades are staggered — outgoing clears before incoming lands — so two
   scenes are never legible at once (a straight cross-fade mashes their
   identically-placed buttons and headlines together). */
.scene {
  position: absolute; left: 20px; right: 20px; top: 62px; bottom: 24px;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.26s var(--ease), filter 0.45s var(--ease), visibility 0s 0.26s;
}
.scene.on {
  opacity: 1; visibility: visible;
  transition: opacity 0.45s var(--ease) 0.3s, filter 0.45s var(--ease);
}
/* While the check-in is up, the scene under it sleeps — otherwise the card
   sits mid-headline and reads as a layout bug, not a notification. */
.notif.on ~ .scene.on { opacity: 0.16; filter: blur(4px); }
.scene.center { align-items: center; justify-content: center; text-align: center; gap: 4px; }
.statusbar { display: flex; justify-content: space-between; color: var(--text-hint); font-size: 12px; margin-bottom: 30px; }
.f-over { display: flex; align-items: center; gap: 8px; color: var(--teal); font-size: 11.5px; font-weight: 700; letter-spacing: 2.5px; }
.f-over .d { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 10px var(--teal); }
.f-commit { font-size: 27px; font-weight: 750; letter-spacing: -0.02em; margin: 16px 0 12px; line-height: 1.15; }
.f-why { color: var(--text-sec); font-size: 14px; line-height: 1.5; }
/* The day clock — the ring climbs from morning toward the reckoning while the
   committed thing sits untouched. Ambient (no start/stop), not a focus timer. */
.f-ring { margin: auto 0; display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 22px 0; }
.ring-wrap { position: relative; width: 128px; height: 128px; display: grid; place-items: center; }
/* The ring is masked to a donut; the time is a sibling (not a child), so it
   stays crisp in the centre instead of being clipped by the mask. */
.ring-wrap .circle {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(var(--teal) 0 0%, rgba(255,255,255,0.06) 0% 100%);
  -webkit-mask: radial-gradient(circle, transparent 54px, #000 55px);
          mask: radial-gradient(circle, transparent 54px, #000 55px);
}
.ring-wrap .time { position: relative; z-index: 1; font-size: 28px; font-weight: 700; letter-spacing: -0.02em; }
.f-ring .ring-lbl { font-size: 11px; font-weight: 500; color: var(--text-hint); letter-spacing: 1px; }
.f-actions { display: flex; gap: 10px; }
.f-actions .b {
  flex: 1; text-align: center; font-size: 13.5px; font-weight: 600; padding: 13px 0; border-radius: 13px;
  transition: transform 0.18s var(--ease), filter 0.2s;
}
.f-actions .prim { background: linear-gradient(135deg, var(--teal-lift), var(--teal)); color: #062019; }
.f-actions .gho { background: rgba(255,255,255,0.05); color: var(--text-sec); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1); }
.b.press { transform: scale(0.94); filter: brightness(1.12); }
.f-note { margin-top: 14px; color: var(--text-hint); font-size: 12px; line-height: 1.55; }

/* Capture scene: the commitment types itself */
.d-input {
  margin-top: auto; margin-bottom: 10px; min-height: 46px;
  display: flex; align-items: center; padding: 12px 14px; border-radius: 13px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  font-size: 14px; color: var(--text);
}
.d-input .caret { width: 2px; height: 16px; margin-left: 2px; background: var(--teal); animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* Check-in notification */
.notif {
  position: absolute; left: 12px; right: 12px; top: 12px; z-index: 3;
  padding: 12px 14px; border-radius: 16px;
  background: rgba(28, 32, 38, 0.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.08);
  transform: translateY(-130%); transition: transform 0.55s var(--ease);
}
.notif.on { transform: none; }
.n-head { display: flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; color: var(--text-hint); }
.n-head .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 8px var(--teal); }
.n-body { margin: 7px 0 10px; font-size: 13.5px; color: var(--text); }
.n-acts { display: flex; gap: 8px; }
.na {
  flex: 1; text-align: center; font-size: 12px; font-weight: 600; padding: 8px 0; border-radius: 9px;
  background: rgba(255,255,255,0.06); color: var(--text-sec);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  transition: background 0.3s, color 0.3s;
}
.na.hot { background: linear-gradient(135deg, var(--teal-lift), var(--teal)); color: #062019; }

/* Reckoning: hold-to-keep (yes costs more than no) */
.hold {
  position: relative; margin: auto 0; height: 52px; border-radius: 15px; overflow: hidden;
  display: grid; place-items: center; font-size: 13.5px; font-weight: 600; color: var(--text-sec);
  background: rgba(255,255,255,0.05); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}
.hold .fill { position: absolute; inset: 0; width: 0; background: linear-gradient(135deg, var(--teal-lift), var(--teal)); transition: width 1.6s linear; }
.hold.go .fill { width: 100%; }
.hold span { position: relative; z-index: 1; transition: color 0.8s; }
.hold.go span { color: #062019; }

/* The two answers, pushed to the bottom of the reckoning. The hold (yes) is
   the prominent bar; the "no" is a single, quieter tap — the asymmetry is the
   point: saying you kept it costs more than admitting you didn't. */
.reck-choose { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }
.reck-choose .hold { margin: 0; }
.no-tap {
  text-align: center; font-size: 13px; font-weight: 600; padding: 11px 0; border-radius: 12px;
  color: var(--text-sec); background: rgba(255,255,255,0.04);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
  transition: transform 0.18s var(--ease), filter 0.2s;
}
.no-tap.press { transform: scale(0.96); filter: brightness(1.2); }

/* ── The one belief (editorial strip) ── */
.belief { text-align: center; padding: 96px 0; }
.belief .quote {
  font-size: clamp(28px, 4.4vw, 48px); font-weight: 300; line-height: 1.25;
  letter-spacing: -0.02em; max-width: 18em; margin: 0 auto; color: var(--text);
}
.belief .quote em { font-style: normal; color: var(--teal); font-weight: 500; }
.belief .who { margin-top: 26px; color: var(--text-hint); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; }

/* ── The workspace (3×3 signature) ── */
.ws-head { max-width: 40em; margin-bottom: 40px; }
.workspace { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; aspect-ratio: 1.35; }
@media (max-width: 620px) { .workspace { aspect-ratio: 1; gap: 8px; } }
.cell {
  border-radius: var(--r-sm); display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px; min-height: 92px; position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease);
}
.cell .lbl { font-size: 13px; font-weight: 600; color: var(--text-sec); }
.cell .sub { font-size: 10.5px; color: var(--text-hint); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 2px; }
.cell:hover { transform: translateY(-4px); }
.cell.focus {
  background: linear-gradient(150deg, rgba(95,168,160,0.22), rgba(95,168,160,0.06));
  box-shadow: 0 0 50px -8px rgba(95,168,160,0.5), inset 0 0 0 1px var(--edge);
  align-items: center; justify-content: center; text-align: center;
}
.cell.focus .lbl { color: var(--teal-lift); font-size: 16px; font-weight: 750; letter-spacing: 1px; }
.cell.focus .sub { color: rgba(124,195,186,0.8); }
.cell.focus .mark {
  width: 10px; height: 10px; border-radius: 50%; margin-bottom: 8px;
  background: var(--teal); box-shadow: 0 0 16px var(--teal);
}
.ws-note { margin-top: 22px; color: var(--text-hint); font-size: 14px; text-align: center; }

/* Per-screen intents — mirrors the 3×3 map above, one card per address */
.intents { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 44px; }
@media (max-width: 800px) { .intents { grid-template-columns: 1fr; } }
.it { padding: 22px; border-radius: var(--r-sm); position: relative; overflow: hidden; }
.it .sub {
  font-size: 10.5px; color: var(--teal); letter-spacing: 1.8px;
  text-transform: uppercase; font-weight: 700; margin-bottom: 10px;
}
.it p { color: var(--text-sec); font-size: 14px; }
.it.focus {
  background: linear-gradient(150deg, rgba(95,168,160,0.22), rgba(95,168,160,0.06));
  box-shadow: 0 0 50px -8px rgba(95,168,160,0.5), inset 0 0 0 1px var(--edge);
}
.it.focus .sub { color: var(--teal-lift); }
.it.focus p { color: var(--text); }

/* ── Feature cards ── */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 44px; }
@media (max-width: 720px) { .features { grid-template-columns: 1fr; } }
.feat { padding: 30px; }
.feat h3 { margin-bottom: 10px; }
.feat p { color: var(--text-sec); font-size: 15px; }

/* ── Principles (non-negotiables) ── */
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px; }
@media (max-width: 800px) { .principles { grid-template-columns: 1fr; } }
.pr { padding: 24px; }
.pr .n { color: var(--teal); font-size: 12px; font-weight: 700; letter-spacing: 2px; margin-bottom: 12px; }
.pr h3 { font-size: 16px; margin-bottom: 7px; }
.pr p { color: var(--text-sec); font-size: 14px; }

/* ── Privacy band ── */
.privacy { text-align: center; }
.privacy h2 { max-width: 16em; margin: 0 auto 20px; }
.privacy .lede { margin: 0 auto; text-align: center; }
.privacy .rowmarks { display: flex; justify-content: center; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
.privacy .mk { color: var(--text-hint); font-size: 13.5px; display: flex; align-items: center; gap: 8px; }
.privacy .mk::before { content: "—"; color: var(--teal); }

/* ── Pricing ── */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 44px; }
@media (max-width: 720px) { .price-grid { grid-template-columns: 1fr; } }
.price { padding: 34px; }
.price .tag { color: var(--text-hint); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; }
.price .big { font-size: 38px; font-weight: 750; letter-spacing: -0.03em; margin: 10px 0 4px; }
.price .big small { font-size: 16px; font-weight: 500; color: var(--text-hint); letter-spacing: 0; }
.price p { color: var(--text-sec); font-size: 14.5px; margin-top: 12px; }
.price.hl { box-shadow: 0 24px 70px -28px rgba(0,0,0,0.7), inset 0 0 0 1px var(--edge), 0 0 60px -20px rgba(95,168,160,0.5); }

/* ── Closing ── */
.closing { text-align: center; padding: 110px 0; }
.closing h2 { max-width: 15em; margin: 0 auto 30px; font-weight: 300; }
.closing h2 b { font-weight: 700; }

/* ── Email capture ── */
.signup { margin-top: 38px; max-width: 32em; }
.hero .signup { margin-left: 0; }
.closing .signup { margin: 30px auto 0; }
.signup .cta-row { margin-top: 0; }
.signup.center .cta-row { justify-content: center; }
.email-in {
  flex: 1 1 220px; min-width: 0; font: inherit; font-size: 15.5px; color: var(--text);
  padding: 15px 18px; border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.email-in::placeholder { color: var(--text-hint); }
.email-in:focus { outline: none; border-color: var(--edge); box-shadow: 0 0 0 3px rgba(95,168,160,0.18); }
.signup .form-msg { margin-top: 14px; min-height: 1.2em; }
.signup.error .email-in { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(207,125,125,0.16); }
.signup.error .form-msg { color: var(--rose); }
.signup.done .cta-row { display: none; }
.signup.done .form-msg { color: var(--teal-lift); font-size: 15px; }
/* Honeypot — off-screen for people, present for bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
/* Visually hidden (form labels) */
.vh { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ── Footer ── */
footer.site { border-top: 1px solid rgba(255,255,255,0.06); padding: 44px 0 60px; }
footer.site .wrap { display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: center; }
footer.site .made { color: var(--text-hint); font-size: 13px; }
footer.site .made b { color: var(--text-sec); font-weight: 600; }
footer.site .spacer { flex: 1; }
footer.site a { color: var(--text-hint); text-decoration: none; font-size: 13.5px; }
footer.site a:hover { color: var(--teal); }
@media (max-width: 620px) { footer.site .spacer { flex-basis: 100%; } }

/* ── Prose (privacy / terms / support) ── */
.prose { max-width: 46em; padding: 60px 0 40px; }
.prose h1 { font-size: clamp(34px, 6vw, 48px); margin-bottom: 8px; }
.prose h2 { font-size: 19px; margin: 34px 0 8px; letter-spacing: -0.01em; }
.prose p, .prose li { color: var(--text-sec); font-size: 15.5px; }
.prose a { color: var(--teal); }
.prose a.btn { color: #062019; }
.prose ul { padding-left: 22px; margin: 8px 0; }
.prose .lead { color: var(--text); font-size: 17px; }
.draft {
  border-radius: 12px; padding: 12px 18px; font-size: 13px; margin: 20px 0 30px;
  background: rgba(217,164,65,0.10); color: var(--amber);
  box-shadow: inset 0 0 0 1px rgba(217,164,65,0.35);
}

/* ── Reveal on scroll ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .aurora span { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .device { transition: none; }
  .spotlight { display: none; }
}
