:root {
  color-scheme: light;
  --graphite: #182126;
  --graphite-soft: #2b363b;
  --graphite-muted: #48555b;
  --ink-muted: #56636a;
  --white: #ffffff;
  --soft-white: #f4f7f7;
  --cyan: #a9dbe7;
  --cyan-strong: #70c8dc;
  --cyan-pale: #e3f3f6;
  --cyan-text: #246f80;
  --line: rgba(24, 33, 38, 0.13);
  --line-strong: rgba(24, 33, 38, 0.22);
  --shadow: 0 24px 70px rgba(24, 33, 38, 0.09);
  --radius: 18px;
  --content: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  background: var(--soft-white);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--graphite);
  background: var(--soft-white);
  font-family:
    "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input {
  color: inherit;
  font: inherit;
}

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

a {
  color: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cyan-strong);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--graphite);
  border-radius: 10px;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px max(24px, calc((100vw - var(--content)) / 2));
  color: var(--graphite);
  background: rgba(244, 247, 247, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--graphite);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 700;
  place-items: center;
  background: var(--cyan);
  border-radius: 12px;
}

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

.brand-copy strong {
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.brand-copy small {
  color: var(--ink-muted);
  font-size: 11px;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.version-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  color: var(--graphite);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  background: var(--cyan-pale);
  border: 1px solid rgba(112, 200, 220, 0.44);
  border-radius: 999px;
}

.header-button,
.filter-button,
.expand-button,
.empty-state button {
  min-height: 44px;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.header-button {
  padding: 0 18px;
}

.header-button:hover,
.expand-button:hover,
.empty-state button:hover {
  color: var(--white);
  background: var(--graphite);
}

.header-button:active,
.filter-button:active,
.expand-button:active,
.primary-action:active,
.secondary-action:active {
  transform: scale(0.98);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: clamp(40px, 7vw, 110px);
  min-height: calc(100svh - 72px);
  padding:
    clamp(60px, 8vw, 110px)
    max(24px, calc((100vw - var(--content)) / 2));
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(
      circle at 78% 12%,
      rgba(112, 200, 220, 0.2),
      transparent 27%
    ),
    linear-gradient(138deg, #182126 0%, #1e2a30 58%, #26383f 100%);
}

.hero::after {
  position: absolute;
  right: -12vw;
  bottom: -36vw;
  width: 70vw;
  height: 70vw;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(169, 219, 231, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 10vw rgba(169, 219, 231, 0.025),
    0 0 0 20vw rgba(169, 219, 231, 0.018);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(48px, 6.4vw, 94px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.058em;
}

.hero-lead {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 36px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.primary-action {
  color: var(--graphite);
  background: var(--cyan);
  border: 1px solid var(--cyan);
}

.primary-action:hover {
  background: var(--cyan-strong);
}

.secondary-action {
  color: var(--white);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.secondary-action:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-visual {
  display: grid;
  grid-template-columns: 154px 1fr;
  gap: 34px;
  align-self: center;
  align-items: stretch;
  min-height: 470px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
}

.clock-face {
  position: relative;
  min-height: 390px;
}

.clock-start,
.clock-end {
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
}

.clock-start {
  top: 0;
}

.clock-end {
  bottom: 0;
}

.clock-line {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 43px;
  width: 2px;
  background: linear-gradient(
    var(--cyan) 0%,
    rgba(169, 219, 231, 0.24) 48%,
    var(--cyan) 100%
  );
}

.clock-pulse {
  position: absolute;
  left: 35px;
  width: 18px;
  height: 18px;
  background: var(--graphite-soft);
  border: 4px solid var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(169, 219, 231, 0.08);
}

.pulse-one {
  top: 82px;
}

.pulse-two {
  top: 214px;
}

.pulse-three {
  bottom: 72px;
}

.hero-milestones {
  display: grid;
  align-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-milestones li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-milestones strong {
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
}

.hero-milestones span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.thesis {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  max-width: var(--content);
  margin: 0 auto;
  padding: 48px 24px;
  border-bottom: 1px solid var(--line);
}

.thesis > p,
.thesis > span {
  margin: 0;
  color: var(--ink-muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.thesis blockquote {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.thesis > span {
  max-width: 180px;
  padding: 12px 16px;
  color: var(--graphite);
  text-align: center;
  background: var(--cyan-pale);
  border-radius: 12px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
}

.metrics div {
  display: grid;
  gap: 5px;
  padding: 36px 28px;
  border-left: 1px solid var(--line);
}

.metrics div:last-child {
  border-right: 1px solid var(--line);
}

.metrics strong {
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.metrics span {
  color: var(--ink-muted);
  font-size: 13px;
}

.states-section,
.day-map-section,
.timeline-section,
.deliverables-section,
.governance-section,
.pending-section {
  max-width: var(--content);
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.states-section {
  padding-top: 110px;
  padding-bottom: 110px;
}

.section-heading {
  max-width: 760px;
}

.section-heading.compact {
  max-width: 820px;
}

.section-heading h2,
.governance-copy h2,
.pending-heading h2 {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-heading p,
.governance-copy p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 1.55;
}

.states-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.states-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  min-height: 190px;
  padding: 28px 24px 28px 0;
  border-bottom: 1px solid var(--line);
}

.states-list li:nth-child(3n + 2),
.states-list li:nth-child(3n + 3) {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.states-list > li > span {
  color: var(--cyan-text);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 600;
}

.states-list div {
  display: grid;
  align-content: start;
}

.states-list small {
  color: var(--ink-muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
}

.states-list strong {
  margin-top: 14px;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 24px;
  line-height: 1.1;
}

.states-list p {
  margin: 12px 0 0;
  color: var(--graphite-muted);
  line-height: 1.5;
}

.day-map-section {
  padding-top: 78px;
  padding-bottom: 84px;
  color: var(--white);
  background: var(--graphite);
  max-width: none;
}

.day-map-section > * {
  max-width: var(--content);
  margin-right: auto;
  margin-left: auto;
}

.day-map-section .section-heading p {
  color: rgba(255, 255, 255, 0.62);
}

.day-map {
  display: flex;
  gap: 3px;
  min-height: 212px;
  margin-top: 42px;
  overflow: hidden;
  border-radius: 14px;
}

.map-block {
  position: relative;
  display: flex;
  flex: 1 1 var(--block-share);
  flex-direction: column;
  justify-content: flex-end;
  min-width: 12px;
  padding: 16px 12px;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  background: #334047;
  transition:
    flex-grow 260ms var(--ease),
    background 200ms ease,
    transform 200ms ease;
}

.map-block::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: var(--energy-height, 35%);
  content: "";
  background: linear-gradient(
    to bottom,
    rgba(169, 219, 231, 0.42),
    rgba(169, 219, 231, 0.04)
  );
}

.map-block[data-energy="high"] {
  --energy-height: 88%;
}

.map-block[data-energy="medium"] {
  --energy-height: 62%;
}

.map-block[data-energy="social"] {
  --energy-height: 74%;
}

.map-block:hover,
.map-block:focus-visible {
  z-index: 2;
  flex-grow: 3;
  background: #40545d;
  transform: translateY(-4px);
}

.map-block > span {
  position: absolute;
  top: 12px;
  left: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
}

.map-block strong {
  position: relative;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}

.map-block small {
  position: relative;
  display: -webkit-box;
  margin-top: 7px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.map-block:nth-child(2),
.map-block:nth-child(3),
.map-block:nth-child(5),
.map-block:nth-child(9),
.map-block:nth-child(11) {
  min-width: 32px;
}

.map-legend {
  display: flex;
  gap: 24px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.map-legend span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.energy-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: rgba(169, 219, 231, 0.25);
  border: 1px solid var(--cyan);
  border-radius: 50%;
}

.energy-dot.medium {
  box-shadow: 0 0 0 3px rgba(169, 219, 231, 0.08);
}

.energy-dot.high {
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(169, 219, 231, 0.12);
}

.energy-dot.social {
  background: transparent;
  border-width: 2px;
}

.timeline-section {
  padding-top: 110px;
  padding-bottom: 120px;
}

.timeline-intro {
  position: relative;
}

.timeline-tools {
  display: grid;
  gap: 18px;
  margin-top: 48px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(24, 33, 38, 0.05);
}

.search-field {
  display: grid;
  gap: 8px;
}

.search-field span {
  color: var(--graphite-muted);
  font-size: 12px;
  font-weight: 600;
}

.search-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--graphite);
  background: var(--soft-white);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
}

.search-field input::placeholder {
  color: #69767c;
}

.tool-row {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-button,
.expand-button {
  padding: 0 16px;
  font-size: 13px;
}

.filter-button.is-active {
  color: var(--graphite);
  background: var(--cyan);
  border-color: var(--cyan);
}

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

.results-status {
  min-height: 20px;
  margin: 14px 0 0;
  color: var(--ink-muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
}

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.timeline-block {
  scroll-margin-top: 96px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(24, 33, 38, 0.035);
}

.timeline-block[open] {
  border-color: rgba(112, 200, 220, 0.58);
  box-shadow: var(--shadow);
}

.block-summary {
  position: relative;
  display: grid;
  grid-template-columns: 46px 104px minmax(240px, 1fr) minmax(240px, 0.9fr) 34px;
  gap: 20px;
  align-items: center;
  min-height: 106px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
}

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

.block-summary:hover {
  background: rgba(227, 243, 246, 0.34);
}

.block-index {
  color: var(--cyan-strong);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 600;
}

.block-time,
.block-title {
  display: grid;
  gap: 5px;
}

.block-time strong {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 17px;
}

.block-time small,
.block-title small {
  color: var(--ink-muted);
  font-size: 11px;
}

.block-title strong {
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 19px;
  line-height: 1.25;
}

.block-proof {
  color: var(--graphite-muted);
  font-size: 13px;
  line-height: 1.45;
}

.summary-icon {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.summary-icon::before,
.summary-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  content: "";
  background: var(--graphite);
  transform: translate(-50%, -50%);
  transition: transform 200ms ease;
}

.summary-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.timeline-block[open] .summary-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.block-body {
  padding: 4px 24px 30px 194px;
  border-top: 1px solid var(--line);
}

.state-shift {
  display: grid;
  gap: 8px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.state-shift span,
.opening-line span {
  color: var(--ink-muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.state-shift strong {
  max-width: 760px;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.block-foundation,
.result-grid,
.backstage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.block-foundation {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.detail-card {
  min-height: 150px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-card .detail-label {
  margin: 0;
  color: var(--ink-muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.detail-card p {
  margin: 14px 0 0;
  color: var(--graphite-muted);
  font-size: 15px;
  line-height: 1.6;
}

.opening-line {
  position: relative;
  margin: 34px 0;
  padding: 30px 34px;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
  border-radius: 14px;
}

.opening-line::after {
  position: absolute;
  top: -40px;
  right: -30px;
  width: 160px;
  height: 160px;
  content: "";
  background: var(--cyan);
  border-radius: 50%;
  opacity: 0.12;
}

.opening-line span {
  color: var(--cyan);
}

.opening-line p {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 14px 0 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(21px, 2.5vw, 31px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.steps-section {
  padding: 12px 0 34px;
}

.steps-section h3 {
  margin: 0 0 22px;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 27px;
}

.steps-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.steps-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.steps-list span {
  color: var(--cyan-text);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 600;
}

.steps-list p {
  max-width: 800px;
  margin: 0;
  color: var(--graphite-muted);
  line-height: 1.58;
}

.result-grid {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.result-grid .evidence {
  background: var(--cyan-pale);
}

.result-grid .synthesis p {
  color: var(--graphite);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.backstage-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.backstage-grid .detail-card {
  min-height: 210px;
}

.backstage-grid .fallback {
  background: rgba(24, 33, 38, 0.035);
}

.block-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 20px;
  color: var(--graphite-muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 600;
}

.empty-state {
  display: grid;
  justify-items: start;
  margin-top: 34px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.empty-state[hidden] {
  display: none;
}

.empty-state strong {
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 24px;
}

.empty-state span {
  margin-top: 8px;
  color: var(--ink-muted);
}

.empty-state button {
  margin-top: 20px;
  padding: 0 18px;
}

.deliverables-section {
  padding-top: 100px;
  padding-bottom: 120px;
  border-top: 1px solid var(--line);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}

.deliverable {
  min-height: 250px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.deliverable > span {
  color: var(--cyan-text);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 600;
}

.deliverable h3 {
  margin: 44px 0 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 23px;
  line-height: 1.15;
}

.deliverable p {
  margin: 14px 0 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.55;
}

.governance-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: 80px;
  max-width: none;
  padding-top: 100px;
  padding-bottom: 100px;
  color: var(--white);
  background: var(--graphite);
}

.governance-section > * {
  width: 100%;
  max-width: calc(var(--content) / 2);
}

.governance-copy {
  justify-self: end;
}

.governance-copy p {
  color: rgba(255, 255, 255, 0.62);
}

.rules-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.rules-list li {
  padding: 19px 0;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pending-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: 90px;
  padding-top: 110px;
  padding-bottom: 120px;
}

.pending-heading > span {
  display: block;
  margin-bottom: 18px;
  color: var(--ink-muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
}

.pending-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.pending-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.pending-list span {
  color: var(--cyan-text);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 600;
}

.pending-list p {
  margin: 0;
  color: var(--graphite-muted);
  line-height: 1.55;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 120px;
  padding: 28px max(24px, calc((100vw - var(--content)) / 2));
  color: var(--white);
  background: #11181c;
}

.site-footer div {
  display: grid;
  gap: 6px;
}

.site-footer strong {
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.site-footer a {
  color: var(--cyan);
  font-size: 13px;
}

.noscript-message {
  position: fixed;
  z-index: 99;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 16px;
  color: var(--white);
  text-align: center;
  background: var(--graphite);
  border-radius: 12px;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-visual {
    grid-template-columns: 120px 1fr;
    min-height: 410px;
  }

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

  .metrics div:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .metrics div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .block-summary {
    grid-template-columns: 42px 94px minmax(220px, 1fr) 34px;
  }

  .block-proof {
    display: none;
  }

  .block-body {
    padding-left: 160px;
  }

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

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

@media (max-width: 820px) {
  html {
    scroll-padding-top: 84px;
  }

  .site-header {
    min-height: 64px;
    padding: 10px 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .brand-copy small {
    display: none;
  }

  .header-button {
    display: none;
  }

  .hero {
    gap: 48px;
    padding: 64px 20px;
  }

  .hero h1 {
    max-width: 700px;
    font-size: clamp(46px, 12vw, 72px);
  }

  .hero-visual {
    grid-template-columns: 92px 1fr;
    gap: 20px;
    min-height: 390px;
    padding: 24px;
  }

  .thesis {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 40px 20px;
  }

  .thesis > span {
    max-width: none;
    justify-self: start;
  }

  .metrics {
    padding: 0 20px;
  }

  .metrics div {
    padding: 26px 18px;
  }

  .states-section,
  .timeline-section,
  .deliverables-section,
  .pending-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .states-section,
  .timeline-section {
    padding-top: 82px;
    padding-bottom: 90px;
  }

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

  .states-list li:nth-child(n) {
    padding: 24px 20px 24px 0;
    border-left: 0;
  }

  .states-list li:nth-child(even) {
    padding-left: 20px;
    border-left: 1px solid var(--line);
  }

  .day-map-section {
    padding: 64px 20px;
  }

  .day-map {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    overflow: visible;
  }

  .map-block,
  .map-block:nth-child(n) {
    display: grid;
    grid-template-columns: 32px 58px 1fr;
    gap: 8px;
    align-items: center;
    min-width: 0;
    min-height: 64px;
    padding: 12px;
  }

  .map-block::before {
    width: var(--energy-height);
    height: 100%;
  }

  .map-block:hover,
  .map-block:focus-visible {
    transform: translateY(-2px);
  }

  .map-block > span {
    position: static;
  }

  .map-block small {
    margin-top: 0;
    -webkit-line-clamp: 2;
  }

  .map-legend {
    flex-wrap: wrap;
  }

  .tool-row {
    align-items: flex-end;
  }

  .block-summary {
    grid-template-columns: 34px 76px minmax(0, 1fr) 30px;
    gap: 12px;
    min-height: 92px;
    padding: 16px;
  }

  .block-title strong {
    font-size: 17px;
  }

  .block-body {
    padding: 0 16px 24px;
  }

  .state-shift {
    padding-top: 24px;
  }

  .block-foundation,
  .result-grid,
  .backstage-grid {
    grid-template-columns: 1fr;
  }

  .backstage-grid .detail-card {
    min-height: 0;
  }

  .opening-line {
    padding: 24px;
  }

  .governance-section {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 72px 20px;
  }

  .governance-section > * {
    max-width: none;
  }

  .pending-section {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 82px;
    padding-bottom: 90px;
  }
}

@media (max-width: 560px) {
  .hero {
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 42px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .primary-action,
  .secondary-action {
    flex: 1 1 0;
    padding: 0 16px;
  }

  .hero-visual {
    grid-template-columns: 1fr;
    min-height: 344px;
  }

  .clock-face {
    display: none;
  }

  .hero-milestones {
    gap: 14px;
  }

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

  .metrics div:nth-child(n) {
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .states-list {
    grid-template-columns: 1fr;
  }

  .states-list li:nth-child(n) {
    min-height: 0;
    padding: 24px 0;
    border-left: 0;
  }

  .day-map {
    grid-template-columns: 1fr;
  }

  .map-block,
  .map-block:nth-child(n) {
    grid-template-columns: 34px 62px 1fr;
  }

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

  .timeline-tools {
    padding: 16px;
  }

  .tool-row {
    display: grid;
  }

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

  .filter-button {
    width: 100%;
  }

  .expand-button {
    width: 100%;
  }

  .block-summary {
    grid-template-columns: 48px minmax(0, 1fr) 30px;
  }

  .block-index {
    display: none;
  }

  .block-time {
    align-self: start;
  }

  .block-title small {
    margin-top: 3px;
  }

  .detail-card {
    min-height: 0;
  }

  .steps-list li {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }

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

  .deliverable {
    min-height: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 360px) {
  .hero {
    gap: 24px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .eyebrow {
    margin-bottom: 16px;
  }

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

  .hero-actions {
    margin-top: 24px;
  }

  .hero-visual {
    display: block;
    min-height: 126px;
    padding: 14px;
  }

  .hero-milestones {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 10px;
  }

  .hero-milestones li {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 6px;
    padding: 7px 0;
  }

  .hero-milestones strong {
    font-size: 10px;
  }

  .hero-milestones span {
    overflow: hidden;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  @page {
    margin: 14mm;
  }

  body {
    color: #000;
    background: #fff;
  }

  .site-header,
  .hero-actions,
  .timeline-tools,
  .results-status,
  .map-legend,
  .block-link,
  .site-footer,
  .noscript-message {
    display: none !important;
  }

  .hero {
    min-height: 0;
    padding: 22px;
    color: #000;
    background: #fff;
    border: 2px solid #000;
  }

  .hero::after,
  .hero-visual {
    display: none;
  }

  .hero h1,
  .hero-lead,
  .eyebrow {
    color: #000;
  }

  .thesis,
  .metrics,
  .states-section,
  .day-map-section,
  .timeline-section,
  .deliverables-section,
  .governance-section,
  .pending-section {
    max-width: none;
    padding: 24px 0;
    color: #000;
    background: #fff;
  }

  .day-map {
    display: none;
  }

  .timeline-block {
    break-inside: avoid;
    box-shadow: none;
  }

  .block-summary {
    grid-template-columns: 34px 80px 1fr;
  }

  .summary-icon,
  .block-proof {
    display: none;
  }

  .block-body {
    padding-left: 24px;
  }

  .opening-line {
    color: #000;
    background: #fff;
    border: 1px solid #000;
  }

  .opening-line span,
  .opening-line p,
  .governance-copy p {
    color: #000;
  }
}
