/* Hallmark · pre-emit critique: P5 H4 E4 S5 R4 V5
 * Hallmark · genre: atmospheric · macrostructure: Photographic
 * tone: veteran-operator · anchor hue: gold ~70
 * theme: locked design.md (dark ink, gold accent)
 * nav: N5 Floating pill · footer: Ft5 Statement
 * enrichment: E1 sunrise plate + real logo composite
 * H6 knobs: image area=full-bleed, caption=overlay-kicker, text=overlaid
 * contrast: pass (40-41) · nav: N5 · footer: Ft5 · slop: pass (42-45)
 * honest: pass (46) · chrome: pass (47) · tokens: pass (48)
 * mobile: pass (34, 49, 50-57)
 */

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

html, body { overflow-x: clip; }

html {
  scroll-behavior: smooth;
  background: var(--color-paper);
}

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
button, a { font: inherit; }
button { cursor: pointer; }

:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: var(--space-md);
  top: -100px;
  z-index: calc(var(--z-sticky-nav) + 1);
  background: var(--gold-500);
  color: var(--color-accent-ink);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}
.skip:focus { top: var(--space-md); }

.wrap {
  width: min(var(--wrap), calc(100% - 2 * var(--page-gutter)));
  margin-inline: auto;
}

#about, #resources, #subscribe {
  scroll-margin-top: 5.5rem;
}

/* ---------- nav: N5 floating pill ---------- */
.nav {
  position: fixed;
  inset: var(--space-md) auto auto 50%;
  transform: translateX(-50%);
  z-index: var(--z-sticky-nav);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  width: max-content;
  max-width: calc(100% - 2 * var(--space-md));
  min-height: 4rem;
  padding: 0.55rem 0.55rem 0.55rem 1rem;
  background: color-mix(in srgb, var(--ink-900) 82%, transparent);
  backdrop-filter: blur(14px) saturate(120%);
  border: var(--rule-hair) solid color-mix(in srgb, var(--text) 16%, transparent);
  border-radius: var(--radius-pill);
  color: var(--text);
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 1;
  min-width: 0;
  position: relative;
  z-index: 2;
  isolation: isolate;
}
.nav-brand img {
  height: 44px;
  width: auto;
  max-width: min(240px, 52vw);
  transform: translateZ(0);
  filter:
    saturate(1.08)
    brightness(1.06)
    drop-shadow(0 0 10px rgba(253, 182, 2, 0.5))
    drop-shadow(0 0 22px rgba(253, 147, 2, 0.28));
}

.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-lg);
  align-items: center;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.0625rem;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
  padding-block: 0.55rem;
}
.nav-links a:hover { color: var(--gold-300); }

.nav-tools {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
  margin-inline-start: var(--space-xs);
}

.icon-btn {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
}
.icon-btn::before {
  content: "";
  position: absolute;
  inset: 0;
}
.icon-btn:hover { color: var(--gold-300); }
.icon-btn:active { transform: translateY(1px); }
.icon-btn svg { width: 18px; height: 18px; display: block; }
.icon-btn[aria-pressed="true"] { color: var(--gold-400); }

.btn.nav-cta {
  display: none;
  white-space: nowrap;
  padding-inline: 1rem;
}

.nav-toggle { display: grid; }

@media (min-width: 40rem) {
  .nav-brand img { height: 52px; max-width: 280px; }
  .btn.nav-cta { display: inline-flex; }
}
@media (max-width: 40rem) and (min-height: 48rem) {
  :root { --lock-w: min(300px, 66vw); --shift: 28%; }
}
@media (min-width: 64rem) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  :root { --lock-w: min(400px, 52vw); --shift: 16%; }
}

.menu {
  position: fixed;
  inset: 5.5rem var(--space-md) auto;
  z-index: var(--z-modal);
  background: var(--ink-800);
  color: var(--text);
  border: var(--rule-hair) solid var(--ink-500);
  border-radius: 16px;
  padding: var(--space-lg);
  display: none;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 22rem;
  margin-inline-start: auto;
}
.menu.is-open { display: flex; }
.menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  white-space: nowrap;
}
.menu a:hover { color: var(--gold-300); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.45rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid transparent;
  transition:
    background-color var(--dur-short) var(--ease-out),
    border-color var(--dur-short) var(--ease-out),
    color var(--dur-short) var(--ease-out),
    transform 100ms var(--ease-out),
    box-shadow var(--dur-short) var(--ease-out);
}
.btn-a {
  background: var(--grad-gold);
  color: var(--color-accent-ink);
  box-shadow: 0 6px 26px rgba(253, 182, 2, 0.26);
}
.btn-a:hover {
  box-shadow: 0 10px 34px rgba(253, 182, 2, 0.38);
}
.btn-a:active { transform: translateY(1px); }
.btn-a:disabled,
.btn-a[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
}
.btn-b {
  color: var(--text);
  border-color: color-mix(in srgb, var(--text) 34%, transparent);
  background: rgba(10, 10, 10, 0.42);
  backdrop-filter: blur(6px);
}
.btn-b:hover {
  border-color: var(--gold-500);
  color: var(--gold-300);
}
.btn-b:active { transform: translateY(1px); }

@media (hover: hover) and (pointer: fine) {
  .btn-a:hover { transform: translateY(-1.5px); }
  .btn-b:hover { transform: translateY(-1.5px); }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--black) url("/assets/hero-poster-mobile.jpg") calc(50% + var(--plate-dx, 0px)) calc(50% + var(--plate-dy, 0px)) / cover;
  color: var(--text);
  padding-block: 6.5rem 5.5rem;
}
.stage {
  position: relative;
  z-index: 4;
  width: min(1120px, 90vw);
  max-width: 90vw;
  transform: translateY(var(--shift));
}
.plate {
  position: absolute;
  left: 0;
  top: -12%;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: 50% 50%;
  z-index: 0;
  transform: translate(var(--plate-dx, 0px), var(--plate-dy, 0px)) scale(calc(1.12 + 0.07 * var(--hold, 0)));
  transform-origin: 50% 54%;
  will-change: transform;
  filter:
    saturate(calc(0.44 + 0.56 * var(--lift)))
    brightness(calc(0.60 + 0.34 * var(--lift)))
    contrast(1.04);
}
.sky {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.meteor {
  position: absolute;
  height: 2px;
  width: var(--len, 72px);
  left: var(--x, 20%);
  top: var(--y, 12%);
  background: linear-gradient(90deg, rgba(255, 244, 214, 0), var(--gold-100) 35%, var(--gold-400));
  transform: rotate(var(--ang, -28deg));
  opacity: 0;
  animation: meteor-fly 900ms var(--ease-out) forwards;
  box-shadow: 0 0 8px rgba(253, 182, 2, 0.45);
}
@keyframes meteor-fly {
  0% { opacity: 0; transform: rotate(var(--ang, -28deg)) translateX(0); }
  18% { opacity: 0.95; }
  100% { opacity: 0; transform: rotate(var(--ang, -28deg)) translateX(160px); }
}
.scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(58% 46% at 50% 50%,
      rgba(253, 182, 2, calc(0.09 * var(--glow))) 0%, transparent 62%),
    radial-gradient(122% 92% at 50% 52%,
      transparent 30%, rgba(0, 0, 0, calc(0.40 + 0.22 * var(--lift))) 100%),
    linear-gradient(180deg,
      rgba(0, 0, 0, calc(0.40 + 0.40 * var(--lift))) 0%,
      rgba(0, 0, 0, calc(0.14 * var(--lift))) 36%, transparent 52%,
      rgba(0, 0, 0, calc(0.52 + 0.26 * var(--lift))) 100%);
}
.hero-dim {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: #000;
  opacity: calc(0.78 * var(--hero-dim, 0));
}

.lockup {
  position: relative;
  width: min(var(--lock-w), 72vw);
  margin: 0 auto;
  aspect-ratio: 2607 / 2892;
}
.lockup::before {
  content: "";
  position: absolute;
  inset: -22% -26% 4%;
  z-index: -1;
  background: radial-gradient(52% 46% at 50% 44%,
    rgba(0, 0, 0, calc(0.26 * var(--lift))) 0%, transparent 86%);
}
.lockup img {
  position: absolute;
  left: 0;
  width: 100%;
}
.mk {
  top: 0;
  height: 57.12%;
  transform: scale(var(--mark-scale));
  transform-origin: 46.8% 57.6%;
  filter:
    drop-shadow(0 0 calc(34px * var(--glow)) rgba(253, 182, 2, calc(0.55 * var(--glow))))
    drop-shadow(0 0 calc(90px * var(--glow)) rgba(253, 147, 2, calc(0.30 * var(--glow))));
  opacity: calc(0.52 + 0.48 * var(--lift));
}
.wd {
  bottom: 0;
  height: 42.88%;
  opacity: var(--word);
  transform: translateY(calc(10px * (1 - var(--word))));
}

.kicker {
  font-family: var(--font-outlier);
  font-size: clamp(1.5rem, 1.15rem + 2.1vw, 2.25rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.22;
  color: var(--gold-100);
  letter-spacing: 0.01em;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 2px 10px rgba(0, 0, 0, 0.7),
    0 0 22px rgba(0, 0, 0, 0.8);
  margin: 0 auto clamp(10px, 1.8vh, 22px);
  max-width: min(28rem, 94vw);
  padding-inline: var(--space-sm);
  text-wrap: balance;
  opacity: var(--head);
  transform: translateY(calc(12px * (1 - var(--head))));
}
@media (min-width: 40rem) {
  .kicker { max-width: 42rem; }
}
.hero-cta {
  margin-top: clamp(14px, 2.6vh, 30px);
  display: flex;
  justify-content: center;
  opacity: var(--tail);
  transform: translateY(calc(14px * (1 - var(--tail))));
}

@media (min-width: 40.01rem) {
  .hero {
    background: var(--black) url("/assets/hero-poster-night.jpg") 50% 46% / cover;
    padding-block: 5rem 4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .plate { display: none; }
  .hero { background: #1b1208 url("/assets/hero-poster.jpg") 50% 46% / cover; }
}

/* ---------- page sections ---------- */
.band {
  padding-block: var(--space-3xl) var(--space-2xl);
  background: var(--color-paper);
  color: var(--color-ink);
}
.band-tight { padding-block: var(--space-2xl); }
.band-ink {
  background: var(--ink-900);
  color: var(--text);
}
.band-raised {
  background: var(--ink-800);
  color: var(--text);
}
.band-offset {
  background: var(--ink-700);
  color: var(--text);
}
html[data-theme="light"] .band-ink,
html[data-theme="light"] .band-raised,
html[data-theme="light"] .band-offset {
  background: var(--color-paper);
  color: var(--color-ink);
}
html[data-theme="light"] .band-raised { background: var(--paper-2); }
html[data-theme="light"] .band-offset { background: var(--paper-2); }

.lede-block h1 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: var(--text-2xl);
  line-height: 1.06;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 var(--space-lg);
  max-width: 16ch;
  overflow-wrap: anywhere;
  min-width: 0;
}
.lede-block .lede {
  max-width: 62ch;
  margin: 0;
  color: var(--color-muted);
}
.lede-block .lede + .lede { margin-top: var(--space-md); }

/* proof strip */
.proof {
  display: grid;
  gap: var(--space-lg);
  padding-block: var(--space-xl);
  border-block: var(--rule-hair) solid var(--color-rule);
}
.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: var(--text-lg);
  color: var(--gold-500);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.06;
  margin-bottom: var(--space-2xs);
}
html[data-theme="light"] .proof-item strong { color: var(--gold-700); }
.proof-item p {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--text-sm);
  max-width: 32ch;
}
@media (min-width: 56.25rem) {
  .proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-xl);
  }
  .proof-item + .proof-item {
    border-inline-start: var(--rule-hair) solid var(--color-rule);
    padding-inline-start: var(--space-xl);
  }
}

/* what this is */
.split {
  display: grid;
  gap: var(--space-xl);
}
@media (min-width: 56.25rem) {
  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: var(--space-3xl); }
}
.split h2 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  font-size: var(--text-xl);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-lg);
  overflow-wrap: anywhere;
  min-width: 0;
}
.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-md);
}
.list li {
  position: relative;
  padding-inline-start: 1.35rem;
  color: var(--color-muted);
}
.list-yes li { color: var(--color-ink); }
html[data-theme="light"] .band-ink .list-yes li,
html[data-theme="light"] .list-yes li { color: var(--color-ink); }
.list-no li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 12px;
  height: 1px;
  background: var(--gold-600);
}
.list-yes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 12px;
  height: 12px;
  background:
    conic-gradient(from 45deg, var(--gold-400) 0 25%, transparent 0 50%, var(--gold-400) 0 75%, transparent 0),
    radial-gradient(circle at 50% 50%, var(--gold-200), var(--gold-600));
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

/* four stories */
.stories {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 40rem) {
  .stories { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.story {
  background: var(--ink-800);
  color: var(--text);
  border: 1px solid var(--ink-500);
  border-radius: var(--radius);
  padding: var(--space-lg);
  min-width: 0;
  transition:
    border-color var(--dur-short) var(--ease-out),
    transform var(--dur-short) var(--ease-out);
}
html[data-theme="light"] .story {
  background: var(--paper);
  color: var(--text-dark);
  border-color: var(--paper-3);
}
.story-num {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: var(--text-xl);
  color: var(--gold-500);
  line-height: 1.06;
  margin: 0 0 var(--space-sm);
}
html[data-theme="light"] .story-num { color: var(--gold-700); }
.story h3 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--text-lg);
  margin: 0 0 var(--space-xs);
  line-height: 1.2;
}
.story p {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--text-sm);
}
html[data-theme="light"] .story p { color: var(--text-dark-muted); }
@media (hover: hover) and (pointer: fine) {
  .story:hover {
    border-color: var(--gold-700);
    transform: translateY(-3px);
  }
}

.section-head {
  margin: 0 0 var(--space-xl);
  max-width: 28ch;
}
.section-head h2 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  font-size: var(--text-xl);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 0;
  overflow-wrap: anywhere;
  min-width: 0;
}

/* quote band */
.quote {
  position: relative;
  min-height: 42vh;
  display: grid;
  align-items: center;
  color: var(--text);
  overflow: hidden;
  isolation: isolate;
  padding-block: var(--space-3xl);
}
.quote img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.quote::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.55) 42%, rgba(0, 0, 0, 0.18) 100%);
}
.quote-inner {
  position: relative;
  z-index: 2;
  width: min(var(--wrap), calc(100% - 2 * var(--page-gutter)));
  margin-inline: auto;
}
.quote blockquote {
  margin: 0;
  max-width: 22em;
  font-family: var(--font-outlier);
  font-style: normal;
  font-weight: 600;
  font-size: var(--text-xl);
  line-height: 1.3;
  color: var(--gold-100);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  text-wrap: pretty;
}
.quote cite {
  display: block;
  margin-top: var(--space-md);
  font-style: normal;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-family: var(--font-body);
  font-weight: 700;
}

/* watch */
.watch-panel {
  border-top: 2px solid var(--gold-500);
  background: var(--ink-800);
  color: var(--text);
  padding: var(--space-xl);
  border-radius: 0 0 var(--radius) var(--radius);
  max-width: 62ch;
}
html[data-theme="light"] .watch-panel {
  background: var(--paper);
  color: var(--text-dark);
}
.watch-panel h2 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  font-size: var(--text-xl);
  line-height: 1.06;
  margin: 0 0 var(--space-md);
  overflow-wrap: anywhere;
  min-width: 0;
}
.watch-panel p {
  margin: 0 0 var(--space-md);
  color: var(--text-muted);
  max-width: 62ch;
}
html[data-theme="light"] .watch-panel p { color: var(--text-dark-muted); }
.watch-panel p:last-of-type { margin-bottom: var(--space-lg); }

/* meet tony */
.meet {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}
@media (min-width: 56.25rem) {
  .meet { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: var(--space-3xl); }
  .meet-photo { position: sticky; top: calc(var(--banner-height) + var(--space-md)); }
}
.meet-kicker {
  margin: 0 0 var(--space-xs);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
}
html[data-theme="light"] .meet-kicker { color: var(--gold-700); }
.meet h1 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  font-size: var(--text-2xl);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-lg);
  overflow-wrap: anywhere;
  min-width: 0;
}
.meet a {
  color: var(--gold-400);
  text-underline-offset: 3px;
}
html[data-theme="light"] .meet a { color: var(--gold-700); }
.meet a:hover { color: var(--gold-200); }
.meet p {
  margin: 0 0 var(--space-md);
  max-width: 62ch;
  color: var(--color-muted);
}
.meet-contact {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  margin-top: var(--space-lg);
}
.meet-contact a { white-space: nowrap; font-weight: 700; }
.meet-photo img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 1;
  object-fit: cover;
}
.facts {
  margin: var(--space-xl) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  max-width: 42ch;
}
.facts li {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: var(--space-md);
  padding-block: var(--space-sm);
  border-top: var(--rule-hair) solid var(--color-rule);
  font-size: var(--text-sm);
}
.facts strong {
  color: var(--gold-500);
  font-weight: 700;
}

/* projects + tools */
.projects {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-md);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 40rem) {
  .projects { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.projects li {
  min-width: 0;
  padding: var(--space-lg);
  border: 1px solid var(--color-rule);
  border-radius: var(--radius);
  background: var(--ink-800);
  color: var(--text);
}
html[data-theme="light"] .projects li {
  background: var(--paper);
  color: var(--text-dark);
}
.projects h3 {
  margin: 0 0 var(--space-2xs);
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: 1.2;
}
.projects h3 a {
  color: inherit;
  text-decoration: none;
}
.projects h3 a:hover { color: var(--gold-300); }
.project-url {
  margin: 0 0 var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gold-500);
}
html[data-theme="light"] .project-url { color: var(--gold-700); }
.projects p {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--text-sm);
  max-width: 42ch;
}
html[data-theme="light"] .projects p { color: var(--text-dark-muted); }

.tools {
  margin-top: var(--space-3xl);
}
.tools h2 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  font-size: var(--text-xl);
  line-height: 1.06;
  margin: 0 0 var(--space-md);
}
.tools ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-md);
}
.tools li {
  color: var(--color-muted);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tools li a {
  color: inherit;
  text-decoration: none;
}
.tools li a:hover { color: var(--gold-300); }
.tools li:not(:last-child)::after {
  content: "·";
  margin-inline-start: var(--space-md);
  color: var(--gold-600);
}
html[data-theme="light"] .facts strong { color: var(--gold-700); }
.facts span { color: var(--color-muted); }

/* timeline */
.rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-inline-start: 2px solid var(--color-rule);
}
.rail li {
  position: relative;
  padding: 0 0 var(--space-xl) var(--space-lg);
}
.rail li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
}
.rail time {
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  color: var(--gold-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: var(--text-lg);
  line-height: 1.06;
  font-variant-numeric: tabular-nums;
}
html[data-theme="light"] .rail time { color: var(--gold-700); }
.rail p {
  margin: var(--space-2xs) 0 0;
  color: var(--color-muted);
  max-width: 48ch;
}

/* subscribe close */
.close {
  background: var(--black);
  color: var(--text);
  padding-block: var(--space-4xl) var(--space-3xl);
  text-align: center;
  position: relative;
}
.close::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: var(--glow-gold);
  pointer-events: none;
  transform: scaleY(-1);
}
.close-inner { position: relative; }
.close h2 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  font-size: var(--text-xl);
  line-height: 1.06;
  margin: 0 auto var(--space-lg);
  max-width: 16ch;
  overflow-wrap: anywhere;
  min-width: 0;
}

/* footer Ft5 */
.foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--ink-800);
  color: var(--text);
  padding: var(--space-3xl) var(--page-gutter) var(--space-xl);
  text-align: center;
}
.foot-logo {
  display: flex;
  justify-content: center;
  width: min(36rem, 100%);
  margin: 0 auto var(--space-xl);
}
.foot-logo img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  transform: translateZ(0);
  filter:
    saturate(1.08)
    brightness(1.06)
    drop-shadow(0 0 18px rgba(253, 182, 2, 0.45))
    drop-shadow(0 0 40px rgba(253, 147, 2, 0.22));
}
.foot-meta {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-xs);
  width: min(40rem, 100%);
  padding-block-start: var(--space-md);
  border-top: var(--rule-hair) solid var(--ink-500);
}
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin: 0 0 var(--space-md);
}
.foot-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 700;
  white-space: nowrap;
}
.foot-links a:hover { color: var(--gold-300); }
.foot-id,
.foot-legal {
  margin: 0;
  color: var(--text-faint);
  font-size: var(--text-xs);
  font-weight: 500;
  line-height: 1.5;
}
.foot-legal { margin-top: var(--space-xs); }
.foot a,
.foot a:link,
.foot a:visited {
  color: var(--text-faint);
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
}
.foot a:hover,
.foot a:focus-visible {
  color: var(--gold-300);
}
.foot-id a { white-space: nowrap; }

/* 404 */
.page-404 {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: var(--space-3xl) var(--page-gutter);
  text-align: center;
}
.page-404 h1 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  font-size: var(--text-2xl);
  line-height: 1.06;
  margin: var(--space-lg) 0;
  overflow-wrap: anywhere;
}
.page-404 p {
  color: var(--color-muted);
  max-width: 36ch;
  margin: 0 auto var(--space-lg);
}

/* legal pages */
.legal {
  padding: 7.5rem var(--page-gutter) var(--space-3xl);
}
.legal-inner {
  width: min(42rem, 100%);
  margin-inline: auto;
}
.legal .meet-kicker { margin-bottom: var(--space-sm); }
.legal h1 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  font-size: var(--text-2xl);
  line-height: 1.06;
  margin: 0 0 var(--space-sm);
  overflow-wrap: anywhere;
}
.legal .legal-updated {
  margin: 0 0 var(--space-xl);
  color: var(--color-faint);
  font-size: var(--text-sm);
}
.legal h2 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  font-size: var(--text-lg);
  line-height: 1.15;
  margin: var(--space-xl) 0 var(--space-sm);
}
.legal p,
.legal li {
  color: var(--color-muted);
  max-width: 62ch;
}
.legal p { margin: 0 0 var(--space-md); }
.legal ul {
  margin: 0 0 var(--space-md);
  padding-inline-start: 1.2em;
}
.legal li { margin: 0 0 var(--space-xs); }
.legal a {
  color: var(--gold-400);
  text-underline-offset: 3px;
}
html[data-theme="light"] .legal a { color: var(--gold-700); }
.legal a:hover { color: var(--gold-200); }

@media (max-width: 23.75rem) {
  .lockup { width: 200px; }
  .kicker { max-width: 16rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .kicker,
  .wd,
  .hero-cta,
  .mk {
    opacity: 1 !important;
    transform: none !important;
    filter: none;
  }
  .mk { transform: none !important; opacity: 1 !important; }
  .meteor { display: none !important; }
  .plate { will-change: auto; }
  *, *::before, *::after {
    animation-duration: 150ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 150ms !important;
  }
}
