/* ============================================================
   Attention Theory — design system
   The site is the argument: it enacts Trigger / Tune / Transfix.
   Editorial base, one accent (International Orange), a dark
   "capture" register for moments that demonstrate the theory.
   ============================================================ */

:root {
  /* Light register — warm paper */
  --bg:        #faf7f2;
  --bg-sink:   #f2ede2;   /* recessed panel */
  --bg-raise:  #fffdf8;   /* lifted card */
  --ink:       #1a1a1a;
  --muted:     #6b6760;
  --faint:     #9b958a;
  --rule:      #e6dfd0;
  --rule-firm: #d8cfba;

  /* Dark register — warm near-black */
  --deep:      #15120d;
  --deep-2:    #211d15;   /* raised panel on dark */
  --deep-3:    #2c2619;
  --on-deep:   #f4efe3;
  --on-deep-muted: #a59d8c;
  --rule-deep: rgba(244, 239, 227, 0.14);

  /* Accent — International Orange */
  --accent:    #ff4f00;
  --accent-ink:#e34600;   /* accent legible on paper for small text */
  --accent-soft: rgba(255, 79, 0, 0.08);
  --accent-glow: rgba(255, 79, 0, 0.34);

  /* Type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Measure & rhythm */
  --measure: 39rem;
  --wide:    72rem;
  --pad:     1.5rem;

  --ease: cubic-bezier(0.22, 0.68, 0.18, 1);
}

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

/* Registered so the decay ring can tween between steps */
@property --v {
  syntax: "<number>";
  inherits: false;
  initial-value: 100;
}

html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.125rem;
  line-height: 1.55;
  font-weight: 400;
  font-feature-settings: "kern", "liga", "calt";
  font-variation-settings: "opsz" 14, "SOFT" 30;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }

a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: text-decoration-thickness 0.15s ease;
}
a:hover { text-decoration-thickness: 2px; }

strong { font-weight: 500; }

img { max-width: 100%; height: auto; }

/* ---- Reveal-on-scroll (only when JS is present) ---- */
.js .reveal {
  opacity: 0;
  transform: translateY(1.75rem);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   Scroll rail — a measure of attention sustained
   ============================================================ */
.scroll-rail {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  z-index: 90;
  pointer-events: none;
}
.scroll-rail-fill {
  height: 100%;
  width: 0;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent-glow);
  transform-origin: left;
}

/* ============================================================
   Site header — wordmark + primary nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem clamp(1.25rem, 4vw, 3rem);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--rule);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}
.wordmark-mark {
  width: 0.6875rem;
  height: 0.6875rem;
  background: var(--accent);
  border-radius: 1px;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}
.wordmark:hover .wordmark-mark { transform: rotate(45deg); }

.site-nav {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.site-nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.25rem 0;
  position: relative;
  white-space: nowrap;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -0.1rem;
  height: 1.5px;
  background: var(--accent);
  transition: right 0.25s var(--ease);
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { right: 0; }

/* Header over the dark hero (homepage) — floats so the hero is full-bleed */
.home .site-header { position: fixed; left: 0; right: 0; }
.home .site-header:not(.is-scrolled) {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.home .site-header:not(.is-scrolled) .wordmark { color: var(--on-deep); }
.home .site-header:not(.is-scrolled) .site-nav a { color: var(--on-deep-muted); }
.home .site-header:not(.is-scrolled) .site-nav a:hover { color: var(--on-deep); }

@media (max-width: 600px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.7rem var(--pad);
  }
  .site-nav { gap: 0.9rem; font-size: 0.75rem; flex-wrap: wrap; }
}

/* ============================================================
   Layout
   ============================================================ */
main {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 4rem var(--pad) 4rem;
}
.home main { max-width: none; margin: 0; padding: 0; }

/* ============================================================
   Homepage — the live demonstration
   ============================================================ */

/* ---- Gate rail: persistent Trigger/Tune/Transfix indicator ---- */
.gate-rail {
  position: fixed;
  left: clamp(1rem, 3vw, 2.25rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.gate-rail-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--faint);
  opacity: 0.5;
  transition: opacity 0.4s ease, color 0.4s ease;
  text-decoration: none;
}
.gate-rail-item::before {
  content: "";
  width: 0.5rem; height: 0.5rem;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.gate-rail-item.is-active {
  opacity: 1;
  color: var(--accent);
}
.gate-rail-item.is-active::before {
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}
.gate-rail.on-dark .gate-rail-item:not(.is-active) { color: var(--on-deep-muted); }
@media (max-width: 1100px) { .gate-rail { display: none; } }

/* ---- Hero: the Trigger demonstration ---- */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--deep);
  color: var(--on-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 7rem clamp(1.25rem, 5vw, 3rem) 6rem;
  overflow: hidden;
  isolation: isolate;
}
.hero::after {  /* warm vignette + glow toward the headline */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 45% at 50% 42%, rgba(255,79,0,0.13), transparent 70%),
    radial-gradient(120% 90% at 50% 110%, rgba(0,0,0,0.55), transparent 60%);
  z-index: -1;
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.noise-word {
  position: absolute;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--on-deep);
  opacity: 0;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  transition: opacity 0.8s var(--ease);
}
/* The distraction floods in, holds long enough to be noticed,
   then recedes as the headline breaks through. */
.hero.noise-in .noise-word  { opacity: 0.36; }
.hero.noise-out .noise-word { opacity: 0.06; transition-duration: 1.1s; transition-delay: 0s; }
.hero.noise-static .noise-word { opacity: 0.15; }

.hero-inner {
  max-width: 54rem;
  position: relative;
}
.hero-kicker {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.75rem;
}
.js .hero-kicker, .js .hero-sub, .js .hero-readout, .js .scroll-cue {
  opacity: 0;
  transform: translateY(0.85rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.hero.revealed .hero-kicker { opacity: 1; transform: none; transition-delay: 0.05s; }

.hero-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 6.4vw + 0.5rem, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
/* word-by-word ignition */
.js .hero-headline .w {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(0.2em);
}
.js .hero-headline.lit .w {
  animation: ignite 0.5s var(--ease) both;
  animation-delay: calc(var(--i) * 55ms + 0.2s);
}
.js .hero-headline.lit .w-key {
  animation: ignite-key 0.7s var(--ease) both;
  animation-delay: calc(var(--i) * 55ms + 0.2s);
}
@keyframes ignite {
  to { opacity: 1; filter: blur(0); transform: none; }
}
@keyframes ignite-key {
  0%   { opacity: 0; filter: blur(14px); transform: translateY(0.2em) scale(1.04); }
  60%  { opacity: 1; filter: blur(0); }
  100% { opacity: 1; filter: blur(0); transform: none; }
}

.hero-sub {
  font-family: var(--sans);
  font-size: clamp(1rem, 1vw + 0.7rem, 1.1875rem);
  line-height: 1.55;
  color: var(--on-deep-muted);
  max-width: 30rem;
  margin: 2rem auto 0;
}
.hero.revealed .hero-sub { opacity: 1; transform: none; transition-delay: 0.65s; }

.hero-readout {
  margin: 2.5rem auto 0;
  font-family: var(--sans);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--on-deep);
  max-width: 26rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--rule-deep);
  border-left: 2px solid var(--accent);
  background: rgba(255,255,255,0.03);
  text-align: left;
}
.hero-readout b { color: var(--accent); font-weight: 600; }
.hero.revealed .hero-readout { opacity: 1; transform: none; transition-delay: 0.9s; }

.scroll-cue {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-deep-muted);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-cue:hover { color: var(--accent); }
.scroll-cue span {
  width: 1px; height: 2.25rem;
  background: linear-gradient(var(--accent), transparent);
}
.hero.revealed .scroll-cue { opacity: 1; transform: none; transition-delay: 1.2s; }
.js .scroll-cue span { animation: cue-pulse 1.8s ease-in-out infinite; }
@keyframes cue-pulse {
  0%, 100% { transform: scaleY(0.5); transform-origin: top; opacity: 0.4; }
  50%      { transform: scaleY(1);   transform-origin: top; opacity: 1; }
}

/* ---- Home content bands ---- */
.band {
  max-width: var(--wide);
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 8rem) var(--pad);
}
.band-rule { border-top: 1px solid var(--rule); }

.band-num {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.band-num::before {
  content: "";
  width: 1.75rem; height: 1.5px;
  background: var(--accent);
}

.band-lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.4vw + 0.5rem, 3rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 1.5rem;
  max-width: 24ch;
  font-variation-settings: "opsz" 90, "SOFT" 40;
}
.band-lead em { font-style: italic; color: var(--accent-ink); }

.band-text {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 34rem;
}
.band-text + .band-text { margin-top: 1rem; }

/* ---- The three gates ---- */
.gates {
  display: grid;
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.gate-card {
  display: grid;
  grid-template-columns: 5.5rem 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 2rem 2rem 1.75rem;
  background: var(--bg-raise);
  border: 1px solid var(--rule);
  border-radius: 5px;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.gate-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s var(--ease);
}
.gate-card:hover {
  transform: translateY(-3px);
  border-color: var(--rule-firm);
  box-shadow: 0 18px 40px -28px rgba(0,0,0,0.45);
}
.gate-card:hover::before { transform: scaleY(1); }
.gate-card-num {
  font-family: var(--serif);
  font-size: 3.25rem;
  line-height: 1;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 0;
}
.gate-card-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
  font-variation-settings: "opsz" 60;
}
.gate-card-body p {
  font-family: var(--sans);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}
.gate-card-go {
  font-family: var(--sans);
  font-size: 1.25rem;
  color: var(--accent);
}
@media (max-width: 600px) {
  .gate-card { grid-template-columns: 3.5rem 1fr; padding: 1.5rem; gap: 1rem; }
  .gate-card-num { font-size: 2.25rem; }
  .gate-card-go { display: none; }
}

/* ---- The five drivers (home) ---- */
.drivers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  gap: 1rem;
  margin-top: 3.5rem;
}
.driver-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: var(--bg-raise);
  border: 1px solid var(--rule);
  border-radius: 5px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.driver-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}
.driver-card-num {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.driver-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.375rem;
  letter-spacing: -0.015em;
  margin: 0;
}
.driver-card p {
  font-family: var(--sans);
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}
.driver-card-demo {
  margin-top: auto;
  padding-top: 0.85rem;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}
.driver-card-demo::before {
  content: "";
  flex: none;
  width: 0.45rem; height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-0.05rem);
}
.driver-card:hover .driver-card-demo { color: var(--accent); }

/* ============================================================
   The reflex–decision spectrum — an instrument
   ============================================================ */
.spectrum {
  margin: 2.5rem 0 0;
  user-select: none;
}
.spectrum-ends {
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}
.spectrum-track {
  position: relative;
  height: 4.5rem;
  border-radius: 5px;
  background: linear-gradient(90deg, #ff4f00 0%, #d9692e 38%, #6b6256 62%, #2c2619 100%);
  cursor: ew-resize;
  touch-action: none;
}
.spectrum-stop {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.35);
}
.spectrum-stop span {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.spectrum-thumb {
  position: absolute;
  top: -0.5rem; bottom: -0.5rem;
  width: 2.5rem;
  margin-left: -1.25rem;
  border-radius: 4px;
  background: var(--bg-raise);
  border: 2px solid var(--ink);
  box-shadow: 0 6px 22px -8px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
}
.spectrum-thumb::before {
  content: "";
  width: 0.25rem; height: 1.5rem;
  background: var(--accent);
  border-radius: 2px;
}
.spectrum-thumb:active { cursor: grabbing; }
.spectrum-readout {
  margin-top: 2.75rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1.25rem;
  align-items: baseline;
}
.spectrum-readout dt {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.spectrum-readout dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.45;
}
.spectrum-readout dd small {
  display: block;
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* ============================================================
   Article pages — header, prose
   ============================================================ */
.article-header {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 2rem var(--pad) 2.5rem;
}

.breadcrumb {
  font-family: var(--sans);
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
  margin: 0 0 2.25rem;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
}
.breadcrumb-sep { margin: 0 0.5rem; color: var(--faint); }

.kicker, .article-header .kicker {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.25rem;
}

.article-header h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.5vw + 0.5rem, 4.25rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
  font-variation-settings: "opsz" 144, "SOFT" 45;
}

.dek {
  font-family: var(--serif);
  font-size: 1.375rem;
  line-height: 1.4;
  color: var(--muted);
  font-variation-settings: "opsz" 36, "SOFT" 100;
  margin: 0;
  max-width: 32rem;
}

.byline {
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: var(--faint);
  margin: 1.5rem 0 0;
}
.byline a { color: var(--muted); text-decoration: none; }
.byline a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
}

/* ---- Prose ---- */
.prose {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 var(--pad) 3rem;
}
.prose p {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  line-height: 1.62;
}
.prose p.lead {
  font-size: 1.3125rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  letter-spacing: -0.005em;
}
.prose h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.875rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 3.5rem 0 1.25rem;
  font-variation-settings: "opsz" 40, "SOFT" 30;
}
.prose h2::before {
  content: "";
  display: block;
  width: 1.75rem;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1.1rem;
}
.prose .field-label {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 2.5rem 0 1rem;
}
.prose strong { font-weight: 500; }
.prose em { font-style: italic; }
.prose ul, .prose ol { margin: 0 0 1.75rem; padding-left: 1.5rem; }
.prose li { margin: 0 0 0.625rem; line-height: 1.55; }
.prose ul li::marker { color: var(--accent); }
.prose ol li::marker { color: var(--accent); font-family: var(--sans); font-size: 0.875rem; }
.prose blockquote {
  margin: 2rem 0;
  padding-left: 1.25rem;
  border-left: 2px solid var(--accent);
}
.prose blockquote p { font-size: 1.1875rem; font-style: italic; color: var(--muted); }
.prose a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

/* ---- Definition card ---- */
.definition {
  margin: 0 0 2.75rem;
  padding: 1.5rem 1.75rem;
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0;
}
.definition p { margin: 0; font-size: 1.0625rem; line-height: 1.55; }
.definition p + p { margin-top: 0.75rem; }
.definition .definition-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0 0 0.5rem;
}

/* ---- Pull quote ---- */
.pull-quote {
  margin: 3rem 0;
  font-family: var(--serif);
  font-size: 1.875rem;
  line-height: 1.22;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 60, "SOFT" 70;
  color: var(--ink);
  font-weight: 400;
}
.pull-quote::before {
  content: "";
  display: block;
  width: 2.5rem; height: 3px;
  background: var(--accent);
  margin-bottom: 1.5rem;
}

/* ---- Article navigation ---- */
.article-nav {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 2.5rem var(--pad) 0;
}
.article-nav-row {
  border-top: 1px solid var(--rule);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.article-nav-label {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.article-nav a {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-decoration: none;
  padding: 0.25rem 0 0.5rem;
  transition: padding 0.2s var(--ease);
  font-variation-settings: "opsz" 48, "SOFT" 40;
}
.article-nav a:hover { padding-left: 0.5rem; }
.article-nav a::after {
  content: " →";
  color: var(--accent);
  font-family: var(--sans);
  font-weight: 500;
}

/* ---- Section / driver lists (hub pages) ---- */
.section-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.section-list li { border-bottom: 1px solid var(--rule); }
.section-list a {
  display: block;
  padding: 1.75rem 0.75rem 1.75rem 0;
  text-decoration: none;
  color: var(--ink);
  transition: padding 0.25s var(--ease), background 0.25s var(--ease);
}
.section-list a:hover {
  padding-left: 0.85rem;
  background: linear-gradient(90deg, var(--accent-soft), transparent 70%);
}
.section-list-num {
  font-family: var(--sans);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
  font-weight: 600;
  text-transform: uppercase;
}
.section-list-label {
  display: block;
  font-family: var(--serif);
  font-size: 1.625rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin-bottom: 0.375rem;
  font-variation-settings: "opsz" 60, "SOFT" 40;
}
.section-list-label::after {
  content: " →";
  color: var(--accent);
  font-family: var(--sans);
  font-weight: 500;
}
.section-list-desc {
  display: block;
  font-family: var(--sans);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 44rem;
}

.driver-list { list-style: none; margin: 0 0 2rem; padding: 0; }
.driver-list li { border-bottom: 1px solid var(--rule); margin: 0; }
.driver-list li:first-child { border-top: 1px solid var(--rule); }
.driver-list a {
  display: block;
  padding: 1.15rem 0;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: -0.015em;
  transition: padding 0.2s var(--ease);
}
.driver-list a:hover { padding-left: 0.5rem; }
.driver-list a::after {
  content: " →";
  color: var(--accent);
  font-family: var(--sans);
}
.driver-list-desc {
  display: block;
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.25rem;
  line-height: 1.45;
}

/* ---- Inline cite ---- */
cite, .cite { font-style: italic; color: var(--muted); font-size: 0.9375rem; }

/* ---- Chips (case studies) ---- */
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0 2rem; padding: 0; list-style: none; }
.chip {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--rule-firm);
  color: var(--muted);
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.18s ease;
}
.chip:hover { color: var(--ink); border-color: var(--accent); }
.chip-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.chip-accent:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.prose .chips a { text-decoration: none; }

/* ---- Case meta ---- */
.case-meta {
  margin: 0 0 2.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: var(--muted);
}
.case-meta dt {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.25rem;
  font-size: 0.6875rem;
}
.case-meta dd { margin: 0; color: var(--ink); font-size: 0.9375rem; }
.case-meta-item { min-width: 8rem; }

/* ---- Comparison table ---- */
.compare {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2.5rem;
  font-family: var(--sans);
  font-size: 0.9375rem;
}
.compare th, .compare td {
  text-align: left;
  padding: 0.85rem 1rem 0.85rem 0;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
  line-height: 1.45;
}
.compare thead th {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.6875rem;
  color: var(--accent);
  border-bottom: 2px solid var(--ink);
}
.compare tbody th { font-weight: 500; color: var(--muted); padding-right: 1.25rem; }
.compare tbody td { color: var(--ink); }
.compare tbody tr:hover { background: var(--accent-soft); }

/* ---- FAQ ---- */
.faq { margin: 1.5rem 0 0; }
.faq-item {
  margin: 0;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
}
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-item h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.3125rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin: 0 0 0.5rem;
}
.faq-item p { margin: 0; color: var(--muted); }

/* ---- Glossary definition list ---- */
.glossary-list { margin: 0; }
.glossary-term {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 2.5rem 0 0.5rem;
  letter-spacing: -0.02em;
  scroll-margin-top: 5rem;
}
.glossary-term a { text-decoration-thickness: 1px; }
.glossary-def {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--muted);
}

/* ============================================================
   Lede block (home fallback, 404)
   ============================================================ */
.lede { margin: 0 0 3.5rem; }
.lede h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw + 0.5rem, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 2rem;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.lede p { font-size: 1.1875rem; line-height: 1.55; margin: 0 0 1.5rem; }
.lede p:last-child { margin-bottom: 0; }

.primary { border-top: 1px solid var(--rule); }
.primary-link {
  display: block;
  padding: 1.75rem 0.75rem 1.75rem 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: var(--ink);
  transition: padding 0.25s var(--ease), background 0.25s var(--ease);
}
.primary-link:hover, .primary-link:focus-visible {
  padding-left: 0.85rem;
  background: linear-gradient(90deg, var(--accent-soft), transparent 70%);
  outline: none;
}
.primary-link-label {
  display: block;
  font-family: var(--serif);
  font-size: 1.625rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.375rem;
  font-variation-settings: "opsz" 60, "SOFT" 40;
}
.primary-link-label::after {
  content: " →";
  color: var(--accent);
  font-family: var(--sans);
  font-weight: 500;
}
.primary-link-desc {
  display: block;
  font-family: var(--sans);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 44rem;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 2.5rem var(--pad) 3rem;
  border-top: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: var(--faint);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: baseline;
}
.site-footer p { margin: 0; }
.site-footer a { color: var(--muted); text-decoration-color: var(--rule-firm); }
.site-footer a:hover { text-decoration-color: var(--accent); }
.site-footer .foot-mark {
  display: inline-block;
  width: 0.5rem; height: 0.5rem;
  background: var(--accent);
  border-radius: 1px;
  margin-right: 0.35rem;
}
:not(.home) > .site-footer { max-width: var(--measure); }

/* ============================================================
   Interactive demos — shared shell
   ============================================================ */
.demo {
  margin: 2.75rem 0;
  border: 1px solid var(--rule-firm);
  border-radius: 6px;
  background: var(--bg-sink);
  overflow: hidden;
}
.demo-bar {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--rule);
  background: var(--bg-raise);
}
.demo-kicker {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.demo-kicker::before {
  content: "";
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.js .demo-kicker::before { animation: live-pulse 2.4s ease-out infinite; }
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 var(--accent-glow); }
  70%  { box-shadow: 0 0 0 7px rgba(255,79,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,79,0,0); }
}
.demo-title {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
}
.demo-body { padding: 1.5rem; }
.demo-stage {
  position: relative;
  border-radius: 4px;
  background: var(--bg-raise);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.demo-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-top: 1.25rem;
}
.demo-caption {
  font-family: var(--sans);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 1.1rem 0 0;
}
.demo-caption strong { color: var(--ink); font-weight: 600; }
.demo-caption.is-revealed { color: var(--ink); }

.btn {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.6rem 1.1rem;
  border-radius: 3px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.1s ease;
}
.btn:hover { background: var(--ink); color: var(--bg); }
.btn:active { transform: translateY(1px); }
.btn-accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }
.btn:disabled:hover { background: transparent; color: var(--ink); }

.demo-readout {
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: var(--muted);
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.demo-readout b {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--ink);
  font-variation-settings: "opsz" 40;
}
.demo-readout .unit { color: var(--faint); }

.demo-noscript {
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--muted);
  padding: 1rem 1.25rem;
  background: var(--accent-soft);
  border-radius: 4px;
}

/* ---- Demo: Emotional Salience (face pop-out) ---- */
.face-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 0.4rem;
  padding: 1.1rem;
}
@media (max-width: 540px) { .face-grid { grid-template-columns: repeat(6, 1fr); } }
.face {
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e7e0cf;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.face svg { width: 70%; height: 70%; display: block; }
.face .stroke { stroke: #8a8472; stroke-width: 7; fill: none; stroke-linecap: round; }
.face .dot { fill: #8a8472; }
.face.is-hot {
  background: var(--accent);
  transform: scale(1.12);
  box-shadow: 0 0 0 3px var(--bg-raise), 0 0 22px var(--accent-glow);
}
.face.is-hot .stroke { stroke: #fff; }
.face.is-hot .dot { fill: #fff; }
.face.is-cool {
  background: var(--bg-raise);
  box-shadow: inset 0 0 0 1.5px var(--rule-firm);
}

/* ---- Demo: Social Relevance (gaze) ---- */
.gaze-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 1.25rem;
  cursor: crosshair;
}
.gaze-eyes { display: flex; gap: 1.75rem; }
.gaze-eye {
  width: 5.5rem; height: 5.5rem;
  background: var(--bg-raise);
  border: 2.5px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
}
.gaze-pupil {
  width: 2.2rem; height: 2.2rem;
  background: var(--ink);
  border-radius: 50%;
  position: relative;
  transition: transform 0.12s linear;
}
.gaze-pupil::after {
  content: "";
  position: absolute;
  width: 0.55rem; height: 0.55rem;
  background: var(--accent);
  border-radius: 50%;
  top: 0.3rem; right: 0.3rem;
}
.gaze-targets {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}
.gaze-target {
  width: 2.4rem; height: 2.4rem;
  border-radius: 50%;
  background: var(--bg-raise);
  border: 1.5px solid var(--rule-firm);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.gaze-target.is-looked {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.18);
  box-shadow: 0 0 18px var(--accent-glow);
}

/* ---- Demo: Novelty (habituation) ---- */
.novelty-row {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 2rem 1rem 1.5rem;
  flex-wrap: wrap;
}
.novelty-cell {
  width: 2.5rem; height: 2.5rem;
  border-radius: 4px;
  background: var(--bg-sink);
  border: 1.5px solid var(--rule-firm);
  transition: background 0.2s ease, transform 0.2s ease;
}
.novelty-cell.is-novel {
  background: var(--accent);
  border-color: var(--accent);
}
.novelty-cell.is-novel.flash { animation: novel-flash 0.5s ease; }
@keyframes novel-flash {
  0% { transform: scale(1.35); box-shadow: 0 0 22px var(--accent-glow); }
  100% { transform: scale(1); box-shadow: none; }
}
.meter {
  height: 0.85rem;
  background: var(--bg-sink);
  border: 1px solid var(--rule-firm);
  border-radius: 100px;
  overflow: hidden;
  margin: 0.6rem 0 0.35rem;
}
.meter-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--accent), #ff8a4d);
  border-radius: 100px;
  transition: width 0.6s var(--ease);
}
.meter-label {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
}

/* ---- Demo: Goal Alignment (biased competition) ---- */
.goal-field {
  position: relative;
  height: 17rem;
  overflow: hidden;
  background: var(--bg-raise);
}
.goal-shape {
  position: absolute;
  width: 1.5rem; height: 1.5rem;
  will-change: transform;
}
.goal-shape.tri-orange {
  width: 0; height: 0;
  border-left: 0.85rem solid transparent;
  border-right: 0.85rem solid transparent;
  border-bottom: 1.5rem solid var(--accent);
}
.goal-shape.tri-grey {
  width: 0; height: 0;
  border-left: 0.85rem solid transparent;
  border-right: 0.85rem solid transparent;
  border-bottom: 1.5rem solid #c7bfac;
}
.goal-shape.sq-grey { background: #c7bfac; border-radius: 3px; }
.goal-shape.dot-grey { background: #c7bfac; border-radius: 50%; }
.goal-secret {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 500;
  color: var(--ink);
  opacity: 0;
  letter-spacing: -0.02em;
  pointer-events: none;
}
.goal-secret.show { animation: secret-pass 4s ease-in-out forwards; }
@keyframes secret-pass {
  0%, 100% { opacity: 0; }
  35%, 65% { opacity: 0.07; }
}
.goal-secret.revealed { opacity: 1; color: var(--accent); transition: opacity 0.5s ease; }

/* ---- Demo: Cognitive Spotlighting ---- */
.spotlight-stage {
  position: relative;
  padding: 2.25rem 2rem;
  background: var(--deep);
  color: var(--on-deep);
  cursor: none;
  overflow: hidden;
}
.spotlight-text {
  font-family: var(--serif);
  font-size: 1.1875rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(244, 239, 227, 0.07);
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}
.spotlight-mask {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle 7rem at -100px -100px, transparent 0%, transparent 38%, rgba(21,18,13,0.93) 78%);
  transition: background 0.05s linear;
}
.spotlight-stage.cursor-on { cursor: none; }
.spotlight-hint {
  position: absolute;
  bottom: 0.75rem; right: 1rem;
  font-family: var(--sans);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-deep-muted);
  z-index: 3;
}

/* ---- Demo: Trigger reaction tester ---- */
.reaction-stage {
  height: 13rem;
  display: grid;
  place-items: center;
  text-align: center;
  cursor: pointer;
  background: var(--deep);
  color: var(--on-deep);
  border-radius: 4px;
  transition: background 0.06s linear;
  user-select: none;
}
.reaction-stage.armed { background: var(--deep-2); }
.reaction-stage.go { background: var(--accent); color: #fff; }
.reaction-stage.too-soon { background: var(--deep-3); }
.reaction-msg {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-variation-settings: "opsz" 40;
  padding: 0 1.5rem;
}
.reaction-sub {
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: inherit;
  opacity: 0.7;
  margin-top: 0.5rem;
}

/* ---- Demo: Tune decay meter ---- */
.decay-stage { padding: 1.75rem 1.5rem; text-align: center; }
.decay-ring {
  --v: 100;
  width: 9rem; height: 9rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(closest-side, var(--bg-raise) 79%, transparent 80% 100%),
    conic-gradient(var(--accent) calc(var(--v) * 1%), var(--rule) 0);
  transition: --v 0.3s linear;
}
.decay-value {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  font-variation-settings: "opsz" 40;
}
.decay-state {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---- Demo: Transfix sustained focus ---- */
.transfix-stage {
  padding: 2rem 1.75rem;
  background: var(--bg-raise);
  cursor: pointer;
}
.transfix-text {
  font-family: var(--serif);
  font-size: 1.1875rem;
  line-height: 1.62;
  margin: 0;
  filter: blur(5px);
  opacity: 0.55;
  transition: filter 0.25s linear, opacity 0.25s linear;
}
.transfix-depth {
  margin-top: 1.25rem;
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: var(--muted);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s var(--ease), opacity 0.5s ease;
}
.transfix-stage.held .transfix-depth { max-height: 12rem; opacity: 1; }

/* ============================================================
   Motion preferences
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .js .hero-headline .w { opacity: 1; filter: none; transform: none; }
  .goal-secret.show { opacity: 0.08; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 720px) {
  .spectrum-readout { grid-template-columns: 1fr; gap: 0.15rem 0; }
  .spectrum-readout dt { margin-top: 0.85rem; }
}
@media (max-width: 480px) {
  body { font-size: 1.0625rem; }
  main { padding: 3rem var(--pad); }
  .article-header { padding: 1.5rem var(--pad) 2rem; }
  .dek { font-size: 1.1875rem; }
  .prose p { font-size: 1.0625rem; }
  .prose p.lead { font-size: 1.1875rem; }
  .prose h2 { font-size: 1.5rem; margin: 2.75rem 0 1rem; }
  .pull-quote { font-size: 1.5rem; }
  .definition { padding: 1.25rem; }
  .article-nav a { font-size: 1.25rem; }
  .lede p { font-size: 1.0625rem; }
  .demo-body { padding: 1.1rem; }
  .gaze-eye { width: 4.25rem; height: 4.25rem; }
  .gaze-pupil { width: 1.7rem; height: 1.7rem; }
  .band-text { font-size: 1rem; }
}

/* Focus visibility */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}
