/* lab2/styles.css — blend-a (~70% play-lab x apple IA), decision #315.
   Promoted 2026-07-30 from lab2/index.html's inline block per the second-copy rule:
   this is the ONE shared sheet the homepage and all interior pages load.
   The previous file at this path was the orphaned full-apple pass (rejected 07-28,
   history at db6a410). url() paths resolve relative to THIS file, so they hold for
   pages in lab2/ and lab/ alike.
   Standing rules: type scale untouched (jfk 2026-07-30); red is chrome at <=3
   placements per page, ink text only (cream on --art-red is 3.44:1 and FAILS,
   decision #316); generated art is chrome, real artifacts fill evidence slots. */

@font-face {
  font-family: "Barlow Condensed";
  src: url("../lab/assets/fonts/barlow-condensed-latin-800-normal.woff2") format("woff2");
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("../lab/assets/fonts/barlow-condensed-latin-900-normal.woff2") format("woff2");
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("./assets/fonts/ibm-plex-mono-latin-400-normal.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("./assets/fonts/ibm-plex-mono-latin-600-normal.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}

:root {
  --paper: #F5F0E5;
  --paper-card: #F8F4E9;
  --ink: #151515;
  --muted: #675F53;
  --text-on-ink: #F5F5F7;
  --text-2-on-ink: #98989D;
  --blue: #1557D6;
  --blue-on-ink: #4D9FFF;
  --text-on-blue: #F8F4E9;
  --text-2-on-blue: #E3E9F5;
  --art-blue: #1557D6;
  --art-red: #E94B35;
  --art-yellow: #F3CF55;
  --hairline: rgba(21, 21, 21, 0.14);
  --hairline-on-ink: rgba(255, 255, 255, 0.14);
  --shell: 1080px;
  --edge: 22px;
  --measure: 660px;
  --nav-h: 48px;
  --s: 1;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: calc(17px * var(--s));
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- primitives ---------- */

.shell { max-width: var(--shell); margin-inline: auto; padding-inline: var(--edge); }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

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

[id] { scroll-margin-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 24px); }

.eyebrow {
  font-family: var(--mono);
  font-size: calc(12px * var(--s));
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 18px;
}

/* touch target extends past the text and arrow on both sides; the negative inline margins
   cancel the visual shift so the layout column stays put (jfk 2026-07-30) */
.link { display: inline-flex; align-items: center; gap: 8px; font-size: calc(17px * var(--s)); font-weight: 400; min-height: 48px; padding-inline: 10px 16px; margin-inline: -10px -16px; }
.link .icon-arrow { width: 16px; height: 16px; flex: 0 0 auto; transition: transform 0.25s ease; }
.link:hover .icon-arrow { transform: translateX(3px); }

/* filled blue CTA, play-lab pressable: ink border + offset shadow that collapses on press */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 52px; padding: 0 24px;
  background: var(--blue); color: var(--text-on-blue);
  border: 2px solid var(--ink); border-radius: 6px;
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--mono); font-size: calc(13px * var(--s)); font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover { text-decoration: none; transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--ink); }
.btn:active { transform: translate(5px, 5px); box-shadow: 0 0 0 var(--ink); }
.btn .icon-arrow { width: 16px; height: 16px; }

h1, h2, h3 { margin: 0; font-weight: 700; color: inherit; }

.deck { color: var(--muted); font-size: calc(clamp(18px, 1.6vw, 22px) * var(--s)); line-height: 1.45; max-width: var(--measure); margin: 0; }

.rise { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.rise.in { opacity: 1; transform: none; }

/* ---------- header: translucent cream, hard rule beneath ---------- */

.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(245, 240, 229, 0.72);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  backdrop-filter: saturate(160%) blur(20px);
  border-bottom: 2px solid var(--ink);
  padding-top: env(safe-area-inset-top, 0px);
}
.site-header .bar {
  max-width: var(--shell); margin-inline: auto; padding-inline: var(--edge);
  min-height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.wordmark { font-weight: 700; font-size: calc(15px * var(--s)); letter-spacing: 0.01em; color: var(--ink); }
.wordmark:hover { text-decoration: none; }
.site-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.site-nav a { font-family: var(--mono); font-size: calc(11px * var(--s)); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); padding: 8px 0; }
.site-nav a:hover { color: var(--blue); text-decoration: none; }
.site-nav a[aria-current="page"] { color: var(--blue); box-shadow: 0 2px 0 var(--blue); }

/* ---------- hero ---------- */

.hero { padding: clamp(64px, 9vw, 128px) 0 clamp(64px, 8vw, 112px); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr); gap: clamp(36px, 4vw, 64px); align-items: center; }
.hero h1 {
  font-family: var(--display);
  font-size: calc(clamp(48px, 7.5vw, 92px) * var(--s));
  line-height: 0.96;
  letter-spacing: -0.01em;
  font-weight: 900;
  text-transform: uppercase;
  overflow-wrap: break-word;
  margin: 0 0 20px;
}
/* the blue bar under the h1 */
.rule-blue { width: 96px; height: 12px; background: var(--blue); border: 2px solid var(--ink); border-radius: 2px; box-shadow: 3px 3px 0 var(--ink); margin: 0 0 30px; }
.hero .deck { margin-bottom: 36px; }

/* the tactile collage carries the hero; the label lives ON the artifact, like a specimen tag */
.hero-art { position: relative; margin: 0; background: var(--paper-card); border: 2px solid var(--ink); border-radius: 8px; box-shadow: 8px 8px 0 var(--ink); padding: 10px; }
.hero-art img { display: block; width: 100%; height: auto; border-radius: 3px; }
.art-tag {
  position: absolute; top: -15px; left: 20px; margin: 0;
  background: var(--art-red); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 3px;
  box-shadow: 3px 3px 0 var(--ink);
  padding: 5px 13px;
  font-family: var(--mono); font-size: calc(11px * var(--s)); font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  transform: rotate(-2.2deg);
  z-index: 1;
}

/* ---------- NOW status bar: the arcade and BrainOS receipts in one band ---------- */

.nowbar { background: var(--paper-card); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.nowbar .shell { position: relative; padding-block: 32px 28px; }
.now-tab {
  position: absolute; top: -16px; left: var(--edge); margin: 0;
  background: var(--art-red); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 3px;
  box-shadow: 3px 3px 0 var(--ink);
  padding: 4px 15px;
  font-family: var(--mono); font-size: calc(12px * var(--s)); font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  transform: rotate(-2deg);
}
.now-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px 28px; }
.now-list li { min-width: 0; font-family: var(--mono); font-size: calc(11.5px * var(--s)); line-height: 1.5; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); }
.now-list b { display: block; color: var(--ink); font-family: var(--display); font-size: calc(24px * var(--s)); font-weight: 800; letter-spacing: 0.005em; line-height: 1.05; margin-bottom: 6px; }

/* ---------- story sections ---------- */

.story { padding: clamp(72px, 9vw, 128px) 0; }
.story.paper-wash { background: var(--paper-card); }
.story-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 96px); align-items: center; }
.story h2, .story .story-h1 {
  font-family: var(--display);
  font-size: calc(clamp(34px, 4.8vw, 62px) * var(--s));
  line-height: 0.98;
  letter-spacing: -0.005em;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 22px;
  overflow-wrap: break-word;
}
.story p { max-width: var(--measure); color: var(--muted); margin: 0 0 16px; }
.story .link { margin-top: 12px; }

.story-visual { display: flex; justify-content: center; min-width: 0; }

/* arcade: the one full-bleed accent band, led by the play-lab blue */
.arcade-band { background: var(--blue); color: var(--text-on-blue); }
.arcade-band .eyebrow { color: var(--text-on-blue); }
.arcade-band p { color: var(--text-2-on-blue); }
.arcade-band a, .arcade-band .link { color: var(--text-on-blue); }
.arcade-band :focus-visible { outline-color: var(--text-on-blue); }
/* red chrome carries ink text ONLY (decision #316); outranks .arcade-band p on tags inside the blue band */
.arcade-band .art-tag { color: var(--ink); }
.arcade-frame {
  position: relative;
  background: var(--paper-card);
  border: 2px solid var(--ink); border-radius: 8px;
  box-shadow: 6px 6px 0 var(--ink);
  padding: 22px;
  display: flex; justify-content: center; min-width: 0;
}
.arcade-frame > img { display: block; width: min(100%, 280px); height: auto; }

/* the build loop, pinned as tiles. One red tile: red-as-chrome. */
.loop { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.loop li {
  background: var(--paper-card); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 4px;
  box-shadow: 3px 3px 0 var(--ink);
  padding: 7px 12px;
  font-family: var(--mono); font-size: calc(11.5px * var(--s)); font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.loop .loop-n { color: var(--muted); margin-right: 8px; }
.loop .loop-red { background: var(--art-red); }
.loop .loop-red .loop-n { color: var(--ink); }

/* mono receipts block (BrainOS) — calmest zone, no borders, no shadows */
.receipts {
  font-family: var(--mono); font-size: calc(12.5px * var(--s)); letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  padding: 18px 0; margin: 26px 0 8px; display: grid; gap: 8px; max-width: var(--measure);
}
.receipts b { color: var(--ink); font-weight: 600; }
.receipts .ok { color: var(--blue); }

.brain-lockup { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.brain-mark {
  width: 72px; height: 72px; flex: none; overflow: hidden;
  background: var(--paper-card);
  border: 2px solid var(--ink); border-radius: 12px;
  box-shadow: 4px 4px 0 var(--ink);
}
.brain-mark img { display: block; width: 100%; height: 100%; object-fit: cover; }
.brain-lockup strong { font-family: var(--display); font-size: calc(26px * var(--s)); font-weight: 800; letter-spacing: -0.005em; text-transform: uppercase; }

.dot-matrix { margin-top: 26px; }
.dot-matrix img { display: block; width: min(100%, 340px); height: auto; border: 2px solid var(--ink); border-radius: 4px; }

/* ---------- manifesto (ink section) ---------- */

.manifesto { background: var(--ink); color: var(--text-on-ink); padding: clamp(88px, 11vw, 152px) 0; text-align: center; }
.manifesto .eyebrow { color: var(--blue-on-ink); }
.manifesto h2 {
  font-family: var(--display);
  font-size: calc(clamp(36px, 5vw, 66px) * var(--s));
  letter-spacing: -0.005em;
  line-height: 0.96;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 auto 28px;
  max-width: 780px;
}
.manifesto .lead {
  color: var(--text-2-on-ink);
  font-size: calc(clamp(18px, 1.6vw, 22px) * var(--s));
  line-height: 1.45;
  max-width: 700px;
  margin: 0 auto 52px;
}
.creed { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(28px, 4vw, 56px); max-width: 880px; margin-inline: auto; text-align: left; }
.creed div { min-width: 0; }
.creed span { display: block; font-family: var(--mono); font-size: calc(12px * var(--s)); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-on-ink); margin-bottom: 10px; }
.creed p { margin: 0; color: var(--text-2-on-ink); font-size: calc(19px * var(--s)); line-height: 1.4; }
.creed p b { color: var(--text-on-ink); font-weight: 600; }

/* ---------- field notes (homepage list) ---------- */

.notes { padding: clamp(72px, 9vw, 128px) 0; }
.notes-head { max-width: var(--measure); margin-bottom: clamp(36px, 5vw, 64px); }
.notes-head h2 { font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: -0.005em; }
.notes-list { display: grid; }
.note-row { display: grid; grid-template-columns: 72px minmax(0, 1fr) 24px; gap: 24px; align-items: center; padding: 26px 0; border-top: 1px solid var(--hairline); color: var(--ink); }
.note-row:last-child { border-bottom: 1px solid var(--hairline); }
.note-row:hover { text-decoration: none; }
.note-row:hover h3 { color: var(--blue); }
.note-num { font-family: var(--mono); font-size: calc(12px * var(--s)); font-weight: 600; letter-spacing: 0.1em; color: var(--muted); }
.note-row h3 { font-size: calc(clamp(19px, 2vw, 24px) * var(--s)); font-weight: 600; letter-spacing: -0.01em; margin: 0 0 4px; }
.note-row p { margin: 0; color: var(--muted); font-size: calc(15px * var(--s)); max-width: var(--measure); }
.note-row .icon-arrow { width: 18px; height: 18px; color: var(--blue); }

/* ---------- applied ---------- */

.applied { text-align: center; }
.applied h2 { margin-inline: auto; }
.applied > .shell > p { margin-inline: auto; }
.proof-figure {
  font-family: var(--display); font-weight: 900;
  font-size: calc(clamp(48px, 7vw, 92px) * var(--s));
  letter-spacing: -0.01em; line-height: 1;
  margin: 36px 0 14px;
}
.proof-caption { color: var(--muted); max-width: 520px; margin: 0 auto 26px; }

/* ---------- footer ---------- */

footer { border-top: 1px solid var(--hairline); padding: 48px 0 calc(48px + env(safe-area-inset-bottom, 0px)); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px; align-items: start; }
.footer-brand strong { display: block; font-size: calc(14px * var(--s)); font-weight: 700; }
.footer-brand span { color: var(--muted); font-size: calc(13px * var(--s)); }
.footer-nav { display: flex; gap: 24px; justify-content: flex-end; flex-wrap: wrap; }
.footer-nav a { font-size: calc(14px * var(--s)); }
.fine-print { margin-top: 28px; color: var(--muted); font-size: calc(12px * var(--s)); max-width: var(--measure); }

/* ---------- interior pages (added at the extraction, 2026-07-30) ---------- */

/* page head: eyebrow + display h1 + blue rule + deck */
.page-head { padding: clamp(56px, 7vw, 96px) 0 clamp(36px, 5vw, 56px); }
.page-head .eyebrow { margin-bottom: 14px; }
.page-head h1 {
  font-family: var(--display);
  font-size: calc(clamp(40px, 6vw, 76px) * var(--s));
  line-height: 0.96; letter-spacing: -0.01em; font-weight: 900;
  text-transform: uppercase; overflow-wrap: break-word;
  margin: 0 0 20px; max-width: 900px;
}
.listing { padding-bottom: clamp(64px, 8vw, 104px); }

/* tag chips on list rows */
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.tags span {
  border: 1.5px solid var(--ink); border-radius: 3px; padding: 2px 8px;
  background: var(--paper-card); color: var(--ink);
  font-family: var(--mono); font-size: calc(10.5px * var(--s)); font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* article layout: sticky aside + measured main column */
.article { padding: clamp(40px, 5vw, 72px) 0 clamp(72px, 9vw, 120px); }
.article-grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.55fr); gap: clamp(36px, 5vw, 80px); align-items: start; }
.article-aside { position: sticky; top: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 32px); }
.article-aside h1, .article-aside h2 {
  font-family: var(--display);
  font-size: calc(clamp(30px, 3.4vw, 44px) * var(--s));
  line-height: 1; letter-spacing: -0.005em; font-weight: 800;
  text-transform: uppercase; overflow-wrap: break-word; margin: 0 0 18px;
}
.article-aside .rule-blue { margin-bottom: 20px; }
.article-aside p { color: var(--muted); margin: 0; max-width: 340px; }
.article-main { min-width: 0; max-width: var(--measure); }
.article-main > h2 {
  font-family: var(--display);
  font-size: calc(clamp(24px, 2.6vw, 34px) * var(--s));
  line-height: 1.02; font-weight: 800; text-transform: uppercase;
  margin: 44px 0 14px;
}
.article-main > h2:first-child { margin-top: 6px; }
.article-main p { color: var(--muted); margin: 0 0 16px; }
.article-main ul { color: var(--muted); margin: 0 0 16px; padding-left: 22px; }
.article-main li { margin-bottom: 8px; }
.article-main strong { color: var(--ink); }

/* pulled quote: the play-lab pinned card */
blockquote {
  margin: 28px 0; padding: 18px 22px;
  background: var(--paper-card); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 4px;
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--display);
  font-size: calc(clamp(20px, 2vw, 26px) * var(--s));
  line-height: 1.1; font-weight: 800; text-transform: uppercase; letter-spacing: 0.005em;
}

/* mono callout card (diagrams, rules-of-the-system) */
.callout {
  margin: 28px 0; padding: 18px 20px;
  background: var(--paper-card); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 4px;
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--mono); font-size: calc(12.5px * var(--s));
  line-height: 1.7; letter-spacing: 0.02em;
}

/* mono stat strip (the math blocks) */
.stat {
  font-family: var(--mono); font-size: calc(13px * var(--s));
  letter-spacing: 0.06em; line-height: 1.8; color: var(--muted);
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  padding: 16px 0; margin: 26px 0;
}
.stat b, .stat strong { color: var(--blue); font-weight: 600; }

/* process grid (invent / mechanize / build / play) */
.process { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 28px 0; }
.process div { background: var(--paper-card); border: 2px solid var(--ink); border-radius: 4px; box-shadow: 3px 3px 0 var(--ink); padding: 14px 16px; min-width: 0; }
.process b { display: block; font-family: var(--mono); font-size: calc(11.5px * var(--s)); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.process span { color: var(--muted); font-size: calc(14px * var(--s)); line-height: 1.45; }

/* interior full-width band between hard rules (cream, blue, or ink) */
.band { background: var(--paper-card); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); padding: clamp(48px, 6vw, 80px) 0; }
.band .shell { position: relative; }
.band-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.band h2 {
  font-family: var(--display);
  font-size: calc(clamp(30px, 3.8vw, 50px) * var(--s));
  line-height: 0.98; font-weight: 800; text-transform: uppercase;
  margin: 0; overflow-wrap: break-word;
}
.band p { color: var(--muted); margin: 0 0 14px; max-width: var(--measure); }
.band p:last-child { margin-bottom: 0; }
.band.ink { background: var(--ink); color: var(--text-on-ink); border-color: var(--ink); }
.band.ink p { color: var(--text-2-on-ink); }
.band.ink .eyebrow { color: var(--blue-on-ink); }
.band.ink a { color: var(--text-on-ink); }
.band.ink :focus-visible { outline-color: var(--text-on-ink); }

/* spec board (about): ink card, yellow offset shadow as chrome */
.spec-board {
  background: var(--ink); color: var(--text-on-ink);
  border: 2px solid var(--ink); border-radius: 8px;
  box-shadow: 8px 8px 0 var(--art-yellow);
  padding: 26px; min-width: 0;
}
.spec-board .board-kicker { font-family: var(--mono); font-size: calc(11px * var(--s)); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-on-ink); margin: 0 0 8px; }
.spec-line { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 12px; padding: 12px 0; border-top: 1px solid var(--hairline-on-ink); }
.spec-line b { font-family: var(--mono); font-size: calc(11px * var(--s)); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-on-ink); padding-top: 2px; }
.spec-line span { color: var(--text-2-on-ink); font-size: calc(14.5px * var(--s)); line-height: 1.5; }

/* tile grid (game rosters) */
.tile-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin: 36px 0 0; }
.tile { background: var(--paper-card); border: 2px solid var(--ink); border-radius: 6px; box-shadow: 4px 4px 0 var(--ink); padding: 18px; min-width: 0; }
.tile .chip { width: 14px; height: 14px; border: 2px solid var(--ink); border-radius: 2px; display: inline-block; margin-bottom: 10px; }
.tile .shot { display: block; width: 100%; height: auto; border: 2px solid var(--ink); border-radius: 4px; margin: 0 0 12px; background: var(--ink); }
.chip.blue { background: var(--art-blue); }
.chip.yellow { background: var(--art-yellow); }
.chip.red { background: var(--art-red); }
.chip.paper { background: var(--paper); }
.tile .tile-kicker { font-family: var(--mono); font-size: calc(10.5px * var(--s)); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin: 0 0 8px; }
.tile h3 { font-family: var(--display); font-size: calc(19px * var(--s)); font-weight: 800; text-transform: uppercase; letter-spacing: 0.005em; line-height: 1.05; margin: 0 0 8px; }
.tile p { color: var(--muted); font-size: calc(14px * var(--s)); line-height: 1.5; margin: 0; }

/* two-up linked cards (research index) */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.card-link {
  display: block; min-width: 0; padding: 26px;
  background: var(--paper-card); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 8px;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.card-link:hover { text-decoration: none; transform: translate(2px, 2px); box-shadow: 4px 4px 0 var(--ink); }
.card-link h2 { font-family: var(--display); font-size: calc(clamp(24px, 2.6vw, 34px) * var(--s)); font-weight: 800; text-transform: uppercase; line-height: 1.02; margin: 10px 0 12px; }
.card-link p { color: var(--muted); margin: 0 0 14px; }
.card-link .eyebrow { margin-bottom: 0; }
.card-link.ink { background: var(--ink); color: var(--text-on-ink); }
.card-link.ink p { color: var(--text-2-on-ink); }
.card-link.ink .eyebrow { color: var(--blue-on-ink); }
.card-link.ink .stat { color: var(--text-2-on-ink); border-color: var(--hairline-on-ink); }
.card-link.ink .stat b, .card-link.ink .stat strong { color: var(--blue-on-ink); }

/* synth plate (perihelion): ink card, decorative bars are chrome */
.synth-plate {
  background: var(--ink); color: var(--text-on-ink);
  border: 2px solid var(--ink); border-radius: 8px;
  box-shadow: 8px 8px 0 var(--ink);
  padding: 26px; width: min(560px, 100%); min-width: 0;
}
.synth-plate .board-kicker { font-family: var(--mono); font-size: calc(11px * var(--s)); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--art-yellow); margin: 0 0 8px; }
.synth-bars { height: 200px; display: flex; align-items: flex-end; gap: 8px; margin: 28px 0; }
.synth-bars span { flex: 1 1 0; border-radius: 2px 2px 0 0; }
.synth-plate .plate-caption { font-family: var(--mono); font-size: calc(12px * var(--s)); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-2-on-ink); border-top: 1px solid var(--hairline-on-ink); padding-top: 16px; margin: 0; }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .hero-grid, .story-grid { grid-template-columns: minmax(0, 1fr); }
  .story-grid.flip .story-visual { order: -1; }
  .now-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .creed { grid-template-columns: minmax(0, 1fr); }
  .manifesto h2 { margin-bottom: 24px; }
  .manifesto .lead { margin-bottom: 40px; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-nav { justify-content: flex-start; }
  .article-grid { grid-template-columns: minmax(0, 1fr); }
  .article-aside { position: static; }
  .article-aside p { max-width: var(--measure); }
  .band-grid { grid-template-columns: minmax(0, 1fr); }
  .grid-2 { grid-template-columns: minmax(0, 1fr); }
  .spec-line { grid-template-columns: 100px minmax(0, 1fr); }
}

@media (max-width: 560px) {
  .site-header .bar { flex-direction: column; align-items: flex-start; gap: 4px; padding-block: 10px; }
  .site-nav { gap: 16px; row-gap: 2px; }
  .now-list { grid-template-columns: minmax(0, 1fr); }
  .note-row { grid-template-columns: 44px minmax(0, 1fr) 24px; gap: 14px; }
  .process { grid-template-columns: minmax(0, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rise { opacity: 1; transform: none; transition: none; }
  .link .icon-arrow { transition: none; }
  .btn { transition: none; }
  .btn:hover, .btn:active { transform: none; box-shadow: 5px 5px 0 var(--ink); }
  .card-link { transition: none; }
  .card-link:hover { transform: none; box-shadow: 6px 6px 0 var(--ink); }
}
