@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700;800&family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600&display=swap");

:root {
  --paper: #f4f0e6;
  --paper-light: #fbf8ef;
  --ink: #1d1c19;
  --charcoal: #2c2e31;
  --civic-blue: #2f5d9f;
  --authority-green: #2f725f;
  --withheld-red: #bd3d2b;
  --record-ochre: #d99a32;
  --line: rgba(29, 28, 25, 0.18);
  --line-strong: rgba(29, 28, 25, 0.34);
  --shadow: 0 30px 80px rgba(29, 28, 25, 0.16);
  --spine-x: max(38px, calc((100vw - 1260px) / 2 + 22px));
  --section-spine-x: 22px;
  --rail-space: clamp(72px, 7vw, 104px);
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "IBM Plex Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper-light);
  overflow-x: hidden;
  scroll-behavior: auto;
}

body {
  position: relative;
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(29, 28, 25, 0.055) 1px, transparent 1px) 0 0 /
      clamp(56px, 7vw, 104px) 100%,
    linear-gradient(180deg, var(--paper-light), var(--paper) 34%, #ece8dc);
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  opacity: 0.19;
  background-image:
    radial-gradient(rgba(29, 28, 25, 0.42) 0.72px, transparent 0.72px),
    radial-gradient(rgba(29, 28, 25, 0.24) 0.72px, transparent 0.72px);
  background-position:
    0 0,
    13px 17px;
  background-size: 31px 31px;
}

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

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

::selection {
  background: var(--record-ochre);
  color: var(--ink);
}

main {
  position: relative;
  z-index: 1;
  --flow-progress: 0;
}

main::before,
main::after {
  position: absolute;
  top: 128px;
  left: var(--spine-x);
  width: 1px;
  pointer-events: none;
  content: "";
}

main::before {
  bottom: 260px;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(47, 93, 159, 0.2),
    rgba(189, 61, 43, 0.22) 22%,
    rgba(217, 154, 50, 0.24) 48%,
    rgba(47, 114, 95, 0.34) 78%,
    rgba(251, 248, 239, 0.22)
  );
}

main::after {
  z-index: 1;
  height: calc((100% - 388px) * var(--flow-progress, 0));
  background: linear-gradient(
    180deg,
    var(--civic-blue),
    var(--withheld-red) 20%,
    var(--record-ochre) 48%,
    var(--authority-green) 78%,
    var(--paper-light)
  );
  box-shadow: 0 0 0 1px rgba(29, 28, 25, 0.08);
}

.site-footer {
  position: relative;
  z-index: 1;
}

.progress-line {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 4px;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(
    90deg,
    var(--civic-blue),
    var(--authority-green) 45%,
    var(--record-ochre) 72%,
    var(--withheld-red)
  );
}

.bauhaus-graph {
  position: absolute;
  pointer-events: none;
  overflow: visible;
  mix-blend-mode: multiply;
}

.graph-line,
.graph-arc,
.graph-mark,
.graph-cross {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.graph-line {
  stroke: rgba(29, 28, 25, 0.38);
  stroke-width: 1.5;
}

.graph-line.side-route {
  stroke: rgba(47, 114, 95, 0.36);
}

.graph-line.withheld-route {
  stroke: rgba(189, 61, 43, 0.3);
}

.graph-arc {
  stroke-width: 12;
  opacity: 0.42;
}

.graph-arc.arc-blue {
  stroke: rgba(47, 93, 159, 0.44);
}

.graph-arc.arc-green {
  stroke: rgba(47, 114, 95, 0.44);
}

.graph-dot,
.graph-block {
  vector-effect: non-scaling-stroke;
  stroke: rgba(29, 28, 25, 0.48);
  stroke-width: 1.5;
}

.graph-dot.blue,
.graph-block.blue {
  fill: rgba(47, 93, 159, 0.78);
}

.graph-dot.green,
.graph-block.green {
  fill: rgba(47, 114, 95, 0.78);
}

.graph-dot.ochre,
.graph-block.ochre {
  fill: rgba(217, 154, 50, 0.8);
}

.graph-dot.red,
.graph-block.red {
  fill: rgba(189, 61, 43, 0.78);
}

.graph-mark {
  stroke: var(--authority-green);
  stroke-width: 6;
}

.graph-cross {
  stroke: var(--withheld-red);
  stroke-width: 4;
}

.board-graph,
.infra-graph,
.cta-graph,
.hero-graph .side-route,
.hero-graph .withheld-route,
.hero-graph .arc-blue,
.hero-graph .graph-cross,
.hero-graph .graph-block.red,
.hero-graph .graph-block.ochre,
.hero-graph .graph-block.green,
.hero-graph .graph-dot.ochre,
.hero-graph .graph-mark {
  display: none;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  padding: 12px 14px;
  border: 1px solid rgba(29, 28, 25, 0.18);
  background: rgba(244, 240, 230, 0.82);
  box-shadow: 0 18px 45px rgba(29, 28, 25, 0.08);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.brand-mark {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid var(--ink);
  background:
    linear-gradient(90deg, transparent 47%, var(--ink) 47% 56%, transparent 56%),
    linear-gradient(0deg, transparent 47%, var(--ink) 47% 56%, transparent 56%),
    var(--paper);
}

.brand-mark::after {
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--ink);
  background: var(--authority-green);
  content: "";
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  min-width: 0;
  color: rgba(29, 28, 25, 0.68);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--withheld-red);
  content: "";
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  justify-self: end;
  justify-content: center;
  width: max-content;
  min-width: 132px;
  padding: 11px 16px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper-light);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-shell {
  position: relative;
  width: min(1260px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(74px, 10vw, 136px) 0 clamp(80px, 11vw, 150px) var(--rail-space);
}

section[id] {
  scroll-margin-top: 96px;
}

.stage-marker {
  position: absolute;
  top: clamp(88px, 10vw, 150px);
  left: var(--section-spine-x);
  z-index: 8;
  display: block;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(29, 28, 25, 0.76);
  background: var(--paper-light);
  color: var(--ink);
  opacity: 0.72;
  transform: translateX(-50%);
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    background-color 260ms ease;
}

.stage-marker::before {
  position: absolute;
  top: 50%;
  left: calc(100% + 1px);
  width: calc(var(--rail-space) + clamp(18px, 4vw, 78px));
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    currentColor 0 26px,
    transparent 26px 36px
  );
  content: "";
  opacity: 0.26;
}

.stage-marker::after {
  position: absolute;
  inset: 8px;
  border: 1px solid currentColor;
  content: "";
}

main > section.is-current > .stage-marker,
main > section.is-passed > .stage-marker {
  opacity: 1;
}

main > section.is-current > .stage-marker {
  transform: translateX(-50%) scale(1.12);
}

main > section.is-current > .stage-marker::before,
main > section.is-passed > .stage-marker::before {
  background: currentColor;
  opacity: 0.62;
}

.marker-hero {
  top: 31%;
  border-radius: 50%;
  background: rgba(47, 93, 159, 0.72);
}

.marker-hero::after {
  inset: 50%;
  width: 1px;
  height: 28px;
  border: 0;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(90deg);
}

.marker-problem {
  background: var(--withheld-red);
  color: var(--paper-light);
}

.marker-shift {
  background: linear-gradient(90deg, var(--withheld-red) 0 50%, var(--authority-green) 50%);
  color: var(--paper-light);
}

.marker-how {
  border-radius: 50%;
  background: var(--authority-green);
  color: var(--paper-light);
}

.marker-how::after {
  border-radius: 50%;
}

.marker-example {
  width: 46px;
  background: var(--record-ochre);
}

.marker-people {
  background:
    linear-gradient(90deg, var(--civic-blue) 0 33%, var(--authority-green) 33% 66%, var(--record-ochre) 66%),
    var(--paper-light);
}

.marker-infrastructure {
  border-color: rgba(251, 248, 239, 0.7);
  background: var(--paper-light);
  color: var(--paper-light);
}

.marker-infrastructure::after {
  background: var(--authority-green);
}

.marker-use {
  height: 42px;
  background:
    linear-gradient(
      180deg,
      var(--civic-blue) 0 25%,
      var(--authority-green) 25% 50%,
      var(--record-ochre) 50% 75%,
      var(--withheld-red) 75%
    );
}

.marker-final {
  background: var(--authority-green);
  color: var(--paper-light);
  transform: translateX(-50%) rotate(45deg);
}

main > section.is-current > .marker-final {
  transform: translateX(-50%) rotate(45deg) scale(1.12);
}

.shift > .stage-marker,
.example > .stage-marker,
.infrastructure > .stage-marker,
.final-cta > .stage-marker {
  left: var(--spine-x);
}

.hero {
  display: grid;
  min-height: 90svh;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
  padding-left: var(--rail-space);
  padding-bottom: clamp(44px, 5vw, 76px);
}

.hero-graph {
  top: 12%;
  right: 5%;
  z-index: 0;
  width: min(44vw, 560px);
  opacity: 0.34;
  transform: rotate(-1deg);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  content: "";
}

.hero::before {
  top: 17%;
  right: 3%;
  width: min(42vw, 510px);
  aspect-ratio: 1.52;
  border: 1px solid rgba(29, 28, 25, 0.16);
  background:
    repeating-linear-gradient(
      90deg,
      rgba(29, 28, 25, 0.14) 0 1px,
      transparent 1px 34px
    ),
    linear-gradient(135deg, rgba(47, 93, 159, 0.58), rgba(47, 114, 95, 0) 58%),
    linear-gradient(45deg, rgba(217, 154, 50, 0.44), rgba(189, 61, 43, 0.34)),
    var(--paper);
  clip-path: polygon(10% 0, 100% 13%, 88% 100%, 0 79%);
  filter: saturate(0.95);
  opacity: 0.42;
}

.hero::after {
  right: 0;
  bottom: 12%;
  width: min(46vw, 560px);
  aspect-ratio: 3.4;
  border: 1px solid rgba(29, 28, 25, 0.18);
  background:
    repeating-linear-gradient(
      90deg,
      rgba(29, 28, 25, 0.16) 0 1px,
      transparent 1px 24px
    ),
    linear-gradient(110deg, var(--paper-light), rgba(47, 114, 95, 0.28));
  clip-path: polygon(0 20%, 92% 0, 100% 76%, 8% 100%);
  opacity: 0.52;
}

.brand-field {
  position: absolute;
  right: -0.05em;
  bottom: 5vh;
  z-index: -1;
  max-width: 100%;
  color: rgba(29, 28, 25, 0.045);
  font-size: clamp(5rem, 19vw, 20rem);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 820px;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--withheld-red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  width: 100%;
  max-width: 890px;
  margin-bottom: 26px;
  font-size: clamp(3.45rem, 5.45vw, 6.85rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.8vw, 5.3rem);
  line-height: 0.97;
}

h3 {
  margin-bottom: 18px;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.12;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(29, 28, 25, 0.76);
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
  line-height: 1.5;
}

.primary-cta {
  position: relative;
  display: inline-flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px 0 28px;
  border: 1px solid var(--ink);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper-light);
  font-size: 0.8rem;
  font-weight: 900;
  isolation: isolate;
  text-transform: uppercase;
}

.primary-cta::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    var(--withheld-red),
    var(--record-ochre),
    var(--authority-green)
  );
  content: "";
  transform: translateX(-104%);
  transition: transform 320ms ease;
}

.primary-cta:hover::before,
.primary-cta:focus-visible::before {
  transform: translateX(0);
}

.primary-cta.light {
  border-color: var(--paper-light);
  background: var(--paper-light);
  color: var(--ink);
}

.primary-cta.light::before {
  opacity: 0.75;
}

.cta-icon {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid currentColor;
}

.cta-icon::before,
.cta-icon::after {
  position: absolute;
  background: currentColor;
  content: "";
}

.cta-icon::before {
  top: 50%;
  left: 4px;
  width: 10px;
  height: 1px;
  transform: translateY(-50%);
}

.cta-icon::after {
  top: 6px;
  right: 5px;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  background: transparent;
  transform: rotate(45deg);
}

.hero-rail {
  position: absolute;
  right: 0;
  bottom: 20px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  justify-self: end;
  width: 100%;
  max-width: 590px;
  border: 1px solid var(--line-strong);
  background: rgba(244, 240, 230, 0.72);
  backdrop-filter: blur(14px);
}

.hero-rail::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--civic-blue) 0 33%,
    var(--record-ochre) 33% 66%,
    var(--authority-green) 66%
  );
  content: "";
}

.hero-rail span {
  min-height: 68px;
  padding: 18px;
  border-right: 1px solid var(--line);
  color: rgba(29, 28, 25, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-rail span:last-child {
  border-right: 0;
  color: var(--authority-green);
}

.section-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(44px, 8vw, 116px);
  align-items: start;
}

.section-grid::before,
.operation-flow::before,
.example-intro::before,
.section-headline::before,
.infra-copy::before {
  position: absolute;
  top: 30px;
  left: calc(-1 * clamp(42px, 6vw, 88px));
  width: clamp(42px, 6vw, 88px);
  height: 1px;
  background: rgba(29, 28, 25, 0.34);
  content: "";
}

.problem {
  padding-top: clamp(24px, 3vw, 38px);
}

.sticky-copy {
  position: sticky;
  top: 132px;
}

.section-lede p:not(.section-kicker) {
  max-width: 470px;
  color: rgba(29, 28, 25, 0.68);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.55;
}

.large-copy {
  max-width: 760px;
  margin-bottom: 44px;
  color: rgba(29, 28, 25, 0.76);
  font-size: clamp(1.38rem, 2.6vw, 2.35rem);
  line-height: 1.16;
}

.statement-copy {
  width: fit-content;
  margin-bottom: 28px;
  padding: 10px 14px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper-light);
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  font-family: var(--serif);
}

.subdued {
  color: rgba(29, 28, 25, 0.58);
}

.exposure-stack {
  position: relative;
  display: grid;
  gap: 1px;
  margin-bottom: 58px;
  border: 1px solid var(--ink);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.exposure-stack::before {
  position: absolute;
  top: -28px;
  bottom: -28px;
  left: 41px;
  z-index: 1;
  width: 1px;
  background: var(--withheld-red);
  content: "";
}

.exposure-stack div {
  display: grid;
  grid-template-columns: 84px 1fr;
  min-height: 88px;
  background: var(--paper-light);
}

.exposure-stack div:nth-child(2) {
  background: #eef2e6;
}

.exposure-stack div:nth-child(3) {
  background: #eef1f7;
}

.exposure-stack div:nth-child(4) {
  background: #f6ebe3;
}

.stack-index {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--ink);
  color: var(--withheld-red);
  font-size: 0.75rem;
  font-weight: 900;
}

.stack-index::after {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 1px solid var(--withheld-red);
  background: var(--paper-light);
  content: "";
}

.exposure-stack p {
  display: flex;
  align-items: center;
  min-width: 0;
  margin: 0;
  padding: 20px clamp(18px, 3vw, 38px);
  font-size: clamp(1.1rem, 2.3vw, 2rem);
  line-height: 1.1;
}

.exposure-stack > [data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

.shift {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100vw - 1260px) / 2));
  padding-left: max(calc(16px + var(--rail-space)), calc((100vw - 1260px) / 2 + var(--rail-space)));
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(29, 28, 25, 0.055) 1px, transparent 1px) 0 0 /
      clamp(56px, 7vw, 104px) 100%,
    transparent;
  color: var(--ink);
}

.shift::before {
  position: absolute;
  top: 18%;
  right: 0;
  width: min(38vw, 520px);
  height: 58%;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(29, 28, 25, 0.12) 0 1px,
      transparent 1px 32px
    ),
    linear-gradient(135deg, var(--civic-blue), var(--authority-green));
  clip-path: polygon(32% 0, 100% 12%, 74% 100%, 0 83%);
  content: "";
  opacity: 0.09;
}

.shift h2,
.shift p {
  color: var(--ink);
}

.shift-header {
  position: relative;
  max-width: 930px;
}

.question-switch {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: stretch;
  margin: clamp(48px, 8vw, 92px) 0;
}

.question-switch::before {
  position: absolute;
  top: 50%;
  right: clamp(24px, 5vw, 70px);
  left: clamp(24px, 5vw, 70px);
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(189, 61, 43, 0.72),
    rgba(251, 248, 239, 0.28) 46%,
    rgba(47, 114, 95, 0.82)
  );
  content: "";
}

.question-block {
  min-height: 280px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--ink);
  background: var(--paper-light);
}

.question-block span {
  display: block;
  margin-bottom: 42px;
  color: rgba(29, 28, 25, 0.58);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: none;
}

.question-block p {
  max-width: 430px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.6vw, 5rem);
  line-height: 0.94;
}

.question-block.present {
  background: var(--paper-light);
}

.question-block.past {
  background: var(--ink);
}

.question-block.past span,
.question-block.past p {
  color: var(--paper-light);
}

.question-block.present span,
.question-block.present p {
  color: var(--ink);
}

.switch-core {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
}

.switch-core::before,
.switch-core::after {
  position: absolute;
  content: "";
}

.switch-core::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(29, 28, 25, 0.34);
}

.switch-core::after {
  width: 74px;
  height: 74px;
  border: 1px solid var(--ink);
  background:
    linear-gradient(90deg, var(--withheld-red) 0 49%, var(--authority-green) 50%),
    var(--paper-light);
  transform: rotate(45deg);
  animation: turnPlate 8s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.switch-core span {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  background: var(--paper-light);
}

.section-outro {
  position: relative;
  max-width: 760px;
  margin: 0;
  color: rgba(29, 28, 25, 0.76);
  font-size: clamp(1.4rem, 2.7vw, 2.7rem);
  line-height: 1.1;
}

.how {
  padding-bottom: clamp(80px, 9vw, 130px);
}

.operation-flow {
  position: relative;
  display: grid;
  gap: clamp(26px, 4vw, 48px);
}

.signal-cloud {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.signal-cloud::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--civic-blue), var(--record-ochre), var(--authority-green));
  content: "";
  opacity: 0.32;
}

.signal-cloud span {
  position: relative;
  z-index: 1;
  padding: 13px 16px;
  border: 1px solid var(--ink);
  background: var(--paper-light);
  font-size: clamp(0.95rem, 1.25vw, 1.12rem);
  font-weight: 750;
}

.signal-cloud span:nth-child(3n + 1) {
  background: #edf1f6;
}

.signal-cloud span:nth-child(3n + 2) {
  background: #ecf2e7;
}

.signal-cloud span:nth-child(3n + 3) {
  background: #f5eadc;
}

.authorization-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.8fr) minmax(0, 1fr);
  min-height: 420px;
  border: 1px solid var(--ink);
  overflow: hidden;
  background: var(--paper-light);
  box-shadow: var(--shadow);
}

.authorization-board::after {
  position: absolute;
  top: 50%;
  right: clamp(28px, 4vw, 54px);
  left: clamp(28px, 4vw, 54px);
  z-index: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--civic-blue),
    var(--record-ochre) 45%,
    var(--authority-green)
  );
  content: "";
}

.board-graph {
  inset: 22px 18px;
  z-index: 0;
  width: calc(100% - 36px);
  height: calc(100% - 44px);
  opacity: 0.28;
}

.authorization-board::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(29, 28, 25, 0.16) 49.8% 50.2%, transparent 50.2%),
    repeating-linear-gradient(0deg, rgba(29, 28, 25, 0.08) 0 1px, transparent 1px 54px);
  content: "";
  pointer-events: none;
}

.board-column {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  min-width: 0;
  padding: clamp(20px, 3vw, 34px);
  border-right: 1px solid var(--ink);
}

.board-column:last-child {
  border-right: 0;
}

.board-column > p {
  position: absolute;
  top: 18px;
  left: 20px;
  margin: 0;
  color: rgba(29, 28, 25, 0.52);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.board-node {
  position: relative;
  width: fit-content;
  max-width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--ink);
  background: var(--paper);
  font-size: 0.86rem;
  font-weight: 850;
}

.board-node::after {
  position: absolute;
  top: 50%;
  right: -46px;
  width: 46px;
  height: 1px;
  background: var(--ink);
  content: "";
}

.board-node.active::before {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  background: var(--authority-green);
  content: "";
}

.quorum-column {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(47, 93, 159, 0.16), transparent),
    var(--paper-light);
}

.quorum-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: min(168px, 56vw);
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  background: var(--paper-light);
}

.quorum-ring::before,
.quorum-ring::after {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(29, 28, 25, 0.38);
  content: "";
}

.quorum-ring::after {
  inset: 42px;
  background: var(--authority-green);
}

.quorum-ring span {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 1px solid var(--ink);
  background: var(--record-ochre);
}

.quorum-ring span:nth-child(1) {
  top: 18px;
  left: 28px;
}

.quorum-ring span:nth-child(2) {
  right: 16px;
  top: 55px;
  background: var(--civic-blue);
}

.quorum-ring span:nth-child(3) {
  bottom: 22px;
  left: 58px;
  background: var(--authority-green);
}

.quorum-ring strong {
  position: relative;
  z-index: 1;
  color: var(--paper-light);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.decision-column {
  background:
    linear-gradient(135deg, rgba(47, 114, 95, 0.14), transparent 52%),
    var(--paper-light);
}

.decision-output {
  width: min(100%, 260px);
  padding: 20px;
  border: 1px solid var(--ink);
  background: var(--authority-green);
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.85vw, 2rem);
  line-height: 1;
  text-wrap: balance;
}

.rule-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.rule-flow p {
  min-height: 170px;
  margin: 0;
  padding: clamp(20px, 3vw, 32px);
  background: var(--paper-light);
  color: rgba(29, 28, 25, 0.76);
  font-size: clamp(1.02rem, 1.45vw, 1.28rem);
  line-height: 1.42;
}

.rule-flow p:last-child {
  grid-column: 1 / -1;
  min-height: 120px;
  background: var(--ink);
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.02;
}

.example {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100vw - 1260px) / 2));
  padding-left: max(calc(16px + var(--rail-space)), calc((100vw - 1260px) / 2 + var(--rail-space)));
  background:
    linear-gradient(90deg, rgba(29, 28, 25, 0.08) 1px, transparent 1px) 0 0 /
      clamp(56px, 7vw, 104px) 100%,
    transparent;
}

.example-intro {
  position: relative;
  max-width: 780px;
}

.example-intro p:not(.section-kicker) {
  color: rgba(29, 28, 25, 0.7);
  font-size: clamp(1.2rem, 1.9vw, 1.7rem);
}

.release-view {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.55fr) minmax(300px, 1.2fr) minmax(220px, 0.6fr);
  gap: 1px;
  margin: clamp(38px, 7vw, 84px) 0 32px;
  border: 1px solid var(--ink);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.release-view::before {
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 2;
  width: calc(100% + 2px);
  height: 8px;
  background: linear-gradient(
    90deg,
    var(--civic-blue) 0 24%,
    var(--record-ochre) 24% 72%,
    var(--authority-green) 72%
  );
  content: "";
}

.release-request,
.release-result {
  display: grid;
  align-content: space-between;
  min-height: 390px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--paper-light);
}

.release-request span,
.release-result span {
  color: rgba(29, 28, 25, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.release-request strong,
.release-result strong {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.15vw, 3.35rem);
  font-weight: 500;
  line-height: 0.96;
  text-wrap: balance;
}

.release-result {
  background: var(--authority-green);
  color: var(--paper-light);
}

.release-result span {
  color: rgba(251, 248, 239, 0.72);
}

.condition-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--ink);
  list-style: none;
}

.condition-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 77px;
  padding: 18px 22px;
  background: #fbf8ef;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  font-weight: 790;
}

.condition-list span {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid var(--ink);
  background: var(--authority-green);
}

.condition-list span::after {
  position: absolute;
  top: 6px;
  left: 10px;
  width: 6px;
  height: 12px;
  border-right: 2px solid var(--paper-light);
  border-bottom: 2px solid var(--paper-light);
  content: "";
  transform: rotate(38deg);
}

.blocked-note {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
}

.blocked-note p {
  margin: 0;
  color: rgba(29, 28, 25, 0.76);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1.18;
}

.blocked-note div {
  display: grid;
  gap: 1px;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.blocked-note span {
  padding: 18px 20px;
  background: var(--withheld-red);
  color: var(--paper-light);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 820;
}

.blocked-note span:nth-child(2) {
  background: var(--record-ochre);
  color: var(--ink);
}

.blocked-note span:nth-child(3) {
  background: var(--ink);
}

.section-headline {
  position: relative;
  max-width: 930px;
  margin-bottom: clamp(36px, 7vw, 84px);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--ink);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.audience-grid article {
  position: relative;
  min-height: 300px;
  padding: clamp(22px, 3vw, 36px);
  background: var(--paper-light);
}

.audience-grid article::before {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(29, 28, 25, 0.42);
  background: transparent;
  content: "";
}

.audience-grid article:nth-child(3n + 1)::before {
  border-radius: 50%;
  background: rgba(47, 93, 159, 0.2);
}

.audience-grid article:nth-child(3n + 2)::before {
  background: rgba(47, 114, 95, 0.22);
}

.audience-grid article:nth-child(3n + 3)::before {
  width: 0;
  height: 0;
  border: 0;
  border-right: 18px solid transparent;
  border-bottom: 28px solid rgba(217, 154, 50, 0.42);
  background: transparent;
}

.audience-grid article:nth-child(1),
.audience-grid article:nth-child(5) {
  background: #edf1f6;
}

.audience-grid article:nth-child(2),
.audience-grid article:nth-child(4) {
  background: #eef2e8;
}

.audience-grid article:nth-child(3),
.audience-grid article:nth-child(6) {
  background: #f5eadc;
}

.audience-grid h3 {
  font-family: var(--serif);
  font-size: clamp(1.38rem, 2.1vw, 2rem);
  font-weight: 500;
}

.audience-grid p {
  margin: 0;
  color: rgba(29, 28, 25, 0.7);
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  line-height: 1.5;
}

.infrastructure {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100vw - 1260px) / 2));
  padding-left: max(calc(16px + var(--rail-space)), calc((100vw - 1260px) / 2 + var(--rail-space)));
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(29, 28, 25, 0.055) 1px, transparent 1px) 0 0 /
      clamp(56px, 7vw, 104px) 100%,
    transparent;
  color: var(--ink);
}

.infra-graph {
  top: 3%;
  right: max(12px, calc((100vw - 1260px) / 2));
  z-index: 0;
  width: min(78vw, 1040px);
  opacity: 0.34;
  mix-blend-mode: screen;
}

.infrastructure .graph-line,
.final-cta .graph-line {
  stroke: rgba(251, 248, 239, 0.58);
}

.infrastructure .graph-line.side-route,
.final-cta .graph-line.side-route {
  stroke: rgba(116, 177, 151, 0.66);
}

.infrastructure .graph-line.withheld-route,
.final-cta .graph-line.withheld-route {
  stroke: rgba(224, 106, 84, 0.62);
}

.infrastructure .graph-dot,
.infrastructure .graph-block,
.final-cta .graph-dot,
.final-cta .graph-block {
  stroke: rgba(251, 248, 239, 0.72);
}

.infrastructure::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(29, 28, 25, 0.06) 1px, transparent 1px) 0 0 /
      clamp(56px, 7vw, 104px) 100%,
    linear-gradient(135deg, transparent 0 58%, rgba(217, 154, 50, 0.13) 58% 76%, transparent 76%);
  content: "";
}

.infra-copy,
.infra-grid,
.infra-closing {
  position: relative;
}

.infra-copy {
  position: relative;
  max-width: 920px;
}

.infra-copy h2,
.infra-copy p {
  color: var(--ink);
}

.infra-copy > p:not(.section-kicker) {
  max-width: 760px;
  color: rgba(29, 28, 25, 0.72);
  font-size: clamp(1.13rem, 1.7vw, 1.48rem);
  line-height: 1.45;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(42px, 8vw, 96px) 0;
  border: 1px solid rgba(251, 248, 239, 0.52);
  background: rgba(251, 248, 239, 0.52);
}

.infra-grid div {
  min-height: 230px;
  padding: clamp(18px, 2.6vw, 30px);
  background: var(--charcoal);
  color: rgba(251, 248, 239, 0.82);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 2.3rem);
  line-height: 1.02;
}

.infra-grid div:nth-child(2) {
  background: #273d35;
}

.infra-grid div:nth-child(3) {
  background: #3c362b;
}

.infra-grid div:nth-child(4) {
  background: #3f2d2a;
}

.infra-closing {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(251, 248, 239, 0.52);
  background: rgba(251, 248, 239, 0.52);
}

.infra-closing p {
  min-height: 160px;
  margin: 0;
  padding: clamp(18px, 2.4vw, 28px);
  background: var(--paper-light);
  color: var(--ink);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.35;
}

.infra-closing p:last-child {
  background: var(--authority-green);
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.8rem);
  line-height: 0.96;
}

.use-cases {
  overflow: hidden;
}

.case-marquee {
  display: grid;
  gap: 12px;
  width: 100vw;
  margin: 0 0 clamp(34px, 6vw, 72px) calc(50% - 50vw);
  padding: 18px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.case-marquee div {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.case-marquee div:nth-child(2) {
  animation-direction: reverse;
  animation-duration: 41s;
}

.case-marquee span {
  padding: 12px 18px;
  border: 1px solid var(--ink);
  background: var(--paper-light);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 2.2rem);
  line-height: 1;
}

.case-marquee span:nth-child(3n + 1) {
  background: var(--civic-blue);
  color: var(--paper-light);
}

.case-marquee span:nth-child(3n + 2) {
  background: var(--record-ochre);
}

.case-marquee span:nth-child(3n + 3) {
  background: var(--authority-green);
  color: var(--paper-light);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--ink);
  background: var(--ink);
  list-style: none;
}

.case-grid li {
  min-height: 122px;
  padding: 18px;
  background: var(--paper-light);
  color: rgba(29, 28, 25, 0.78);
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  font-weight: 800;
  line-height: 1.22;
}

.case-grid li:nth-child(4n + 1) {
  border-top: 10px solid var(--civic-blue);
}

.case-grid li:nth-child(4n + 2) {
  border-top: 10px solid var(--authority-green);
}

.case-grid li:nth-child(4n + 3) {
  border-top: 10px solid var(--record-ochre);
}

.case-grid li:nth-child(4n + 4) {
  border-top: 10px solid var(--withheld-red);
}

.final-cta {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: none;
  min-height: 88svh;
  padding-right: 16px;
  padding-left: 16px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(29, 28, 25, 0.055) 1px, transparent 1px) 0 0 /
      clamp(56px, 7vw, 104px) 100%,
    transparent;
  text-align: center;
}

.final-cta::before {
  position: absolute;
  inset: 11% max(16px, calc((100vw - 960px) / 2));
  border: 1px solid rgba(251, 248, 239, 0.22);
  background: var(--ink);
  content: "";
}

.final-cta::after {
  position: absolute;
  inset: 20% 5% auto;
  height: 45%;
  background:
    linear-gradient(90deg, transparent 35%, rgba(251, 248, 239, 0.11) 35% 36%, transparent 36%),
    linear-gradient(135deg, rgba(47, 93, 159, 0.5), rgba(47, 114, 95, 0.44) 49%, rgba(189, 61, 43, 0.35));
  clip-path: polygon(9% 7%, 92% 0, 100% 82%, 0 100%);
  content: "";
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  width: min(950px, 100%);
  color: var(--paper-light);
}

.final-cta .section-kicker {
  text-transform: none;
}

.cta-graph {
  top: 11%;
  left: 50%;
  z-index: 0;
  width: min(78vw, 860px);
  opacity: 0.42;
  mix-blend-mode: screen;
  transform: translateX(-50%) rotate(1.5deg);
}

.final-cta .section-kicker,
.final-cta h2,
.access-form {
  position: relative;
  z-index: 2;
}

.access-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(680px, 100%);
  margin-top: 18px;
}

.access-form label {
  display: grid;
  min-width: min(100%, 330px);
  text-align: left;
}

.access-form label span {
  height: 0;
  overflow: hidden;
}

.access-form input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--paper-light);
  border-radius: 0;
  background: rgba(251, 248, 239, 0.12);
  color: var(--paper-light);
  font: 800 0.95rem var(--sans);
  outline: none;
}

.access-form input::placeholder {
  color: rgba(251, 248, 239, 0.58);
}

.access-form input:focus {
  box-shadow: 0 0 0 3px rgba(217, 154, 50, 0.55);
}

.access-form.is-complete .primary-cta {
  border-color: var(--authority-green);
  background: var(--authority-green);
  color: var(--paper-light);
}

.cta-orbit {
  position: absolute;
  inset: 0;
  opacity: 0.85;
}

.cta-orbit span {
  position: absolute;
  border: 1px solid rgba(251, 248, 239, 0.35);
}

.cta-orbit span:nth-child(1) {
  top: 18%;
  left: 12%;
  width: 90px;
  height: 90px;
  background: var(--record-ochre);
}

.cta-orbit span:nth-child(2) {
  right: 18%;
  bottom: 24%;
  width: 120px;
  height: 70px;
  background: var(--authority-green);
  transform: skew(-12deg);
}

.cta-orbit span:nth-child(3) {
  right: 8%;
  top: 24%;
  width: 72px;
  height: 160px;
  background: var(--withheld-red);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 30px max(16px, calc((100vw - 1260px) / 2));
  border-top: 1px solid var(--line-strong);
  background: var(--paper-light);
}

.site-footer p {
  margin: 0;
  color: rgba(29, 28, 25, 0.62);
  font-size: 0.95rem;
  font-weight: 750;
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes plateFloat {
  from {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }

  to {
    transform: translate3d(16px, -12px, 0) rotate(1.4deg);
  }
}

@keyframes routeMarch {
  to {
    stroke-dashoffset: -168;
  }
}

@keyframes turnPlate {
  0%,
  42% {
    transform: rotate(45deg);
  }

  52%,
  100% {
    transform: rotate(225deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    display: none;
  }

  .section-grid,
  .blocked-note {
    grid-template-columns: 1fr;
  }

  .section-grid::before,
  .operation-flow::before,
  .example-intro::before,
  .section-headline::before,
  .infra-copy::before {
    display: none;
  }

  .hero-graph {
    top: 14%;
    right: -6%;
    width: 66vw;
    opacity: 0.25;
  }

  .infra-graph {
    top: 6%;
    right: -28%;
    width: 120vw;
    opacity: 0.26;
  }

  .cta-graph {
    top: 13%;
    width: 112vw;
    opacity: 0.34;
  }

  .sticky-copy {
    position: relative;
    top: auto;
  }

  .question-switch {
    grid-template-columns: 1fr;
  }

  .switch-core {
    min-height: 88px;
  }

  .switch-core::before {
    top: 50%;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
  }

  .authorization-board,
  .release-view,
  .audience-grid,
  .infra-grid,
  .infra-closing,
  .case-grid {
    grid-template-columns: 1fr 1fr;
  }

  .authorization-board {
    min-height: 0;
  }

  .board-column {
    min-height: 250px;
  }

  .quorum-column {
    border-right: 0;
  }

  .decision-column {
    grid-column: 1 / -1;
    min-height: 220px;
    border-top: 1px solid var(--ink);
  }

  .release-request,
  .release-result {
    min-height: 250px;
  }

  .condition-list {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 700px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    gap: 14px;
  }

  .header-cta {
    min-width: 0;
    padding: 10px 12px;
    font-size: 0.68rem;
  }

  .brand {
    font-size: 0.75rem;
  }

  .section-shell {
    width: min(100% - 24px, 1260px);
    padding: 76px 0 84px var(--rail-space);
  }

  :root {
    --spine-x: 24px;
    --section-spine-x: 12px;
    --rail-space: 42px;
  }

  .problem {
    padding-top: 24px;
  }

  .hero {
    min-height: 94svh;
    padding-top: 110px;
  }

  .hero::before {
    top: 15%;
    right: -35%;
    width: 95vw;
  }

  .hero-graph {
    top: 12%;
    right: -34%;
    width: 104vw;
    opacity: 0.18;
  }

  .hero::after {
    right: -18%;
    bottom: 20%;
    width: 72vw;
  }

  h1 {
    font-size: clamp(2.75rem, 12vw, 4.05rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11.5vw, 3.9rem);
  }

  .hero-rail {
    position: relative;
    right: auto;
    bottom: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 42px;
  }

  .hero-rail span {
    min-height: 64px;
    padding: 12px 10px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    font-size: 0.66rem;
  }

  .hero-rail span:last-child {
    border-right: 0;
  }

  .exposure-stack div {
    grid-template-columns: 62px 1fr;
  }

  .question-block {
    min-height: 230px;
  }

  .authorization-board,
  .release-view,
  .audience-grid,
  .infra-grid,
  .infra-closing,
  .case-grid,
  .rule-flow {
    grid-template-columns: 1fr;
  }

  .quorum-column,
  .source-column,
  .decision-column {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .decision-column {
    border-bottom: 0;
  }

  .board-graph {
    inset: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    opacity: 0.16;
  }

  .infra-graph,
  .cta-graph {
    width: 150vw;
  }

  .rule-flow p:last-child {
    grid-column: auto;
  }

  .blocked-note div {
    min-width: 0;
  }

  .case-marquee {
    display: none;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

}
