/* nuntex.com: one stylesheet for every page. Tokens are the apps' Theme.kt / Theme.swift values, and the
   typeface is the apps' own Newsreader, served from this site rather than a font service. */

@font-face {
  font-family: "Newsreader";
  src: url("fonts/newsreader.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("fonts/newsreader-italic.woff2") format("woff2");
  font-weight: 200 800;
  font-style: italic;
  font-display: swap;
}

:root {
  --paper: #FAF9F6;
  --sheet: #FFFFFF;
  --raised: #F1EFEA;
  --ink: #17191D;
  --ink-2: #3D434B;
  --muted: #5C636D;
  --faint: #8C929A;
  --hairline: #E6E2DA;
  --card-border: #EAE6DE;
  --field: #FFFFFF;
  --field-border: #D9D5CC;
  --accent: #0E6A62;
  --on-accent: #FFFFFF;
  --accent-soft: #E1EEEA;
  --warn: #8F5410;
  --warn-soft: #F5EBDD;
  --positive: #2D6A3F;
  --diff-add: #E4F0E7;
  --diff-add-ink: #1F5130;
  --diff-del: #F6E7E2;
  --diff-del-ink: #7A3325;
  --shot-panel: #ECE8DF;
  --screen-edge: rgba(23, 25, 29, 0.09);
  --screen-shadow: 0 1px 2px rgba(23, 25, 29, 0.06), 0 10px 24px -10px rgba(23, 25, 29, 0.14), 0 44px 80px -36px rgba(23, 25, 29, 0.26);
  --card-shadow: 0 4px 14px rgba(59, 47, 32, 0.07);
  --lift-shadow: 0 44px 80px -44px rgba(59, 47, 32, 0.42), 0 16px 32px -20px rgba(59, 47, 32, 0.28);
  --panel-shadow: 0 34px 60px -34px rgba(59, 47, 32, 0.32);
  --shot-light: block;
  --shot-dark: none;
  --serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #0F1113;
    --sheet: #171A1E;
    --raised: #14171A;
    --ink: #ECEAE5;
    --ink-2: #C9CCD0;
    --muted: #A3A9B1;
    --faint: #6E747C;
    --hairline: #262A2F;
    --card-border: #252A30;
    --field: #13161A;
    --field-border: #30353B;
    --accent: #6BC6BA;
    --on-accent: #00201C;
    --accent-soft: #16302C;
    --warn: #DDA25A;
    --warn-soft: #2B2217;
    --positive: #7FBF8F;
    --diff-add: #14281C;
    --diff-add-ink: #8FD1A0;
    --diff-del: #2D1B17;
    --diff-del-ink: #E7A091;
    --shot-panel: #1C1F23;
    --screen-edge: rgba(255, 255, 255, 0.09);
    --screen-shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 14px 30px -12px rgba(0, 0, 0, 0.55), 0 44px 80px -36px rgba(0, 0, 0, 0.7);
    --card-shadow: none;
    --lift-shadow: 0 44px 80px -40px rgba(0, 0, 0, 0.85);
    --panel-shadow: 0 34px 60px -30px rgba(0, 0, 0, 0.8);
    --shot-light: none;
    --shot-dark: block;
    color-scheme: dark;
  }
}

:root[data-theme="dark"] {
  --paper: #0F1113;
  --sheet: #171A1E;
  --raised: #14171A;
  --ink: #ECEAE5;
  --ink-2: #C9CCD0;
  --muted: #A3A9B1;
  --faint: #6E747C;
  --hairline: #262A2F;
  --card-border: #252A30;
  --field: #13161A;
  --field-border: #30353B;
  --accent: #6BC6BA;
  --on-accent: #00201C;
  --accent-soft: #16302C;
  --warn: #DDA25A;
  --warn-soft: #2B2217;
  --positive: #7FBF8F;
  --diff-add: #14281C;
  --diff-add-ink: #8FD1A0;
  --diff-del: #2D1B17;
  --diff-del-ink: #E7A091;
  --shot-panel: #1C1F23;
  --screen-edge: rgba(255, 255, 255, 0.09);
  --screen-shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 14px 30px -12px rgba(0, 0, 0, 0.55), 0 44px 80px -36px rgba(0, 0, 0, 0.7);
  --card-shadow: none;
  --lift-shadow: 0 44px 80px -40px rgba(0, 0, 0, 0.85);
  --panel-shadow: 0 34px 60px -30px rgba(0, 0, 0, 0.8);
  --shot-light: none;
  --shot-dark: block;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.drawer-open { overflow: hidden; }

img { max-width: 100%; }
a { color: inherit; }

.wrap {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

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

.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
}
.skip:focus { top: 12px; }

/* ── type ─────────────────────────────────────────────── */

.eyebrow {
  margin: 0;
  font: 600 11.5px/1.3 var(--sans);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow--accent { color: var(--accent); }

.h2 {
  margin: 14px 0 18px;
  font: 500 clamp(32px, 4.2vw, 52px)/1.06 var(--serif);
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.h3 {
  margin: 12px 0 12px;
  font: 500 clamp(26px, 2.6vw, 34px)/1.14 var(--serif);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.dot { color: var(--accent); }

.lede {
  margin: 0;
  max-width: 34em;
  font: 400 clamp(18px, 1.6vw, 21px)/1.58 var(--serif);
  color: var(--ink-2);
}
.lede a { color: var(--accent); text-underline-offset: 3px; }

.body {
  margin: 0;
  max-width: 31em;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--muted);
}

.updated { margin: 18px 0 0; font-size: 13px; color: var(--faint); }

.more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font: 600 15px/1.2 var(--sans);
  color: var(--accent);
  text-decoration: none;
}
.more::after { content: "\2192"; transition: transform 160ms ease; }
.more:hover::after { transform: translateX(3px); }

/* ── controls ─────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: 600 15px/1 var(--sans);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 120ms ease, opacity 160ms ease;
}
.btn:active { transform: scale(0.98); }
.btn svg { width: 17px; height: 17px; flex: none; }
.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-small { min-height: 40px; padding: 0 18px; font-size: 14px; }

.field {
  width: 100%;
  min-height: 50px;
  padding: 12px 18px;
  border: 1px solid var(--field-border);
  border-radius: 14px;
  background: var(--field);
  color: var(--ink);
  font: 400 16px/1.4 var(--sans);
}
.field::placeholder { color: var(--faint); }
.field:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 999px;
  font: 600 12.5px/1.2 var(--sans);
  white-space: nowrap;
}
.pill-accent { background: var(--accent-soft); color: var(--accent); }
.pill-warn { background: var(--warn-soft); color: var(--warn); }
.led { width: 7px; height: 7px; border-radius: 50%; background: currentColor; display: inline-block; }

.sheet {
  background: var(--sheet);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  box-shadow: var(--card-shadow);
}

.trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* ── the waitlist form, in every place it appears ─────── */

.join {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 500px;
  margin-top: 32px;
}
.join .field { flex: 1 1 240px; min-width: 0; }
.join-note { margin: 12px 0 0; font-size: 13.5px; color: var(--faint); }

.form-status {
  flex: 1 0 100%;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--warn);
}
.form-status:empty { display: none; }
form[data-state="sending"] button[type="submit"] { opacity: 0.7; cursor: progress; }
form[data-state="done"] > :not([data-waitlist-status]) { display: none !important; }
form[data-state="done"] .form-status {
  display: block;
  padding: 16px 20px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--ink);
  font-size: 15px;
}
form[data-state="done"] ~ .join-note { display: none; }

/* ── header, menus and the phone menu ─────────────────── */

.top {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: saturate(1.2) blur(12px);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--hairline) 70%, transparent);
}
.top-row {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  min-height: 68px;
}
.mark {
  font: 500 27px/1 var(--serif);
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}
.menu { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; }
.menu-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: 500 14.5px/1 var(--sans);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.menu-link:hover,
.menu-link[aria-expanded="true"],
.menu-link[aria-current="page"] { color: var(--ink); background: var(--raised); }
.chev { width: 10px; height: 10px; transition: transform 160ms ease; }
.menu-link[aria-expanded="true"] .chev { transform: rotate(180deg); }
.top-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--field-border);
  border-radius: 999px;
  background: var(--sheet);
  color: var(--ink);
  font: 600 14px/1 var(--sans);
  text-decoration: none;
  cursor: pointer;
}
.menu-toggle svg { width: 18px; height: 18px; }

.panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--sheet);
  border-bottom: 1px solid var(--hairline);
  box-shadow: var(--panel-shadow);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.panel-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 3.15fr);
  gap: clamp(28px, 4vw, 56px);
  padding-block: 30px 34px;
}
.panel-title { margin: 10px 0 0; max-width: 14em; font: 500 24px/1.2 var(--serif); letter-spacing: -0.02em; }
.panel-more { display: grid; justify-items: start; gap: 2px; margin-top: 8px; }
.panel-groups { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 24px 28px; }
.panel-group ul { list-style: none; margin: 10px 0 0; padding: 0; display: grid; gap: 2px; }
.panel-group--wide { grid-column: 1 / -1; }
.panel-group--wide ul { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); column-gap: 20px; }
.panel-group a {
  display: block;
  margin-inline: -10px;
  padding: 8px 10px;
  border-radius: 12px;
  text-decoration: none;
}
.panel-group a b { display: block; font: 500 17px/1.3 var(--serif); letter-spacing: -0.005em; color: var(--ink); }
.panel-group a span { display: block; margin-top: 2px; font-size: 13.5px; line-height: 1.45; color: var(--muted); }
.panel-group a:hover { background: var(--raised); }
.panel-group a:hover b { color: var(--accent); }

/* compact rows under a panel's groups: Control, Sources, Platforms */
.panel-body { display: grid; gap: 22px; }
.panel-strips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 28px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
}
.panel-strip ul { list-style: none; margin: 10px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 16px; }
.panel-strip a { font-size: 14.5px; line-height: 1.4; color: var(--ink); text-decoration: none; }
.panel-strip a:hover { color: var(--accent); }

/* the phone menu: the top bar's three menus, each a section that opens in place */
.drawer-sections { border-top: 1px solid var(--hairline); }
.drawer-section { border-bottom: 1px solid var(--hairline); }
.drawer-section summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 20px;
  font: 500 26px/1.2 var(--serif);
  letter-spacing: -0.02em;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.drawer-section summary::-webkit-details-marker { display: none; }
.drawer-section summary .chev { width: 16px; height: 16px; color: var(--muted); }
.drawer-section[open] summary .chev { transform: rotate(180deg); }
.drawer-section .drawer-groups { padding-bottom: 8px; }
.drawer-section .drawer-group a { padding: 11px 0; font-size: 17px; }
.drawer-more { display: flex; flex-wrap: wrap; gap: 4px 24px; padding-bottom: 22px; }
.drawer-more .more { margin-top: 0; }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  overflow-y: auto;
  background: var(--paper);
}
.drawer-top {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
}
.drawer-row { display: flex; align-items: center; justify-content: space-between; min-height: 68px; }
.drawer .menu-toggle { display: inline-flex; }
.drawer-body { display: grid; gap: 30px; padding-block: 22px 56px; }
.drawer-body > .btn { justify-self: stretch; }
.drawer-groups { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px 36px; }
.drawer-group ul { list-style: none; margin: 10px 0 0; padding: 0; border-top: 1px solid var(--hairline); }
.drawer-group a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--hairline);
  font: 500 19px/1.25 var(--serif);
  color: var(--ink);
  text-decoration: none;
}
.drawer-group a:hover { color: var(--accent); }

.crumbs { padding-block: 22px 0; font-size: 13.5px; color: var(--faint); }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: var(--faint); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--ink); }

.preview-ribbon {
  background: var(--raised);
  border-bottom: 1px solid var(--hairline);
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
  padding-block: 8px;
  text-align: center;
}

/* ── hero ─────────────────────────────────────────────── */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  padding-block: clamp(44px, 7vw, 92px) clamp(56px, 8vw, 104px);
}
.hero h1 {
  margin: 16px 0 24px;
  font: 500 clamp(42px, 5.5vw, 72px)/1.03 var(--serif);
  letter-spacing: -0.037em;
  text-wrap: balance;
}
.hero--page { padding-block: clamp(28px, 5vw, 64px) clamp(56px, 8vw, 96px); }
.hero--page h1 { font-size: clamp(38px, 4.8vw, 62px); }
.hero--text { grid-template-columns: minmax(0, 1fr); }
.hero--text .lede { max-width: 40em; }
.hero h1 .dot {
  display: inline-block;
  animation: land 720ms cubic-bezier(0.25, 1.5, 0.45, 1) 260ms both;
}
@keyframes land {
  from { transform: translateY(-0.55em); }
  to { transform: translateY(0); }
}

.stage {
  position: relative;
  justify-self: center;
  width: min(100%, 420px);
  animation: rise 900ms cubic-bezier(0.2, 0.9, 0.3, 1) both;
}
@keyframes rise {
  from { transform: translateY(18px); }
  to { transform: translateY(0); }
}

/* Phones: an angled iPhone 17 Pro per screenshot, one pre-rendered image each (build.py --phones, from Apple's
   bezel). The image carries the device and its soft shadow (baked in: a CSS drop-shadow was clipped at the image box). */
.device { width: 100%; }
.device--phone { display: grid; justify-items: center; }
.device--phone img { display: block; width: min(100%, var(--phone-w, 300px)); height: auto; }
.device--phone .shot-light { display: var(--shot-light); }
.device--phone .shot-dark { display: var(--shot-dark); }

/* Pages about Android: no drawn phone (a CSS bezel is what reads as fake). The screenshot is the screen, with a real Android screen's
   corner radius (a tenth of its width), a hairline edge and an ink-tinted shadow, rising out of a tinted panel
   whose bottom edge crops it. One screen width everywhere; --w is a length so the radius stays circular. */
.device--screen {
  --w: clamp(228px, 21vw, 268px);
  position: relative;
  display: grid;
  justify-items: center;
  width: 100%;
  padding: clamp(30px, 3.6vw, 48px) 20px 0;
  border-radius: 24px;
  background: var(--shot-panel);
  overflow: hidden;
}
.screen {
  position: relative;
  width: var(--w);
  max-width: 100%;
  aspect-ratio: 411 / 700;
  border-radius: calc(var(--w) * 0.1) calc(var(--w) * 0.1) 0 0;
  overflow: hidden;
  background: var(--paper, #FAF9F6);
  box-shadow: var(--screen-shadow);
}
.screen::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px var(--screen-edge);
  pointer-events: none;
}
.screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.screen .shot-light { display: var(--shot-light); }
.screen .shot-dark { display: var(--shot-dark); }
.stage .device--screen { --w: clamp(244px, 24vw, 300px); }
.stage .device--phone { --phone-w: 340px; }
.stage .angle-hero { --phone-w: 380px; }

/* The hero phone playing the app demo (tools/video/make_hero.py). The poster holds the layout; site.js sizes a stage
   the size of the render canvas onto the poster, and the video inside is laid on the screen by its own matrix3d. */
.phone-video { position: relative; }
.phone-live { position: absolute; left: 0; top: 0; overflow: hidden; opacity: 0; transition: opacity 400ms ease; pointer-events: none; }
.phone-video.is-playing .phone-live { opacity: 1; }
.phone-stage { position: absolute; left: 0; top: 0; transform-origin: 0 0; }
.phone-stage video { position: absolute; left: 0; top: 0; transform-origin: 0 0; object-fit: fill; background: #000; }
.device--phone .phone-stage img { position: absolute; left: 0; top: 0; width: 100%; height: 100%; max-width: none; }
@media (prefers-reduced-motion: reduce) { .phone-live { display: none; } }

/* hangs over the panel's cropped bottom edge, where it covers nothing the screen is showing */
.chip {
  position: absolute;
  left: 50%;
  bottom: -34px;
  transform: translateX(-50%);
  width: min(300px, 92%);
  display: flex;
  gap: 12px;
  padding: 13px 15px;
  background: var(--sheet);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  box-shadow: var(--lift-shadow);
}
/* plain centred text: as a grid, the N and its period became two items and the period dropped a line */
.tile {
  flex: none;
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #17191D;
  color: #FAF9F6;
  font: 600 20px/36px var(--serif);
  text-align: center;
}
.tile i { font-style: normal; color: #6BC6BA; }
.chip-top { display: flex; justify-content: space-between; margin: 0 0 2px; font-size: 12.5px; color: var(--faint); }
.chip-top b { color: var(--ink); font-weight: 600; }
.chip-body { margin: 0; font-size: 13.5px; line-height: 1.4; color: var(--ink-2); }

/* ── sections ─────────────────────────────────────────── */

.section { padding-block: clamp(72px, 9vw, 128px); }
.band { background: var(--raised); border-block: 1px solid var(--hairline); }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 68px); }

/* ── the morning ──────────────────────────────────────── */

.day { position: relative; list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(64px, 8vw, 104px); }
.day::before { content: ""; position: absolute; left: 7px; top: 10px; bottom: 10px; width: 1px; background: var(--hairline); }
.moment {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
  gap: clamp(28px, 6vw, 96px);
  align-items: center;
  padding-left: 44px;
}
.moment-time { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; }
/* no top offset: the dot keeps its place in the flow, so it sits beside the time however the row centres */
.moment-time::before {
  content: "";
  position: absolute;
  left: 0;
  margin-top: 6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--raised);
}
.moment-time time { font: 600 14px/1 var(--sans); font-variant-numeric: tabular-nums; color: var(--ink); }
.moment .device { max-width: 340px; justify-self: end; }
.moment .device--phone { --phone-w: 290px; }

/* ── index lists: a page per item ─────────────────────── */

.index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(44px, 5vw, 64px) clamp(32px, 5vw, 72px);
  align-items: start;
}
.index--one { grid-template-columns: minmax(0, 1fr); max-width: 760px; }
.index-list { list-style: none; margin: 14px 0 0; padding: 0; border-top: 1px solid var(--hairline); }
.index-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 16px;
  padding-block: 15px;
  border-bottom: 1px solid var(--hairline);
  text-decoration: none;
}
.index-list b { font: 500 21px/1.3 var(--serif); letter-spacing: -0.01em; color: var(--ink); transition: color 160ms ease; }
.index-list span { grid-column: 1; font-size: 14.5px; line-height: 1.5; color: var(--muted); }
.index-list a::after {
  content: "\2192";
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--faint);
  transition: transform 160ms ease, color 160ms ease;
}
.index-list a:hover b { color: var(--accent); }
.index-list a:hover::after { transform: translateX(4px); color: var(--accent); }

/* ── proof ────────────────────────────────────────────── */

.proof { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: 22px; align-items: start; }
.run, .golive-card { padding: 22px 24px 24px; }
.run-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--hairline); }
.state { display: inline-flex; align-items: center; gap: 9px; font: 600 16px/1 var(--sans); color: var(--positive); }
.when { font-size: 13.5px; color: var(--faint); }
.facts { margin: 0; }
.facts > div { display: grid; grid-template-columns: 86px minmax(0, 1fr); gap: 14px; padding-block: 14px; border-bottom: 1px solid var(--hairline); }
.facts dt { font-size: 13.5px; color: var(--faint); }
.facts dd { margin: 0; font-size: 14.5px; line-height: 1.5; color: var(--ink-2); min-width: 0; }
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.checks li { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 4px 12px; }
.checks code, .facts code { font: 13px/1.5 var(--mono); color: var(--ink); overflow-wrap: anywhere; }
.checks b { font: 600 13px/1.5 var(--sans); color: var(--positive); }
.run-summary { margin: 16px 0 0; font: 400 17px/1.55 var(--serif); color: var(--ink-2); }
.golive-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.domain { font: 600 16px/1.3 var(--sans); }
.golive-line { margin: 8px 0 14px; font-size: 14px; color: var(--muted); }
.golive-file { margin: 0 0 10px; font-size: 14px; color: var(--ink); }
.diff { overflow-x: auto; padding: 12px 0; border-radius: 12px; background: var(--raised); border: 1px solid var(--hairline); }
.ln { display: block; padding: 1px 16px; white-space: pre; font: 12.5px/1.75 var(--mono); color: var(--muted); }
.ln.hunk { color: var(--accent); }
.ln.add { background: var(--diff-add); color: var(--diff-add-ink); }
.ln.del { background: var(--diff-del); color: var(--diff-del-ink); }
.golive-bar { display: flex; align-items: center; gap: 16px; margin-top: 18px; flex-wrap: wrap; }
.golive-bar p { flex: 1 1 220px; margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--muted); }
.golive-status { font-weight: 600; color: var(--positive); }
.card-links { display: flex; flex-wrap: wrap; gap: 4px 28px; margin-top: 26px; }
.card-links .more { margin-top: 0; }

/* ── two columns: text beside a list, a control, or a screen ── */

.yes { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 7vw, 104px); align-items: start; }
.split { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: clamp(36px, 6vw, 96px); align-items: center; }
.split .device { max-width: 360px; justify-self: center; }
.split .device--phone { --phone-w: 300px; }
.modes { display: inline-flex; flex-wrap: wrap; margin-top: 30px; padding: 4px; border-radius: 999px; background: var(--raised); border: 1px solid var(--hairline); }
.mode { min-height: 40px; padding: 0 18px; border: 0; border-radius: 999px; background: transparent; color: var(--muted); font: 600 14px/1 var(--sans); cursor: pointer; }
.mode[aria-checked="true"] { background: var(--sheet); color: var(--ink); box-shadow: var(--card-shadow), inset 0 0 0 1px var(--card-border); }
.mode-says { margin: 18px 0 0; max-width: 30em; min-height: 3.2em; font: 400 18px/1.55 var(--serif); color: var(--ink-2); }
.rules { margin: 0; border-top: 1px solid var(--hairline); }
.rules > div { padding-block: 20px; border-bottom: 1px solid var(--hairline); }
.rules dt { font: 500 22px/1.25 var(--serif); letter-spacing: -0.01em; }
.rules dd { margin: 6px 0 0; font-size: 15.5px; line-height: 1.6; color: var(--muted); }

/* ── screens in a row ─────────────────────────────────── */

.shots { display: grid; gap: clamp(28px, 4vw, 48px); align-items: start; }
.shots--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.shots--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.shots figure { margin: 0; display: grid; justify-items: center; gap: 18px; }
.shots .device { max-width: 340px; }
.shots .device--phone { --phone-w: 250px; }
.shots figcaption { max-width: 22em; text-align: center; font-size: 14.5px; line-height: 1.55; color: var(--muted); }
.shots figcaption b { display: block; margin-bottom: 4px; font: 500 19px/1.3 var(--serif); color: var(--ink); }

.wide { max-width: 980px; margin-inline: auto; padding: clamp(22px, 3.4vw, 44px); border-radius: 28px; background: var(--shot-panel); }
.wide img { display: block; width: 100%; height: auto; border-radius: 14px; box-shadow: var(--screen-shadow); }
.platforms { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; margin: 36px 0 0; padding: 0; list-style: none; font-size: 14.5px; }
.platforms a { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); text-decoration: none; }
.platforms a::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.platforms a:hover { color: var(--ink); }

/* ── questions ────────────────────────────────────────── */

.qs { max-width: 820px; border-top: 1px solid var(--hairline); }
.q { border-bottom: 1px solid var(--hairline); }
.q summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-block: 22px;
  font: 500 clamp(20px, 2vw, 24px)/1.3 var(--serif);
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
}
.q summary::-webkit-details-marker { display: none; }
.q summary::after { content: "+"; flex: none; font: 300 28px/1 var(--sans); color: var(--accent); transition: transform 200ms ease; }
.q[open] summary::after { transform: rotate(45deg); }
.q p { margin: 0 0 24px; max-width: 38em; font-size: 16.5px; line-height: 1.65; color: var(--muted); }
.q p a { color: var(--accent); }
.qs + .section-head { margin-top: clamp(56px, 7vw, 88px); }

/* ── the waitlist card ────────────────────────────────── */

.ask { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(36px, 6vw, 88px); align-items: start; }
.proposal { padding: 24px 26px 26px; }
.p-head { display: flex; align-items: center; gap: 12px; }
.p-from { flex: 1; min-width: 0; font-size: 15px; color: var(--ink); }
.p-from span { color: var(--faint); padding-inline: 6px; }
.p-title { margin: 18px 0 8px; font: 500 28px/1.18 var(--serif); letter-spacing: -0.02em; }
.p-summary { margin: 0 0 22px; font-size: 15.5px; line-height: 1.6; color: var(--muted); }
.steps { list-style: none; margin: 12px 0 24px; padding: 0; display: grid; gap: 12px; }
.steps li { display: flex; align-items: center; gap: 14px; font-size: 15.5px; }
.steps span { flex: none; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); font: 600 13px/1 var(--sans); }
.p-form { display: grid; gap: 8px; }
.p-form label { margin-top: 8px; font: 600 13.5px/1.3 var(--sans); color: var(--ink); }
.p-form label span { font-weight: 400; color: var(--faint); }
.p-form textarea.field { resize: vertical; min-height: 82px; }
.p-bar { display: flex; gap: 10px; margin-top: 14px; }
.p-bar .btn-primary { flex: 1; }

/* ── building blocks of the inner pages ───────────────── */

.anatomy { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(32px, 5vw, 72px); margin: 0; border-top: 1px solid var(--hairline); }
.anatomy > div { padding-block: 22px; border-bottom: 1px solid var(--hairline); }
.anatomy dt { display: flex; flex-direction: column; gap: 8px; }
.anatomy dt b { font: 500 23px/1.25 var(--serif); letter-spacing: -0.01em; }
.anatomy dd { margin: 8px 0 0; max-width: 30em; font-size: 15.5px; line-height: 1.6; color: var(--muted); }
.anatomy dd a { color: var(--accent); }

/* a side-by-side comparison: plain rows, with the Nuntex column carried by the accent */
.compare-wrap { overflow-x: auto; border: 1px solid var(--card-border); border-radius: 22px; background: var(--sheet); box-shadow: var(--card-shadow); }
.compare { width: 100%; min-width: 640px; border-collapse: collapse; }
.compare th, .compare td { padding: 16px 22px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--hairline); font-size: 15.5px; line-height: 1.55; }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare thead td { background: var(--raised); }
.compare thead th { font: 600 11.5px/1.3 var(--sans); letter-spacing: 0.11em; text-transform: uppercase; color: var(--muted); background: var(--raised); }
.compare thead th.us { color: var(--accent); }
.compare tbody th { width: 22%; font: 500 18px/1.35 var(--serif); letter-spacing: -0.01em; color: var(--ink); }
.compare td { color: var(--muted); }
.compare td.us { color: var(--ink); background: color-mix(in srgb, var(--accent-soft) 45%, transparent); }

.made { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; counter-reset: made; }
.made--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.made li { counter-increment: made; padding-top: 18px; border-top: 2px solid var(--accent); }
.made li::before { content: counter(made); display: block; margin-bottom: 14px; font: 500 34px/1 var(--serif); font-variant-numeric: lining-nums tabular-nums; color: var(--accent); }
.made b { display: block; font: 500 21px/1.25 var(--serif); letter-spacing: -0.01em; }
.made p { margin: 8px 0 0; font-size: 15px; line-height: 1.6; color: var(--muted); }
.made p a { color: var(--accent); }

.cta-band { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 64px); align-items: center; }
.cta-band .join { margin-top: 0; }

.prose { max-width: 44em; }
.prose > :first-child { margin-top: 0; }
.prose h2 { margin: 52px 0 14px; font: 500 clamp(26px, 2.6vw, 32px)/1.2 var(--serif); letter-spacing: -0.02em; text-wrap: balance; }
.prose h3 { margin: 30px 0 8px; font: 600 17px/1.4 var(--sans); }
.prose p, .prose li { font-size: 17px; line-height: 1.72; color: var(--ink-2); }
.prose p { margin: 0 0 16px; }
.prose ul, .prose ol { margin: 0 0 20px; padding-left: 1.2em; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); text-underline-offset: 3px; }
.prose .callout { margin: 24px 0; padding: 18px 22px; border-radius: 16px; background: var(--sheet); border: 1px solid var(--card-border); }
.facts-list { margin: 8px 0 24px; border-top: 1px solid var(--hairline); }
.facts-list > div { display: grid; grid-template-columns: minmax(120px, 0.35fr) minmax(0, 1fr); gap: 16px; padding-block: 14px; border-bottom: 1px solid var(--hairline); }
.facts-list dt { font: 600 14px/1.5 var(--sans); color: var(--ink); }
.facts-list dd { margin: 0; font-size: 16px; line-height: 1.6; color: var(--ink-2); }

.terms { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(32px, 5vw, 72px); margin: 0; border-top: 1px solid var(--hairline); }
.terms > div { padding-block: 22px; border-bottom: 1px solid var(--hairline); }
.terms dt { font: 500 23px/1.25 var(--serif); letter-spacing: -0.01em; }
.terms dd { margin: 8px 0 0; font-size: 15.5px; line-height: 1.6; color: var(--muted); }
.terms dd a { color: var(--accent); }

.log { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--hairline); }
.log > li { display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: 32px; padding-block: 34px; border-bottom: 1px solid var(--hairline); }
.log time { font: 600 14px/1.6 var(--sans); font-variant-numeric: tabular-nums; color: var(--accent); }
.log h2 { margin: 0 0 12px; font: 500 26px/1.2 var(--serif); letter-spacing: -0.02em; }
.log ul { margin: 0; padding-left: 1.1em; }
.log li li { margin-bottom: 8px; font-size: 16px; line-height: 1.6; color: var(--ink-2); }

.status { padding-block: clamp(56px, 10vw, 128px); }
.status .sheet { max-width: 600px; margin-inline: auto; padding: clamp(28px, 5vw, 44px); }
.status h1 { margin: 12px 0 14px; font: 500 clamp(34px, 4vw, 46px)/1.08 var(--serif); letter-spacing: -0.03em; text-wrap: balance; }
.status p { margin: 0 0 14px; font-size: 16.5px; line-height: 1.65; color: var(--ink-2); }
.status .links { display: flex; flex-wrap: wrap; gap: 6px 26px; margin-top: 10px; }
.status .links .more { margin-top: 0; }

/* ── footer: the whole site, one click away ───────────── */

.foot { background: var(--raised); border-top: 1px solid var(--hairline); padding-top: clamp(56px, 7vw, 88px); overflow: hidden; }
.foot-top { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2.7fr); gap: clamp(40px, 6vw, 88px); }
.foot-brand p { margin: 16px 0 0; max-width: 24em; font: 400 17px/1.55 var(--serif); color: var(--ink-2); }
.foot-brand .join { margin-top: 22px; max-width: 380px; gap: 8px; }
.foot-brand .join .field { flex-basis: 180px; min-height: 44px; padding: 10px 16px; font-size: 15px; }
.foot-brand .join .btn { min-height: 44px; padding: 0 16px; font-size: 14px; }
.foot-cols { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 40px 28px; }
.foot-col ul { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 10px; }
.foot-col a { font-size: 14.5px; line-height: 1.35; color: var(--muted); text-decoration: none; }
.foot-col a:hover { color: var(--ink); }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px 24px; margin-top: clamp(48px, 6vw, 72px); padding-block: 22px; border-top: 1px solid var(--hairline); font-size: 13px; color: var(--faint); }
.foot-bottom p { margin: 0; }
.foot-bottom nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.foot-bottom a { color: var(--muted); text-decoration: none; }
.foot-bottom a:hover { color: var(--ink); }
.foot-word { margin: clamp(12px, 2vw, 28px) 0 0; padding-bottom: clamp(36px, 5vw, 72px); font: 500 clamp(84px, 19vw, 276px)/0.9 var(--serif); letter-spacing: -0.05em; color: var(--ink); white-space: nowrap; user-select: none; }

/* ── narrower screens ─────────────────────────────────── */

/* three menus fit a tablet's width; below that the Menu button opens the phone menu */
@media (max-width: 880px) {
  .menu-nav { display: none; }
  .menu-toggle { display: inline-flex; }
}

@media (max-width: 980px) {
  .foot-top { grid-template-columns: minmax(0, 1fr); }
  .made, .made--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shots--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  .hero, .proof, .yes, .ask, .cta-band, .split { grid-template-columns: minmax(0, 1fr); }
  .stage { width: min(100%, 420px); margin: 8px 0 26px; }
  .chip { width: min(290px, 92%); }
  .moment { grid-template-columns: minmax(0, 1fr); }
  .moment .device { justify-self: start; max-width: 360px; }
  .index, .anatomy, .terms { grid-template-columns: minmax(0, 1fr); }
  .log > li { grid-template-columns: minmax(0, 1fr); gap: 8px; }
}

@media (max-width: 640px) {
  .foot-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shots--2, .shots--3 { grid-template-columns: minmax(0, 1fr); }
  .top-actions .btn-small { display: none; }
}

@media (max-width: 520px) {
  .facts > div, .facts-list > div { grid-template-columns: minmax(0, 1fr); gap: 4px; }
  .made, .made--3 { grid-template-columns: minmax(0, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  .hero h1 .dot, .stage { animation: none; }
  .btn, .chev, .q summary::after, .more::after, .index-list a::after, .index-list b { transition: none; }
}
