/* ============================================================
   NATMA — Warm Editorial Almanac
   ============================================================ */

:root {
  /* Paper, ink, accent */
  --paper:        hsl(36 42% 95%);
  --paper-warm:   hsl(36 50% 92%);
  --paper-deep:   hsl(34 32% 86%);
  --paper-rule:   hsl(28 22% 78%);

  --ink:          hsl(20 18% 11%);
  --ink-soft:     hsl(22 14% 28%);
  --ink-mute:     hsl(22 10% 48%);
  --ink-line:     hsl(22 14% 28% / 0.16);

  --maroon:       hsl(349 47% 28%);
  --maroon-deep:  hsl(349 56% 18%);
  --maroon-soft:  hsl(349 30% 82%);

  --night:        hsl(22 20% 13%);
  --night-paper:  hsl(36 26% 88%);
  --night-rule:   hsl(36 18% 60% / 0.22);

  /* Data palette — muted earth, no neon */
  --data-deep:    hsl(349 47% 28%);   /* maroon: deep work */
  --data-body:    hsl(155 18% 36%);   /* sage: body */
  --data-people:  hsl(35 38% 46%);    /* ochre/people */
  --data-learn:   hsl(212 26% 38%);   /* steel/learn */
  --data-slack:   hsl(22 16% 38%);    /* warm ink: slack */

  /* Fonts */
  --font-serif:   "Fraunces", "Lora", Georgia, "Times New Roman", serif;
  --font-sans:    "Instrument Sans", "Söhne", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono:    "JetBrains Mono", "IBM Plex Mono", ui-monospace, Menlo, monospace;

  /* Spatial */
  --page-pad:     clamp(20px, 4.4vw, 64px);
  --gutter:       clamp(20px, 3vw, 44px);
  --rule:         1px;

  --radius-card:  4px;

  color-scheme: light;
}

* { box-sizing: border-box; }

html {
  background: var(--paper);
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background:
    /* paper grain via layered noise */
    radial-gradient(ellipse at 80% -10%, hsl(36 60% 96% / 0.7), transparent 50%),
    radial-gradient(ellipse at 0% 100%, hsl(28 28% 84% / 0.45), transparent 55%),
    var(--paper);
  font-feature-settings: "ss01", "ss02", "cv11";
  font-variation-settings: "opsz" 16;
  overflow-x: clip;
  scrollbar-width: none;
}

body::before {
  /* fine paper noise, very low opacity */
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='1' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.18  0 0 0 0 0.13  0 0 0 0 0.10  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.18'/></svg>");
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--maroon); color: var(--paper); }

.skip-link {
  position: fixed;
  top: 8px; left: 8px;
  z-index: 200;
  padding: 8px 12px;
  background: var(--ink);
  color: var(--paper);
  opacity: 0; pointer-events: none;
  border-radius: 2px;
}
.skip-link:focus { opacity: 1; pointer-events: auto; }

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

/* ============================================================
   Type
   ============================================================ */

h1, h2, h3, h4, p, ol, ul, dl, blockquote, figure { margin: 0; }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 96, "SOFT" 30;
}

h1 em, h2 em, h3 em, .editor-title em, .premise-headline em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  font-weight: 350;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--maroon);
}
.kicker-light { color: hsl(36 38% 78%); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.folio {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  border: var(--rule) solid var(--ink-line);
  padding: 4px 8px;
  border-radius: 2px;
}

.section-head {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 36px;
  padding: 0 var(--page-pad);
}
.section-head .folio { background: var(--paper-warm); }
.section-head-light .folio {
  color: hsl(36 38% 78%);
  border-color: var(--night-rule);
  background: transparent;
}

/* dots used for data legends */
.dot {
  display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: currentColor;
  vertical-align: 1px;
  margin-right: 8px;
}
.dot.deep   { background: var(--data-deep); }
.dot.body   { background: var(--data-body); }
.dot.people { background: var(--data-people); }
.dot.learn  { background: var(--data-learn); }
.dot.slack  { background: var(--data-slack); }
.dot.maroon { background: var(--maroon); }
.dot.sage   { background: var(--data-body); }
.dot.ochre  { background: var(--data-people); }

/* ============================================================
   Ticker
   ============================================================ */

.ticker {
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-bottom: var(--rule) solid var(--ink-line);
  background: var(--paper-warm);
  height: 28px;
}
.ticker-track {
  display: flex;
  gap: 60px;
  height: 28px;
  align-items: center;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: ticker 64s linear infinite;
  will-change: transform;
}
.ticker-track span { display: inline-flex; align-items: center; }
.ticker-track span::after {
  content: "✦";
  margin-left: 60px;
  color: var(--maroon);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   Masthead
   ============================================================ */

.masthead {
  position: relative;
  z-index: 5;
  border-bottom: var(--rule) solid var(--ink-line);
  background: var(--paper);
}
.masthead-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px var(--page-pad);
}
.mast-meta {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.mast-rule { width: 24px; height: 1px; background: var(--ink-line); }
.wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(150px, 11vw, 176px);
  height: 42px;
  overflow: hidden;
  text-align: center;
  line-height: 1;
}
.wordmark-logo {
  display: block;
  width: 210px;
  max-width: none;
  height: auto;
}
.primary-nav {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 26px;
  font-size: 14px;
}
.primary-nav a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-soft);
}
.primary-nav a:hover { color: var(--ink); }
.primary-nav a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: currentColor;
}
.primary-nav a.cta-link {
  padding: 8px 14px;
  border: var(--rule) solid var(--ink);
  border-radius: 2px;
  background: var(--ink);
  color: var(--paper);
  white-space: nowrap;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}
.primary-nav a.cta-link:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  transform: translateY(-1px);
}
.primary-nav a.cta-link:hover::after { display: none; }

/* ============================================================
   Cover
   ============================================================ */

.cover {
  position: relative;
  padding: clamp(40px, 6vw, 96px) var(--page-pad) clamp(40px, 6vw, 80px);
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  overflow: hidden;
}
.cover-grain {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, hsl(20 14% 11% / 0.03) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(90deg, hsl(20 14% 11% / 0.03) 0 1px, transparent 1px 92px);
  pointer-events: none;
}
.cover-frame {
  position: absolute;
  inset: clamp(20px, 3vw, 48px);
  border: var(--rule) solid var(--ink-line);
  pointer-events: none;
}
.cover-mark {
  position: absolute;
  padding: 6px 10px;
  background: var(--paper);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.cover-mark strong {
  display: block;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin-top: 4px;
  font-size: 11px;
}
.cover-mark-tl { top: -10px; left: 28px; }
.cover-mark-tr { top: -10px; right: 28px; text-align: right; }
.cover-mark-bl { bottom: -10px; left: 28px; }
.cover-mark-br { bottom: -10px; right: 28px; text-align: right; }

.cover-content {
  position: relative;
  z-index: 2;
  padding: clamp(12px, 2vw, 28px) clamp(0px, 1vw, 20px);
}

.cover-title {
  margin: 14px 0 18px;
  font-size: clamp(46px, 6.5vw, 106px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.cover-line { display: block; opacity: 0; transform: translateY(14px); animation: rise 800ms cubic-bezier(.2,.7,.2,1) forwards; }
.cover-line-1 { animation-delay: 100ms; }
.cover-line-2 { animation-delay: 220ms; padding-left: clamp(20px, 4vw, 84px); }
.cover-line-3 { animation-delay: 340ms; }
.cover-line em {
  font-style: italic;
  color: var(--maroon);
  font-variation-settings: "opsz" 144, "SOFT" 80;
  font-weight: 350;
}
.cover-underline {
  position: relative;
  display: inline-block;
}
.cover-underline::after {
  content: "";
  position: absolute;
  left: -4%; right: -2%; bottom: 0.06em;
  height: 0.16em;
  background: var(--maroon);
  z-index: -1;
  transform: skewX(-12deg);
  opacity: 0.85;
}

.cover-deck {
  max-width: 580px;
  display: grid; gap: 12px;
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.48;
  color: var(--ink-soft);
  font-variation-settings: "opsz" 24, "SOFT" 40;
}
.cover-deck strong { color: var(--ink); font-weight: 500; }
.cover-deck em { color: var(--maroon); font-style: italic; font-weight: 350; }
.cover-deck-pull {
  padding-left: 16px;
  border-left: 2px solid var(--maroon);
  font-style: italic;
}

.cover-foot {
  margin-top: 16px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 24px;
}
.cover-action { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.cover-caption {
  flex: 1 1 280px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
}
.caption-num { color: var(--maroon); margin-right: 4px; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  border-radius: 2px;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease, border-color 200ms ease;
  border: var(--rule) solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.btn svg { width: 18px; height: 18px; }
.btn:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  transform: translateY(-1px);
}
.btn-block { width: 100%; justify-content: space-between; padding: 16px 22px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 0;
  color: var(--ink);
  position: relative;
}
.btn-ghost::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 1px;
  background: var(--ink); transform: scaleX(0.96); transform-origin: left; transition: transform 220ms ease;
}
.btn-ghost:hover::after { transform: scaleX(1); }

/* Cover figure */
.cover-figure {
  position: relative;
  z-index: 2;
  margin: 0;
  display: grid;
  place-items: center;
  padding: clamp(8px, 2vw, 24px);
}
.cover-figure-svg {
  width: 100%;
  max-width: 540px;
  filter: drop-shadow(0 24px 60px hsl(20 28% 14% / 0.10));
  animation: none !important;
  transform: none !important;
}
.cover-clock,
.cover-clock *,
.cover-annotations,
.cover-annotations * {
  animation: none !important;
  transition: none !important;
}

/* ============================================================
   Editor's Note
   ============================================================ */

.editor-note {
  position: relative;
  border-top: var(--rule) solid var(--ink-line);
  border-bottom: var(--rule) solid var(--ink-line);
  padding: clamp(60px, 7vw, 110px) var(--page-pad);
  background: var(--paper-warm);
}
.editor-shell {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1.45fr) minmax(0, 0.5fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.editor-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: grid; gap: 10px;
  padding-top: 6px;
}
.editor-meta .kicker { color: var(--maroon); }
.note-place { color: var(--ink-soft); }

.editor-title {
  grid-column: 2 / 3;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.02;
  max-width: 16ch;
  margin-bottom: 36px;
  color: var(--ink);
}

.editor-body {
  grid-column: 2 / 3;
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
  display: grid; gap: 18px;
  font-variation-settings: "opsz" 24, "SOFT" 30;
}
.editor-body p { letter-spacing: -0.005em; }
.editor-body em { color: var(--maroon); font-style: italic; }
.editor-body strong { color: var(--ink); font-weight: 500; font-variation-settings: "wght" 500; }

.drop-cap { position: relative; }
.drop-cap-glyph {
  float: left;
  font-family: var(--font-serif);
  font-size: 5.2em;
  line-height: 0.86;
  margin: 0.04em 0.14em -0.04em -0.02em;
  color: var(--maroon);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.signoff {
  margin-top: 14px !important;
  display: flex; align-items: baseline; gap: 14px;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink);
}
.signoff .sig { font-size: 22px; }
.signoff .sig-meta {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.editor-side {
  grid-column: 3 / 4;
  padding-top: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}
.editor-side .kicker { margin-bottom: 14px; }
.editor-side ol {
  list-style: none; padding: 0;
  display: grid; gap: 10px;
}
.editor-side a {
  display: flex; gap: 10px; align-items: baseline;
  padding: 6px 0;
  border-bottom: var(--rule) solid var(--ink-line);
  transition: color 200ms;
}
.editor-side a:hover { color: var(--maroon); }
.editor-side .rom { color: var(--maroon); min-width: 32px; }
.editor-side-rule {
  margin: 22px 0;
  height: 1px;
  background: linear-gradient(90deg, var(--ink-line), transparent);
}
.editor-side .footnote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-mute);
}
.editor-side sup { color: var(--maroon); }

/* ============================================================
   Premise
   ============================================================ */

.premise {
  position: relative;
  padding: clamp(72px, 8vw, 140px) 0 clamp(72px, 8vw, 140px);
}
.premise-frame {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}
.premise-headline {
  font-size: clamp(48px, 8vw, 130px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  max-width: 18ch;
  margin-bottom: 64px;
  color: var(--ink);
}
.premise-headline .strike {
  position: relative;
  color: var(--ink-mute);
  margin-right: 0.2em;
}
.premise-headline .strike::after {
  content: "";
  position: absolute;
  left: -0.05em; right: -0.05em; top: 50%;
  height: 4px;
  background: var(--maroon);
  transform: rotate(-2.5deg);
  border-radius: 2px;
}
.premise-headline em {
  display: inline-block;
  color: var(--maroon);
  margin-top: 0.2em;
}

.premise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: var(--rule) solid var(--ink-line);
  border-bottom: var(--rule) solid var(--ink-line);
}
.premise-card {
  padding: 32px 28px;
  border-right: var(--rule) solid var(--ink-line);
}
.premise-card:last-child { border-right: 0; }
.premise-card .card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--maroon);
  margin-bottom: 24px;
}
.premise-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 12px;
}
.premise-card h3 em { color: var(--maroon); font-style: italic; }
.premise-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.premise-card em { color: var(--maroon); font-style: italic; }

.premise-definition {
  margin-top: 48px;
  padding: 24px 28px;
  background: var(--paper-warm);
  border: var(--rule) solid var(--ink-line);
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  color: var(--ink-soft);
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  gap: 14px 18px;
  align-items: baseline;
}
.dfn-word {
  font-style: italic;
  font-size: 22px;
  color: var(--maroon);
  letter-spacing: -0.005em;
}
.dfn-ipa {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.dfn-pos {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.dfn-meaning { font-style: italic; }

/* ============================================================
   Functions — dark spread
   ============================================================ */

.functions {
  background: var(--night);
  color: var(--night-paper);
  padding: clamp(72px, 8vw, 130px) 0 clamp(64px, 6vw, 110px);
  position: relative;
  border-top: var(--rule) solid var(--ink-line);
  border-bottom: var(--rule) solid var(--ink-line);
}
.functions::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, hsl(36 26% 88% / 0.04) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(90deg, hsl(36 26% 88% / 0.04) 0 1px, transparent 1px 92px);
  pointer-events: none;
}
.functions-shell {
  position: relative;
  max-width: 1240px; margin: 0 auto;
  padding: 0 var(--page-pad);
}
.functions-title {
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--night-paper);
  margin-bottom: 60px;
  max-width: 18ch;
}
.functions-title em {
  color: hsl(349 38% 70%);
  font-style: italic;
}

.function-list {
  list-style: none; padding: 0;
  display: grid;
  gap: 0;
  border-top: var(--rule) solid var(--night-rule);
}
.fn-row {
  display: grid;
  grid-template-columns: 200px minmax(0, 1.6fr) minmax(0, 0.95fr);
  gap: clamp(20px, 3vw, 48px);
  padding: 40px 0;
  border-bottom: var(--rule) solid var(--night-rule);
  align-items: start;
}
.fn-num {
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--font-mono);
}
.fn-num span {
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1;
  color: hsl(349 38% 70%);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}
.fn-num small {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: hsl(36 18% 60%);
}
.fn-body h3 {
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
  color: var(--night-paper);
  margin-bottom: 12px;
  font-family: var(--font-serif);
  letter-spacing: -0.01em;
}
.fn-body p {
  font-size: 15.5px;
  line-height: 1.65;
  color: hsl(36 22% 78%);
  max-width: 56ch;
}
.fn-body em { color: hsl(349 38% 78%); font-style: italic; }
.fn-art {
  border: var(--rule) solid var(--night-rule);
  padding: 12px;
  background: hsl(22 24% 16%);
  border-radius: 2px;
}
.fn-art svg {
  width: 100%; height: auto;
  filter: invert(0.92) hue-rotate(180deg) sepia(0.15);
}

/* ============================================================
   Specimens — Day View
   ============================================================ */

.specimen {
  padding: clamp(72px, 8vw, 130px) 0 clamp(64px, 7vw, 110px);
  position: relative;
}
.specimen-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
}
.specimen-title {
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  max-width: 16ch;
}
.specimen-title em { color: var(--maroon); font-style: italic; }
.specimen-copy p {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 50ch;
  font-variation-settings: "opsz" 24, "SOFT" 30;
}

.specimen-legend {
  display: grid; gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}
.specimen-legend div { display: grid; grid-template-columns: 22px 1fr; gap: 8px; align-items: baseline; }
.specimen-legend dt { width: 8px; height: 8px; border-radius: 50%; margin-top: 8px; }
.specimen-legend dd { margin: 0; }

.day-card {
  position: relative;
  padding: 28px 28px 24px;
  background: var(--paper);
  border: var(--rule) solid var(--ink-line);
  box-shadow:
    0 1px 0 var(--ink-line),
    0 32px 80px hsl(20 28% 14% / 0.10),
    0 6px 18px hsl(20 28% 14% / 0.06);
}
.day-card::before, .day-card::after {
  content: "";
  position: absolute;
  inset: -8px -8px auto auto;
  width: 14px; height: 14px;
  border-top: 1px solid var(--maroon);
  border-right: 1px solid var(--maroon);
}
.day-card::after {
  inset: auto auto -8px -8px;
  border: 0;
  border-bottom: 1px solid var(--maroon);
  border-left: 1px solid var(--maroon);
}
.day-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: var(--rule) solid var(--ink-line);
  gap: 16px;
  flex-wrap: wrap;
}
.day-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 6px;
}
.day-head h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.day-meta {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
}
.day-meta p { color: var(--ink-soft); }
.day-meta p span { color: var(--ink); font-weight: 500; }
.day-meta-sub { margin-top: 4px; }

.day-axis {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.day-axis span { text-align: left; }

.day-timeline {
  position: relative;
  height: 56px;
  margin-bottom: 28px;
  border: var(--rule) solid var(--ink-line);
  border-radius: 2px;
  background:
    repeating-linear-gradient(90deg, var(--paper-warm) 0 1px, transparent 1px calc(100%/24));
  overflow: hidden;
}
.day-tick {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 1px;
  background: var(--maroon);
}
.day-block {
  position: absolute;
  top: 6px; bottom: 6px;
  left: var(--x); width: var(--w);
  padding: 6px 8px;
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.1;
  border-radius: 2px;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform 220ms ease, filter 220ms ease;
}
.day-block:hover { transform: translateY(-2px); filter: brightness(1.05); }
.day-block-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: -0.005em;
  font-weight: 500;
  text-transform: none;
}
.day-block-time { opacity: 0.78; letter-spacing: 0.06em; }
.day-block.deep   { background: var(--data-deep); }
.day-block.body   { background: var(--data-body); }
.day-block.people { background: var(--data-people); }
.day-block.learn  { background: var(--data-learn); }
.day-block.slack  { background: var(--data-slack); }

.day-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.day-table th, .day-table td {
  text-align: left;
  padding: 10px 4px;
  border-bottom: var(--rule) dashed var(--ink-line);
}
.day-table th {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 400;
}
.day-table td { color: var(--ink); }
.day-table td:not(:first-child) {
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.day-table th:not(:first-child) { text-align: right; }
.day-table td.pos { color: var(--data-body); }
.day-table td.neg { color: var(--maroon); }

.day-foot {
  margin-top: 22px;
  padding-top: 18px;
  border-top: var(--rule) solid var(--ink-line);
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-style: italic;
}
.day-foot strong { color: var(--maroon); font-style: normal; font-weight: 500; }
.day-foot .day-foot-mark { color: var(--maroon); margin-right: 6px; font-weight: 500; }
.day-foot .ts {
  font-family: var(--font-mono); font-style: normal; color: var(--ink); font-size: 13px;
}

/* ============================================================
   Sense — dark conversation
   ============================================================ */

.sense {
  background:
    radial-gradient(circle at 90% 10%, hsl(349 28% 22%), transparent 40%),
    var(--night);
  color: var(--night-paper);
  padding: clamp(72px, 8vw, 140px) 0 clamp(72px, 8vw, 140px);
  position: relative;
  border-bottom: var(--rule) solid var(--ink-line);
}
.sense::after {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, hsl(36 26% 88% / 0.04) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(90deg, hsl(36 26% 88% / 0.04) 0 1px, transparent 1px 92px);
  pointer-events: none;
}
.sense-shell {
  position: relative;
  max-width: 920px; margin: 0 auto;
  padding: 0 var(--page-pad);
}
.sense-title {
  font-size: clamp(40px, 5.4vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--night-paper);
  max-width: 16ch;
  margin-bottom: 24px;
}
.sense-title em {
  color: hsl(349 38% 78%);
  font-style: italic;
}
.sense-deck {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.6;
  color: hsl(36 22% 78%);
  max-width: 56ch;
  margin-bottom: 50px;
}

.sense-conversation {
  display: grid; gap: 28px;
  border-left: var(--rule) solid hsl(349 38% 50% / 0.4);
  padding-left: 28px;
  position: relative;
}
.sense-conversation::before {
  content: "";
  position: absolute; left: -4px; top: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.sense-line { display: grid; gap: 10px; }
.sense-who {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(36 18% 62%);
}
.sense-line-user .sense-who { color: hsl(36 22% 78%); }
.sense-line-bot  .sense-who { color: hsl(349 38% 78%); }
.sense-msg {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.55;
  color: var(--night-paper);
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 36, "SOFT" 40;
}
.sense-msg-bot { color: hsl(36 30% 88%); }
.sense-msg em { color: hsl(349 38% 78%); font-style: italic; }
.sense-msg-bot em { font-style: italic; font-weight: 350; }
.sense-actions {
  list-style: none; padding: 0;
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 6px;
}
.sense-actions button {
  padding: 7px 14px;
  border: var(--rule) solid hsl(36 18% 60% / 0.36);
  border-radius: 999px;
  background: transparent;
  color: hsl(36 30% 88%);
  font-family: var(--font-sans);
  font-size: 13px;
  cursor: pointer;
  transition: background 200ms, color 200ms, border-color 200ms;
}
.sense-actions button:hover {
  border-color: hsl(349 38% 70%);
  color: hsl(349 38% 78%);
  background: hsl(349 28% 22%);
}
.sense-cite {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: hsl(36 18% 62%);
}
.sense-cite a { color: hsl(349 38% 78%); }

/* ============================================================
   Weekly Ledger
   ============================================================ */

.ledger {
  padding: clamp(72px, 8vw, 130px) 0 clamp(72px, 8vw, 130px);
  background: var(--paper-warm);
  border-bottom: var(--rule) solid var(--ink-line);
}
.ledger-shell {
  max-width: 1240px; margin: 0 auto;
  padding: 0 var(--page-pad);
}
.ledger-headlines { margin-bottom: 48px; max-width: 64ch; }
.ledger-headlines h2 {
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.ledger-headlines h2 em { color: var(--maroon); font-style: italic; }
.ledger-headlines p {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-variation-settings: "opsz" 24, "SOFT" 30;
}

.ledger-card {
  background: var(--paper);
  border: var(--rule) solid var(--ink-line);
  padding: 28px 32px 32px;
  box-shadow: 0 30px 70px hsl(20 28% 14% / 0.08);
}
.ledger-card-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  border-bottom: var(--rule) solid var(--ink-line);
  padding-bottom: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap; gap: 12px;
}
.ledger-card-head .kicker { color: var(--maroon); margin-bottom: 6px; }
.ledger-card-head h3 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -0.01em;
  font-style: italic;
  font-variation-settings: "opsz" 96, "SOFT" 70;
}
.ledger-totals {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.ledger-totals strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
  margin-top: 4px;
}

.ledger-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.85fr);
  gap: clamp(20px, 3vw, 48px);
}
.ledger-bars { display: grid; gap: 14px; align-content: start; }
.ledger-bars-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.ledger-bar-row {
  display: grid;
  grid-template-columns: 150px 1fr 80px;
  gap: 14px;
  align-items: center;
}
.ledger-bar-label {
  font-size: 14px;
  color: var(--ink-soft);
}
.ledger-bar {
  position: relative;
  height: 14px;
  background: var(--paper-warm);
  border: var(--rule) solid var(--ink-line);
  border-radius: 2px;
  overflow: hidden;
}
.ledger-bar i {
  position: absolute; left: 0; top: 0;
  height: 100%;
  width: var(--w);
}
.ledger-bar .planned {
  background: var(--ink-line);
  border-right: 1px dashed var(--ink-mute);
}
.ledger-bar .actual.deep   { background: var(--data-deep); }
.ledger-bar .actual.body   { background: var(--data-body); }
.ledger-bar .actual.people { background: var(--data-people); }
.ledger-bar .actual.learn  { background: var(--data-learn); }
.ledger-bar .actual.slack  { background: var(--data-slack); }
.ledger-bar-vals {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.ledger-bars .dot { width: 7px; height: 7px; }

.ledger-story {
  padding: 22px 24px;
  background: var(--paper-warm);
  border: var(--rule) solid var(--ink-line);
}
.ledger-story .kicker { margin-bottom: 14px; }
.ledger-story p {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.ledger-story strong { color: var(--maroon); font-weight: 500; }
.ledger-story-quote {
  border-left: 2px solid var(--maroon);
  padding-left: 14px;
  font-style: italic;
  color: var(--ink-soft);
}
.ledger-story-quote span {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--maroon);
}
.link-cta {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--maroon);
  border-bottom: 1px solid var(--maroon);
  padding-bottom: 2px;
  transition: color 200ms, border-color 200ms;
}
.link-cta:hover { color: var(--ink); border-color: var(--ink); }

/* ============================================================
   Numbers
   ============================================================ */

.numbers {
  padding: clamp(64px, 7vw, 120px) var(--page-pad) clamp(48px, 5vw, 80px);
  background: var(--paper);
  border-bottom: var(--rule) solid var(--ink-line);
}
.numbers-shell {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 0;
  border-top: var(--rule) solid var(--ink-line);
  border-bottom: var(--rule) solid var(--ink-line);
}
.num-item {
  padding: 36px 28px;
  border-right: var(--rule) solid var(--ink-line);
}
.num-item:last-child { border-right: 0; }
.num-figure {
  font-family: var(--font-serif);
  font-size: clamp(60px, 7.5vw, 132px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--maroon);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 400;
  margin-bottom: 18px;
}
.num-figure span {
  font-size: 0.35em;
  font-style: normal;
  letter-spacing: 0;
  color: var(--ink);
  margin-left: 4px;
  vertical-align: 0.5em;
}
.num-item-lead .num-figure { color: var(--ink); }
.num-body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 32ch;
}
.num-body sup { color: var(--maroon); }
.numbers-footnotes {
  max-width: 1240px;
  margin: 16px auto 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
}
.numbers-footnotes sup { color: var(--maroon); margin-right: 2px; }

/* ============================================================
   Audiences
   ============================================================ */

.audiences {
  padding: clamp(72px, 8vw, 130px) var(--page-pad) clamp(64px, 7vw, 110px);
  background: var(--paper);
}
.audiences-title {
  max-width: 1240px;
  margin: 0 auto 60px;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 28ch;
}
.audiences-title em { color: var(--maroon); font-style: italic; }
.audiences-by, .audiences-for {
  padding: 0 6px;
  font-style: italic;
  font-family: var(--font-serif);
  background: var(--paper-warm);
  border: var(--rule) solid var(--ink-line);
  margin: 0 2px;
}
.audiences-by { color: var(--maroon); }
.audiences-for { color: var(--ink); background: var(--maroon-soft); }

.audience-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.audience-card {
  padding: 28px 24px 32px;
  background: var(--paper-warm);
  border: var(--rule) solid var(--ink-line);
  transition: background 240ms, border-color 240ms, transform 240ms;
}
.audience-card:hover {
  background: var(--paper);
  border-color: var(--maroon);
  transform: translateY(-4px);
}
.audience-card .card-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 36px;
  color: var(--maroon);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.audience-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.audience-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============================================================
   Field Notes
   ============================================================ */

.field-notes {
  padding: clamp(72px, 8vw, 130px) var(--page-pad) clamp(72px, 8vw, 130px);
  background: var(--paper-warm);
  border-top: var(--rule) solid var(--ink-line);
  border-bottom: var(--rule) solid var(--ink-line);
}
.field-title {
  max-width: 1240px;
  margin: 0 auto 60px;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.field-title em { color: var(--maroon); font-style: italic; }

.letters {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.letter {
  position: relative;
  padding: 32px 30px 28px;
  background: var(--paper);
  border: var(--rule) solid var(--ink-line);
  margin: 0;
}
.letter::before {
  content: "";
  position: absolute;
  top: -8px; left: 22px;
  width: 36px; height: 16px;
  background: var(--paper-warm);
  border: var(--rule) solid var(--ink-line);
  transform: rotate(-3deg);
}
.letter blockquote {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink-soft);
  font-variation-settings: "opsz" 24, "SOFT" 30;
}
.letter .qmark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 44px;
  color: var(--maroon);
  float: left;
  margin: 0.04em 8px -0.04em 0;
  line-height: 0.7;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.letter em { color: var(--maroon); font-style: italic; }
.letter figcaption {
  border-top: var(--rule) dashed var(--ink-line);
  padding-top: 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.letter-sig {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  font-variation-settings: "opsz" 96, "SOFT" 80;
}
.letter-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============================================================
   Subscribe
   ============================================================ */

.subscribe {
  padding: clamp(72px, 8vw, 130px) 0 clamp(72px, 8vw, 130px);
  background: var(--night);
  color: var(--night-paper);
  position: relative;
  border-bottom: var(--rule) solid var(--ink-line);
}
.subscribe::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, hsl(36 26% 88% / 0.04) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(90deg, hsl(36 26% 88% / 0.04) 0 1px, transparent 1px 92px),
    radial-gradient(circle at 15% 100%, hsl(349 28% 22%), transparent 50%);
  pointer-events: none;
}
.subscribe-shell {
  position: relative;
  max-width: 1240px; margin: 0 auto;
  padding: 0 var(--page-pad);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.subscribe-title {
  font-size: clamp(48px, 6.6vw, 100px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--night-paper);
  margin-bottom: 28px;
}
.subscribe-title em {
  color: hsl(349 38% 78%);
  font-style: italic;
}
.subscribe-copy p {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.6;
  color: hsl(36 22% 80%);
  max-width: 48ch;
  margin-bottom: 28px;
  font-variation-settings: "opsz" 24, "SOFT" 30;
}
.subscribe-meta {
  list-style: none; padding: 0;
  display: grid; gap: 10px;
  font-size: 14px;
  color: hsl(36 22% 80%);
}
.subscribe-meta li { display: flex; gap: 12px; align-items: center; }
.subscribe-meta .dot { width: 8px; height: 8px; }

.subscribe-card {
  position: relative;
  padding: 32px 32px 28px;
  background: var(--night-paper);
  color: var(--ink);
  border: var(--rule) solid hsl(36 18% 60% / 0.4);
  box-shadow: 0 30px 100px hsl(0 0% 0% / 0.35);
}
.subscribe-card::before, .subscribe-card::after {
  content: "";
  position: absolute;
  width: 16px; height: 16px;
}
.subscribe-card::before {
  top: -8px; left: -8px;
  border-top: 1px solid var(--maroon);
  border-left: 1px solid var(--maroon);
}
.subscribe-card::after {
  bottom: -8px; right: -8px;
  border-bottom: 1px solid var(--maroon);
  border-right: 1px solid var(--maroon);
}
.subscribe-card header {
  display: block;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: var(--rule) solid var(--ink-line);
}
.form-heading {
  display: block;
}
.kicker-card { color: var(--maroon); }
.field { display: block; margin-bottom: 18px; }
.field-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.field-label em { font-style: italic; color: var(--maroon); text-transform: none; letter-spacing: 0; }
.field input[type="text"], .field input[type="email"] {
  width: 100%;
  padding: 12px 4px;
  background: transparent;
  border: 0;
  border-bottom: var(--rule) solid var(--ink-line);
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  outline: none;
  transition: border-color 200ms;
}
.field input:focus { border-color: var(--maroon); }
.field-radio {
  border: 0; padding: 0; margin: 0 0 22px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.field-radio legend { display: block; width: 100%; margin-bottom: 10px; }
.field-radio label {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border: var(--rule) solid var(--ink-line);
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  transition: background 200ms, color 200ms, border-color 200ms;
}
.field-radio input { accent-color: var(--maroon); }
.field-radio label:hover { border-color: var(--maroon); color: var(--maroon); }
.field-radio input:checked + span { color: var(--maroon); font-weight: 500; }

.btn.btn-primary { background: var(--maroon); border-color: var(--maroon); }
.btn.btn-primary:hover { background: var(--maroon-deep); border-color: var(--maroon-deep); }

.form-status {
  min-height: 18px;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--maroon);
}
.form-fine {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-size: 13.5px;
  line-height: 1.55;
  font-style: italic;
  color: var(--ink-mute);
  font-variation-settings: "opsz" 24;
}
.form-fine em { color: var(--maroon); font-style: italic; }

/* ============================================================
   Colophon
   ============================================================ */

.colophon {
  position: relative;
  z-index: 2;
  padding: clamp(56px, 6vw, 96px) var(--page-pad) clamp(40px, 5vw, 72px);
  background: var(--paper);
  border-top: 4px solid var(--maroon);
}
.colophon-shell {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 56px);
}
.colo-brand { padding-top: 4px; }
.wordmark-foot {
  width: 320px;
  height: 76px;
  margin-bottom: 8px;
  justify-content: flex-start;
}
.wordmark-foot .wordmark-logo {
  width: 360px;
}
.colo-tag {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--ink-soft);
  max-width: 28ch;
}

.colo-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.colo-nav .kicker { margin-bottom: 16px; }
.colo-nav a {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: var(--rule) solid transparent;
  transition: color 200ms, border-color 200ms;
}
.colo-nav a:hover { color: var(--maroon); border-color: var(--maroon); }
.colo-nav .soon {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  color: var(--ink-soft);
  opacity: 0.5;
  cursor: default;
}
.colo-nav .soon i { font-style: italic; }

.colo-meta {
  font-family: var(--font-serif);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-mute);
  font-variation-settings: "opsz" 24, "SOFT" 30;
}
.colo-meta .kicker { color: var(--maroon); margin-bottom: 14px; }
.colo-meta em { color: var(--ink); font-style: italic; }
.colo-meta p + p { margin-top: 12px; }
.colo-meta .separator { color: var(--maroon); margin: 0 4px; }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1100px) {
  .cover { grid-template-columns: 1fr; min-height: auto; }
  .cover-figure { order: -1; max-width: 460px; margin: 0 auto; }
  .editor-shell { grid-template-columns: 1fr; }
  .editor-title, .editor-body, .editor-side { grid-column: auto; }
  .editor-side {
    border-top: var(--rule) solid var(--ink-line);
    padding-top: 24px;
    margin-top: 16px;
  }
  .premise-grid { grid-template-columns: repeat(2, 1fr); }
  .premise-card:nth-child(odd) { border-right: var(--rule) solid var(--ink-line); }
  .premise-card:nth-child(even) { border-right: 0; }
  .premise-card:nth-child(1), .premise-card:nth-child(2) { border-bottom: var(--rule) solid var(--ink-line); }
  .specimen-shell { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .letters { grid-template-columns: 1fr; max-width: 720px; }
  .subscribe-shell { grid-template-columns: 1fr; }
  .colophon-shell { grid-template-columns: 1fr; }
  .colo-nav { grid-template-columns: repeat(3, 1fr); }
  .numbers-shell { grid-template-columns: 1fr 1fr; }
  .num-item { border-bottom: var(--rule) solid var(--ink-line); }
  .num-item:nth-child(odd) { border-right: var(--rule) solid var(--ink-line); }
  .num-item:nth-child(even) { border-right: 0; }
  .num-item:last-child { border-bottom: 0; }
  .num-item:nth-last-child(2) { border-bottom: 0; }
  .fn-row { grid-template-columns: 1fr; gap: 18px; }
  .fn-art { max-width: 400px; }
  .ledger-grid { grid-template-columns: 1fr; }
  .ledger-bar-row { grid-template-columns: 130px 1fr 70px; }
  .cover-title { font-size: clamp(48px, 11vw, 90px); }
  .cover-line-2 { padding-left: 24px; }
}

@media (max-width: 720px) {
  :root { --page-pad: 18px; }
  .ticker { height: 24px; }
  .ticker-track { height: 24px; font-size: 10px; gap: 40px; }

  .masthead-shell { grid-template-columns: 1fr 1fr; row-gap: 8px; }
  .mast-meta-left { grid-column: 1 / 3; justify-content: space-between; }
  .wordmark { grid-column: 1 / 2; font-size: 24px; text-align: left; }
  .primary-nav { grid-column: 2 / 3; justify-content: flex-end; gap: 14px; font-size: 12px; }
  .primary-nav a:not(.cta-link) { display: none; }

  .cover-mark { display: none; }
  .cover-frame { display: none; }

  .premise-grid { grid-template-columns: 1fr; }
  .premise-card { border-right: 0 !important; border-bottom: var(--rule) solid var(--ink-line); }
  .premise-card:last-child { border-bottom: 0; }

  .premise-definition {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .audience-grid { grid-template-columns: 1fr; }
  .numbers-shell { grid-template-columns: 1fr; }
  .num-item { border-right: 0 !important; }

  .colo-nav { grid-template-columns: 1fr 1fr; }
  .day-axis { grid-template-columns: repeat(7, 1fr); font-size: 9px; }
  .ledger-bar-row { grid-template-columns: 1fr; }
  .ledger-bar-label { font-size: 13px; }
  .ledger-bar-vals { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .cover-line { opacity: 1; transform: none; }
}

/* ============================================================
   Modern app landing refresh
   ============================================================ */

:root {
  --paper: hsl(38 36% 96%);
  --paper-warm: hsl(38 34% 93%);
  --paper-deep: hsl(34 26% 88%);
  --paper-rule: hsl(30 16% 78%);
  --ink: hsl(22 18% 10%);
  --ink-soft: hsl(22 12% 28%);
  --ink-mute: hsl(24 8% 48%);
  --ink-line: hsl(24 12% 18% / 0.12);
  --maroon: hsl(348 45% 32%);
  --maroon-deep: hsl(348 52% 22%);
  --sage: hsl(151 18% 38%);
  --ochre: hsl(36 42% 44%);
  --surface: hsl(40 36% 98%);
  --surface-2: hsl(38 30% 94%);
  --font-serif: "Lora", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --radius-card: 8px;
}

body {
  background:
    radial-gradient(circle at 74% 4%, hsl(348 42% 72% / 0.16), transparent 28rem),
    radial-gradient(circle at 8% 90%, hsl(151 20% 70% / 0.16), transparent 26rem),
    linear-gradient(180deg, hsl(38 38% 97%), hsl(38 32% 94%));
}

body::before {
  opacity: 0.16;
}

.ticker,
.cover-frame,
.cover-mark,
.editor-note,
.premise,
.functions,
.specimen,
.sense,
.ledger,
.numbers,
.audiences,
.field-notes {
  display: none !important;
}

.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid hsl(24 10% 18% / 0.09);
  background: hsl(38 44% 97% / 0.84);
  backdrop-filter: blur(18px);
}

.masthead-shell {
  max-width: 1320px;
  margin: 0 auto;
  grid-template-columns: auto 1fr;
  padding: 14px var(--page-pad);
}

.mast-meta {
  display: none;
}

.wordmark {
  justify-self: start;
  width: clamp(132px, 11vw, 168px);
  height: 38px;
}

.wordmark-logo {
  width: 200px;
}

.primary-nav {
  gap: clamp(18px, 2.6vw, 34px);
  font-size: 13px;
  font-weight: 600;
}

.primary-nav a {
  color: hsl(22 12% 28% / 0.74);
}

.primary-nav a.cta-link {
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--ink);
  box-shadow: 0 10px 24px hsl(22 18% 10% / 0.12);
}

.cover {
  min-height: calc(100svh - 67px);
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 5vw, 76px);
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(52px, 8vw, 108px) var(--page-pad) clamp(48px, 7vw, 96px);
}

.cover-grain {
  background:
    linear-gradient(hsl(22 18% 10% / 0.035) 1px, transparent 1px),
    linear-gradient(90deg, hsl(22 18% 10% / 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black 0%, black 72%, transparent 100%);
}

.cover-content {
  padding: 0;
  transform: translateY(-56px);
}

.cover-title {
  max-width: 13ch;
  margin: 0 0 22px;
  font-family: var(--font-sans);
  font-size: clamp(54px, 5.2vw, 84px);
  font-weight: 760;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.cover-line-2 {
  padding-left: 0;
}

.cover-line em {
  font-family: var(--font-serif);
  color: var(--maroon);
  font-weight: 500;
}

.cover-deck {
  max-width: 560px;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.45;
}

.cover-deck-pull {
  max-width: 34rem;
  padding: 0 0 0 18px;
  border-left: 3px solid var(--maroon);
  font-style: normal;
  color: hsl(22 12% 32% / 0.82);
}

.cover-foot {
  margin-top: 28px;
  align-items: flex-start;
}

.btn,
.btn-ghost {
  font-weight: 700;
  letter-spacing: 0;
}

.btn {
  border-radius: 8px;
  padding: 13px 18px;
  border: 0;
  box-shadow: 0 14px 30px hsl(348 45% 20% / 0.18);
}

.btn-ghost {
  padding: 12px 0;
  color: var(--ink-soft);
}

.btn-ghost::after {
  bottom: 7px;
}

.cover-caption {
  flex-basis: 100%;
  max-width: 34rem;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0;
  color: var(--ink-mute);
}

.caption-num {
  display: inline-flex;
  margin-right: 8px;
  padding: 2px 7px;
  border-radius: 999px;
  background: hsl(348 45% 32% / 0.08);
  color: var(--maroon);
  font-size: 12px;
  font-weight: 700;
}

.cover-signup {
  scroll-margin-top: 104px;
  width: min(100%, 660px);
  margin-top: clamp(18px, 2.4vw, 28px);
  padding: clamp(14px, 1.8vw, 18px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
  gap: 12px 20px;
  align-items: start;
  border: 1px solid hsl(24 14% 18% / 0.10);
  border-radius: 10px;
  background:
    linear-gradient(135deg, hsl(40 36% 99% / 0.94), hsl(38 28% 95% / 0.88)),
    var(--surface);
  box-shadow:
    0 22px 70px hsl(24 18% 12% / 0.13),
    0 1px 0 hsl(0 0% 100% / 0.88) inset;
}

.cover-signup-copy {
  grid-row: span 3;
  display: grid;
  gap: 6px;
}

.cover-signup-copy .kicker {
  margin: 0;
}

.cover-signup-copy h2 {
  margin: 0;
  max-width: 15ch;
  font-family: var(--font-sans);
  font-size: 34px;
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--ink);
}

.cover-signup-copy h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--maroon);
}

.cover-signup-copy p {
  margin: 0;
  max-width: 42rem;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-soft);
}

.cover-signup-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.cover-signup .field {
  margin-bottom: 0;
}

.cover-signup .field-label {
  margin-bottom: 4px;
  font-size: 10px;
}

.cover-signup .field input[type="text"],
.cover-signup .field input[type="email"] {
  padding: 8px 2px;
  font-size: 15px;
}

.cover-signup .btn-block {
  margin-top: 0;
  padding: 12px 16px;
}

.cover-signup .form-status,
.cover-signup .form-fine {
  margin-top: 0;
}

.cover-signup .form-fine {
  grid-column: 1 / -1;
  font-size: 12px;
  line-height: 1.45;
}

.cover-figure {
  justify-self: stretch;
  padding: 0;
}

.cover-figure-svg {
  display: none !important;
}

.product-preview {
  width: min(100%, 680px);
  justify-self: end;
  border: 1px solid hsl(24 14% 18% / 0.10);
  border-radius: 8px;
  background:
    linear-gradient(135deg, hsl(40 36% 99%), hsl(38 28% 93%)),
    var(--surface);
  box-shadow:
    0 34px 90px hsl(24 18% 12% / 0.16),
    0 1px 0 hsl(0 0% 100% / 0.9) inset;
  overflow: hidden;
}

.preview-shell {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 540px;
}

.preview-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-top: 28px;
  border-right: 1px solid hsl(24 12% 18% / 0.08);
  background: hsl(22 18% 10% / 0.035);
}

.preview-dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 1px solid hsl(22 12% 28% / 0.22);
  background: hsl(40 36% 98% / 0.8);
}

.preview-dot.active {
  background: var(--maroon);
  border-color: var(--maroon);
}

.preview-main {
  padding: clamp(22px, 3vw, 34px);
}

.preview-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  margin-bottom: 22px;
}

.preview-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.preview-head h2 {
  margin-top: 4px;
  font-family: var(--font-sans);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1;
}

.preview-status {
  display: inline-flex;
  white-space: nowrap;
  border-radius: 999px;
  padding: 8px 10px;
  background: hsl(151 18% 38% / 0.12);
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
}

.preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(150px, 0.75fr);
  gap: 12px;
}

.preview-panel {
  border: 1px solid hsl(24 12% 18% / 0.10);
  border-radius: 8px;
  background: hsl(40 38% 98% / 0.78);
  padding: 16px;
  box-shadow: 0 1px 0 hsl(0 0% 100% / 0.8) inset;
}

.preview-panel-large {
  grid-row: span 2;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink-soft);
}

.panel-head strong {
  color: var(--maroon);
}

.allocation {
  display: flex;
  height: 22px;
  border-radius: 7px;
  overflow: hidden;
  background: hsl(24 10% 18% / 0.08);
}

.allocation span {
  width: var(--w);
  background: var(--c);
}

.preview-bars {
  display: grid;
  gap: 11px;
  margin-top: 28px;
}

.preview-bars p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  color: var(--ink-mute);
}

.preview-bars strong {
  color: var(--ink-soft);
}

.preview-bars i {
  display: block;
  height: 7px;
  border-radius: 999px;
  overflow: hidden;
  background: hsl(24 10% 18% / 0.08);
}

.preview-bars b {
  display: block;
  width: var(--w);
  height: 100%;
  background: var(--maroon);
}

.preview-ring {
  display: grid;
  place-items: center;
  min-height: 172px;
}

.ring-meter {
  width: 104px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    conic-gradient(var(--sage) 0 72%, hsl(24 10% 18% / 0.08) 72% 100%);
}

.ring-meter b {
  display: grid;
  place-items: center;
  width: 78px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--surface);
  font-size: 20px;
}

.preview-ring p {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
}

.preview-sense-card,
.preview-timeline {
  display: grid;
  gap: 10px;
}

.preview-sense-card strong {
  font-size: 17px;
  line-height: 1.15;
}

.preview-sense-card span {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-mute);
}

.preview-timeline {
  grid-column: 1 / -1;
}

.preview-timeline div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
  padding-top: 9px;
  border-top: 1px solid hsl(24 12% 18% / 0.08);
}

.preview-timeline span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-mute);
}

.preview-timeline b {
  font-size: 13px;
  font-weight: 700;
}

.product-strip,
.workflow,
.sense-preview {
  position: relative;
  z-index: 2;
}

.product-strip {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 128px) var(--page-pad);
}

.product-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-bottom: 30px;
}

.product-intro .kicker,
.workflow-head .kicker,
.sense-preview-copy .kicker {
  grid-column: 1 / -1;
}

.product-intro h2,
.workflow-head h2,
.sense-preview-copy h2 {
  font-family: var(--font-sans);
  font-size: clamp(38px, 5.6vw, 82px);
  font-weight: 780;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.product-intro p:not(.kicker),
.sense-preview-copy p:not(.kicker) {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.45;
  color: var(--ink-soft);
}

.surface-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.surface-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid hsl(24 12% 18% / 0.10);
  border-radius: 8px;
  background: hsl(40 38% 98% / 0.78);
  box-shadow: 0 18px 50px hsl(24 18% 12% / 0.06);
}

.surface-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: hsl(348 45% 32% / 0.08);
  color: var(--maroon);
}

.surface-icon-plan,
.surface-icon-track,
.surface-icon-review,
.surface-icon-sense {
  display: grid;
  place-items: center;
}

.surface-icon-plan {
  align-content: center;
  justify-items: center;
  gap: 4px;
}

.surface-icon-plan span {
  display: block;
  width: 34px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
}

.surface-icon-plan span:nth-child(2) {
  width: 24px;
  opacity: 0.72;
}

.surface-icon-plan span:nth-child(3) {
  width: 30px;
  opacity: 0.42;
}

.surface-icon-track {
  display: grid;
  place-items: center;
  padding: 0;
}

.surface-icon-track svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.surface-icon-review b {
  font-size: 15px;
}

.surface-icon-sense span {
  font-size: 28px;
  font-weight: 800;
}

.surface-num {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--maroon);
}

.surface-card h3 {
  margin-top: 8px;
  font-family: var(--font-sans);
  font-size: 23px;
  font-weight: 760;
  letter-spacing: -0.025em;
}

.surface-card p:last-child {
  margin-top: 8px;
  color: var(--ink-mute);
  font-size: 14px;
  line-height: 1.45;
}

.workflow {
  padding: clamp(76px, 9vw, 132px) var(--page-pad);
  background:
    linear-gradient(hsl(38 36% 96% / 0.035) 1px, transparent 1px),
    linear-gradient(90deg, hsl(38 36% 96% / 0.035) 1px, transparent 1px),
    radial-gradient(circle at 78% 20%, hsl(348 45% 38% / 0.26), transparent 34rem),
    hsl(22 19% 12%);
  background-size: 74px 74px, 74px 74px, auto, auto;
  color: hsl(38 32% 92%);
}

.workflow-head,
.workflow-steps {
  max-width: 1320px;
  margin: 0 auto;
}

.workflow-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 60px);
}

.workflow-head h2 {
  max-width: 13ch;
}

.workflow-steps {
  counter-reset: flow;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid hsl(38 28% 90% / 0.10);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 0 16%, hsl(38 28% 90% / 0.035) 16% 16.3%, transparent 16.3%),
    hsl(38 32% 94% / 0.035);
  box-shadow:
    0 22px 70px hsl(0 0% 0% / 0.18),
    0 1px 0 hsl(38 28% 90% / 0.08) inset;
}

.workflow-steps li {
  --accent: hsl(348 55% 72%);
  position: relative;
  isolation: isolate;
  min-height: 230px;
  padding: 24px 20px 22px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid hsl(38 28% 90% / 0.10);
  background:
    radial-gradient(circle at 18% 0%, color-mix(in srgb, var(--accent), transparent 78%), transparent 52%),
    linear-gradient(180deg, hsl(38 32% 94% / 0.055), hsl(38 32% 94% / 0.018));
  transition: background 180ms ease, transform 180ms ease;
}

.workflow-steps li:last-child {
  border-right: 0;
}

.workflow-steps li::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 70px;
  height: 1px;
  background:
    linear-gradient(90deg, var(--accent), hsl(38 28% 90% / 0.12), transparent);
  opacity: 0.65;
  z-index: -1;
}

.workflow-steps li::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 62px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 0 0 7px color-mix(in srgb, var(--accent), transparent 86%),
    0 0 24px color-mix(in srgb, var(--accent), transparent 50%);
}

.workflow-steps li:nth-child(1) { --accent: hsl(348 58% 68%); }
.workflow-steps li:nth-child(2) { --accent: hsl(151 28% 58%); }
.workflow-steps li:nth-child(3) { --accent: hsl(36 58% 58%); }
.workflow-steps li:nth-child(4) { --accent: hsl(212 38% 64%); }
.workflow-steps li:nth-child(5) { --accent: hsl(348 48% 78%); }
.workflow-steps li:nth-child(6) { --accent: hsl(38 34% 84%); }

.workflow-steps li:hover {
  transform: translateY(-2px);
  background:
    radial-gradient(circle at 18% 0%, color-mix(in srgb, var(--accent), transparent 68%), transparent 54%),
    linear-gradient(180deg, hsl(38 32% 94% / 0.08), hsl(38 32% 94% / 0.025));
}

.workflow-steps span {
  display: inline-flex;
  width: fit-content;
  min-width: 34px;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 44%);
  background: color-mix(in srgb, var(--accent), transparent 88%);
  font-family: var(--font-mono);
  font-size: 11px;
  color: color-mix(in srgb, var(--accent), hsl(38 32% 92%) 35%);
}

.workflow-steps strong {
  margin-top: auto;
  font-size: clamp(21px, 1.8vw, 27px);
  letter-spacing: -0.02em;
  color: hsl(38 32% 94%);
}

.workflow-steps p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.42;
  color: hsl(38 24% 86% / 0.68);
}

.sense-preview {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(76px, 9vw, 132px) var(--page-pad);
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(420px, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.sense-preview-copy h2 {
  max-width: 10ch;
}

.sense-preview-copy p:not(.kicker) {
  max-width: 32rem;
  margin-top: 18px;
}

.sense-app {
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(hsl(38 32% 92% / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, hsl(38 32% 92% / 0.045) 1px, transparent 1px),
    radial-gradient(circle at 90% 8%, hsl(348 45% 38% / 0.25), transparent 22rem),
    hsl(22 19% 12%);
  background-size: 60px 60px, 60px 60px, auto, auto;
  color: hsl(38 32% 92%);
  box-shadow: 0 30px 90px hsl(24 18% 12% / 0.16);
}

.sense-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.sense-toolbar span,
.sense-preview .sense-actions button {
  border: 1px solid hsl(38 28% 90% / 0.16);
  border-radius: 999px;
  padding: 8px 11px;
  background: hsl(38 28% 94% / 0.04);
  color: hsl(38 28% 90% / 0.72);
  font-size: 12px;
}

.sense-toolbar .active {
  border-color: hsl(348 55% 78% / 0.45);
  color: hsl(348 55% 82%);
}

.sense-thread {
  display: grid;
  gap: 14px;
}

.sense-bubble {
  max-width: 92%;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid hsl(38 28% 90% / 0.12);
  background: hsl(38 28% 94% / 0.045);
}

.sense-bubble.user {
  margin-left: auto;
  background: hsl(348 45% 38% / 0.16);
}

.sense-bubble small {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(38 24% 86% / 0.54);
}

.sense-bubble p {
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.42;
}

.sense-preview .sense-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.sense-preview .sense-actions button {
  cursor: pointer;
}

.subscribe {
  padding: clamp(76px, 9vw, 132px) var(--page-pad);
  background:
    radial-gradient(circle at 12% 16%, hsl(151 18% 38% / 0.18), transparent 28rem),
    hsl(22 19% 12%);
}

.subscribe .section-head {
  display: none;
}

.subscribe-shell {
  max-width: 1120px;
  align-items: center;
}

.subscribe-title {
  font-family: var(--font-sans);
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.subscribe-copy p {
  max-width: 31rem;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.45;
}

.subscribe-meta {
  max-width: 36rem;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  font-family: var(--font-sans);
  font-size: 13px;
}

.subscribe-card {
  border-radius: 8px;
  border: 1px solid hsl(38 28% 90% / 0.20);
  background: hsl(40 36% 98%);
  box-shadow: 0 30px 80px hsl(0 0% 0% / 0.22);
}

.subscribe-card::before,
.subscribe-card::after {
  display: none;
}

.field input[type="text"],
.field input[type="email"] {
  font-family: var(--font-sans);
  font-size: 16px;
}

.field-radio label {
  border-radius: 8px;
}

.colophon {
  padding: clamp(44px, 6vw, 80px) var(--page-pad);
  border-top: 0;
  background: hsl(38 36% 96%);
}

.colophon-shell {
  max-width: 1320px;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.9fr);
  align-items: start;
}

.colo-brand {
  grid-column: 1 / -1;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: clamp(18px, 2.4vw, 28px);
}

.footer-brandmark {
  width: clamp(220px, 22vw, 320px);
  height: auto;
}

.colo-nav {
  grid-column: 1 / 2;
}

.colo-meta {
  grid-column: 2 / 3;
}

.colo-tag,
.colo-meta {
  font-family: var(--font-sans);
}


@media (max-width: 1180px) {
  .cover {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .cover-content {
    transform: none;
  }

  .cover-figure {
    order: 0;
  }

  .product-preview {
    justify-self: start;
    max-width: 760px;
  }

  .surface-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .workflow-steps li:nth-child(3n) {
    border-right: 0;
  }

  .workflow-steps li:nth-child(-n + 3) {
    border-bottom: 1px solid hsl(38 28% 90% / 0.10);
  }

  .sense-preview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .masthead-shell {
    grid-template-columns: 1fr auto;
  }

  .wordmark {
    grid-column: auto;
  }

  .primary-nav {
    grid-column: auto;
  }

  .primary-nav a:not(.cta-link) {
    display: none;
  }

  .cover {
    padding-top: 42px;
  }

  .cover-title {
    font-size: clamp(44px, 14vw, 64px);
  }

  .cover-foot {
    gap: 14px;
  }

  .cover-signup {
    width: 100%;
    padding: 18px;
    grid-template-columns: 1fr;
  }

  .cover-signup-fields {
    grid-template-columns: 1fr;
  }

  .cover-signup-copy {
    grid-row: auto;
  }

  .cover-signup-copy h2 {
    font-size: 32px;
  }

  .preview-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .preview-sidebar {
    display: none;
  }

  .preview-main {
    padding: 18px;
  }

  .preview-head {
    display: grid;
  }

  .preview-grid,
  .product-intro,
  .workflow-head {
    grid-template-columns: 1fr;
  }

  .preview-grid {
    gap: 10px;
  }

  .preview-panel-large,
  .preview-timeline {
    grid-column: auto;
    grid-row: auto;
  }

  .surface-grid,
  .workflow-steps,
  .subscribe-meta,
  .colo-nav {
    grid-template-columns: 1fr;
  }

  .surface-card {
    min-height: 220px;
  }

  .workflow-steps li,
  .workflow-steps li:nth-child(3n),
  .workflow-steps li:nth-child(-n + 3) {
    min-height: 180px;
    border-right: 0;
    border-bottom: 1px solid hsl(38 28% 90% / 0.10);
  }

  .workflow-steps li:last-child {
    border-bottom: 0;
  }

  .sense-app {
    padding: 12px;
  }

  .sense-bubble {
    max-width: 100%;
  }
}

/* Final mobile compatibility pass: keep the masthead brand intact and stack the footer cleanly. */
@media (max-width: 760px) {
  .masthead-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(10px, 3vw, 14px);
    padding: 12px clamp(14px, 4vw, 18px);
  }

  .wordmark {
    width: clamp(128px, 40vw, 168px);
    max-width: 100%;
    height: 42px;
    justify-content: flex-start;
    overflow: hidden;
  }

  .wordmark-logo {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    transform: none;
  }

  .primary-nav {
    min-width: 0;
    justify-content: flex-end;
  }

  .primary-nav a.cta-link {
    padding: 11px clamp(12px, 3.6vw, 16px);
    font-size: clamp(12px, 3.6vw, 14px);
    line-height: 1;
    white-space: nowrap;
  }

  .subscribe {
    padding-inline: clamp(18px, 5vw, 24px);
  }

  .subscribe-shell {
    width: 100%;
    max-width: 100%;
    padding-inline: 0;
  }

  .subscribe-copy,
  .subscribe-form,
  .subscribe-card {
    min-width: 0;
    max-width: 100%;
  }

  .colophon {
    padding: 48px clamp(20px, 7vw, 32px) 64px;
  }

  .colophon-shell {
    max-width: 440px;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .colo-brand,
  .colo-nav,
  .colo-meta {
    grid-column: 1 / -1;
  }

  .colo-brand {
    justify-self: center;
    width: 100%;
    margin-bottom: 0;
  }

  .footer-brandmark {
    width: min(270px, 74vw);
  }

  .colo-nav {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .colo-nav div {
    min-width: 0;
  }

  .colo-nav a,
  .colo-nav .soon {
    padding: 5px 0;
    font-size: 16px;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .colo-nav .kicker,
  .colo-meta .kicker {
    margin-bottom: 12px;
  }

  .colo-meta {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.6;
  }

  .colo-meta p {
    max-width: 34ch;
  }
}

@media (max-width: 380px) {
  .wordmark {
    width: 124px;
  }

  .primary-nav a.cta-link {
    padding-inline: 11px;
    font-size: 12px;
  }
}

/* ============================================================
   Cinematic hero experiment
   ============================================================ */

.ticker {
  display: none;
}

.masthead {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
  border: 0;
  background: transparent;
}

.masthead-shell {
  display: flex;
  justify-content: center;
  padding: 0 var(--page-pad);
  pointer-events: none;
}

.masthead .mast-meta,
.masthead .wordmark {
  display: none;
}

.primary-nav {
  pointer-events: auto;
  justify-content: center;
  gap: clamp(10px, 2vw, 28px);
  max-width: min(92vw, 640px);
  padding: 9px 12px;
  border: 1px solid hsl(46 22% 84% / 0.16);
  border-radius: 0 0 24px 24px;
  background: hsl(28 18% 3% / 0.88);
  box-shadow: 0 18px 42px hsl(0 0% 0% / 0.28);
  backdrop-filter: blur(18px);
}

.primary-nav a {
  padding: 4px 8px;
  color: hsl(54 26% 88% / 0.72);
  font-size: 12px;
  font-weight: 650;
}

.primary-nav a:hover {
  color: hsl(54 32% 92%);
}

.primary-nav a:hover::after {
  display: none;
}

.primary-nav a.cta-link {
  padding: 7px 12px;
  border: 1px solid hsl(54 32% 92% / 0.22);
  border-radius: 999px;
  background: hsl(54 32% 92%);
  color: hsl(28 18% 5%);
  box-shadow: none;
}

.primary-nav a.cta-link:hover {
  border-color: hsl(54 32% 92%);
  background: hsl(54 32% 92%);
  color: hsl(28 18% 5%);
}

.cover.cover-cinematic {
  --hero-cream: hsl(54 32% 91%);
  --hero-muted: hsl(54 22% 83% / 0.74);
  --hero-line: hsl(54 28% 84% / 0.18);
  --hero-shadow: hsl(24 38% 4% / 0.62);
  position: relative;
  isolation: isolate;
  display: block;
  max-width: none;
  min-height: 100svh;
  width: 100%;
  margin: 0;
  padding: clamp(84px, 12vh, 128px) clamp(22px, 4vw, 72px) clamp(24px, 5vh, 54px);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: hsl(31 19% 6%);
  color: var(--hero-cream);
  box-shadow: none;
}

.cover-cinematic::before,
.cover-cinematic::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cover-cinematic::before {
  z-index: 1;
  background:
    radial-gradient(circle at 70% 38%, hsl(37 62% 72% / 0.14), transparent 18%),
    linear-gradient(90deg, hsl(215 36% 6% / 0.46), hsl(215 30% 7% / 0.12) 46%, hsl(24 20% 5% / 0.14)),
    linear-gradient(0deg, hsl(20 24% 5% / 0.78), hsl(20 16% 7% / 0.04) 52%, hsl(215 26% 7% / 0.12));
}

.cover-cinematic::after {
  z-index: 2;
  opacity: 0.4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.9 0 0 0 0 0.84 0 0 0 0 0.68 0 0 0 0.32 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.cover-cinematic .cover-grain {
  z-index: 2;
  background:
    linear-gradient(hsl(54 32% 90% / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, hsl(54 32% 90% / 0.035) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 88%, transparent);
}

.cover-cinematic .cover-frame,
.cover-cinematic .cover-mark,
.cover-cinematic .cover-figure {
  display: none !important;
}

.cover-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    url("assets/natma-hero-poster.jpg") center / cover no-repeat,
    linear-gradient(115deg, hsl(216 36% 8%) 0%, hsl(205 26% 11%) 42%, hsl(29 28% 16%) 100%);
  transform: scale(1.04);
  filter: saturate(1.03) contrast(1.02) brightness(0.96);
  animation: hero-photo-drift 34s ease-in-out infinite alternate;
}

.cover-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-scene::before {
  content: "";
  position: absolute;
  inset: -18% -8% -10%;
  background:
    radial-gradient(ellipse at 70% 38%, hsl(37 56% 74% / 0.58), transparent 0 13%, transparent 21%),
    radial-gradient(ellipse at 82% 46%, hsl(35 54% 70% / 0.42), transparent 0 16%, transparent 24%),
    radial-gradient(ellipse at 64% 54%, hsl(38 58% 78% / 0.46), transparent 0 18%, transparent 27%),
    radial-gradient(ellipse at 90% 66%, hsl(36 55% 72% / 0.5), transparent 0 18%, transparent 30%),
    radial-gradient(ellipse at 52% 74%, hsl(34 52% 70% / 0.28), transparent 0 24%, transparent 38%);
  filter: blur(1px) saturate(1.05);
  opacity: 0.28;
  animation: scene-pan 30s ease-in-out infinite alternate;
  z-index: 1;
}

.cover-scene::after {
  display: none;
}

.scene-horizon,
.scene-cloud,
.scene-island,
.scene-island span {
  position: absolute;
  display: block;
}

.scene-horizon {
  inset: 0;
  background:
    linear-gradient(105deg, transparent 0 36%, hsl(34 52% 65% / 0.16) 38%, transparent 56%),
    radial-gradient(ellipse at 66% 42%, hsl(44 68% 78% / 0.16), transparent 34%);
}

.scene-cloud {
  border-radius: 999px;
  filter: blur(14px);
  background:
    radial-gradient(circle at 22% 52%, hsl(42 58% 78% / 0.68), transparent 0 30%, transparent 46%),
    radial-gradient(circle at 48% 38%, hsl(39 62% 77% / 0.66), transparent 0 33%, transparent 52%),
    radial-gradient(circle at 76% 58%, hsl(34 50% 64% / 0.56), transparent 0 32%, transparent 55%);
  opacity: 0.8;
}

.scene-cloud-a {
  right: -8%;
  top: 22%;
  width: min(680px, 48vw);
  height: 220px;
  animation: cloud-drift-a 34s ease-in-out infinite alternate;
}

.scene-cloud-b {
  left: -10%;
  bottom: 16%;
  width: min(720px, 54vw);
  height: 240px;
  opacity: 0.44;
  animation: cloud-drift-b 38s ease-in-out infinite alternate;
}

.scene-cloud-c {
  right: 8%;
  bottom: -2%;
  width: min(820px, 58vw);
  height: 260px;
  opacity: 0.58;
  animation: cloud-drift-c 32s ease-in-out infinite alternate;
}

.scene-island {
  display: none;
  left: clamp(340px, 45vw, 720px);
  top: clamp(180px, 26vh, 300px);
  width: min(44vw, 640px);
  min-width: 420px;
  height: min(26vw, 360px);
  min-height: 260px;
  opacity: 0.16;
  mix-blend-mode: soft-light;
  transform: rotate(-2deg);
  transform-origin: center;
  animation: island-float 14s ease-in-out infinite alternate;
}

.scene-land {
  inset: 21% 8% 20% 0;
  border-radius: 48% 42% 34% 44% / 28% 42% 46% 45%;
  background:
    radial-gradient(ellipse at 34% 18%, hsl(80 28% 50%), transparent 0 18%, transparent 32%),
    radial-gradient(ellipse at 68% 24%, hsl(77 24% 41%), transparent 0 18%, transparent 34%),
    linear-gradient(150deg, hsl(46 35% 50%), hsl(32 28% 24%) 50%, hsl(24 18% 12%) 78%);
  box-shadow:
    0 38px 70px hsl(0 0% 0% / 0.42),
    -38px 72px 90px hsl(0 0% 0% / 0.48);
}

.scene-land::after {
  content: "";
  position: absolute;
  left: 58%;
  top: 34%;
  width: 28%;
  height: 82%;
  border-radius: 20% 30% 42% 34%;
  background: linear-gradient(180deg, hsl(31 24% 28%), hsl(21 20% 11%));
  transform: skewX(-10deg);
  filter: brightness(0.8);
}

.scene-path {
  left: 30%;
  top: 38%;
  width: 36%;
  height: 20%;
  border-radius: 999px;
  background: linear-gradient(90deg, hsl(35 49% 70% / 0.76), hsl(35 43% 54% / 0.18));
  transform: rotate(14deg);
  filter: blur(0.5px);
}

.scene-rock {
  border-radius: 42% 48% 36% 50%;
  background: linear-gradient(140deg, hsl(42 25% 43%), hsl(25 22% 18%));
  box-shadow: 0 16px 28px hsl(0 0% 0% / 0.22);
}

.scene-rock-a {
  left: 44%;
  top: 18%;
  width: 18%;
  height: 20%;
}

.scene-rock-b {
  left: 12%;
  top: 48%;
  width: 17%;
  height: 14%;
  transform: rotate(-12deg);
}

.scene-screen {
  left: 54%;
  top: 52%;
  width: 9%;
  height: 8%;
  border-radius: 3px;
  background: hsl(196 66% 92%);
  box-shadow:
    0 0 24px hsl(196 90% 78% / 0.62),
    0 0 48px hsl(196 76% 62% / 0.28);
  transform: skewY(-10deg) rotate(7deg);
  animation: screen-pulse 2.8s ease-in-out infinite alternate;
}

.scene-post {
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, hsl(32 20% 18%), hsl(22 18% 8%));
  box-shadow: 8px 10px 20px hsl(0 0% 0% / 0.32);
}

.scene-post-a {
  left: 24%;
  top: 4%;
  height: 44%;
  transform: rotate(-4deg);
}

.scene-post-b {
  left: 42%;
  top: 0;
  height: 36%;
  transform: rotate(4deg);
}

.scene-wire {
  left: 3%;
  height: 1px;
  width: 46%;
  background: hsl(27 18% 7% / 0.7);
  transform-origin: left center;
  box-shadow: 0 8px 0 hsl(27 18% 7% / 0.58), 0 16px 0 hsl(27 18% 7% / 0.46);
}

.scene-wire-a {
  top: 10%;
  transform: rotate(6deg);
}

.scene-wire-b {
  top: 17%;
  transform: rotate(8deg);
}

.cover-cinematic .cover-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: clamp(96px, 7.5vw, 176px);
  align-items: end;
  min-height: calc(100svh - 180px);
  padding: 0;
  transform: none;
}

.cover-cinematic .cover-title {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0;
  color: var(--hero-cream);
  font-family: var(--font-sans);
  font-size: 240px;
  font-weight: 860;
  line-height: 0.74;
  letter-spacing: 0;
  text-shadow: 0 18px 48px hsl(0 0% 0% / 0.38);
}

.cover-cinematic .cover-line {
  display: block;
  line-height: 0;
  opacity: 0;
  animation: rise 900ms cubic-bezier(.16, 1, .3, 1) forwards;
}

.cover-wordmark {
  display: block;
  width: min(46vw, 700px);
  height: auto;
  max-width: 100%;
  filter: drop-shadow(0 18px 48px hsl(0 0% 0% / 0.38));
}

.cover-cinematic .cover-line-1 {
  display: inline-flex;
  align-items: flex-start;
}

.cover-star {
  margin-top: -0.16em;
  margin-left: 0.04em;
  color: var(--hero-cream);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(42px, 5.5vw, 80px);
  line-height: 1;
  filter: drop-shadow(0 18px 48px hsl(0 0% 0% / 0.38));
}

.cover-brief {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(20px, 2.2vw, 30px);
  align-self: end;
  margin-bottom: 0;
}

.cover-cinematic .cover-deck {
  max-width: 30ch;
  font-family: var(--font-sans);
  font-size: clamp(24px, 1.75vw, 36px);
  font-weight: 430;
  line-height: 1.13;
  color: hsl(54 30% 90% / 0.86);
  text-shadow: 0 10px 30px hsl(0 0% 0% / 0.42);
}

.cover-cinematic .cover-deck em {
  color: hsl(349 64% 78%);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

.cover-cinematic .cover-signup {
  scroll-margin-top: 112px;
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cover-cinematic .cover-signup-copy {
  display: grid;
  gap: 10px;
}

.cover-cinematic .cover-signup-copy h2 {
  max-width: 14ch;
  font-size: clamp(28px, 2vw, 38px);
  font-weight: 780;
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--hero-cream);
}

.cover-cinematic .cover-signup-copy h2 em {
  color: inherit;
}

.cover-cinematic .cover-signup-copy p {
  max-width: 32ch;
  font-size: clamp(15px, 0.9vw, 18px);
  line-height: 1.35;
  color: var(--hero-muted);
}

.cover-cinematic .cover-signup-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.cover-cinematic .field-label {
  margin-bottom: 7px;
  color: hsl(54 28% 90% / 0.72);
  font-size: 12px;
}

.cover-cinematic .field-label em {
  color: hsl(54 32% 90% / 0.72);
}

.cover-cinematic .field input[type="text"],
.cover-cinematic .field input[type="email"] {
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--hero-line);
  border-radius: 999px;
  background: hsl(28 16% 5% / 0.5);
  color: var(--hero-cream);
  font-size: 16px;
  box-shadow: 0 1px 0 hsl(54 32% 92% / 0.05) inset;
  backdrop-filter: blur(14px);
}

.cover-cinematic .field input::placeholder {
  color: hsl(54 20% 86% / 0.48);
}

.cover-cinematic .btn {
  border-radius: 999px;
  border: 1px solid hsl(54 32% 92%);
  background: hsl(54 32% 92%);
  color: hsl(28 18% 5%);
  box-shadow: 0 16px 36px hsl(0 0% 0% / 0.26);
}

.cover-cinematic .btn:hover {
  background: hsl(52 36% 96%);
  border-color: hsl(52 36% 96%);
  color: hsl(28 18% 5%);
}

.cover-cinematic .btn-block {
  min-height: 54px;
  padding: 0 8px 0 24px;
  font-size: 16px;
}

.cover-cinematic .btn svg {
  width: 38px;
  height: 38px;
  padding: 11px;
  border-radius: 999px;
  background: hsl(28 18% 5%);
  color: var(--hero-cream);
}

.cover-cinematic .form-status {
  min-height: 18px;
  color: var(--hero-cream);
  font-size: 12px;
}

.cover-cinematic .form-status[data-state="error"] {
  color: hsl(12 72% 78%);
}

.cover-cinematic .form-status[data-state="success"] {
  color: hsl(94 42% 78%);
}

@keyframes scene-pan {
  from { transform: translate3d(-1.8%, -0.6%, 0) scale(1.02); }
  to { transform: translate3d(2%, 0.8%, 0) scale(1.06); }
}

@keyframes hero-photo-drift {
  from { transform: scale(1.04) translate3d(-1.2%, -0.8%, 0); }
  to { transform: scale(1.1) translate3d(1.2%, 0.8%, 0); }
}

@keyframes cloud-breathe {
  from { transform: translate3d(-2%, 0, 0) scale(1); }
  to { transform: translate3d(2%, -3%, 0) scale(1.04); }
}

@keyframes cloud-drift-a {
  from { transform: translate3d(-1%, -2%, 0) scale(1); }
  to { transform: translate3d(5%, 3%, 0) scale(1.04); }
}

@keyframes cloud-drift-b {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(6%, -4%, 0) scale(1.08); }
}

@keyframes cloud-drift-c {
  from { transform: translate3d(3%, 0, 0) scale(1.02); }
  to { transform: translate3d(-4%, -5%, 0) scale(1.08); }
}

@keyframes island-float {
  from { transform: translate3d(0, 0, 0) rotate(-2deg); }
  to { transform: translate3d(0, -12px, 0) rotate(-1deg); }
}

@keyframes screen-pulse {
  from { filter: brightness(1); opacity: 0.86; }
  to { filter: brightness(1.35); opacity: 1; }
}

@media (min-width: 1500px) {
  .cover-cinematic .cover-title {
    font-size: 284px;
  }
}

@media (min-width: 981px) {
  .cover-cinematic .cover-title {
    margin-bottom: 38px;
  }
}

@media (max-width: 1260px) {
  .cover-cinematic .cover-title {
    font-size: 196px;
  }

  .scene-island {
    left: clamp(250px, 34vw, 480px);
    min-width: 500px;
  }
}

@media (max-width: 980px) {
  .cover.cover-cinematic {
    padding-top: 96px;
  }

  .cover-cinematic .cover-content {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: calc(100svh - 170px);
  }

  .cover-cinematic .cover-title {
    font-size: 146px;
  }

  .cover-wordmark {
    width: min(88vw, 560px);
  }

  .cover-brief {
    max-width: 560px;
  }

  .cover-cinematic .cover-deck {
    max-width: 31ch;
    font-size: clamp(22px, 4.2vw, 30px);
  }

  .scene-island {
    left: 18%;
    top: 16%;
    width: 76vw;
    min-width: 0;
    height: 42vw;
    min-height: 330px;
    opacity: 0.78;
  }
}

@media (max-width: 760px) {
  .masthead {
    top: 0;
  }

  .masthead-shell {
    display: flex;
    justify-content: center;
    padding: 0 12px;
  }

  .primary-nav {
    width: min(100%, 360px);
    gap: 6px;
    overflow-x: auto;
    justify-content: flex-start;
    border-radius: 0 0 18px 18px;
    scrollbar-width: none;
  }

  .primary-nav::-webkit-scrollbar {
    display: none;
  }

  .primary-nav a {
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 11px;
    padding-inline: 7px;
  }

  .primary-nav a:not(.cta-link) {
    display: inline-flex;
  }

  .primary-nav a.cta-link {
    padding: 7px 10px;
    font-size: 11px;
  }

  .cover.cover-cinematic {
    min-height: 100svh;
    margin: 0;
    padding: 86px 16px 24px;
    border: 0;
    border-radius: 0;
  }

  .cover-cinematic .cover-content {
    min-height: calc(100svh - 130px);
    align-content: end;
  }

  .cover-cinematic .cover-title {
    font-size: 84px;
    line-height: 0.82;
  }

  .cover-wordmark {
    width: min(88vw, 320px);
  }

  .cover-cinematic .cover-deck {
    font-size: clamp(19px, 5.1vw, 24px);
  }

  .cover-cinematic .cover-signup {
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--hero-line);
    border-radius: 8px;
    background: hsl(28 16% 5% / 0.46);
    backdrop-filter: blur(18px);
  }

  .cover-cinematic .cover-signup-fields {
    grid-template-columns: 1fr;
  }

  .cover-cinematic .cover-signup-copy h2 {
    font-size: clamp(29px, 8vw, 36px);
  }

  .scene-island {
    left: -4%;
    top: 130px;
    width: 112vw;
    height: 340px;
    opacity: 0.74;
  }

  .scene-cloud-a {
    top: 16%;
    right: -34%;
    width: 118vw;
  }

  .scene-cloud-b {
    width: 120vw;
  }

  .scene-cloud-c {
    right: -30%;
    width: 132vw;
  }
}

@media (max-width: 420px) {
  .cover-cinematic .cover-title {
    font-size: 72px;
  }

  .cover-wordmark {
    width: min(88vw, 300px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cover-scene::before,
  .cover-scene::after,
  .scene-cloud,
  .scene-island,
  .scene-screen {
    animation: none !important;
  }
}
