/* ============================================================
   IAF — Industrial AI Federation
   "Industrial Nocturne" — dark-dominant, engraved, atmospheric.
   Bedrock in the dark: heavy, calm, institutional.
   Shares a restraint vocabulary with gijo.capital; distinct mark
   and accent. Per DESIGN.md.
   ============================================================ */

/* -------------------------------------------------- Fonts (self-hosted) */
@font-face {
  font-family: 'Newsreader';
  font-style: normal; font-weight: 200 800; font-display: swap;
  src: url('../fonts/newsreader-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Newsreader';
  font-style: italic; font-weight: 200 800; font-display: swap;
  src: url('../fonts/newsreader-var-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal; font-weight: 100 700; font-display: swap;
  src: url('../fonts/ibm-plex-sans-var.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: italic; font-weight: 100 700; font-display: swap;
  src: url('../fonts/ibm-plex-sans-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/ibm-plex-mono-400.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal; font-weight: 500; font-display: swap;
  src: url('../fonts/ibm-plex-mono-500.woff2') format('woff2');
}

:root {
  /* Color — DESIGN.md §2. Dark-dominant, warm grounds, alternating by section. */
  --ink: #0c0a08;           /* deepest ground — warm near-black — hero, mission, programs, join */
  --twilight: #171310;      /* raised section ground — warm — members, value, convening, news */
  --ink-2: #110f0c;          /* card / cell background on --ink sections */
  --ink-2-raise: #1d1915;    /* card / cell background on --twilight sections */
  --ink-3: #161310;          /* card hover on --ink sections */
  --ink-3-raise: #241f1a;    /* card hover on --twilight sections */
  --ivory: #e8e4da;          /* primary text */
  --ivory-dim: rgba(232,228,218,.62);   /* body copy */
  --ivory-faint: rgba(232,228,218,.38); /* asides, metadata */

  --amber: #C9921A;          /* resting accent — muted antique gold (restrained) */
  --amber-bright: #E8A317;   /* hover/glow only — the bright industrial gold */
  --amber-dim: rgba(201,146,26,.75);
  --amber-faint: rgba(201,146,26,.4);

  --hairline: rgba(232,228,218,.14);
  --hairline-soft: rgba(232,228,218,.07);

  /* Retired tokens (kept for backward reference; do not use on new elements) */
  --molten-gradient: linear-gradient(135deg, #FFC65C 0%, #EFA71E 48%, #C07E05 100%);

  --maxw: 1280px;
  --measure: 62ch;
  --pad: clamp(1.4rem, 5vw, 2.5rem);
  --section-pad: clamp(4.75rem, 12vh, 6.5rem);
  color-scheme: dark;
}

/* -------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--ivory);
  font-family: 'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: var(--amber); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
input, select, textarea { font: inherit; }

::selection { background: var(--amber-bright); color: var(--ink); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* -------------------------------------------------- Atmosphere (grain + circuit) */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 50;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  animation: grain 9s steps(6) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-2%, 3%); }
  40% { transform: translate(3%, -2%); }
  60% { transform: translate(-3%, -3%); }
  80% { transform: translate(2%, 2%); }
}

.circuit {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(var(--hairline-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--hairline-soft) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, black 0%, transparent 75%);
}

/* -------------------------------------------------- Accent bar (retired, kept minimal) */
.accent-bar { height: 1px; background: var(--hairline); position: relative; z-index: 40; }

/* -------------------------------------------------- Type */
h1, h2 {
  font-family: 'Newsreader', Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 400;
  color: var(--ivory);
  margin: 0;
  letter-spacing: -0.005em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.9rem, 6.8vw, 5.2rem); line-height: 1.02; font-weight: 300; }
h2 { font-size: clamp(2rem, 3.9vw, 3rem); line-height: 1.08; }
h1 em, h2 em { font-style: italic; font-weight: 400; color: var(--amber); }
h3, h4 { font-family: 'IBM Plex Sans', sans-serif; font-weight: 500; line-height: 1.25; letter-spacing: -0.012em; margin: 0; color: var(--ivory); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; color: var(--ivory-dim); }
p:last-child { margin-bottom: 0; }

/* Kicker / label — mono uppercase. Adopted from gijo's .label pattern. */
.kicker {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  padding-left: .28em;
  color: var(--amber-dim);
  margin: 0 0 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .1em;
  flex-wrap: wrap;
}
.kicker--invert { color: var(--amber); }

.lede { font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.6; color: var(--ivory-dim); max-width: var(--measure); }
.section-lede { font-size: 1.05rem; color: var(--ivory-dim); max-width: 58ch; margin: 1rem 0 0; }
.lede-serif { font-family: 'Newsreader', Georgia, serif; font-weight: 400; font-size: 1.4rem; line-height: 1.5; color: var(--ivory); }

.dot {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: .55;
  margin: 0 .4em;
  vertical-align: middle;
}

/* Section header: index numeral + kicker + display title.
   The top rule draws in when the header reveals. */
.section-head {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.5rem;
  align-items: start;
  padding-top: 2.25rem;
  position: relative;
  margin-bottom: 2.75rem;
}
.section-head::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--hairline);
  transform: scaleX(0); transform-origin: left;
  transition: transform .9s cubic-bezier(.22,.61,.36,1) .1s;
}
.section-head.is-visible::before { transform: scaleX(1); }
.section-index {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .8rem;
  letter-spacing: .2em;
  color: var(--ivory-faint);
  margin: .35rem 0 0;
}
.section-index::after { content: " /"; opacity: .5; }
.section-head h2 { max-width: 24ch; }

/* -------------------------------------------------- Buttons (hairline-border CTAs) */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 1.05rem 2rem;
  border-radius: 2px;
  border: 1px solid var(--amber-dim);
  color: var(--amber);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background .4s ease, color .4s ease, letter-spacing .4s ease, border-color .4s ease;
}
.btn:hover {
  background: var(--amber-bright);
  color: var(--ink);
  letter-spacing: .26em;
  text-decoration: none;
  border-color: var(--amber-bright);
}
.btn--primary { border-color: var(--amber-dim); color: var(--amber); }
.btn--primary:hover { background: var(--amber-bright); color: var(--ink); border-color: var(--amber-bright); }
.btn--ghost { border-color: var(--hairline); color: var(--ivory-dim); }
.btn--ghost:hover { border-color: var(--amber-bright); color: var(--amber-bright); background: transparent; letter-spacing: .26em; }
.btn--sm { padding: .6rem 1.1rem; font-size: .68rem; }
.btn--lg { padding: 1.2rem 2.4rem; font-size: .82rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }

/* -------------------------------------------------- Mark */
.mark { width: 30px; height: 23px; color: var(--amber); flex: none; }
.mark--invert { color: var(--amber); }

/* -------------------------------------------------- Masthead */
.masthead {
  position: sticky; top: 0; z-index: 30;
  background: rgba(11,11,10,.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s ease;
}
.masthead.is-scrolled { border-bottom-color: var(--hairline-soft); }
.masthead__row { display: flex; align-items: center; gap: 1.5rem; padding-top: 1rem; padding-bottom: 1rem; }
.masthead__brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--ivory); text-decoration: none; }
.masthead__brand:hover { text-decoration: none; }
.masthead__wordmark { display: inline-flex; flex-direction: column; line-height: 1; }
.masthead__iaf { font-family: 'Newsreader', Georgia, serif; font-weight: 400; font-size: 1.35rem; letter-spacing: 0.25em; color: var(--ivory); }
.masthead__sub { font-family: 'IBM Plex Mono', monospace; font-size: .56rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ivory-faint); margin-top: 4px; }
.masthead__nav { display: flex; align-items: center; gap: 1.9rem; margin-left: auto; }
.masthead__nav > a {
  color: var(--ivory-dim); font-size: .72rem; font-weight: 500;
  font-family: 'IBM Plex Mono', monospace; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; transition: color .3s ease;
  position: relative; padding-bottom: 3px;
}
.masthead__nav > a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--amber-bright); transition: width .35s ease;
}
.masthead__nav > a:hover { color: var(--ivory); text-decoration: none; }
.masthead__nav > a:hover::after { width: 100%; }
.masthead__nav > a.btn { color: var(--amber); border-color: var(--amber-dim); padding: .6rem 1.1rem; font-size: .68rem; }
.masthead__nav > a.btn::after { display: none; }
.masthead__nav > a.btn:hover { background: var(--amber-bright); color: var(--ink); border-color: var(--amber-bright); }
.nav-toggle { display: none; background: none; border: 0; color: var(--ivory); font-family: 'IBM Plex Mono', monospace; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; margin-left: auto; padding: .4rem 0; }

/* -------------------------------------------------- Hero */
.hero { position: relative; overflow: hidden; background: var(--ink); }
.hero h1 { color: var(--ivory); }
.hero h1 em { color: var(--amber); }
.hero__grid-lines { display: none; } /* retired — the global .circuit grid replaces it */
.hero__glow {
  position: absolute; pointer-events: none;
  left: 50%; bottom: -32rem; transform: translateX(-50%);
  width: 110rem; height: 55rem; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(232,163,23,.12), rgba(201,146,26,.04) 52%, transparent 78%);
  animation: breathe 9s ease-in-out infinite;
  z-index: 1;
}
@keyframes breathe {
  0%, 100% { opacity: .7; }
  50% { opacity: 1; }
}
.hero__mark-watermark {
  position: absolute; right: -4rem; top: 8rem; width: 460px; height: 345px;
  color: var(--ivory); opacity: .035; pointer-events: none; z-index: 1;
}
.hero__mark-watermark svg { width: 100%; height: 100%; }

.hero__inner { position: relative; z-index: 2; padding-top: 6rem; padding-bottom: 4rem; }
.hero h1 { max-width: 18ch; margin: 0 0 1.75rem; }
.hero .lede { margin-bottom: 2.5rem; color: var(--ivory-dim); }

.hero__meta-band { position: relative; z-index: 2; padding-top: 2.75rem; padding-bottom: 2.75rem; }
.hero__meta {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline);
}
.hero__meta li { padding: 1.4rem 1.5rem 0 1.5rem; display: flex; flex-direction: column; border-right: 1px solid var(--hairline-soft); }
.hero__meta li:first-child { padding-left: 0; }
.hero__meta li:last-child { border-right: 0; }
.hero__meta strong { font-family: 'Newsreader', Georgia, serif; font-weight: 400; font-size: clamp(2.2rem, 3.6vw, 3rem); color: var(--ivory); line-height: 1; font-variant-numeric: tabular-nums lining-nums; font-optical-sizing: auto; }
.hero__meta span { font-family: 'IBM Plex Mono', monospace; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ivory-faint); margin-top: .7rem; max-width: 18ch; line-height: 1.6; }

.hero__ticker { border-top: 1px solid var(--hairline-soft); position: relative; z-index: 2; }
.hero__ticker-row {
  display: flex; flex-wrap: wrap; gap: .5rem 2.75rem;
  padding-top: 1rem; padding-bottom: 1rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .66rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ivory-faint);
}
.hero__ticker-note { margin-left: auto; color: var(--amber-dim); }

/* -------------------------------------------------- Members (logo wall) */
.members { background: var(--twilight); padding: var(--section-pad) 0; border-top: 1px solid var(--hairline-soft); }
.logo-wall {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--hairline-soft); border-width: 1px 0 0 1px;
  background: var(--hairline-soft);
  gap: 1px;
}
.logo-wall li { background: var(--ink-2-raise); border: 1px solid var(--hairline-soft); border-width: 0 1px 1px 0; }
.logo-wall a { display: flex; align-items: center; justify-content: center; height: 128px; padding: 1.9rem; transition: background .4s ease; }
.logo-wall a:hover { background: var(--ink-3-raise); text-decoration: none; }
.logo-wall img {
  max-height: 40px; max-width: 70%; width: auto;
  filter: grayscale(1) brightness(.85);
  opacity: .7;
  transition: filter .4s ease, opacity .4s ease;
}
.logo-wall a:hover img { filter: grayscale(1) brightness(1); opacity: 1; }
.members__note { margin-top: 1.75rem; font-family: 'IBM Plex Mono', monospace; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ivory-faint); }
.members__note a { color: var(--amber-dim); }

/* -------------------------------------------------- Mission */
.mission { background: var(--ink); padding: var(--section-pad) 0; border-top: 1px solid var(--hairline-soft); }
.mission__grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 4rem; align-items: start; }
.mission__body p { font-family: 'Newsreader', Georgia, serif; font-weight: 400; font-size: 1.1rem; line-height: 1.72; color: var(--ivory); max-width: var(--measure); }
.mission__body p + p { margin-top: 1.2rem; }
.mission__body .lede-serif { font-size: 1.4rem; line-height: 1.5; }
.mission__body em { font-style: italic; color: var(--amber); }
.mission__quote { position: sticky; top: 7rem; }
.pullquote {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  line-height: 1.3;
  color: var(--ivory);
  border-top: 1px solid var(--hairline);
  padding: 1.5rem 0 0;
  margin: 0;
  position: relative;
}
.pullquote::after { content:""; position:absolute; top: 4px; left: 0; right: 0; height: 1px; background: var(--amber-dim); }
.pullquote em { font-style: italic; color: var(--amber); }

/* Blueprint plates — on dark, faint technical drawings */
.plate-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 3.25rem; }
.plate { margin: 0; border: 1px solid var(--hairline); background: var(--ink-2); }
.plate img { width: 100%; height: auto; display: block; filter: invert(1) hue-rotate(180deg) brightness(.9) opacity(.5); }
.plate figcaption {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .62rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ivory);
  padding: .7rem .9rem .75rem;
  border-top: 1px solid var(--hairline-soft);
  display: flex; flex-direction: column; gap: .3rem;
  line-height: 1.3;
}
.plate__cap {
  font-weight: 400;
  color: var(--ivory-faint);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* -------------------------------------------------- Value (ledger) */
.value { background: var(--twilight); padding: var(--section-pad) 0; border-top: 1px solid var(--hairline-soft); }
.value-ledger { border-top: 1px solid var(--hairline); }
.value-row {
  display: grid; grid-template-columns: 9rem 1fr;
  gap: 2rem; align-items: start;
  padding: 2.1rem 0;
  border-bottom: 1px solid var(--hairline-soft);
  position: relative;
}
.value-row::before {
  content:""; position:absolute; left:0; top:-1px; height:1px; width: 0;
  background: var(--amber-bright);
  transition: width .45s ease;
}
.value-row:hover::before { width: 100%; }
.value-row__num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem); font-weight: 400;
  color: var(--ivory-faint); line-height: 1;
  padding-top: .2rem;
}
.value-row__body { max-width: 68ch; }
.value-row__body h3 { font-size: 1.35rem; margin-bottom: .6rem; color: var(--ivory); }
.value-row__body p { font-size: 1rem; color: var(--ivory-dim); line-height: 1.6; }
.value-row__status {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--amber-dim);
  border: 1px solid var(--amber-faint); border-radius: 2px;
  padding: .4rem .7rem; margin-top: 1rem;
}
.value__cta { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 2.5rem; }
.value__cta-note { font-size: .88rem; color: var(--ivory-faint); }

/* -------------------------------------------------- Programs (cards) */
.programs { background: var(--ink); padding: 1rem 0 var(--section-pad); border-top: 1px solid var(--hairline-soft); }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline-soft); border: 1px solid var(--hairline-soft); }
.program-card {
  background: var(--ink-2);
  padding: 2rem 1.9rem 1.8rem;
  display: flex; flex-direction: column;
  position: relative;
  transition: background .4s ease;
}
.program-card::before { display: none; } /* retired molten top-rule */
.program-card:hover { background: var(--ink-3); }
.program-card__kicker { font-family: 'IBM Plex Mono', monospace; font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--amber-dim); margin: 0 0 1.4rem; }
.program-card h3 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 400; font-size: 2.2rem; letter-spacing: -0.005em;
  color: var(--ivory); margin-bottom: 1rem;
  display: flex; flex-direction: column; gap: .45rem;
}
.program-card__expand { font-family: 'IBM Plex Mono', monospace; font-size: .66rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--ivory-faint); }
.program-card p { color: var(--ivory-dim); font-size: .96rem; line-height: 1.6; }
.program-card__meta { font-family: 'IBM Plex Mono', monospace; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ivory-faint); margin-top: auto; padding-top: 1.4rem; }
.program-card__link { color: var(--amber); font-weight: 500; font-size: .9rem; margin-top: .9rem; text-decoration: none; display: inline-flex; gap: .4rem; align-items: center; }
.program-card__link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* -------------------------------------------------- Convening */
.convening { background: var(--twilight); padding: var(--section-pad) 0; border-top: 1px solid var(--hairline-soft); }
.convene-list { border-top: 1px solid var(--hairline); }
.convene-row {
  display: grid;
  grid-template-columns: 7rem 1.1fr 1.4fr 3rem;
  gap: 2.5rem; align-items: center;
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--hairline-soft);
}
.convene-row__year { font-family: 'IBM Plex Mono', monospace; font-size: .85rem; letter-spacing: .18em; color: var(--ivory-faint); margin: 0; }
.convene-row__place h3 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 400; font-size: clamp(2.2rem, 4vw, 3.3rem); line-height: 1;
  color: var(--ivory); letter-spacing: -0.005em;
}
.convene-row__coords { font-family: 'IBM Plex Mono', monospace; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ivory-faint); margin: .75rem 0 0; }
.convene-row__event { font-family: 'IBM Plex Mono', monospace; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--amber-dim); margin: 0 0 .55rem; }
.convene-row__body > p:last-child { color: var(--ivory-dim); font-size: .96rem; max-width: 46ch; margin: 0; }
.convene-row__link {
  font-size: 1.5rem; color: var(--ivory-faint); text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border: 1px solid var(--hairline); border-radius: 50%;
  transition: color .3s ease, border-color .3s ease, transform .3s ease;
  justify-self: end;
}
.convene-row__link:hover { color: var(--amber-bright); border-color: var(--amber-bright); transform: translateX(3px); text-decoration: none; }
.convene-row--next .convene-row__year { color: var(--amber-dim); }
.convene-row--next .convene-row__year::after { content: " · NEXT"; letter-spacing: .18em; }

/* -------------------------------------------------- Film */
.film-band { background: var(--twilight); padding: var(--section-pad) 0 1rem; border-top: 1px solid var(--hairline-soft); }
.film-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--hairline-soft); border: 1px solid var(--hairline-soft); }
.film { margin: 0; background: var(--ink-2-raise); }
.film__frame {
  position: relative; display: block;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  overflow: hidden;
}
.film__frame img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) brightness(.7) contrast(1.05);
  opacity: .85;
  transition: filter .4s ease, opacity .4s ease, transform .4s ease;
}
.film__frame:hover img { filter: grayscale(1) brightness(.9) contrast(1.05); opacity: 1; transform: scale(1.015); }
.film__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: transparent;
  border: 1px solid var(--amber-dim);
  transition: background .3s ease, transform .3s ease, border-color .3s ease;
}
.film__play::after {
  content: ""; position: absolute; left: 55%; top: 50%; transform: translate(-50%, -50%);
  border-style: solid; border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--amber);
}
.film__frame:hover .film__play { background: var(--amber-bright); transform: translate(-50%, -50%) scale(1.08); border-color: var(--amber-bright); }
.film__frame:hover .film__play::after { border-color: transparent transparent transparent var(--ink); }
.film__embed { position: relative; aspect-ratio: 16 / 9; background: var(--ink); }
.film__embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.film figcaption {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ivory-dim);
  padding: .75rem .9rem;
  border-top: 1px solid var(--hairline-soft);
  display: flex; align-items: center;
}

/* -------------------------------------------------- News */
.news { background: var(--twilight); padding: var(--section-pad) 0; border-top: 1px solid var(--hairline-soft); }
.news-list { border-top: 1px solid var(--hairline); }
.news-item { display: grid; grid-template-columns: 9rem 1fr auto; gap: 2rem; align-items: baseline; padding: 1.6rem 0; border-bottom: 1px solid var(--hairline-soft); }
.news-item__date { font-family: 'IBM Plex Mono', monospace; font-size: .8rem; letter-spacing: .16em; color: var(--amber-dim); }
.news-item__body h4 { font-size: 1.1rem; margin-bottom: .35rem; font-weight: 500; color: var(--ivory); font-family: 'IBM Plex Sans', sans-serif; }
.news-item__body h4 a { color: var(--ivory); }
.news-item__body h4 a:hover { color: var(--amber-bright); }
.news-item__meta { font-size: .85rem; color: var(--ivory-faint); }
.news-item__link { color: var(--amber); font-size: 1.2rem; text-decoration: none; padding-left: 1rem; }
.news-item__link:hover { text-decoration: underline; }
.news-item--placeholder .news-item__body h4 { color: var(--ivory-faint); font-weight: 400; }

/* -------------------------------------------------- Join */
.join { background: var(--ink); padding: var(--section-pad) 0; position: relative; overflow: hidden; border-top: 1px solid var(--hairline-soft); }
.join__glow {
  position: absolute; pointer-events: none;
  left: 50%; top: -30rem; transform: translateX(-50%);
  width: 100rem; height: 55rem; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(232,163,23,.10), rgba(201,146,26,.03) 55%, transparent 80%);
  animation: breathe 9s ease-in-out infinite;
}
.join__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 1fr; gap: 4rem; align-items: start; }
.join h2 { color: var(--ivory); max-width: 16ch; }
.join h2 em { color: var(--amber); }
.join__mark { width: 56px; height: 42px; color: var(--amber); margin-bottom: 1.75rem; }
.join__lede { font-size: 1.08rem; color: var(--ivory-dim); max-width: 52ch; margin: 1.25rem 0 1.75rem; }
.join__contact { color: var(--ivory-dim); font-size: .95rem; margin: 0 0 1rem; }
.join__contact a { color: var(--amber); }
.join__fineprint { font-family: 'IBM Plex Mono', monospace; font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ivory-faint); line-height: 1.7; margin: 0; }

.inquiry {
  background: var(--ink-2);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  padding: 2rem 1.9rem;
  display: flex; flex-direction: column; gap: 1.15rem;
}
.inquiry__field { display: flex; flex-direction: column; gap: .45rem; }
.inquiry__field label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .66rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ivory-dim);
}
.inquiry__optional { color: var(--ivory-faint); letter-spacing: .1em; }
.inquiry__field input,
.inquiry__field select,
.inquiry__field textarea {
  background: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  color: var(--ivory);
  padding: .7rem .85rem;
  font-size: .95rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.inquiry__field textarea { resize: vertical; min-height: 5.5rem; }
.inquiry__field input:focus,
.inquiry__field select:focus,
.inquiry__field textarea:focus {
  outline: none;
  border-color: var(--amber-bright);
  box-shadow: 0 0 0 3px rgba(232,163,23,.15);
}
.inquiry__submit { margin-top: .35rem; }
.inquiry__submit:disabled { cursor: wait; opacity: .7; }
.inquiry__note { font-family: 'IBM Plex Mono', monospace; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ivory-faint); line-height: 1.7; margin: 0; }
.inquiry__note[data-state="success"] { color: var(--amber); }
.inquiry__note[data-state="error"] { color: #FFB3A8; }

/* ============================================================
   §11 — MOTION, ONE NOTCH LOUDER (see DESIGN.md §11 for the full
   audit trail). Four signature moments + a supporting cast. Every
   motion here is transform / opacity / clip-path / SVG stroke only —
   never a layout property — so there is zero layout shift 320px→4k.
   Every motion has a reduced-motion + no-JS floor that renders it in
   its final resting state, so a headless reduced-motion render is
   pixel-equivalent to a no-JS render. Calm-and-expensive remains the
   resting state; when something moves, it moves slow, heavy, earned.
   ============================================================ */

/* ----- Signature #1: the federation mark assembles itself on load.
   The lintel is already seated; the three pillars rise from below
   staggered (0/180/360ms), heavy ease-out 900ms. As each pillar seats,
   its 1px amber-bright weld hairline flares once along the top seam,
   then dims to nothing — the joint where three independent pillars
   lock into one shared lintel. Performed once; the mark is inert
   afterwards. Applied to BOTH the masthead mark and the hero ghost
   watermark (the ghost assembles slower, behind the hero copy).
   No-JS / reduced-motion → fully assembled at rest (see <noscript> and
   the reduced-motion block at the bottom of this file). */
.mark--assemble, .mark--ghost { display: block; }
.mark--assemble .mark__lintel,
.mark--ghost .mark__lintel { transform-origin: 50% 100%; }
.mark--assemble .mark__pillar,
.mark--ghost .mark__pillar { transform-origin: 50% 100%; }
.mark--assemble .mark__pillar--i { animation: iaf-pillar-rise 900ms cubic-bezier(.16,1,.3,1) 0ms both; }
.mark--assemble .mark__pillar--a { animation: iaf-pillar-rise 900ms cubic-bezier(.16,1,.3,1) 180ms both; }
.mark--assemble .mark__pillar--f { animation: iaf-pillar-rise 900ms cubic-bezier(.16,1,.3,1) 360ms both; }
.mark--assemble .mark__lintel    { animation: iaf-lintel-seat 700ms cubic-bezier(.16,1,.3,1) 0ms both; }
.mark--assemble .mark__weld--i   { animation: iaf-weld-flash 700ms cubic-bezier(.16,1,.3,1) 760ms both; }
.mark--assemble .mark__weld--a   { animation: iaf-weld-flash 700ms cubic-bezier(.16,1,.3,1) 940ms both; }
.mark--assemble .mark__weld--f   { animation: iaf-weld-flash 700ms cubic-bezier(.16,1,.3,1) 1120ms both; }
@keyframes iaf-pillar-rise {
  0%   { opacity: 0; transform: translateY(60%) scaleY(.6); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0) scaleY(1); }
}
@keyframes iaf-lintel-seat {
  0%   { opacity: 0; transform: scaleX(.4); }
  100% { opacity: 1; transform: scaleX(1); }
}
@keyframes iaf-weld-flash {
  0%, 100% { opacity: 0; }
  18%      { opacity: 1; }
  55%      { opacity: .35; }
}
/* Hero ghost watermark — same federation act, larger + slower, behind copy.
   The ghost already renders at ~3.5% opacity (DESIGN.md §4); the assembly
   lifts it briefly during load only, settling back to outline atmosphere. */
.mark--ghost .mark__pillar--i { animation: iaf-pillar-rise 1500ms cubic-bezier(.16,1,.3,1) 200ms both; }
.mark--ghost .mark__pillar--a { animation: iaf-pillar-rise 1500ms cubic-bezier(.16,1,.3,1) 440ms both; }
.mark--ghost .mark__pillar--f { animation: iaf-pillar-rise 1500ms cubic-bezier(.16,1,.3,1) 680ms both; }
.mark--ghost .mark__lintel    { animation: iaf-lintel-seat 1100ms cubic-bezier(.16,1,.3,1) 200ms both; }
.mark--ghost .mark__weld--i   { animation: iaf-weld-flash 900ms cubic-bezier(.16,1,.3,1) 1240ms both; }
.mark--ghost .mark__weld--a   { animation: iaf-weld-flash 900ms cubic-bezier(.16,1,.3,1) 1480ms both; }
.mark--ghost .mark__weld--f   { animation: iaf-weld-flash 900ms cubic-bezier(.16,1,.3,1) 1720ms both; }

/* ----- Signature #2: the dark industrial field is a scroll-driven
   substrate. The full-viewport canvas lives at z-0 behind content,
   pointer-events:none, with explicit sizing — zero layout shift.
   A faint warm monochrome mote field drifts upward (drawn by site.js,
   Canvas 2D tier — works everywhere; skipped under reduced-motion /
   Save-Data / no-JS). The existing .circuit grid + .grain stay exactly
   where they are. The canvas uses 'screen' blend so motes only ADD
   light against the dark ground — never paint a new color ramp. */
.substrate {
  position: fixed; inset: 0;
  width: 100vw; height: 100vh;
  pointer-events: none; z-index: 0;
  opacity: 0; /* revealed by site.js once the field is ready, to avoid
                 a flash of empty canvas before the first frame paints */
  mix-blend-mode: screen;
  transition: opacity 900ms ease;
}
.substrate.is-ready { opacity: 1; }

/* ----- Signature #3: the hero <em> ignites — amber light, earned once.
   A left→right sweep of bright amber travels across the italic glyphs
   once, at the end of the hero cascade, then settles to resting
   --amber. The travelling light is a clip-masked fill sweep over the
   existing amber color (not a new painted gradient), so DESIGN.md §2's
   "no new gradients" is held. ::before carries the bright sweep;
   ::after carries a brief heat-shimmer fade. Fires exactly once
   (~700ms after load). */
.hero h1 em[data-ignite] {
  position: relative;
  display: inline-block;
  color: var(--amber);
  -webkit-text-fill-color: var(--amber); /* hold resting color under the sweep */
}
.hero h1 em[data-ignite]::before {
  content: attr(data-text);
  position: absolute; inset: 0;
  color: var(--amber-bright);
  -webkit-text-fill-color: var(--amber-bright);
  background: linear-gradient(90deg,
    rgba(232,163,23,0) 0%,
    rgba(232,163,23,.0) 38%,
    var(--amber-bright) 50%,
    rgba(232,163,23,.0) 62%,
    rgba(232,163,23,0) 100%);
  background-size: 280% 100%;
  background-position: 130% 0;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
  opacity: 0;
}
.hero h1 em[data-ignite]::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: .04em; height: .92em;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232,163,23,.22), transparent 70%);
  opacity: 0; pointer-events: none;
  mix-blend-mode: screen;
}
.hero h1 em[data-ignite].is-igniting::before {
  opacity: 1;
  animation: iaf-em-sweep 1100ms cubic-bezier(.4,0,.2,1) forwards;
}
.hero h1 em[data-ignite].is-igniting::after {
  animation: iaf-em-halo 1100ms cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes iaf-em-sweep {
  0%   { background-position: 130% 0; opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { background-position: -30% 0; opacity: 0; }
}
@keyframes iaf-em-halo {
  0%, 100% { opacity: 0; }
  45%, 65% { opacity: 1; }
}

/* ----- Signature #4: the federation's path draws itself.
   The convening world plate sits behind the rows at z-0; the two
   great-circle arcs (Stanford→Ha Noi, Ha Noi→Tokyo) stroke-dashdraw
   in sequence when the section scrolls into view, with a small amber
   marker dot travelling each active arc; the Tokyo "NEXT" node pulses
   once on arrival. The resting amber-dim arcs stay visible under
   reduced-motion / no-JS; the bright drawn arcs and travelling dots
   are hidden until activated. Today's convening rows are untouched. */
.convene-map {
  position: absolute; inset: 0 0 auto 0; height: 100%;
  pointer-events: none; z-index: 0;
  opacity: .55;
}
.convene-map__svg { width: 100%; height: 100%; display: block; }
.convene-map__sea { fill: transparent; }
.convene-map__grid line { stroke: var(--hairline-soft); stroke-width: 1; }
.convene-map__land path {
  fill: none;
  stroke: var(--hairline);
  stroke-width: 1;
  stroke-linejoin: round;
}
.convene-map__arc { fill: none; stroke-linecap: round; }
.convene-map__arc--rest { stroke: var(--amber-dim); stroke-width: 1.4; opacity: .5; }
.convene-map__arc--draw {
  stroke: var(--amber-bright);
  stroke-width: 1.8;
  opacity: 0; /* shown by .is-drawing once the section enters view */
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.convene-map.is-drawing .convene-map__arc--draw { opacity: 1; }
.convene-map__travel {
  fill: var(--amber-bright);
  opacity: 0;
}
.convene-map.is-drawing .convene-map__travel { opacity: 1; }
.convene-map__node-dot { fill: var(--amber); }
.convene-map__node-ring { fill: none; stroke: var(--amber-dim); stroke-width: 1; opacity: .55; }
.convene-map__node-pulse {
  fill: none; stroke: var(--amber-bright); stroke-width: 1.4;
  transform-box: fill-box; transform-origin: center;
  opacity: 0;
}
.convene-map.is-drawing .convene-map__node--tokyo .convene-map__node-pulse {
  animation: iaf-tokyo-pulse 1200ms cubic-bezier(.16,1,.3,1) 2700ms both;
}
@keyframes iaf-tokyo-pulse {
  0%   { opacity: 0; transform: scale(.4); }
  30%  { opacity: .9; }
  100% { opacity: 0; transform: scale(3.4); }
}
/* Push the rows above the plate. */
.convening .wrap { position: relative; z-index: 1; }

/* ----- Supporting cast: reading-progress hairline (top of viewport).
   One continuous thread of scarce light, scaleX 0→1 across scroll.
   Updated by site.js; under reduced-motion / no-JS it is display:none
   (see <noscript> + reduced-motion block) so it never shows stuck. */
.reading-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 1px; z-index: 60;
  pointer-events: none;
  background: transparent;
}
.reading-progress__bar {
  display: block; height: 100%; width: 100%;
  background: var(--amber-dim);
  transform: scaleX(0); transform-origin: left;
  transform-box: view-box;
}

/* ----- Supporting cast: member-wall wave.
   On .is-visible, cells brighten in a left→right staggered wave
   (animation-delay by --i). "What no member can do alone, done once,
   for all members" as collective motion. Resting state unchanged;
   today's per-hover brighten still wins on direct hover. */
.logo-wall li {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.logo-wall.is-visible li { opacity: 1; transform: translateY(0); }

/* ----- Supporting cast: active-section nav indicator.
   The masthead nav link for the section currently in view grows its
   existing amber underline to 100% (extends the current ::after grow).
   Driven by IntersectionObserver in site.js. */
.masthead__nav > a[data-active] { color: var(--ivory); }
.masthead__nav > a[data-active]::after { width: 100%; }

/* ----- Supporting cast: magnetic primary CTAs.
   On fine-pointer devices only, [data-magnetic] elements drift toward
   the cursor (set via --mx/--my custom properties by site.js), springing
   back on leave. Off on touch (pointer: coarse). */
@media (pointer: fine) {
  [data-magnetic] {
    will-change: transform;
    transform: translate3d(var(--mx, 0), var(--my, 0), 0);
    transition: transform .35s cubic-bezier(.18,.9,.32,1);
  }
  [data-magnetic]:hover { transition: transform .12s cubic-bezier(.18,.9,.32,1); }
}

/* -------------------------------------------------- Footer */
.footer { background: var(--ink); color: var(--ivory-faint); border-top: 1px solid var(--hairline-soft); padding: 3.5rem 0 1.75rem; }
.footer__row { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer__mark { display: inline-flex; align-items: center; gap: .7rem; color: var(--ivory); text-decoration: none; margin-bottom: 1rem; }
.footer__mark:hover { text-decoration: none; }
.footer__word { font-family: 'Newsreader', Georgia, serif; font-weight: 400; color: var(--ivory); font-size: 1.15rem; letter-spacing: 0.2em; display: inline-flex; align-items: baseline; gap: .6rem; }
.footer__word-sub { font-family: 'IBM Plex Mono', monospace; font-weight: 400; font-size: .56rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ivory-faint); }
.footer__tagline { font-size: .9rem; color: var(--ivory-faint); max-width: 32ch; }
.footer__nav { display: flex; flex-direction: column; gap: .6rem; }
.footer__nav a, .footer__allies a { color: var(--ivory-dim); font-size: .92rem; text-decoration: none; transition: color .3s ease; }
.footer__nav a:hover, .footer__allies a:hover { color: var(--amber-bright); }
.footer__allies { display: flex; flex-direction: column; gap: .55rem; }
.footer__label { font-family: 'IBM Plex Mono', monospace; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ivory-faint); margin: 0 0 .5rem; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--hairline-soft);
  padding-top: 1.4rem;
  font-family: 'IBM Plex Mono', monospace; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ivory-faint);
}
.footer__bottom p { margin: 0; }

/* -------------------------------------------------- Reveal on scroll */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 1s cubic-bezier(0.16,1,0.3,1), transform 1s cubic-bezier(0.16,1,0.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* -------------------------------------------------- Responsive */
@media (max-width: 1024px) {
  .convene-row { grid-template-columns: 5rem 1fr 3rem; }
  .convene-row__body { grid-column: 2; }
  .convene-row__link { grid-column: 3; grid-row: 1; }
  .program-grid { grid-template-columns: 1fr; }
  .plate-grid { grid-template-columns: repeat(2, 1fr); }
  .join__grid { grid-template-columns: 1fr; gap: 2.75rem; }
}

@media (max-width: 900px) {
  .wrap { padding: 0 1.4rem; }
  body { font-size: 16px; }

  .masthead__nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(11,11,10,.96); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); flex-direction: column; align-items: stretch; gap: 0; padding: 0 0 .5rem; border-bottom: 1px solid var(--hairline); }
  .masthead__nav.is-open { display: flex; }
  .masthead__nav > a { padding: 1rem 1.4rem; border-bottom: 1px solid var(--hairline-soft); }
  .masthead__nav > a::after { display: none; }
  .masthead__nav > .btn { margin: 1rem 1.4rem 0; }
  .nav-toggle { display: block; }

  .hero__inner { padding-top: 4rem; padding-bottom: 2.75rem; }
  .hero__meta { grid-template-columns: repeat(2, 1fr); }
  .hero__meta li { border-right: 0; padding-left: 0; padding-right: 0; }
  .hero__mark-watermark { display: none; }
  .hero__ticker-note { margin-left: 0; }

  .section-head { grid-template-columns: 1fr; gap: .75rem; margin-bottom: 2.25rem; }
  .section-index { margin-top: 0; }

  .members, .mission, .value, .convening, .news { padding: 3.75rem 0; }
  .film-band { padding: 3.75rem 0 .5rem; }
  .film-grid { grid-template-columns: 1fr; }
  .programs { padding: .5rem 0 3.75rem; }
  .join { padding: 4.5rem 0; }

  .logo-wall { grid-template-columns: repeat(2, 1fr); }
  .logo-wall a { height: 104px; padding: 1.4rem; }

  .mission__grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .mission__quote { position: static; }
  .plate-grid { gap: 1rem; margin-top: 2.5rem; }

  .value-row { grid-template-columns: 1fr; gap: .9rem; padding: 1.8rem 0; }
  .value-row__num { font-size: 1.3rem; }

  .convene-row { grid-template-columns: 1fr; gap: 1.1rem; padding: 2rem 0; }
  .convene-row__body { grid-column: 1; }
  .convene-row__link { display: none; }

  .news-item { grid-template-columns: 1fr; gap: .5rem; }
  .news-item__link { display: none; }
  .footer__row { grid-template-columns: 1fr; gap: 2.25rem; }
  .footer__bottom { flex-direction: column; gap: .5rem; align-items: flex-start; }
}

@media (max-width: 480px) {
  .logo-wall { grid-template-columns: 1fr; }
  .hero__meta { grid-template-columns: 1fr 1fr; }
  .btn-row .btn { width: 100%; }
  .plate-grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------- Reduced motion
   Per DESIGN.md §7 / §11 and the brief's NON-NEGOTIABLE (c): under
   prefers-reduced-motion: reduce, EVERY motion stops, every signature
   moment renders in its final resting state, the substrate field is
   not initialized, scroll is instant. A headless screenshot under
   reduced-motion must be pixel-equivalent to a no-JS render. The
   <noscript> block in index.html handles the no-JS side; this block
   handles the reduced-motion side. Together they are the build gate. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grain { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .section-head::before { transform: scaleX(1); transition: none; }
  .hero__glow, .join__glow { animation: none; }
  .btn, .program-card, .convene-row__link, .value-row::before { transition: none; }

  /* §11 — every signature moment settles to its final resting state. */
  .reading-progress, .substrate { display: none; }
  /* The hero ghost watermark is a load-time flourish (DESIGN.md §4: "pure
     atmosphere, not a focal point"). Under reduced-motion it has no job,
     so it is removed entirely — guaranteeing the reduced-motion render
     matches the no-JS render pixel-for-pixel. The masthead mark stays. */
  .hero__mark-watermark { display: none; }
  .mark--assemble .mark__lintel,
  .mark--assemble .mark__pillar { opacity: 1 !important; transform: none !important; animation: none !important; }
  .mark--assemble .mark__weld { opacity: 0 !important; animation: none !important; }
  .hero h1 em[data-ignite]::before,
  .hero h1 em[data-ignite]::after { opacity: 0 !important; animation: none !important; }
  .hero h1 em[data-ignite].is-igniting::before,
  .hero h1 em[data-ignite].is-igniting::after { opacity: 0 !important; animation: none !important; }
  .logo-wall li { opacity: 1 !important; transform: none !important; transition: none; }
  .convene-map__arc--draw, .convene-map__travel { display: none; }
  .convene-map__node--tokyo .convene-map__node-pulse { animation: none; opacity: 0; }
  .convene-map { opacity: .55; }
  [data-magnetic] { transform: none !important; transition: none; }
  .masthead__nav > a[data-active]::after { transition: none; }
}
