:root {
  --ink: #13271f;
  --ink-2: #294038;
  --muted: #627169;
  --paper: #f3f1e8;
  --paper-2: #e9e7dc;
  --white: #fffef8;
  --forest: #10251c;
  --forest-2: #18392b;
  --green: #39b86e;
  --focus: #006633;
  --mint: #7de29a;
  --lime: #d7ff63;
  --amber: #f0b94b;
  --blue: #84b9ff;
  --red: #ef796f;
  --line: rgba(19, 39, 31, 0.16);
  --line-light: rgba(255, 255, 255, 0.17);
  --shadow: 0 24px 80px rgba(16, 37, 28, 0.12);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shell: min(1240px, calc(100vw - 48px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-detail {
  background: #eeece3;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.035em;
  line-height: 1.05;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

::selection {
  color: var(--forest);
  background: var(--lime);
}

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--focus);
}

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

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--forest);
  background: var(--lime);
  border-radius: 8px;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.signal-bar {
  color: #d5e6dc;
  background: #091912;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.signal-bar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.signal-bar__date {
  margin-left: auto;
  color: #8da69a;
}

.signal-dot {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(215, 255, 99, 0.09);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(243, 241, 232, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(16, 37, 28, 0.06);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  color: var(--lime);
  background: var(--forest);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.brand-mark span {
  display: grid;
  place-items: center;
}

.brand-mark span:last-child {
  color: var(--forest);
  background: var(--lime);
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: 0.08em;
}

.brand-copy small {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.desktop-nav a {
  padding: 9px 12px;
  color: var(--ink-2);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 650;
  transition: color 180ms ease, background 180ms ease;
}

.desktop-nav a:hover {
  color: var(--ink);
  background: rgba(16, 37, 28, 0.06);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(125, 226, 154, 0.15), transparent 32%),
    radial-gradient(circle at 18% 90%, rgba(215, 255, 99, 0.09), transparent 32%),
    var(--forest);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-noise::before,
.hero-noise::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.hero-noise::before {
  width: 680px;
  height: 680px;
  top: -330px;
  right: -190px;
}

.hero-noise::after {
  width: 380px;
  height: 380px;
  bottom: -260px;
  left: 27%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 740px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  align-items: center;
  gap: 7vw;
  padding-block: 88px 76px;
}

.eyebrow {
  margin-bottom: 22px;
  color: #597068;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #90a99e;
}

.hero-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-copy .eyebrow span:last-child {
  color: var(--lime);
}

.hero-copy .eyebrow span:first-child::after {
  content: "";
  display: inline-block;
  width: 44px;
  height: 1px;
  margin-left: 14px;
  vertical-align: middle;
  background: rgba(255, 255, 255, 0.24);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(58px, 6.4vw, 96px);
  font-weight: 740;
  letter-spacing: -0.073em;
  line-height: 0.91;
}

.hero-title-accent {
  position: relative;
  display: inline-block;
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.hero-title-accent::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -7px;
  left: 4px;
  height: 7px;
  background: url("data:image/svg+xml,%3Csvg width='300' height='8' viewBox='0 0 300 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 6C75 1 226 1 299 5' stroke='%23d7ff63' stroke-width='2' fill='none' opacity='.72'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: #c1d2c9;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.hero-actions,
.decision-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 780;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button:hover {
  transform: translateY(-2px);
}

.button--lime {
  color: var(--forest);
  background: var(--lime);
  box-shadow: 0 12px 32px rgba(215, 255, 99, 0.12);
}

.button--lime:hover {
  background: #e1ff89;
}

.button--ghost-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.22);
}

.button--ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.36);
}

.button--dark {
  color: var(--white);
  background: var(--forest);
}

.button--outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.hero-proof {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-proof > div {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 16px 18px;
  background: rgba(16, 37, 28, 0.8);
}

.hero-proof strong {
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 19px;
}

.hero-proof span {
  color: #9bb0a5;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.hero-system {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
}

.hero-system::before {
  content: "";
  position: absolute;
  inset: 50px 0 64px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 26px;
}

.system-orbit {
  position: relative;
  width: min(420px, 36vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(215, 255, 99, 0.25);
  border-radius: 50%;
}

.orbit--outer {
  inset: 4%;
  border-style: dashed;
  animation: rotate 40s linear infinite;
}

.orbit--inner {
  inset: 22%;
  border-color: rgba(125, 226, 154, 0.26);
  animation: rotate-reverse 25s linear infinite;
}

.system-core {
  position: relative;
  z-index: 2;
  width: 126px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--lime);
  border-radius: 50%;
  box-shadow:
    0 0 0 18px rgba(215, 255, 99, 0.06),
    0 0 80px rgba(215, 255, 99, 0.15);
}

.system-core strong {
  color: var(--forest);
  font-size: 25px;
  letter-spacing: -0.04em;
}

.system-core small {
  color: #4c6428;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.core-pulse {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(215, 255, 99, 0.45);
  border-radius: 50%;
  animation: pulse-ring 3s ease-out infinite;
}

.node {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  color: #d6e4dc;
  background: #173226;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.07em;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.node i {
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
}

.node--1 { top: 6%; left: 28%; }
.node--2 { top: 26%; right: -2%; }
.node--3 { right: 5%; bottom: 19%; }
.node--4 { bottom: 3%; left: 29%; }
.node--5 { top: 42%; left: -3%; }

.system-label {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  color: #b8ccc1;
  background: rgba(9, 25, 18, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.system-label span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.system-label small {
  font-size: 9px;
}

.system-label--top {
  top: 20px;
  right: 0;
}

.system-label--bottom {
  bottom: 34px;
  left: 0;
}

.system-readout {
  position: absolute;
  right: 22px;
  bottom: 76px;
  width: 168px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 10px;
  padding: 12px;
  color: #94aa9e;
  background: #0b1d15;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
}

.system-readout strong {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  color: var(--lime);
  font-size: 16px;
}

.readout-track {
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.readout-track i {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--mint);
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
  to { transform: rotate(-360deg); }
}

@keyframes pulse-ring {
  0% { opacity: 0.7; transform: scale(0.95); }
  70%, 100% { opacity: 0; transform: scale(1.25); }
}

.context-strip {
  background: var(--lime);
  border-bottom: 1px solid rgba(16, 37, 28, 0.16);
}

.context-grid {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1.15fr;
  align-items: center;
  gap: 24px;
}

.context-grid p {
  margin: 0;
  font-size: 13px;
  font-weight: 610;
}

.context-grid > span {
  font-family: Georgia, serif;
  font-size: 26px;
}

.section {
  padding-block: 120px;
}

.section-heading {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.72fr);
  align-items: end;
  gap: 80px;
}

.section-heading h2,
.nace-content h2,
.strategy-header h2,
.consortium-copy h2,
.sources-layout h2 {
  max-width: 740px;
  margin-bottom: 0;
  font-size: clamp(38px, 4.6vw, 66px);
  font-weight: 700;
  letter-spacing: -0.06em;
}

.section-intro {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.project-filters {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding-block: 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.filter-button {
  padding: 8px 13px;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--white);
  background: var(--forest);
}

.filter-count {
  margin-left: auto;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.project-card {
  --card-accent: var(--green);
  position: relative;
  grid-column: span 6;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 28px;
  color: var(--white);
  background: var(--forest);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow: 0 0 0 rgba(16, 37, 28, 0);
  transition:
    transform 300ms var(--ease),
    box-shadow 300ms var(--ease),
    border-color 300ms ease;
}

.project-card:nth-child(3) {
  grid-column: span 12;
  min-height: 430px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
}

.project-card:hover {
  z-index: 2;
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--card-accent) 65%, transparent);
  box-shadow: var(--shadow);
}

.project-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 19, 13, 0.2) 0%, rgba(6, 19, 13, 0.64) 45%, rgba(6, 19, 13, 0.98) 78%),
    linear-gradient(90deg, rgba(6, 19, 13, 0.66) 0%, transparent 78%);
}

.project-card:hover::before {
  background:
    linear-gradient(180deg, rgba(6, 19, 13, 0.16) 0%, rgba(6, 19, 13, 0.61) 45%, rgba(6, 19, 13, 0.98) 78%),
    linear-gradient(90deg, rgba(6, 19, 13, 0.62) 0%, transparent 78%);
}

.project-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}

.project-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 72% center;
}

.project-media--card img {
  filter: saturate(0.92) contrast(1.03);
  transition: transform 650ms var(--ease), filter 300ms ease;
}

.project-card:hover .project-media--card img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.04);
}

.project-card__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.project-number {
  min-height: 47px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  padding: 7px 11px 8px;
  color: var(--forest);
  background: var(--card-accent);
  border: 1px solid color-mix(in srgb, var(--card-accent) 72%, var(--forest));
  border-radius: 7px;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--card-accent) 28%, transparent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  line-height: 1;
  white-space: nowrap;
}

.project-number__index {
  opacity: 0.72;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.project-number strong {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1.1;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  color: var(--ink-2);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.status-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--muted);
  border-radius: 50%;
}

.status-badge--open::before { background: var(--green); box-shadow: 0 0 0 4px rgba(57, 184, 110, 0.12); }
.status-badge--upcoming::before { background: var(--blue); box-shadow: 0 0 0 4px rgba(132, 185, 255, 0.13); }
.status-badge--reference::before { background: var(--amber); }
.status-badge--closed::before { background: var(--red); }

.project-card .status-badge {
  max-width: 225px;
  color: #e4eee8;
  background: rgba(6, 19, 13, 0.72);
  border-color: rgba(255, 255, 255, 0.16);
  line-height: 1.35;
  backdrop-filter: blur(9px);
}

.project-card__body {
  position: relative;
  z-index: 2;
  margin-top: 64px;
}

.project-card:nth-child(3) .project-card__body {
  margin-top: 82px;
}

.project-card h3 {
  max-width: 570px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 43px);
  letter-spacing: -0.055em;
  text-shadow: 0 2px 20px rgba(3, 12, 8, 0.24);
}

.project-card__summary {
  max-width: 640px;
  margin-bottom: 28px;
  color: #cfddd5;
  font-size: 14px;
  line-height: 1.65;
}

.project-card__meta {
  position: relative;
  z-index: 2;
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.project-card:nth-child(3) .project-card__meta {
  align-self: end;
  margin-top: 0;
}

.project-card__meta div {
  padding: 14px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.project-card__meta div:first-child {
  padding-left: 0;
}

.project-card__meta div:last-child {
  border-right: 0;
}

.project-card__meta span,
.metric-label {
  display: block;
  margin-bottom: 3px;
  color: #99ada2;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card__meta strong {
  color: var(--white);
  font-size: 13px;
}

.project-card__action {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 11px 11px 15px;
  background: rgba(255, 255, 255, 0.085);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 15px;
  backdrop-filter: blur(9px);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms var(--ease);
}

.project-card__action:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: color-mix(in srgb, var(--card-accent) 62%, transparent);
  transform: translateY(-2px);
}

.project-card__action-copy {
  display: grid;
  gap: 3px;
}

.project-card__action-copy small {
  color: #9db0a5;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.project-card__action-copy strong {
  color: var(--white);
  font-size: 16px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.project-card__action-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--forest);
  background: var(--card-accent);
  border: 1px solid color-mix(in srgb, var(--card-accent) 68%, var(--forest));
  border-radius: 14px;
  box-shadow: 0 8px 22px color-mix(in srgb, var(--card-accent) 24%, transparent);
  transition: transform 240ms var(--ease), box-shadow 240ms ease;
}

.project-card__action-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 240ms var(--ease);
}

.project-card__action:hover .project-card__action-icon {
  transform: scale(1.04);
  box-shadow: 0 11px 28px color-mix(in srgb, var(--card-accent) 34%, transparent);
}

.project-card__action:hover .project-card__action-icon svg {
  transform: translate(2px, -1px);
}

.project-card[hidden] {
  display: none;
}

.nace-section {
  color: var(--white);
  background:
    linear-gradient(120deg, transparent 70%, rgba(215, 255, 99, 0.05)),
    var(--forest);
}

.nace-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  align-items: start;
}

.nace-code {
  position: sticky;
  top: 132px;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    var(--forest-2);
  background-size: 34px 34px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
}

.nace-number {
  margin: 36px 0 18px;
  display: flex;
  align-items: baseline;
  color: var(--lime);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 780;
  letter-spacing: -0.08em;
  line-height: 1;
}

.nace-number i {
  color: #6e8b7c;
  font-family: Georgia, serif;
  font-style: normal;
  font-weight: 400;
}

.nace-code > p:not(.eyebrow) {
  max-width: 260px;
  color: #b7c9bf;
  font-size: 15px;
}

.nace-stamp {
  width: fit-content;
  margin-top: auto;
  padding: 7px 10px;
  color: var(--forest);
  background: var(--mint);
  border-radius: 5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
  transform: rotate(-2deg);
}

.nace-content h2 {
  margin-bottom: 26px;
}

.nace-content > p:not(.eyebrow) {
  max-width: 760px;
  color: #adbbb3;
  font-size: 17px;
}

.role-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.role-grid article {
  min-height: 184px;
  padding: 25px;
  background: var(--forest);
}

.role-grid span {
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
}

.role-grid h3 {
  margin: 30px 0 8px;
  font-size: 21px;
}

.role-grid p {
  color: #98aaa0;
  font-size: 13px;
  line-height: 1.6;
}

.truth-note {
  margin-top: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 17px;
  color: #bfcfc6;
  background: rgba(240, 185, 75, 0.08);
  border: 1px solid rgba(240, 185, 75, 0.28);
  border-radius: var(--radius-sm);
}

.truth-note svg {
  width: 22px;
  fill: none;
  stroke: var(--amber);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.truth-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.call-section {
  background: var(--paper-2);
}

.call-radar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.call-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.call-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.call-card__id {
  max-width: 72%;
  color: var(--ink-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.45;
  word-break: break-word;
}

.call-card h3 {
  margin: 44px 0 12px;
  font-size: 23px;
}

.call-card p {
  color: var(--muted);
  font-size: 12px;
}

.call-card__footer {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.call-card__footer strong {
  display: block;
  font-size: 13px;
}

.call-card__footer span {
  display: block;
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.call-card__footer a {
  font-size: 11px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.strategy-section {
  color: var(--white);
  background: #0b1b14;
}

.strategy-header {
  max-width: 890px;
  margin-bottom: 58px;
}

.strategy-header h2 {
  margin-bottom: 26px;
}

.strategy-header > p:not(.eyebrow) {
  max-width: 680px;
  color: #9fb1a7;
  font-size: 16px;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.score-card {
  min-height: 415px;
  padding: 27px;
  background: #12271e;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
}

.score-card--lime {
  color: var(--forest);
  background: var(--lime);
  border-color: transparent;
  transform: translateY(-22px);
}

.score-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.score-card__top > span {
  color: #89a096;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.07em;
}

.score-card--lime .score-card__top > span {
  color: #607631;
}

.score-card__top strong {
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 24px;
}

.score-card--lime .score-card__top strong {
  color: var(--forest);
}

.score-card__top small {
  display: block;
  color: #879c91;
  font-size: 8px;
}

.score-card--lime .score-card__top small {
  color: #63783a;
}

.score-card h3 {
  margin: 56px 0 26px;
  font-size: 31px;
}

.score-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.score-card li {
  position: relative;
  padding-left: 19px;
  color: #a8bab0;
  font-size: 12px;
  line-height: 1.6;
}

.score-card--lime li {
  color: #405428;
}

.score-card li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
}

.score-card--lime li::before {
  background: var(--forest);
}

.evidence-chain {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.evidence-chain div {
  min-width: 0;
}

.evidence-chain span {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.evidence-chain strong {
  display: block;
  color: #d7e3dc;
  font-size: 12px;
  line-height: 1.5;
}

.evidence-chain > i {
  color: #52695e;
  font-style: normal;
}

.consortium-section {
  overflow: hidden;
}

.consortium-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  align-items: center;
  gap: 8vw;
}

.consortium-copy h2 {
  margin-bottom: 25px;
}

.consortium-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.text-link span {
  font-size: 18px;
}

.consortium-map {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}

.consortium-map::before,
.consortium-map::after {
  content: "";
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.consortium-map::before {
  width: 520px;
  height: 520px;
}

.consortium-map::after {
  width: 330px;
  height: 330px;
  border-style: dashed;
}

.map-core {
  position: relative;
  z-index: 3;
  width: 174px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  gap: 4px;
  color: var(--white);
  text-align: center;
  background: var(--forest);
  border-radius: 50%;
  box-shadow: 0 0 0 16px rgba(57, 184, 110, 0.08);
}

.map-core span {
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
}

.map-core strong {
  font-size: 15px;
}

.map-core small {
  color: #92a69b;
  font-size: 10px;
}

.map-ring {
  position: absolute;
  inset: 0;
}

.map-node {
  position: absolute;
  z-index: 4;
  width: 184px;
  min-height: 96px;
  display: grid;
  align-content: center;
  padding: 13px 15px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(16, 37, 28, 0.08);
}

.map-node span {
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
}

.map-node strong {
  margin-top: 4px;
  font-size: 13px;
}

.map-node small {
  color: var(--muted);
  font-size: 9px;
}

.map-node--1 { top: 0; left: 50%; transform: translateX(-50%); }
.map-node--2 { top: 23%; right: -2%; }
.map-node--3 { right: 7%; bottom: 9%; }
.map-node--4 { bottom: 0; left: 24%; }
.map-node--5 { bottom: 20%; left: -4%; }
.map-node--6 { top: 17%; left: 2%; }

.roadmap-section {
  background: var(--paper-2);
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  background: transparent;
  list-style: none;
}

.roadmap li {
  --phase-accent: var(--lime);
  --media-x: 68%;
  position: relative;
  isolation: isolate;
  min-height: 430px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 22px;
  color: var(--white);
  background: var(--forest);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(16, 37, 28, 0.1);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.roadmap li::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 22, 15, 0.2) 0%, rgba(7, 22, 15, 0.58) 42%, rgba(7, 22, 15, 0.98) 78%),
    linear-gradient(90deg, rgba(7, 22, 15, 0.5) 0%, transparent 76%);
}

.roadmap li:hover {
  border-color: color-mix(in srgb, var(--phase-accent) 64%, transparent);
  box-shadow: 0 20px 46px rgba(16, 37, 28, 0.18);
}

.roadmap li:nth-child(3n + 1) { --media-x: 58%; }
.roadmap li:nth-child(3n + 2) { --media-x: 72%; }
.roadmap li:nth-child(3n) { --media-x: 88%; }

.roadmap li[data-phase="discovery"] { --phase-accent: var(--lime); }
.roadmap li[data-phase="assembly"] { --phase-accent: var(--mint); }
.roadmap li[data-phase="writing"] { --phase-accent: var(--amber); }
.roadmap li[data-phase="submit"] { --phase-accent: var(--blue); }

.roadmap-card__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}

.roadmap-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--media-x) center;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 600ms var(--ease), filter 300ms ease;
}

.roadmap li:hover .roadmap-card__media img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.04);
}

.roadmap-card__top,
.roadmap-card__content {
  position: relative;
  z-index: 2;
}

.roadmap-card__top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.roadmap-card__index {
  width: 31px;
  height: 31px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--forest);
  background: var(--phase-accent);
  border-radius: 7px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 900;
}

.roadmap small {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  margin: 0;
  padding: 5px 8px;
  color: #d9e7df;
  background: rgba(7, 22, 15, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  backdrop-filter: blur(8px);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.09em;
}

.roadmap-card__phase {
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  padding: 5px 8px;
  color: var(--phase-accent);
  background: rgba(7, 22, 15, 0.7);
  border: 1px solid color-mix(in srgb, var(--phase-accent) 34%, transparent);
  border-radius: 999px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.roadmap-card__content {
  min-height: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-top: 112px;
}

.roadmap h3 {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 25px;
}

.roadmap p {
  color: #d3e0d8;
  font-size: 11.5px;
  line-height: 1.55;
}

.roadmap-card__summary {
  min-height: 54px;
  margin-bottom: 13px;
}

.roadmap-card__facts {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 9px;
  margin: 0;
}

.roadmap-card__facts > div {
  min-width: 0;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.roadmap-card__facts > div > span {
  display: block;
  margin-bottom: 4px;
  color: var(--phase-accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.roadmap-card__facts > div > strong {
  display: block;
  margin: 0;
  color: #f3f8f4;
  font-size: 10.5px;
  font-weight: 650;
  line-height: 1.42;
}

.roadmap .roadmap-card__gate {
  display: grid;
  gap: 4px;
  margin-top: auto;
  margin-bottom: 0;
  padding: 9px 10px;
  color: #f6fbf7;
  background: color-mix(in srgb, var(--phase-accent) 12%, rgba(6, 19, 13, 0.76));
  border: 1px solid color-mix(in srgb, var(--phase-accent) 34%, transparent);
  border-radius: 9px;
  backdrop-filter: blur(8px);
  font-size: 10px;
  line-height: 1.4;
}

.roadmap-card__gate span {
  color: var(--phase-accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 7.5px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.decision-section {
  padding-block: 80px;
  background: var(--paper);
}

.decision-card {
  min-height: 330px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 50px;
  padding: clamp(32px, 5vw, 64px);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(215, 255, 99, 0.12), transparent 26%),
    var(--forest);
  border-radius: var(--radius-lg);
}

.decision-card h2 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(35px, 4.5vw, 62px);
}

.sources-section {
  padding-block: 82px;
  border-top: 1px solid var(--line);
}

.sources-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
}

.sources-layout h2 {
  font-size: clamp(30px, 3.4vw, 46px);
}

.sources-layout > div:last-child > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.source-links {
  margin-top: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}

.source-links a {
  display: inline-flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
}

.source-links a::after {
  content: "↗";
  flex: 0 0 auto;
}

.source-links a:hover {
  color: var(--green);
}

.site-footer {
  color: #a9bbb1;
  background: #08170f;
}

.footer-inner {
  min-height: 140px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.brand--footer .brand-mark {
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.brand--footer .brand-copy strong {
  color: var(--white);
}

.brand--footer .brand-copy small {
  color: #6f897b;
}

.footer-inner > p {
  margin: 0;
  font-size: 11px;
}

.footer-meta {
  color: #60776a;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 20px;
  bottom: 20px;
  max-width: min(380px, calc(100vw - 40px));
  padding: 13px 16px;
  color: var(--white);
  background: var(--forest);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.noscript {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  max-width: 460px;
  padding: 18px;
  color: var(--white);
  background: #6a241f;
  border-radius: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal--delay {
  transition-delay: 110ms;
}

.reveal--delay-2 {
  transition-delay: 220ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Project detail */

.detail-page {
  min-height: 100vh;
}

.detail-hero {
  --detail-accent: var(--green);
  position: relative;
  overflow: hidden;
  padding-block: 42px 64px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 0%, color-mix(in srgb, var(--detail-accent) 24%, transparent), transparent 35%),
    var(--forest);
}

.detail-hero .project-media--detail img {
  object-position: 74% center;
  opacity: 0.68;
  filter: saturate(0.92) contrast(1.04);
}

.detail-hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 48px 48px;
}

.detail-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 19, 13, 0.98) 0%, rgba(6, 19, 13, 0.9) 40%, rgba(6, 19, 13, 0.44) 76%, rgba(6, 19, 13, 0.3) 100%),
    linear-gradient(180deg, rgba(6, 19, 13, 0.16), rgba(6, 19, 13, 0.82) 100%);
}

.detail-hero__inner {
  position: relative;
  z-index: 3;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 54px;
  color: #90a59a;
  font-size: 11px;
}

.breadcrumb a,
.breadcrumb button {
  padding: 0;
  color: var(--white);
  background: none;
  border: 0;
  cursor: pointer;
  font-weight: 700;
}

.breadcrumb a:hover,
.breadcrumb button:hover {
  color: var(--lime);
}

.detail-heading {
  display: grid;
  grid-template-columns: 1fr minmax(270px, 0.35fr);
  gap: 7vw;
  align-items: end;
}

.detail-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.detail-index {
  color: var(--detail-accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.detail-acronym {
  padding-left: 12px;
  color: #9bb0a5;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.detail-hero h1 {
  max-width: 940px;
  margin-bottom: 20px;
  font-size: clamp(48px, 6vw, 84px);
  letter-spacing: -0.068em;
}

.detail-subtitle {
  max-width: 780px;
  margin-bottom: 0;
  color: #bdcec4;
  font-size: clamp(16px, 1.7vw, 21px);
  line-height: 1.55;
}

.detail-side {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.detail-side > span {
  display: block;
  margin-bottom: 8px;
  color: #859d91;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-side > strong {
  display: block;
  margin-bottom: 13px;
  color: var(--detail-accent);
  font-size: 17px;
  line-height: 1.35;
}

.detail-side > p {
  color: #9cb0a5;
  font-size: 11px;
  line-height: 1.6;
}

.detail-actions {
  margin-top: 34px;
}

.detail-actions .button--lime {
  background: var(--detail-accent);
}

.detail-metrics {
  position: relative;
  z-index: 2;
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-metric {
  min-height: 102px;
  display: grid;
  align-content: center;
  padding: 14px;
  background: rgba(16, 37, 28, 0.88);
}

.detail-metric span {
  display: block;
  margin-bottom: 5px;
  color: #839b8e;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-metric strong {
  font-size: 13px;
  line-height: 1.35;
}

.detail-layout {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);
  gap: 58px;
  padding-block: 54px 110px;
}

.detail-toc {
  align-self: start;
  position: sticky;
  top: 110px;
}

.detail-toc__label {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.detail-toc nav {
  display: grid;
}

.detail-toc a {
  padding: 10px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 680;
  transition: color 180ms ease, padding-left 180ms ease;
}

.detail-toc a:hover,
.detail-toc a.is-active {
  padding-left: 7px;
  color: var(--ink);
}

.detail-toc a.is-active {
  border-bottom-color: var(--green);
}

.detail-toc__back {
  width: 100%;
  margin-top: 24px;
  padding: 10px 0;
  color: var(--ink);
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.detail-content {
  min-width: 0;
}

.detail-section {
  padding-block: 62px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 105px;
}

.detail-section:first-child {
  padding-top: 0;
}

.detail-section:last-child {
  border-bottom: 0;
}

.detail-section__head {
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
}

.detail-section__num {
  padding-top: 7px;
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.detail-section__head h2 {
  max-width: 760px;
  margin-bottom: 10px;
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing: -0.055em;
}

.detail-section__head p {
  max-width: 730px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.detail-lead {
  max-width: 860px;
  margin-bottom: 34px;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.7;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.content-card {
  padding: 23px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.content-card__index {
  display: block;
  margin-bottom: 28px;
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
}

.content-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.content-card h4 {
  margin-bottom: 8px;
  font-size: 14px;
}

.content-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.content-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-list li {
  position: relative;
  padding: 12px 0 12px 20px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.6;
}

.content-list li:last-child {
  border-bottom: 0;
}

.content-list li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}

.call-fit {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.primary-call {
  padding: 28px;
  color: var(--white);
  background: var(--forest);
  border-radius: var(--radius);
}

.primary-call__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 50px;
}

.primary-call__top > span:first-child {
  max-width: 65%;
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.55;
}

.primary-call h3 {
  max-width: 680px;
  margin-bottom: 17px;
  font-size: clamp(27px, 3.4vw, 42px);
}

.primary-call > p {
  color: #aebfb5;
  font-size: 13px;
  line-height: 1.7;
}

.call-facts {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.13);
}

.call-facts div {
  min-height: 74px;
  display: grid;
  align-content: center;
  padding: 10px 12px;
  background: var(--forest);
}

.call-facts span {
  color: #82998d;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.call-facts strong {
  font-size: 11px;
}

.source-button {
  display: inline-flex;
  margin-top: 22px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.alternative-calls {
  display: grid;
  gap: 12px;
}

.alt-call {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.alt-call__id {
  display: block;
  margin-bottom: 22px;
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.5;
}

.alt-call h4 {
  margin-bottom: 8px;
  font-size: 15px;
}

.alt-call p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.alt-call__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 14px;
}

.mini-tag {
  padding: 4px 7px;
  color: var(--ink-2);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 8px;
  font-weight: 750;
}

.objective-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.objective-card {
  min-height: 175px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.objective-card span {
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 900;
}

.objective-card h3 {
  margin: 28px 0 9px;
  font-size: 18px;
}

.objective-card p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.architecture {
  display: grid;
  gap: 9px;
}

.architecture-layer {
  display: grid;
  grid-template-columns: 64px minmax(150px, 0.3fr) 1fr;
  align-items: center;
  gap: 18px;
  min-height: 94px;
  padding: 17px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.architecture-layer > span {
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 850;
}

.architecture-layer h3 {
  margin: 0;
  font-size: 16px;
}

.architecture-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.architecture-items span {
  padding: 6px 8px;
  color: var(--ink-2);
  background: var(--paper);
  border-radius: 5px;
  font-size: 9px;
}

.pilot-grid {
  display: grid;
  gap: 12px;
}

.pilot-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.pilot-card__identity {
  padding: 23px;
  background: var(--forest);
  color: var(--white);
}

.pilot-card__identity span {
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
}

.pilot-card__identity h3 {
  margin: 32px 0 8px;
  font-size: 20px;
}

.pilot-card__identity p {
  color: #9db1a6;
  font-size: 11px;
}

.pilot-card__plan {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.pilot-card__plan div {
  padding: 20px;
  border-right: 1px solid var(--line);
}

.pilot-card__plan div:last-child {
  border-right: 0;
}

.pilot-card__plan span {
  display: block;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pilot-card__plan p {
  color: var(--ink-2);
  font-size: 11px;
  line-height: 1.55;
}

.wp-list {
  display: grid;
  gap: 10px;
}

.wp-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.wp-card summary {
  min-height: 92px;
  display: grid;
  grid-template-columns: 62px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
}

.wp-card summary::-webkit-details-marker {
  display: none;
}

.wp-id {
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 900;
}

.wp-title {
  display: grid;
  gap: 4px;
}

.wp-title strong {
  font-size: 15px;
}

.wp-title small {
  color: var(--muted);
  font-size: 9px;
}

.wp-share {
  min-width: 76px;
  padding: 8px;
  color: var(--ink);
  text-align: center;
  background: var(--paper);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
}

.wp-card summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin-left: 10px;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-size: 17px;
}

.wp-card[open] summary::after {
  content: "−";
}

.wp-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.wp-body > div {
  padding: 22px;
  background: var(--white);
}

.wp-body h4 {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.wp-body ul {
  margin: 0;
  padding-left: 17px;
}

.wp-body li,
.wp-body p {
  margin-bottom: 7px;
  color: var(--ink-2);
  font-size: 11px;
  line-height: 1.6;
}

.consortium-table,
.data-table {
  width: 100%;
  overflow: hidden;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.data-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.data-table-wrap .data-table {
  border: 0;
  border-radius: 0;
}

.consortium-table th,
.consortium-table td,
.data-table th,
.data-table td {
  padding: 15px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.consortium-table th,
.data-table th {
  color: var(--muted);
  background: var(--paper);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.consortium-table td,
.data-table td {
  color: var(--ink-2);
  font-size: 11px;
  line-height: 1.5;
}

.consortium-table tr:last-child td,
.data-table tr:last-child td {
  border-bottom: 0;
}

.must-have {
  color: #17663d;
  font-weight: 800;
}

.budget-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 18px;
}

.budget-total {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  color: var(--white);
  background: var(--forest);
  border-radius: var(--radius);
}

.budget-total span {
  color: #91a79b;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.budget-total strong {
  display: block;
  margin-top: 8px;
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(34px, 4vw, 52px);
}

.budget-total p {
  color: #9eb0a6;
  font-size: 11px;
  line-height: 1.6;
}

.budget-bars {
  display: grid;
  gap: 9px;
}

.budget-row {
  display: grid;
  grid-template-columns: minmax(140px, 0.7fr) 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 9px;
}

.budget-row__name strong {
  display: block;
  font-size: 11px;
}

.budget-row__name small {
  color: var(--muted);
  font-size: 8px;
}

.budget-bar {
  height: 7px;
  overflow: hidden;
  background: var(--paper-2);
  border-radius: 999px;
}

.budget-bar i {
  height: 100%;
  display: block;
  background: var(--green);
  border-radius: inherit;
}

.budget-row > strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
}

.risk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.risk-card {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.risk-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.risk-card__top span:first-child {
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 850;
}

.risk-level {
  display: flex;
  gap: 5px;
}

.risk-level span {
  padding: 4px 6px;
  color: var(--muted);
  background: var(--paper);
  border-radius: 4px;
  font-size: 8px;
}

.risk-card h3 {
  margin-bottom: 15px;
  font-size: 17px;
}

.risk-card dl {
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: 8px;
  margin: 0;
}

.risk-card dt {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.risk-card dd {
  margin: 0;
  color: var(--ink-2);
  font-size: 10px;
  line-height: 1.5;
}

.impact-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.impact-timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 16%;
  left: 16%;
  height: 1px;
  background: var(--line);
}

.impact-card {
  position: relative;
  padding-top: 54px;
}

.impact-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 50%;
  width: 13px;
  height: 13px;
  background: var(--green);
  border: 5px solid var(--paper);
  border-radius: 50%;
  transform: translateX(-50%);
}

.impact-card > div {
  min-height: 220px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.impact-card span {
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 850;
}

.impact-card h3 {
  margin: 28px 0 12px;
  font-size: 18px;
}

.impact-card p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.exploit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.exploit-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.exploit-card h3 {
  margin-bottom: 22px;
  font-size: 18px;
}

.exploit-card dl {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  margin: 0;
}

.exploit-card dt {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.exploit-card dd {
  margin: 0;
  color: var(--ink-2);
  font-size: 10px;
  line-height: 1.5;
}

.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.compliance-panel {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.compliance-panel h3 {
  margin-bottom: 21px;
  font-size: 20px;
}

.standards {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.standards span {
  padding: 7px 9px;
  color: var(--ink-2);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 9px;
  font-weight: 700;
}

.sprint-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.sprint-card {
  min-height: 190px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 11px;
}

.sprint-card span {
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 850;
}

.sprint-card h3 {
  margin: 30px 0 13px;
  font-size: 17px;
}

.sprint-card ul {
  margin: 0;
  padding-left: 15px;
}

.sprint-card li {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.gate {
  margin-top: 14px;
  padding-top: 12px;
  color: var(--ink-2);
  border-top: 1px solid var(--line);
  font-size: 9px;
  font-weight: 800;
}

.winning-grid {
  display: grid;
  gap: 10px;
}

.winning-card {
  display: grid;
  grid-template-columns: minmax(130px, 0.28fr) 1fr 1fr;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 11px;
}

.winning-card > strong {
  color: var(--green);
  font-size: 13px;
}

.winning-card div span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.winning-card div p {
  color: var(--ink-2);
  font-size: 10px;
  line-height: 1.55;
}

.detail-cta {
  margin-top: 62px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 32px;
  color: var(--white);
  background: var(--forest);
  border-radius: var(--radius);
}

.detail-cta h2 {
  margin-bottom: 8px;
  font-size: 27px;
}

.detail-cta p {
  color: #9db0a5;
  font-size: 11px;
}

.detail-disclaimer {
  margin-top: 22px;
  padding: 16px;
  color: var(--muted);
  background: rgba(240, 185, 75, 0.08);
  border: 1px solid rgba(240, 185, 75, 0.28);
  border-radius: 10px;
  font-size: 10px;
  line-height: 1.6;
}

.error-state {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 40px 24px;
  text-align: center;
}

.error-state div {
  max-width: 540px;
}

.error-state strong {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.error-state h1 {
  font-size: 48px;
}

.error-state p {
  color: var(--muted);
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 40px, 980px);
  }

  .hero-grid {
    grid-template-columns: 1fr 390px;
    gap: 28px;
  }

  .system-orbit {
    width: 360px;
  }

  .project-card:nth-child(3) {
    gap: 30px;
  }

  .nace-layout,
  .consortium-layout {
    gap: 50px;
  }

  .call-radar,
  .score-grid {
    grid-template-columns: 1fr 1fr;
  }

  .call-card:last-child,
  .score-card:last-child {
    grid-column: span 2;
  }

  .score-card--lime {
    transform: none;
  }

  .roadmap {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .detail-layout {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 36px;
  }

  .three-col {
    grid-template-columns: 1fr 1fr;
  }

  .call-fit,
  .budget-layout {
    grid-template-columns: 1fr;
  }

  .sprint-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 720px);
  }

  html {
    scroll-padding-top: 82px;
  }

  .signal-bar__date,
  .desktop-nav {
    display: none;
  }

  .header-inner {
    min-height: 68px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 6px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 9px;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 18px;
    height: 1px;
    display: block;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    z-index: 99;
    top: 100%;
    right: 0;
    left: 0;
    height: calc(100dvh - 68px);
    overflow-y: auto;
    display: grid;
    align-content: start;
    padding: 28px 20px;
    color: var(--white);
    background: var(--forest);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 22px;
    font-weight: 700;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    display: block;
    padding-block: 78px 60px;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 78px);
  }

  .hero-system {
    min-height: 540px;
    margin-top: 50px;
  }

  .system-orbit {
    width: min(420px, 88vw);
  }

  .context-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 18px;
  }

  .context-grid p {
    padding-block: 8px;
  }

  .context-grid > span {
    display: none;
  }

  .section {
    padding-block: 86px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 38px;
  }

  .project-card,
  .project-card:nth-child(3) {
    grid-column: span 12;
    min-height: 460px;
    display: flex;
  }

  .project-card:nth-child(3) .project-card__body {
    margin-top: 64px;
  }

  .project-card:nth-child(3) .project-card__meta {
    align-self: auto;
    margin-top: auto;
  }

  .nace-layout,
  .consortium-layout,
  .sources-layout {
    grid-template-columns: 1fr;
  }

  .nace-code {
    position: relative;
    top: 0;
    min-height: 350px;
  }

  .call-radar,
  .score-grid {
    grid-template-columns: 1fr;
  }

  .call-card:last-child,
  .score-card:last-child {
    grid-column: auto;
  }

  .evidence-chain {
    grid-template-columns: 1fr;
  }

  .evidence-chain > i {
    transform: rotate(90deg);
  }

  .consortium-copy {
    margin-bottom: 30px;
  }

  .roadmap {
    grid-template-columns: 1fr 1fr;
  }

  .decision-card {
    min-height: 380px;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .source-links {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 30px;
  }

  .detail-heading {
    grid-template-columns: 1fr;
  }

  .detail-side {
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
  }

  .detail-layout {
    grid-template-columns: 1fr;
    padding-top: 26px;
  }

  .detail-toc {
    position: sticky;
    z-index: 20;
    top: 68px;
    overflow-x: auto;
    margin-inline: calc((100vw - var(--shell)) / -2);
    padding-inline: calc((100vw - var(--shell)) / 2);
    background: rgba(238, 236, 227, 0.95);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
  }

  .detail-toc__label,
  .detail-toc__back {
    display: none;
  }

  .detail-toc nav {
    min-width: max-content;
    display: flex;
    gap: 18px;
  }

  .detail-toc a {
    padding-block: 13px;
    border-bottom: 2px solid transparent;
  }

  .detail-toc a:hover,
  .detail-toc a.is-active {
    padding-left: 0;
  }

  .detail-toc a.is-active {
    border-bottom-color: var(--green);
  }

  .detail-section {
    scroll-margin-top: 128px;
  }

  .detail-section__head {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .pilot-card {
    grid-template-columns: 1fr;
  }

  .winning-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .signal-bar {
    font-size: 9px;
  }

  .brand-copy {
    display: none;
  }

  .hero-grid {
    padding-block: 62px 46px;
  }

  .hero-copy .eyebrow {
    align-items: flex-start;
  }

  .hero-copy .eyebrow span:first-child::after {
    display: none;
  }

  .hero h1 {
    font-size: 51px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions,
  .decision-actions,
  .detail-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof > div {
    min-height: 70px;
  }

  .hero-system {
    min-height: 460px;
  }

  .hero-system::before {
    inset-inline: -12px;
  }

  .system-orbit {
    width: 320px;
  }

  .system-label small,
  .system-readout {
    display: none;
  }

  .system-label--top {
    right: 6px;
  }

  .system-label--bottom {
    left: 6px;
  }

  .section {
    padding-block: 68px;
  }

  .section-heading h2,
  .nace-content h2,
  .strategy-header h2,
  .consortium-copy h2,
  .sources-layout h2 {
    font-size: 37px;
  }

  .project-filters {
    overflow-x: auto;
    align-items: center;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .filter-count {
    display: none;
  }

  .project-card {
    min-height: 500px;
    padding: 21px;
  }

  .project-card__body,
  .project-card:nth-child(3) .project-card__body {
    margin-top: 48px;
  }

  .project-card h3 {
    font-size: 29px;
  }

  .project-card__meta {
    grid-template-columns: 1fr 1fr;
  }

  .project-card__meta div:last-child {
    display: none;
  }

  .role-grid {
    grid-template-columns: 1fr;
  }

  .nace-code {
    min-height: 310px;
    padding: 27px;
  }

  .nace-number {
    font-size: 56px;
  }

  .score-card {
    min-height: auto;
  }

  .consortium-map {
    min-height: auto;
    display: block;
  }

  .consortium-map::before,
  .consortium-map::after {
    display: none;
  }

  .map-core {
    width: 160px;
    margin: 0 auto 20px;
  }

  .map-ring {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .map-node {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 108px;
    transform: none;
  }

  .roadmap {
    grid-template-columns: 1fr;
  }

  .roadmap li {
    min-height: 455px;
    padding: 19px;
  }

  .roadmap li::after {
    background:
      linear-gradient(180deg, rgba(7, 22, 15, 0.34) 0%, rgba(7, 22, 15, 0.7) 40%, rgba(7, 22, 15, 0.99) 75%),
      linear-gradient(90deg, rgba(7, 22, 15, 0.58), transparent 82%);
  }

  .roadmap-card__content {
    padding-top: 104px;
  }

  .roadmap-card__summary {
    min-height: auto;
  }

  .roadmap-card__facts {
    grid-template-columns: 1fr 1fr;
  }

  .decision-card {
    min-height: 440px;
  }

  .detail-hero {
    padding-block: 30px 42px;
  }

  .breadcrumb {
    margin-bottom: 38px;
  }

  .detail-hero h1 {
    font-size: 44px;
  }

  .detail-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .detail-metric {
    min-height: 86px;
  }

  .detail-layout {
    gap: 24px;
    padding-bottom: 72px;
  }

  .detail-section {
    padding-block: 46px;
  }

  .two-col,
  .three-col,
  .objective-grid,
  .risk-grid,
  .exploit-grid,
  .compliance-grid,
  .sprint-grid {
    grid-template-columns: 1fr;
  }

  .architecture-layer {
    grid-template-columns: 44px 1fr;
  }

  .architecture-items {
    grid-column: 1 / -1;
  }

  .pilot-card__plan {
    grid-template-columns: 1fr;
  }

  .pilot-card__plan div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pilot-card__plan div:last-child {
    border-bottom: 0;
  }

  .wp-card summary {
    grid-template-columns: 44px 1fr;
  }

  .wp-share {
    display: none;
  }

  .wp-card summary::after {
    grid-column: 2;
    margin: 0;
  }

  .wp-body {
    grid-template-columns: 1fr;
  }

  .consortium-table,
  .data-table {
    min-width: 680px;
  }

  .budget-row {
    grid-template-columns: 1fr auto;
  }

  .budget-bar {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .impact-timeline {
    grid-template-columns: 1fr;
  }

  .impact-timeline::before {
    top: 0;
    bottom: 0;
    left: 7px;
    width: 1px;
    height: auto;
  }

  .impact-card {
    padding: 0 0 0 32px;
  }

  .impact-card::before {
    top: 20px;
    left: 7px;
  }

  .detail-cta {
    grid-template-columns: 1fr;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  :root {
    --paper: #fff;
    --paper-2: #fff;
    --white: #fff;
  }

  body {
    color: #111;
    background: #fff;
    font-size: 10pt;
  }

  .signal-bar,
  .site-header,
  .site-footer,
  .detail-toc,
  .detail-actions,
  .decision-section,
  .project-filters,
  .toast {
    display: none !important;
  }

  .project-media,
  .roadmap-card__media,
  .project-card::before,
  .detail-hero::after,
  .roadmap li::after {
    display: none !important;
  }

  .hero,
  .detail-hero,
  .nace-section,
  .strategy-section,
  .primary-call,
  .budget-total,
  .detail-cta {
    color: #111 !important;
    background: #fff !important;
    border: 1px solid #aaa !important;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    display: block;
    padding-block: 30px;
  }

  .hero-system,
  .context-strip {
    display: none;
  }

  .section {
    padding-block: 30px;
  }

  .project-card,
  .project-card:nth-child(3) {
    grid-column: span 12;
    min-height: auto;
    display: block;
    break-inside: avoid;
  }

  .project-card {
    color: #111 !important;
    background: #fff !important;
    border: 1px solid #aaa !important;
  }

  .project-card h3,
  .project-card__summary,
  .project-card__meta strong,
  .project-card__action {
    color: #111 !important;
    text-shadow: none !important;
  }

  .roadmap {
    grid-template-columns: repeat(2, 1fr);
  }

  .roadmap li {
    min-height: auto;
    color: #111 !important;
    background: #fff !important;
    border: 1px solid #aaa !important;
    box-shadow: none;
    break-inside: avoid;
  }

  .roadmap-card__content {
    padding-top: 20px;
  }

  .roadmap h3,
  .roadmap p,
  .roadmap-card__facts > div > strong,
  .roadmap .roadmap-card__gate {
    color: #111 !important;
  }

  .roadmap small,
  .roadmap-card__phase,
  .roadmap .roadmap-card__gate {
    color: #111 !important;
    background: transparent !important;
    border-color: #aaa !important;
    backdrop-filter: none;
  }

  .detail-layout {
    width: 100%;
    display: block;
    padding: 20px;
  }

  .detail-section {
    break-before: page;
  }

  .detail-section:first-child {
    break-before: auto;
  }

  .wp-card {
    break-inside: avoid;
  }

  .wp-card .wp-body {
    display: grid !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
