@font-face{font-family:"Newsreader";font-style:normal;font-weight:300;font-display:swap;src:url("/fonts/Newsreader-Light.woff2") format("woff2")}
@font-face{font-family:"Newsreader";font-style:italic;font-weight:300;font-display:swap;src:url("/fonts/Newsreader-LightItalic.woff2") format("woff2")}
@font-face{font-family:"Newsreader";font-style:normal;font-weight:400;font-display:swap;src:url("/fonts/Newsreader-Regular.woff2") format("woff2")}
@font-face{font-family:"Archivo";font-style:normal;font-weight:400;font-display:swap;src:url("/fonts/Archivo-Regular.woff2") format("woff2")}
@font-face{font-family:"Archivo";font-style:normal;font-weight:500;font-display:swap;src:url("/fonts/Archivo-Medium.woff2") format("woff2")}
@font-face{font-family:"Archivo";font-style:normal;font-weight:600;font-display:swap;src:url("/fonts/Archivo-SemiBold.woff2") format("woff2")}
@font-face{font-family:"IBM Plex Mono";font-style:normal;font-weight:400;font-display:swap;src:url("/fonts/IBMPlexMono-Regular.woff2") format("woff2")}

/* GENERATED by scripts/buildSite.js — do not edit. Colour comes from src/design/tokens.js. */
:root{
  --ink:#100F0D;          /* the ground — the app's own dark background */
  --paper:#F4F1EB;      /* the ink — the app's own dark-mode text */
  --dim:rgba(244,241,235,0.55);
  --dim2:rgba(244,241,235,0.72);
  --cool:#8FA9FF;     /* now */
  --warm:#E8A56A;            /* then — the one site-only colour, see the header of this file */
  --line:rgb(244 241 235/.10);
  --r-pill:999px; --r-panel:20px;
  --ease:cubic-bezier(.23,1,.32,1);
  --measure:min(88vw,1060px);
}
*{box-sizing:border-box;margin:0;padding:0}
html{background:var(--ink);-webkit-font-smoothing:antialiased;scroll-behavior:smooth}
body{
  background:var(--ink);color:var(--paper);
  font:400 1rem/1.6 Arch,system-ui,-apple-system,sans-serif;
  overflow-x:hidden;
  position:relative;   /* containing block for the thread and the calendar rule */
}

/* film grain — fixed, pointer-events none, never on a scrolling container */
body::after{
  content:'';position:fixed;inset:0;z-index:60;pointer-events:none;opacity:.035;
  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='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.wrap{width:var(--measure);margin-inline:auto;position:relative;z-index:2}
::selection{background:var(--warm);color:var(--ink)}
input{caret-color:var(--cool)}
:focus-visible{outline:2px solid var(--cool);outline-offset:3px;border-radius:4px}

/* ── THE HUD ──────────────────────────────────────────────────────────────────────────────
   Fixed. The date runs backward from today to the first entry as you scroll. This is the
   page's one unforgettable object, so it sits above everything and never moves. */
.hud{
  position:fixed;top:0;left:0;right:0;z-index:40;pointer-events:none;
  padding:22px max(24px,4vw);
  display:flex;justify-content:space-between;align-items:flex-start;
  font:400 .72rem/1 Mono,ui-monospace,monospace;letter-spacing:.14em;
  text-transform:uppercase;color:var(--dim);
}
/* The HUD is fixed and content scrolls under it. Without a scrim, entry text and the calendar
   rule collide with it. A short gradient in the page ground gives it something to sit on
   without drawing a rule line. */
.hud::after{
  content:'';position:fixed;top:0;left:0;right:0;height:132px;z-index:-1;pointer-events:none;
  background:linear-gradient(to bottom,var(--ink) 34%,rgb(16 15 13/.86) 62%,transparent);
}
.hud b{display:block;font-weight:400;color:var(--paper);font-size:.95rem;letter-spacing:.1em;
  margin-top:9px;font-variant-numeric:tabular-nums}
.hud .r{text-align:right;min-width:150px}
.hud .r b{font-size:1.55rem;letter-spacing:.02em}
.hud .bar{width:100%;height:1px;background:var(--line);margin-top:11px;position:relative;overflow:hidden}
.hud .bar i{position:absolute;inset:0 auto 0 0;width:100%;background:var(--cool);
  transform:scaleX(var(--p,0));transform-origin:0 50%}
/* THE MARK, BESIDE THE NAME. Below roughly 40px an 11px stroke closes up, which is why
   Mark.jsx ships a solid variant and why both small marks on this site use it. */
.hud .id{display:flex;align-items:center;gap:11px;color:inherit;text-decoration:none}
.hud .mk{width:26px;height:26px;flex:none;color:var(--paper);opacity:.94}
.hud .id b{margin-top:5px}

/* ── THE CALENDAR RULE ────────────────────────────────────────────────────────────────────
   One hairline per day for a whole year, running the full height of the page. It is what the
   thread is drawn against, and it means no screen is ever empty — you are always somewhere in
   a year. Pure CSS: no JS, no DOM cost. */
.rule{
  position:absolute;top:0;bottom:0;right:max(18px,2.4vw);width:54px;z-index:1;pointer-events:none;
  --day:14px;
}
.rule::before{
  content:'';position:absolute;inset:0;
  background:
    repeating-linear-gradient(to bottom,rgb(244 241 235/.30) 0 1px,transparent 1px calc(var(--day) * 7)),
    repeating-linear-gradient(to bottom,rgb(244 241 235/.085) 0 1px,transparent 1px var(--day));
  background-size:54px 100%,20px 100%;
  background-position:100% 0,100% 0;
  background-repeat:repeat-y;
  -webkit-mask-image:linear-gradient(to bottom,transparent,#000 7%,#000 93%,transparent);
  mask-image:linear-gradient(to bottom,transparent,#000 7%,#000 93%,transparent);
}
.rule span{
  position:absolute;right:64px;top:var(--t);transform:translateY(-50%);
  font:400 .62rem/1 Mono,monospace;letter-spacing:.22em;text-transform:uppercase;
  color:var(--dim);white-space:nowrap;opacity:.55;
}

/* ── THE THREAD ───────────────────────────────────────────────────────────────────────────
   One SVG stretched over the whole document. non-scaling-stroke keeps the line an even weight
   despite the non-uniform scale.

   THE LIT LINE IS A CLIPPED COPY, NOT A DASH. Three attempts at stroke-dasharray/dashoffset
   each lit the wrong end or the wrong window, because which end survives depends on a sign
   convention that corresponds to nothing the reader can see. Instead the full line is drawn
   dim, and an identical copy is drawn bright inside #litwrap, whose height the driver sets to
   the depth the reader has reached. The geometry matches because the inner SVG keeps the full
   document height — only the wrapper is short. Do not reintroduce the dash. */
#thread,#litsvg{position:absolute;top:0;left:0;width:100%;height:100%;z-index:0;pointer-events:none}
#litwrap{position:absolute;top:0;left:0;right:0;height:0;overflow:hidden;z-index:0;pointer-events:none}
#thread path,#litsvg path{fill:none;stroke-width:1.6;vector-effect:non-scaling-stroke;stroke-linecap:round}
#track{stroke:url(#g);opacity:.34}
#halo{stroke:url(#g);stroke-width:8;opacity:.18}
#draw{stroke:url(#g)}

/* ── HERO ─────────────────────────────────────────────────────────────────────────────────*/
.hero{min-height:100dvh;display:grid;place-items:center;text-align:center;padding:16vh 0 12vh}
.hero h1{
  font:300 clamp(2.6rem,7.2vw,6.6rem)/1.02 News,Georgia,serif;
  letter-spacing:-.028em;text-wrap:balance;max-width:16ch;margin-inline:auto;
}
.hero h1 em{font-style:italic;color:var(--warm)}
.hero .sub{
  margin-top:2.4rem;max-width:34ch;margin-inline:auto;color:var(--dim);
  font-size:clamp(.95rem,1.6vw,1.12rem);line-height:1.65;text-wrap:pretty;
}
.eyebrow{font:400 .66rem/1 Mono,monospace;letter-spacing:.28em;text-transform:uppercase;
  color:var(--dim);margin-bottom:2.6rem}

/* ── ACTS ─────────────────────────────────────────────────────────────────────────────────
   The measure lives on the h2, at the h2's own font size. Setting max-width in ch on the
   SECTION measures it at 1rem and jams a 3.6rem headline into ~350px. */
.act{padding:13vh 0 3vh;width:min(100%,540px);position:relative}
.act.r{margin-left:auto;text-align:right}
.act.r h2,.act.r p{margin-left:auto}
.act::before{content:attr(data-n);position:absolute;top:calc(13vh - 6px);left:0;
  font:400 .62rem/1 Mono,monospace;letter-spacing:.24em;color:var(--dim);opacity:.7}
.act.r::before{left:auto;right:0}
.act h2{margin-top:2.6rem;max-width:13ch;
  font:300 clamp(1.9rem,4.4vw,3.6rem)/1.08 News,Georgia,serif;letter-spacing:-.02em;text-wrap:balance}
.act p{margin-top:1.2rem;color:var(--dim);max-width:30ch;font-size:.98rem;line-height:1.65}

/* ── ENTRIES ON THE THREAD ────────────────────────────────────────────────────────────────
   A two-column grid split at the centre, so every dot sits ON the line. */
.entries{padding:5vh 0 10vh;display:grid;grid-template-columns:1fr 1fr;column-gap:0;
  row-gap:clamp(30px,5vh,58px);align-items:start}
.entry{position:relative;max-width:430px;grid-column:1;justify-self:end;text-align:right;padding-right:34px}
.entry.r{grid-column:2;justify-self:start;text-align:left;padding-right:0;padding-left:34px}
.entry .d{position:relative;font:400 .68rem/1 Mono,monospace;letter-spacing:.2em;
  text-transform:uppercase;color:var(--warm);display:flex;align-items:center;gap:11px;
  justify-content:flex-end}
.entry.r .d{justify-content:flex-start}
.entry .d::before{content:'';position:absolute;top:2px;right:-37px;width:7px;height:7px;
  border-radius:50%;background:var(--warm);box-shadow:0 0 14px 3px rgb(232 165 106/.5)}
.entry.r .d::before{right:auto;left:-37px}
.entry q{display:block;margin-top:1.1rem;font:300 clamp(1.35rem,2.9vw,2.05rem)/1.3 News,Georgia,serif;
  letter-spacing:-.012em;quotes:'\201C' '\201D'}
.entry .m{margin-top:1rem;font:400 .74rem/1 Mono,monospace;letter-spacing:.13em;
  text-transform:uppercase;color:var(--dim)}

/* ── THE REFUSALS ─────────────────────────────────────────────────────────────────────────
   Each word lights on its own slice of the scroll, so the sentence illuminates left to right
   at about the speed you read it. */
.refuse{padding:15vh 0 12vh;text-align:center}
.refuse .line{font:300 clamp(1.6rem,4vw,3.1rem)/1.35 News,Georgia,serif;letter-spacing:-.018em;
  max-width:22ch;margin:0 auto clamp(1.6rem,4vh,3rem);text-wrap:balance}
.refuse .line strong{font-weight:400;color:var(--warm)}

/* ── THE ENDING ───────────────────────────────────────────────────────────────────────────
   The hero asks the question; nothing else is allowed to answer it. This is the answer, and
   the page resolves into the mark on the way to it. */
.close{text-align:center;padding:2vh 0 9vh;position:relative}
.close .cue{font:400 .74rem/1 Mono,monospace;letter-spacing:.26em;text-transform:uppercase;
  color:var(--dim);margin-bottom:2.4rem}
.close .say{font:300 clamp(1.5rem,3.6vw,2.7rem)/1.3 News,Georgia,serif;letter-spacing:-.012em;
  font-style:italic;color:var(--dim2);max-width:20ch;margin-inline:auto}
.close .who{font:400 1.06rem/1.6 Arch,system-ui,sans-serif;color:var(--dim);opacity:.9;
  margin:1.3rem auto 0;max-width:36ch}
.close .answer{font:300 clamp(2.2rem,6.4vw,5.2rem)/1.06 News,Georgia,serif;letter-spacing:-.03em;
  text-wrap:balance;max-width:15ch;margin-inline:auto}
.close .answer em{font-style:italic;color:var(--warm)}
.close .tail{margin:3rem auto 0;max-width:34ch;color:var(--dim);line-height:1.7;font-size:1.06rem}

/* ── THE MARK, AS THE PAGE'S DESTINATION ──────────────────────────────────────────────────
   Mark.jsx is a mountain with a DETACHED dot above the peak — "the head of the figure it used
   to be, and the one thing nobody else's mountain does". This page has spent its whole length
   as a line descending to a dot. So they are the same dot: the thread terminates in the mark's
   circle, and the mountain draws in beneath it. The logo is not placed on the page; the page
   arrives at it. */
.origin{width:132px;height:132px;margin:3rem auto 2.7rem;position:relative;color:var(--warm)}
.origin svg{width:100%;height:100%;display:block;overflow:visible}
.origin .peak{fill:currentColor;filter:drop-shadow(0 0 22px rgb(232 165 106/.5))}
.origin .slope{stroke:currentColor;stroke-width:11;stroke-linecap:round;fill:none}

/* ── WAITLIST ─────────────────────────────────────────────────────────────────────────────*/
.join{padding:0 0 13vh;display:flex;justify-content:center}
.join>div{width:min(100%,470px)}
.field{display:flex;align-items:center;gap:8px;background:rgb(244 241 235/.045);
  border:1px solid var(--line);border-radius:var(--r-pill);padding:7px 7px 7px 22px;
  transition:border-color .3s var(--ease),background .3s var(--ease)}
.field:focus-within{border-color:rgb(143 169 255/.42);background:rgb(244 241 235/.07)}
.field input{flex:1;min-width:0;background:none;border:0;color:var(--paper);
  font:400 .95rem Arch,sans-serif;padding:12px 0}
.field input::placeholder{color:var(--dim)}
.field input:focus{outline:none}
.go{display:inline-flex;align-items:center;gap:12px;border:0;cursor:pointer;flex:none;
  background:var(--paper);color:var(--ink);border-radius:var(--r-pill);padding:12px 12px 12px 22px;
  font:500 .88rem Arch,sans-serif;transition:transform .22s var(--ease),opacity .3s var(--ease)}
.go i{width:26px;height:26px;border-radius:50%;background:rgb(16 15 13/.09);display:grid;
  place-items:center;font-style:normal;font-size:.8rem;
  transition:transform .32s var(--ease),background .32s var(--ease)}
.go:hover i{transform:translate(2px,-1px) scale(1.06);background:rgb(16 15 13/.16)}
.go:active{transform:scale(.97)}
.go[disabled]{opacity:.5;cursor:default}
.note{text-align:center;color:var(--dim);font-size:.78rem;margin-top:1.3rem}
.formmsg{text-align:center;color:var(--paper);font-size:1rem;padding:18px 0}

footer{border-top:1px solid var(--line);padding:34px 0 46px;display:flex;justify-content:space-between;
  flex-wrap:wrap;gap:14px;align-items:center;font-size:.78rem;color:var(--dim)}
footer .who{display:flex;align-items:center;gap:11px}
footer .mk{width:20px;height:20px;color:var(--paper);opacity:.85;flex:none}
footer a{color:var(--dim);text-decoration:none;border-bottom:1px solid transparent;transition:border-color .25s}
footer a:hover{border-color:var(--dim)}
footer nav{display:flex;gap:22px;flex-wrap:wrap}

/* ── DOCUMENT PAGES (privacy, terms, support) ─────────────────────────────────────────────
   Same ground and same type as the homepage, at a reading measure. A reviewer who lands here
   from the App Store should be in no doubt it is the same product. */
.doc{padding:22vh 0 14vh;max-width:70ch}
.doc h1{font:300 clamp(2.1rem,5vw,3.4rem)/1.06 News,Georgia,serif;letter-spacing:-.024em}
.doc .updated{margin-top:1rem;font:400 .68rem/1 Mono,monospace;letter-spacing:.2em;
  text-transform:uppercase;color:var(--dim)}
.doc .draft{margin-top:2.2rem;padding:18px 22px;border:1px solid var(--line);
  border-radius:var(--r-panel);color:var(--dim2);font-size:.92rem;line-height:1.7}
.doc h2{margin-top:3.4rem;font:400 1.18rem/1.35 Arch,sans-serif;letter-spacing:-.006em}
.doc p{margin-top:1rem;color:var(--dim2);line-height:1.8;font-size:.98rem}
.doc .back{display:inline-block;margin-top:4rem;color:var(--dim);text-decoration:none;
  border-bottom:1px solid var(--line);padding-bottom:2px}
.doc .back:hover{color:var(--paper);border-color:var(--paper)}

/* ── SCROLL REVEAL — SCRUBBED, NOT TRIGGERED ──────────────────────────────────────────────
   animation-timeline:view() ties progress to the element's travel through the viewport, so
   motion tracks the wheel 1:1 and runs off the main thread. An IntersectionObserver can only
   flip a switch; this scrubs. Wrapped in @supports so a browser without it simply shows the
   content — the hidden state never exists where it cannot be undone.

   The range is entry-based, not cover-based: a cover range needs the element to travel a
   distance the last section on the page does not have, which froze the waitlist at 8px of
   blur permanently. */
@supports (animation-timeline: view()) {
  .rise{animation:rise linear both;animation-timeline:view();animation-range:entry 2% entry 78%}
  @keyframes rise{
    from{opacity:0;transform:translateY(34px);filter:blur(8px)}
    to  {opacity:1;transform:none;filter:none}
  }
  .refuse .line w{
    animation:lit linear both;animation-timeline:view();
    animation-range:entry calc(6% + var(--i) * 1.6%) entry calc(46% + var(--i) * 1.6%);
  }
  @keyframes lit{from{opacity:.12}to{opacity:1}}
  /* the mountain draws in under the origin dot as the ending arrives */
  .origin .slope{
    stroke-dasharray:var(--l);stroke-dashoffset:var(--l);
    animation:slope linear both;animation-timeline:view();animation-range:entry 12% entry 62%;
  }
  @keyframes slope{to{stroke-dashoffset:0}}
}
/* JS fallback for engines without scroll timelines (Firefox today). */
.io .rise{opacity:0;transform:translateY(30px);filter:blur(7px);
  transition:opacity .95s var(--ease),transform .95s var(--ease),filter .95s var(--ease)}
.io .rise.in{opacity:1;transform:none;filter:none}
.io .refuse .line w{opacity:.13;transition:opacity .5s var(--ease) calc(var(--i) * 42ms)}
.io .refuse .line.lit w{opacity:1}

@media (max-width:760px){
  .act,.act.r{width:auto;text-align:left;margin-left:0;padding-top:10vh}
  .act.r h2,.act.r p{margin-left:0;margin-right:0}
  .act.r::before{left:0;right:auto}
  .entries{grid-template-columns:1fr;row-gap:clamp(26px,4vh,44px)}
  .entry,.entry.r{grid-column:1;justify-self:stretch;text-align:left;max-width:none;padding:0 0 0 26px}
  .entry .d,.entry.r .d{justify-content:flex-start}
  .entry .d::before,.entry.r .d::before{left:-26px;right:auto}
  .rule{width:22px;right:6px;--day:10px;opacity:.7}
  .rule span{display:none}
  /* map the thread onto the left-hand dots instead of the page centre */
  #thread,#litsvg{width:50px}
  .close{text-align:left;padding-left:26px}
  .close .say,.close .answer,.close .tail,.close .who{margin-left:0;margin-right:0;max-width:none}
  .origin{margin:2.6rem 0 2.4rem -26px;width:104px;height:104px}
  .hud .r b{font-size:1.2rem}
  .hud .mk{width:21px;height:21px}
  .hud .id b{font-size:.76rem;letter-spacing:.06em;white-space:nowrap}
  .field{flex-wrap:wrap;border-radius:22px;padding:14px}
  .field input{width:100%;flex:1 1 100%;padding:6px 8px}
  .go{width:100%;justify-content:space-between}
  .doc{padding:18vh 0 12vh}
  footer{flex-direction:column;align-items:flex-start}
}

/* apple-design §14: reduced transparency and higher contrast are separate signals from
   reduced motion, and a health page is exactly where someone has turned them on. */
@media (prefers-contrast:more){
  :root{--dim:rgba(244,241,235,0.72);--line:rgb(244 241 235/.28)}
  #track{opacity:.6}
  .refuse .line w{opacity:1!important;animation:none!important}
  .field{border-color:var(--paper)}
  .rule::before{opacity:.5}
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .rise{animation:none!important;opacity:1!important;transform:none!important;filter:none!important}
  .io .rise{opacity:1;transform:none;filter:none;transition:none}
  .refuse .line w{opacity:1!important;animation:none!important}
  .origin .slope{stroke-dasharray:none!important;stroke-dashoffset:0!important;animation:none!important}
  #litwrap{height:auto!important;bottom:0}
  *{transition-duration:.01ms!important}
}
