/* Attention Atlas — night constellation × paper depth */
:root {
  --night: #0c0b12;
  --night-2: #14131c;
  --panel: #1b1a26;
  --ink: #f3f2ec;
  --ink-soft: #b8b6c4;
  --muted: #7a788a;
  --focus: #e7a008;
  --focus-wash: rgba(231, 160, 8, 0.22);
  --cyan: #5ec8d8;
  --line: rgba(243, 242, 236, 0.1);
  --line-strong: rgba(243, 242, 236, 0.18);
  --paper: #f3f2ec;
  --paper-ink: #16161c;
  --paper-soft: #3b3d48;
  --font-d: "Fraunces", "Source Serif 4", Georgia, serif;
  --font-b: "Spectral", Georgia, serif;
  --font-m: "IBM Plex Mono", "Space Mono", ui-monospace, monospace;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  background: var(--night);
  color: var(--ink);
  font-family: var(--font-b);
  font-size: clamp(17px, 1.05vw + 12px, 19px);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  background-image: radial-gradient(rgba(231, 160, 8, 0.04) 1px, transparent 1px);
  background-size: 4px 4px;
}
a {
  color: inherit;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
.wrap {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 48px);
}
#prog {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--focus), var(--cyan));
  pointer-events: none;
}
.langbar {
  position: fixed;
  top: 14px;
  right: 16px;
  z-index: 150;
  display: flex;
  font-family: var(--font-m);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  background: rgba(12, 11, 18, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 3px;
}
.langbar button {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
}
.langbar button.on {
  background: var(--focus);
  color: #111;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 11, 18, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 0.6rem 0;
}
.nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  align-items: center;
  font-family: var(--font-m);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav a {
  text-decoration: none;
  color: var(--muted);
}
.nav a:hover {
  color: var(--focus);
}
.nav .brand {
  color: var(--ink);
  font-weight: 600;
  margin-right: 0.4rem;
}
.kicker,
.eyebrow {
  font-family: var(--font-m);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.hero {
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 0 3.5rem;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 15%;
  width: 55vw;
  max-width: 520px;
  height: 55vw;
  max-height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--focus-wash), transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.hero .wrap {
  z-index: 1;
}
.hero h1 {
  font-family: var(--font-d);
  font-weight: 340;
  font-size: clamp(3.4rem, 12vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin-bottom: 0.35em;
}
.hero h1 em {
  font-style: italic;
  font-weight: 420;
  position: relative;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: -0.05em;
  right: -0.05em;
  bottom: 0.08em;
  height: 0.32em;
  background: var(--focus-wash);
  z-index: -1;
}
.hero-lead {
  max-width: 36ch;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.hero-thesis {
  max-width: 58ch;
  border-left: 2px solid var(--focus);
  padding-left: 1.2rem;
  margin-bottom: 2rem;
  color: var(--ink);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.hero-ctas a {
  font-family: var(--font-m);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--focus);
  border-bottom: 1px solid rgba(231, 160, 8, 0.4);
  padding-bottom: 2px;
}
section.block {
  padding: clamp(3.5rem, 8vh, 6rem) 0;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
section.block.paper {
  background: var(--paper);
  color: var(--paper-ink);
  border-top-color: rgba(22, 22, 28, 0.12);
}
section.block.paper .kicker {
  color: #37506b;
}
section.block.paper h2 {
  color: var(--paper-ink);
}
section.block.paper .lead {
  color: var(--paper-soft);
}
h2 {
  font-family: var(--font-d);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.8vw, 2.75rem);
  line-height: 1.08;
  max-width: 18ch;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}
.lead {
  max-width: 58ch;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
}
.levels-grid,
.syn-grid {
  display: grid;
  gap: 0.65rem;
}
.level-card,
.syn-card {
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  background: var(--panel);
  transition: border-color 0.2s, transform 0.2s var(--ease);
}
.level-card:hover,
.syn-card:hover,
.level-card.on,
.syn-card.on {
  border-color: rgba(231, 160, 8, 0.45);
}
.level-card.on {
  box-shadow: 0 0 0 1px var(--focus-wash);
}
.level-card .ln {
  font-family: var(--font-m);
  font-size: 0.7rem;
  color: var(--focus);
  display: block;
  margin-bottom: 0.35rem;
}
.level-card strong,
.syn-card strong {
  font-family: var(--font-d);
  font-weight: 500;
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.35rem;
}
.level-card .lb,
.syn-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
}
.mode-toggle {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.mode-toggle .pill {
  font-family: var(--font-m);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--muted);
}
.mode-toggle .pill.on {
  background: var(--focus);
  color: #111;
  border-color: var(--focus);
  font-weight: 600;
}
.linear-reader {
  display: flex;
  flex-direction: column;
  gap: 3.25rem;
}
.linear-reader[hidden],
#atlas[hidden] {
  display: none !important;
}
.field-essay {
  position: relative;
  scroll-margin-top: 80px;
}
/* Hierarchy: lede + one pull — break the slab without cutting content */
.field-essay .essay-lede {
  font-family: var(--font-d);
  font-size: 1.22em;
  line-height: 1.5;
  font-weight: 500;
  color: var(--paper-ink);
  margin: 0 0 1.4em;
  max-width: 60ch;
}
.field-essay .essay-lede::first-letter {
  font-size: 1.35em;
  font-weight: 500;
  color: #9a6a00;
  margin-right: 0.02em;
}
.field-essay .essay-pull {
  font-family: var(--font-d);
  font-style: italic;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.25;
  margin: 1.8rem 0;
  padding: 0.15rem 0 0.15rem 1.1rem;
  border-left: 3px solid var(--focus);
  max-width: none;
  color: var(--paper-ink);
  font-weight: 400;
}
.field-essay .essay-pull cite {
  display: block;
  font-family: var(--font-m);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6e7080;
  margin-top: 0.7rem;
}
.field-essay p {
  max-width: 64ch;
  line-height: 1.65;
  margin: 0 0 1.15em;
}
.field-essay p:last-of-type {
  margin-bottom: 0;
}
.field-essay.flash-target {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px var(--focus-wash);
  transition: outline 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.atlas-hint {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0.75rem 0 0;
  max-width: 48ch;
}
.atlas-jump-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.85rem;
}
.atlas-jump-list button {
  font-family: var(--font-m);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
  background: rgba(12, 11, 18, 0.5);
  min-height: 40px;
}
.atlas-jump-list button:hover,
.atlas-jump-list button:focus-visible {
  border-color: var(--focus);
  color: var(--ink);
  outline: none;
}
.paper-card {
  background: var(--paper);
  color: var(--paper-ink);
  border-radius: 14px;
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(22, 22, 28, 0.1);
}
.field-essay.paper-card {
  font-size: clamp(17.5px, 0.35vw + 16px, 19px);
}
.paper-card .eyebrow {
  color: #37506b;
}
.paper-card h3 {
  font-family: var(--font-d);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.15;
  margin: 0.4rem 0 1rem;
  color: var(--paper-ink);
}
/* Glossary tooltips — dotted underline; panel on hover/focus */
abbr.tip {
  text-decoration: underline dotted color-mix(in srgb, var(--focus) 65%, transparent);
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
  cursor: help;
  font-style: inherit;
  letter-spacing: inherit;
  position: relative;
  /* keep native title as a11y fallback; delay is OK */
}
.paper-card abbr.tip {
  text-decoration-color: color-mix(in srgb, #b45309 70%, transparent);
  color: inherit;
}
abbr.tip:hover,
abbr.tip:focus-visible {
  color: var(--focus);
  outline: none;
}
.paper-card abbr.tip:hover,
.paper-card abbr.tip:focus-visible {
  color: #9a4a00;
}
/* Custom bubble (supplements slow native title) */
abbr.tip::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(4px);
  width: max(12rem, min(22rem, 70vw));
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  background: #1a1824;
  color: #f3f2ec;
  border: 1px solid rgba(231, 160, 8, 0.35);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  font-family: var(--font-b);
  font-size: 0.82rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  white-space: normal;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s var(--ease), transform 0.15s var(--ease), visibility 0.15s;
  z-index: 40;
}
abbr.tip::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 2px);
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(231, 160, 8, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s var(--ease), visibility 0.15s;
  z-index: 41;
}
abbr.tip:hover::after,
abbr.tip:focus-visible::after,
abbr.tip:hover::before,
abbr.tip:focus-visible::before {
  opacity: 1;
  visibility: visible;
}
abbr.tip:hover::after,
abbr.tip:focus-visible::after {
  transform: translateX(-50%) translateY(0);
}
/* Near top of viewport: flip bubble below the word */
abbr.tip.tip-below::after {
  bottom: auto;
  top: calc(100% + 8px);
}
abbr.tip.tip-below::before {
  bottom: auto;
  top: calc(100% + 2px);
  border-top-color: transparent;
  border-bottom-color: rgba(231, 160, 8, 0.45);
}
@media (hover: none) {
  /* Touch: rely more on tap-to-focus; keep bubble on :focus */
  abbr.tip {
    -webkit-tap-highlight-color: transparent;
  }
}
.paper-card p {
  color: #3b3d48;
  margin-bottom: 0.95rem;
  max-width: 66ch;
  font-size: 1.02rem;
  line-height: 1.65;
}
.field-idx {
  font-family: var(--font-m);
  font-size: 0.75rem;
  color: #9a6a00;
  letter-spacing: 0.1em;
}
.field-nav {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(22, 22, 28, 0.1);
}
.atlas-shell {
  display: grid;
  gap: 1rem;
}
.constellation {
  position: relative;
  min-height: min(70vh, 560px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(ellipse 50% 40% at 50% 45%, rgba(231, 160, 8, 0.08), transparent 70%),
    var(--night-2);
  overflow: hidden;
}
.axis-x-left,
.axis-x-right,
.axis-y-top,
.axis-y-bottom {
  position: absolute;
  font-family: var(--font-m);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 0;
  pointer-events: none;
}
.axis-x-left {
  left: 10px;
  bottom: 10px;
}
.axis-x-right {
  right: 10px;
  bottom: 10px;
  text-align: right;
}
.axis-y-top {
  left: 10px;
  top: 10px;
}
.axis-y-bottom {
  left: 10px;
  top: 50%;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.star {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  max-width: 9rem;
  z-index: 2;
  min-width: 48px;
  min-height: 48px;
  padding: 0.35rem;
  justify-content: center;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.star:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 8px;
}
.star-core {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--focus);
  box-shadow: 0 0 0 4px var(--focus-wash);
  transition: transform 0.2s var(--ease);
}
.star:hover .star-core,
.star.on .star-core {
  transform: scale(1.35);
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(94, 200, 216, 0.25);
}
.star-lab {
  font-family: var(--font-m);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.25;
  background: rgba(12, 11, 18, 0.75);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
}
.star.on .star-lab {
  color: var(--ink);
}
/* Active route cut through the constellation */
.route-path-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}
.route-path {
  stroke: rgba(231, 160, 8, 0.55);
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 2 2.5;
}
.constellation.has-route .star.dim {
  opacity: 0.22;
  filter: grayscale(0.35);
}
.constellation.has-route .star.dim .star-lab {
  opacity: 0.55;
}
.constellation.has-route .star.in-route {
  z-index: 3;
}
.constellation.has-route .star.in-route .star-core {
  background: var(--focus);
  box-shadow: 0 0 0 5px var(--focus-wash);
}
.constellation .star.visited .star-core {
  background: #e7a008;
  box-shadow: 0 0 0 5px rgba(231, 160, 8, 0.28);
}
.constellation .star.booked .star-core::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  top: -3px;
  right: -3px;
}
.constellation .star.booked .star-core {
  position: relative;
}
.constellation .star.current .star-core {
  animation: star-pulse 1.8s ease-in-out infinite;
}
@keyframes star-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 4px rgba(94, 200, 216, 0.2);
  }
  50% {
    transform: scale(1.28);
    box-shadow: 0 0 0 8px rgba(94, 200, 216, 0.35);
  }
}
@media (prefers-reduced-motion: reduce) {
  .constellation .star.current .star-core {
    animation: none;
  }
}
.muted-line {
  color: var(--muted);
  font-size: 0.95rem;
}
/* blindness demo */
.ib-stage {
  position: relative;
  height: 240px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--night-2);
  overflow: hidden;
  margin: 1rem 0;
}
.ib-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(94, 200, 216, 0.45);
  transform: translateX(-1px);
  z-index: 1;
}
.ib-tok {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  z-index: 2;
}
.ib-tok.amber {
  /* Task tokens: clear orange, not soft gold — must read against slate at a glance */
  background: #f06a12;
  box-shadow: 0 0 0 1px rgba(240, 106, 18, 0.35);
}
.ib-tok.slate {
  background: #4a5060;
}
.ib-intruder {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: #5a6270;
  z-index: 3;
  opacity: 0.95;
}
.ib-intruder.mark {
  outline: 3px solid var(--cyan);
  box-shadow: 0 0 0 6px rgba(94, 200, 216, 0.25);
}
.ib-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.ib-result {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  background: var(--panel);
}
.ib-reveal {
  color: var(--focus);
  margin: 0.75rem 0;
  font-family: var(--font-d);
  font-size: 1.1rem;
}
.ib-payoff {
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 58ch;
  margin-top: 0.75rem;
}
.ib-static-row {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0;
}
.ib-static-panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem;
  min-height: 80px;
  background: var(--night-2);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.ib-static-panel.miss {
  flex-direction: column;
  align-items: flex-start;
}
.ib-amber {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #f06a12;
  box-shadow: 0 0 0 1px rgba(240, 106, 18, 0.35);
}
.ib-slate {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #4a5060;
}
.ib-big {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #5a6270;
  outline: 2px solid var(--cyan);
}
.sr-only-crawl {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  pointer-events: none !important;
  left: 0;
  top: 0;
}
.noscript-essays {
  padding: 2rem 0;
  color: var(--ink);
}
.bn-stage {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem;
  background: var(--night-2);
  min-height: 140px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}
.bn-flood,
.bn-pass {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 48px;
}
.bn-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.5;
}
.bn-stage[data-state="flood"] .bn-dot {
  background: var(--focus);
  opacity: 0.85;
  animation: pop 0.4s var(--ease) both;
  animation-delay: calc(var(--i) * 0.03s);
}
.bn-dot.pass {
  background: var(--cyan);
  opacity: 1;
}
.bn-gate {
  font-family: var(--font-m);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--focus);
  border: 1px dashed rgba(231, 160, 8, 0.5);
  padding: 1.2rem 0.6rem;
  border-radius: 8px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.bn-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.btn {
  position: relative;
  z-index: 1;
  font-family: var(--font-m);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--focus);
  color: #111;
  border-radius: 999px;
  padding: 0.65rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  touch-action: manipulation;
  min-height: 44px;
}
.btn.ghost {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
}
.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.bn-status {
  font-family: var(--font-m);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0.65rem 0 0;
  min-height: 1.2em;
}
.bn-stage[data-state="flood"] + .bn-actions + .bn-status,
.bn-wrap[data-state="flood"] .bn-status {
  color: var(--focus);
}
.qkv {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem;
  background: var(--panel);
  margin: 1rem 0;
}
.qkv-caption {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
  max-width: 48ch;
}
.qkv-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.65rem;
}
.tok {
  font-family: var(--font-m);
  font-size: 0.85rem;
  color: var(--cyan);
}
.qkv-bars {
  display: flex;
  gap: 4px;
  height: 14px;
}
.qkv-bars i {
  flex: 1;
  display: block;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--focus), var(--cyan));
  transform-origin: left;
  transform: scaleX(var(--w, 0.3));
  opacity: 0.85;
  transition: transform 0.15s linear;
}
.coda-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.coda-table th {
  font-family: var(--font-m);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
  padding: 0.75rem 0.85rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.coda-table td {
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.coda-table tr:hover td {
  background: rgba(231, 160, 8, 0.06);
}
.coda-table td:last-child {
  color: var(--focus);
  font-family: var(--font-d);
  font-style: italic;
}
.paper .coda-table th {
  color: #6e7080;
}
.paper .coda-table td {
  border-color: rgba(22, 22, 28, 0.1);
  color: var(--paper-ink);
}
.paper .coda-table td:last-child {
  color: #9a6a00;
}
.tools-grid {
  display: grid;
  gap: 0.75rem;
}
.tool {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.05rem 1.15rem;
  background: var(--panel);
}
.tool h3 {
  font-family: var(--font-d);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--focus);
}
.tool p {
  font-size: 0.95rem;
  color: var(--muted);
}
.tl {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1rem;
}
.tl-item {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 0.75rem;
  align-items: baseline;
}
.tl-y {
  font-family: var(--font-m);
  font-size: 0.75rem;
  color: var(--focus);
}
.tl-t {
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.sources p {
  max-width: 62ch;
  color: var(--muted);
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}
.source-list {
  list-style: none;
  margin: 1rem 0;
}
.source-list a {
  color: var(--focus);
  text-decoration: none;
  font-size: 0.92rem;
}
.source-list li {
  margin-bottom: 0.5rem;
}
.closer {
  text-align: center;
  padding: 5rem 0 4rem;
  background: radial-gradient(80% 60% at 50% 100%, rgba(231, 160, 8, 0.12), var(--night));
}
.closer h2 {
  max-width: 16ch;
  margin: 0 auto 1rem;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
}
.closer .lead {
  margin: 0 auto;
  text-align: center;
}
footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1.2rem 3rem;
  text-align: center;
  font-family: var(--font-m);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  line-height: 1.7;
}
@keyframes pop {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 0.85;
  }
}
@media (min-width: 720px) {
  .levels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .syn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .atlas-shell {
    grid-template-columns: 1.15fr 0.95fr;
  }
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ib-static-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 960px) {
  .levels-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .syn-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Masterpiece layer: routes, insights, anatomy, progress --- */
.route-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 1rem;
}
.route-card {
  text-align: left;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 1.1rem 1.15rem;
  background: var(--panel);
  min-height: 120px;
  cursor: pointer;
  transition: border-color 0.15s var(--ease), transform 0.15s var(--ease);
}
.route-card:hover,
.route-card:focus-visible {
  border-color: var(--focus);
  outline: none;
  transform: translateY(-1px);
}
.route-card.on {
  border-color: var(--focus);
  box-shadow: 0 0 0 1px var(--focus-wash);
}
.route-card .mins {
  font-family: var(--font-m);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--focus);
}
.route-card strong {
  display: block;
  font-family: var(--font-d);
  font-weight: 500;
  font-size: 1.15rem;
  margin: 0.35rem 0 0.45rem;
}
.route-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  margin: 0;
}
.route-q {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.route-q button {
  font-family: var(--font-m);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
  min-height: 44px;
}
.route-q button.on,
.route-q button:hover {
  border-color: var(--focus);
  color: var(--ink);
}
.route-status {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}
.route-status strong {
  color: var(--ink);
  font-weight: 600;
}
.route-clear-btn {
  font-family: var(--font-m);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6e5a20;
  background: transparent;
  border: 1px solid rgba(22, 22, 28, 0.14);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  min-height: 32px;
  cursor: pointer;
}
.route-clear-btn:hover,
.route-clear-btn:focus-visible {
  border-color: rgba(231, 160, 8, 0.45);
  color: #9a6a00;
  outline: none;
}
.insights-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 1rem;
}
.insight-card h3 {
  font-family: var(--font-d);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  margin: 0.35rem 0 0.75rem;
  max-width: 36ch;
  color: var(--paper-ink);
}
.insight-body {
  color: var(--paper-soft);
  max-width: 64ch;
  line-height: 1.62;
}
.insight-dom-lab {
  font-family: var(--font-m);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6e7080;
  margin: 1rem 0 0.4rem;
}
.insight-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.insight-chip {
  font-family: var(--font-m);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 22, 28, 0.15);
  color: #3b3d48;
  background: rgba(231, 160, 8, 0.08);
  min-height: 36px;
}
.insight-chip:hover {
  border-color: #9a6a00;
  color: #16161c;
}
.anat-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0 1.25rem;
}
.anat-controls label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-family: var(--font-m);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6e7080;
}
.anat-controls select {
  font: inherit;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
  font-family: var(--font-b);
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(22, 22, 28, 0.15);
  background: #fff;
  color: var(--paper-ink);
  min-width: 12rem;
}
.anat-table-wrap {
  overflow-x: auto;
  margin-bottom: 1.25rem;
}
.anat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.anat-table th,
.anat-table td {
  border-bottom: 1px solid rgba(22, 22, 28, 0.1);
  padding: 0.75rem 0.85rem;
  vertical-align: top;
  text-align: left;
}
.anat-table th[scope="row"] {
  font-family: var(--font-m);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6e7080;
  width: 9rem;
}
.anat-cell {
  text-align: left;
  color: var(--paper-ink);
  font-family: var(--font-d);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.35;
  cursor: pointer;
}
.anat-cell:hover {
  color: #9a6a00;
}
.anat-empty {
  color: #a0a2ad;
}
.anat-limit {
  margin-top: 0.5rem;
}
.anat-limit .eyebrow {
  color: #6e7080;
}
.anat-limit p:last-child {
  color: var(--paper-ink);
  max-width: 58ch;
}
.anat-open {
  margin-top: 1rem;
}
/* Left-side constellation progress — stays off the text column */
.field-rail {
  position: fixed;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 0.55rem 0.4rem;
  pointer-events: auto;
}
.field-rail button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid rgba(243, 242, 236, 0.4);
  background: transparent;
  padding: 0;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
}
.field-rail button.visited {
  background: var(--focus);
  border-color: var(--focus);
}
.field-rail button.current {
  transform: scale(1.5);
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(94, 200, 216, 0.28);
}
.field-rail button.booked {
  border-color: var(--cyan);
  box-shadow: inset 0 0 0 2px var(--night);
}
.field-rail button[data-jump]:hover::after,
.field-rail button[data-jump]:focus-visible::after {
  content: attr(data-lab);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-family: var(--font-m);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(12, 11, 18, 0.94);
  color: var(--ink);
  padding: 0.25rem 0.45rem;
  border-radius: 4px;
  border: 1px solid var(--line);
  z-index: 130;
  pointer-events: none;
}
/* Tiny zen clear — ring under the dots, almost invisible until hover */
.field-rail .rail-clear {
  width: 11px;
  height: 11px;
  margin-top: 0.65rem;
  border-radius: 50%;
  border: 1px solid rgba(243, 242, 236, 0.28);
  background: radial-gradient(circle at 50% 50%, transparent 55%, rgba(243, 242, 236, 0.06) 56%);
  padding: 0;
  opacity: 0.4;
  transition: opacity 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.4s var(--ease), transform 0.25s var(--ease);
}
.field-rail .rail-clear:hover,
.field-rail .rail-clear:focus-visible {
  opacity: 0.9;
  border-color: rgba(231, 160, 8, 0.55);
  box-shadow: 0 0 0 3px rgba(231, 160, 8, 0.1), 0 0 14px rgba(231, 160, 8, 0.12);
  outline: none;
  transform: scale(1.08);
}
.field-rail .rail-clear.breathing,
.field-rail.is-clearing .rail-clear {
  animation: rail-clear-breath 0.75s var(--ease);
  border-color: rgba(94, 200, 216, 0.55);
  box-shadow: 0 0 0 4px rgba(94, 200, 216, 0.12);
}
.field-rail button[data-jump].clearing {
  animation: rail-dot-empty 0.6s var(--ease) forwards;
  animation-delay: calc(var(--clear-i, 0) * 42ms);
}
@keyframes rail-dot-empty {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  35% {
    transform: scale(1.45);
    opacity: 0.95;
    background: var(--focus);
    border-color: var(--focus);
    box-shadow: 0 0 10px rgba(231, 160, 8, 0.35);
  }
  100% {
    transform: scale(0.85);
    opacity: 0.55;
    background: transparent;
    border-color: rgba(243, 242, 236, 0.35);
    box-shadow: none;
  }
}
@keyframes rail-clear-breath {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  45% {
    transform: scale(1.35);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.45;
  }
}
@media (prefers-reduced-motion: reduce) {
  .field-rail button[data-jump].clearing,
  .field-rail .rail-clear.breathing,
  .field-rail.is-clearing .rail-clear {
    animation: none;
  }
}
@media (max-width: 900px) {
  .field-rail {
    left: 6px;
    gap: 5px;
    padding: 0.35rem 0.25rem;
  }
  .field-rail button[data-jump] {
    width: 7px;
    height: 7px;
  }
  .field-rail .rail-clear {
    width: 9px;
    height: 9px;
    margin-top: 0.45rem;
  }
  /* On narrow screens, label would cover text — skip hover labels */
  .field-rail button[data-jump]:hover::after,
  .field-rail button[data-jump]:focus-visible::after {
    display: none;
  }
}
/* Center resume overlay permanently off — never cover reading */
.resume-bar {
  display: none !important;
}
.field-mins {
  font-family: var(--font-m);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a6a20;
  float: right;
}
.field-bookmark {
  font-family: var(--font-m);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6e7080;
  border: 1px solid rgba(22, 22, 28, 0.12);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  margin-bottom: 0.5rem;
  min-height: 32px;
}
.field-bookmark.on {
  color: #9a6a00;
  border-color: rgba(231, 160, 8, 0.45);
}
.field-evidence {
  margin: 1.35rem 0 0.25rem;
  border: 1px solid rgba(22, 22, 28, 0.1);
  border-radius: 12px;
  background: rgba(12, 11, 18, 0.03);
  padding: 0.55rem 0.85rem 0.65rem;
  clear: both;
}
.field-evidence summary {
  font-family: var(--font-m);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #6e5a20;
  cursor: pointer;
  list-style: none;
  min-height: 32px;
  display: flex;
  align-items: center;
}
.field-evidence summary::-webkit-details-marker {
  display: none;
}
.field-evidence summary::before {
  content: "▸";
  display: inline-block;
  margin-right: 0.45rem;
  color: rgba(231, 160, 8, 0.75);
  transition: transform 0.15s ease;
}
.field-evidence[open] summary::before {
  transform: rotate(90deg);
}
.field-evidence-body {
  padding: 0.35rem 0 0.25rem;
  border-top: 1px solid rgba(22, 22, 28, 0.08);
  margin-top: 0.45rem;
}
.ev-row {
  margin: 0.75rem 0;
}
.ev-lab {
  font-family: var(--font-m);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.25rem;
}
.ev-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--paper-soft);
  max-width: 62ch;
}
.ev-sources {
  margin: 0.25rem 0 0;
  padding-left: 1.1rem;
  max-width: 62ch;
}
.ev-sources li {
  margin: 0.3rem 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--paper-soft);
}
.ev-sources a {
  color: #6e5a20;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ev-sources a:hover {
  color: #9a6a00;
}
.ev-meta {
  color: var(--muted);
  font-size: 0.88em;
}
.your-atlas-summary {
  font-family: var(--font-d);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  margin: 0.5rem 0 0.35rem;
  max-width: 32ch;
  color: var(--ink);
}
.your-atlas-meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 1rem;
}
.your-atlas-map {
  margin: 0.5rem 0 1.25rem;
}
.your-atlas-map .constellation {
  min-height: min(42vh, 340px);
}
.your-atlas-map .atlas-hint {
  display: none;
}
.your-atlas-map.is-personal .atlas-jump-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin-top: 0.65rem;
}
.your-atlas-map.is-personal .atlas-jump-list button {
  font-family: var(--font-m);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(22, 22, 28, 0.12);
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  background: transparent;
}
.your-atlas-map.is-personal .atlas-jump-list button:hover {
  color: var(--focus);
  border-color: rgba(231, 160, 8, 0.35);
}
.your-atlas-map .constellation.personal-empty .star {
  opacity: 0.35;
}
.your-atlas-booked h3 {
  font-family: var(--font-m);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.4rem;
}
.your-atlas-booked-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin-bottom: 1rem;
}
.your-atlas-booked-list button {
  color: var(--ink-soft);
  font-size: 0.92rem;
  text-align: left;
}
.your-atlas-booked-list button:hover {
  color: var(--focus);
}
/* legacy three-col layout (unused) */
.your-atlas-cols {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin: 1rem 0;
}
.insight-chain {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.35rem 0.25rem;
  margin: 0.65rem 0 0.85rem;
  max-width: 70ch;
}
.insight-chain-node {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  max-width: 11rem;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  background: rgba(231, 160, 8, 0.06);
  border: 1px solid rgba(231, 160, 8, 0.14);
}
.insight-chain-node strong {
  font-family: var(--font-m);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a6a20;
  font-weight: 600;
}
.insight-chain-step {
  font-size: 0.82rem;
  color: var(--paper-soft);
  line-height: 1.35;
}
.insight-chain-arrow {
  align-self: center;
  color: rgba(231, 160, 8, 0.55);
  font-size: 0.85rem;
  padding: 0 0.15rem;
}
.insight-details {
  margin: 0.75rem 0 1rem;
  max-width: 64ch;
  border: 1px solid rgba(22, 22, 28, 0.1);
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.35);
}
.insight-details summary {
  font-family: var(--font-m);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6e5a20;
  cursor: pointer;
  list-style: none;
}
.insight-details summary::-webkit-details-marker {
  display: none;
}
.insight-details[open] summary {
  margin-bottom: 0.5rem;
}
.insight-why,
.insight-fail {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--paper-soft);
  margin: 0.4rem 0;
}
.insight-fail-lab {
  display: block;
  font-family: var(--font-m);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.star.insight-hl {
  z-index: 5;
  opacity: 1 !important;
  filter: none !important;
}
.star.insight-hl .star-core {
  transform: scale(1.4);
  background: var(--cyan);
  box-shadow: 0 0 0 7px rgba(94, 200, 216, 0.35);
}
.star.insight-hl .star-lab {
  color: var(--ink);
  border: 1px solid rgba(94, 200, 216, 0.4);
}
/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  background: var(--focus);
  color: #0c0b12;
  padding: 0.5rem 0.85rem;
  font-family: var(--font-m);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
}
.hero-byline {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}
/* Inline resume under routes — never overlay text */
.resume-inline {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(22, 22, 28, 0.12);
  border-radius: 12px;
  background: rgba(231, 160, 8, 0.06);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}
.resume-inline[hidden] {
  display: none !important;
}
.resume-inline-text {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.resume-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
/* Mobile progress strip — compact, under nav */
.mobile-progress {
  display: none;
  position: sticky;
  top: 0;
  z-index: 40;
  height: 34px;
  background: rgba(12, 11, 18, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
@media (max-width: 720px) {
  .mobile-progress {
    display: block;
  }
}
.mobile-progress-btn {
  width: 100%;
  height: 34px;
  padding: 0 0.85rem;
  text-align: left;
  font-family: var(--font-m);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
}
.field-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}
.field-copy-link {
  font-family: var(--font-m);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6e7080;
  border: 1px solid rgba(22, 22, 28, 0.12);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  min-height: 32px;
  background: transparent;
  cursor: pointer;
}
.field-copy-link:hover,
.field-copy-link:focus-visible {
  color: #9a6a00;
  border-color: rgba(231, 160, 8, 0.45);
  outline: none;
}
.colophon {
  max-width: 52ch;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.colophon p {
  margin: 0.35rem 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Center resume overlay permanently off */
.resume-bar {
  display: none !important;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .star.current .star-core,
  .field-rail button[data-jump].clearing,
  .field-rail .rail-clear.breathing {
    animation: none !important;
  }
}
