@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&display=swap");

:root {
  --paper: #f2eee3;
  --paper-deep: #e5dece;
  --ink: #18201c;
  --ink-soft: #53605a;
  --asphalt: #202722;
  --orange: #8e2f65;
  --orange-dark: #641c46;
  --teal: #006e66;
  --yellow: #f3bb35;
  --white: #fffdf7;
  --rule: rgba(24, 32, 28, 0.2);
  --shadow: 0 24px 70px rgba(24, 32, 28, 0.14);
  --shell: min(1180px, calc(100vw - 48px));
  --serif: "Newsreader", Georgia, serif;
  --sans: "Public Sans", sans-serif;
  --mono: "IBM Plex Mono", monospace;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 8%, rgba(243, 187, 53, 0.1), transparent 24rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: -100px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transition: top 120ms ease;
}

.skip-link:focus {
  top: 8px;
}

.status-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 7px 20px;
  gap: 13px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-bar span:last-child::before {
  margin-right: 13px;
  color: #76827b;
  content: "•";
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(243, 187, 53, 0.16);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  border-bottom: 1px solid var(--rule);
  gap: 22px;
}

.wordmark {
  display: flex;
  gap: 5px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
}

.wordmark span:last-child {
  color: var(--orange);
  font-style: italic;
}

nav {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  margin-left: auto;
}

nav a {
  position: relative;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  min-height: 690px;
  gap: clamp(46px, 8vw, 110px);
  align-items: center;
  padding-block: 78px 92px;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(56px, 7.2vw, 104px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

h1 em {
  display: block;
  margin-top: 0.18em;
  color: var(--orange);
  font-weight: 400;
}

.hero-lede {
  max-width: 690px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 6px 6px 0 var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange-dark);
  box-shadow: 9px 9px 0 var(--ink);
}

.text-link {
  font-size: 14px;
  font-weight: 650;
  text-underline-offset: 4px;
}

.text-link span {
  display: inline-block;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.street-figure {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--paper-deep);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.street-figure::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, transparent 24px, rgba(24, 32, 28, 0.1) 25px, transparent 26px),
    linear-gradient(transparent 24px, rgba(24, 32, 28, 0.1) 25px, transparent 26px);
  background-size: 25px 25px;
  content: "";
}

.street-name {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.road {
  position: absolute;
  top: -18%;
  right: 15%;
  width: 43%;
  height: 140%;
  overflow: hidden;
  background: var(--asphalt);
  transform: rotate(17deg);
  transition: width 700ms cubic-bezier(0.2, 0.9, 0.2, 1), background 700ms ease;
}

.road-edge,
.road-center {
  position: absolute;
  top: 0;
  bottom: 0;
}

.road-edge {
  width: 4px;
  background: var(--white);
  opacity: 0.8;
}

.road-edge-left {
  left: 12px;
}

.road-edge-right {
  right: 12px;
}

.road-center {
  left: calc(50% - 2px);
  width: 4px;
  background: repeating-linear-gradient(
    to bottom,
    var(--yellow) 0,
    var(--yellow) 28px,
    transparent 28px,
    transparent 58px
  );
  animation: lane-flow 4s linear infinite;
}

.crossing {
  position: absolute;
  right: 0;
  left: 0;
  height: 52px;
  background: repeating-linear-gradient(
    to right,
    rgba(255, 253, 247, 0.88) 0,
    rgba(255, 253, 247, 0.88) 9px,
    transparent 9px,
    transparent 18px
  );
}

.crossing-one {
  top: 34%;
}

.crossing-two {
  top: 73%;
}

.mile-marker {
  position: absolute;
  top: 88px;
  left: 38px;
  z-index: 4;
  width: 92px;
  height: 110px;
  padding: 12px;
  border: 4px solid var(--white);
  border-radius: 44px 44px 8px 8px;
  color: var(--white);
  background: var(--teal);
  box-shadow: 5px 5px 0 var(--ink);
  cursor: pointer;
  transform: rotate(-5deg);
  transition: transform 180ms ease, background 300ms ease;
}

.mile-marker:hover,
.mile-marker:focus-visible {
  transform: rotate(0) scale(1.04);
}

.mile-marker span,
.mile-marker strong {
  display: block;
  line-height: 1;
}

.mile-marker span {
  font-family: var(--serif);
  font-size: 32px;
}

.mile-marker strong {
  margin-top: 7px;
  font-family: var(--mono);
  font-size: 19px;
}

.figure-caption {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  z-index: 4;
  padding: 18px;
  border-left: 5px solid var(--orange);
  background: rgba(255, 253, 247, 0.91);
  backdrop-filter: blur(8px);
}

.figure-caption span,
.figure-caption strong,
.figure-caption small {
  display: block;
}

.figure-caption span,
.figure-caption small {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.figure-caption strong {
  margin: 3px 0 4px;
  font-family: var(--serif);
  font-size: 22px;
}

.figure-caption small {
  color: var(--ink-soft);
}

.future-note {
  position: absolute;
  top: 225px;
  left: 28px;
  z-index: 5;
  max-width: 190px;
  padding: 13px 15px;
  color: var(--ink);
  background: var(--yellow);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.18;
  opacity: 0;
  transform: rotate(-3deg) translateY(10px);
  transition: opacity 350ms ease, transform 350ms ease;
}

body.future-mode .future-note {
  opacity: 1;
  transform: rotate(-3deg) translateY(0);
}

body.future-mode .road {
  width: 52%;
  background: #273b31;
}

body.future-mode .mile-marker {
  background: var(--orange);
}

@keyframes lane-flow {
  to {
    background-position-y: 58px;
  }
}

.not-strip {
  color: var(--white);
  background: var(--teal);
}

.not-grid {
  display: grid;
  grid-template-columns: 1.05fr repeat(3, 1fr);
  align-items: stretch;
}

.not-grid h2,
.not-grid p {
  margin: 0;
  padding: 27px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.not-grid h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.not-grid p {
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
}

.not-grid p:last-child {
  border-right: 0;
}

.section {
  padding-block: 120px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 50px;
  align-items: end;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--ink);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -26px;
}

.section-heading h2,
.response-grid h2,
.site-footer h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.2vw, 74px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.fact-list {
  border-bottom: 1px solid var(--ink);
}

.fact {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  padding: 38px 0;
  border-bottom: 1px solid var(--rule);
}

.fact:last-child {
  border-bottom: 0;
}

.fact-number {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 13px;
}

.fact > div {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1fr) 190px;
  gap: 42px;
  align-items: baseline;
}

.fact h3,
.plan-track h3,
.decision h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.fact p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.fact a {
  justify-self: end;
  font-family: var(--mono);
  font-size: 11px;
  text-underline-offset: 4px;
}

.as-of {
  margin: 15px 0 0;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  text-align: right;
  text-transform: uppercase;
}

.plan-section {
  color: var(--white);
  background: var(--asphalt);
}

.plan-section .eyebrow {
  color: var(--yellow);
}

.plan-section .section-heading {
  border-color: rgba(255, 255, 255, 0.5);
}

.plan-section .section-heading > p:last-child {
  color: #b8c2bd;
}

.plan-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 72px 0 0;
  padding: 0;
  list-style: none;
}

.plan-track::before {
  position: absolute;
  top: 25px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
  content: "";
}

.plan-track li {
  position: relative;
  padding: 0 24px;
}

.plan-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  place-items: center;
  color: var(--asphalt);
  background: var(--yellow);
  font-family: var(--mono);
  font-size: 12px;
}

.plan-time {
  margin: 0 0 7px;
  color: #aeb9b4;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.plan-track h3 {
  color: var(--white);
  font-size: 32px;
}

.plan-track li > div:last-child > p:last-child {
  margin: 12px 0 0;
  color: #b8c2bd;
  font-size: 14px;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--ink);
}

.decision {
  min-height: 290px;
  padding: 38px 38px 38px 0;
  border-right: 1px solid var(--rule);
}

.decision + .decision {
  padding-left: 38px;
}

.decision:last-child {
  border-right: 0;
}

.decision > span {
  display: block;
  margin-bottom: 70px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 12px;
}

.decision p {
  margin: 15px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.decision-note {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  text-align: right;
  text-transform: uppercase;
}

.response-section {
  color: var(--ink);
  background: var(--yellow);
}

.response-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.response-grid .eyebrow {
  color: var(--orange-dark);
}

.response-instruction {
  max-width: 470px;
  margin: 26px 0 0;
}

.role-choices {
  border-top: 1px solid var(--ink);
}

.role-choices button {
  display: grid;
  grid-template-columns: 140px 1fr 20px;
  width: 100%;
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid rgba(24, 32, 28, 0.32);
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: padding 180ms ease, background 180ms ease;
}

.role-choices button::after {
  content: "→";
}

.role-choices button:hover,
.role-choices button:focus-visible,
.role-choices button[aria-pressed="true"] {
  padding-inline: 14px;
  background: rgba(255, 253, 247, 0.38);
}

.role-choices button strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.role-choices button span {
  align-self: center;
  font-size: 13px;
}

.role-result {
  min-height: 25px;
  margin: 18px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.source-section {
  padding-bottom: 150px;
}

.source-drawers {
  border-bottom: 1px solid var(--ink);
}

details {
  border-bottom: 1px solid var(--rule);
}

details:last-child {
  border-bottom: 0;
}

summary {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 28px;
  padding: 30px 0;
  align-items: center;
  list-style: none;
  cursor: pointer;
}

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

summary::after {
  grid-column: 3;
  grid-row: 1;
  font-family: var(--mono);
  font-size: 22px;
  content: "+";
  transition: transform 220ms ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

summary span {
  font-family: var(--serif);
  font-size: 27px;
}

summary small {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.drawer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-bottom: 32px;
  background: var(--rule);
}

.drawer-content a {
  min-height: 145px;
  padding: 24px;
  background: var(--white);
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.drawer-content a:hover,
.drawer-content a:focus-visible {
  z-index: 1;
  background: #fff7dc;
  transform: translateY(-3px);
}

.drawer-content strong,
.drawer-content span {
  display: block;
}

.drawer-content strong {
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
}

.drawer-content span {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.45;
}

.drawer-warning {
  max-width: 680px;
  margin: 0 0 28px;
  padding: 16px 20px;
  border-left: 4px solid var(--orange);
  background: rgba(233, 79, 45, 0.08);
  font-size: 13px;
}

/* Public vision homepage */

.vision-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
}

.vision-hero h1 {
  font-size: clamp(62px, 7.6vw, 110px);
}

.vision-map {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: #d9dfd0;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background:
    linear-gradient(90deg, transparent 39px, rgba(24, 32, 28, 0.22) 40px, transparent 41px),
    linear-gradient(transparent 39px, rgba(24, 32, 28, 0.22) 40px, transparent 41px);
  background-size: 40px 40px;
}

.map-road {
  position: absolute;
  top: -12%;
  left: 43%;
  width: 112px;
  height: 126%;
  background: var(--asphalt);
  box-shadow: 0 0 0 9px #c4b995, 0 0 0 11px rgba(24, 32, 28, 0.5);
  transform: rotate(8deg);
}

.map-centerline {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 2px);
  width: 4px;
  background: repeating-linear-gradient(
    to bottom,
    var(--yellow) 0,
    var(--yellow) 24px,
    transparent 24px,
    transparent 47px
  );
  animation: lane-flow 4s linear infinite;
}

.map-crossing {
  position: absolute;
  right: 0;
  left: 0;
  height: 34px;
  background: repeating-linear-gradient(
    to right,
    rgba(255, 253, 247, 0.9) 0,
    rgba(255, 253, 247, 0.9) 8px,
    transparent 8px,
    transparent 15px
  );
}

.map-crossing-one {
  top: 31%;
}

.map-crossing-two {
  top: 69%;
}

.map-label {
  position: absolute;
  left: 128px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: rotate(-8deg);
  white-space: nowrap;
}

.map-label-north {
  top: 65px;
}

.map-label-south {
  bottom: 65px;
}

.vision-map .mile-marker {
  top: 52px;
  left: 34px;
}

.map-place {
  position: absolute;
  padding: 9px 12px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 rgba(24, 32, 28, 0.8);
}

.place-one {
  top: 80px;
  right: 34px;
  transform: rotate(3deg);
}

.place-two {
  top: 225px;
  left: 28px;
  transform: rotate(-3deg);
}

.place-three {
  right: 30px;
  bottom: 182px;
  transform: rotate(-2deg);
}

.place-four {
  right: 35px;
  bottom: 56px;
  transform: rotate(2deg);
}

.map-note {
  position: absolute;
  right: 28px;
  top: 155px;
  max-width: 180px;
  margin: 0;
  padding: 16px 18px;
  color: var(--ink);
  background: var(--yellow);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.05;
  transform: rotate(2deg);
}

.vision-map .future-note {
  top: auto;
  right: 24px;
  bottom: 108px;
  left: auto;
}

.idea-strip {
  padding-block: 52px;
  color: var(--white);
  background: var(--teal);
}

.idea-strip-grid {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 60px;
  align-items: start;
}

.idea-strip .eyebrow {
  margin: 9px 0 0;
  color: var(--yellow);
}

.idea-strip h2 {
  max-width: 920px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 50px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.compact-heading h2 {
  max-width: 760px;
}

.friction-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--ink);
}

.friction-card {
  min-height: 310px;
  padding: 36px 30px 36px 0;
  border-right: 1px solid var(--rule);
}

.friction-card + .friction-card {
  padding-left: 30px;
}

.friction-card:last-child {
  border-right: 0;
}

.friction-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 78px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  place-items: center;
  color: var(--orange);
  font-family: var(--serif);
  font-size: 29px;
}

.friction-card h3,
.outcome h3,
.concept-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.friction-card p,
.outcome p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.concept-section {
  color: var(--white);
  background: var(--asphalt);
}

.concept-section .section-heading {
  border-color: rgba(255, 255, 255, 0.45);
}

.concept-section .section-heading > p:last-child {
  color: #b8c2bd;
}

.concept-section .eyebrow {
  color: var(--yellow);
}

.concept-toggle {
  display: inline-flex;
  margin-top: 48px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.concept-toggle button {
  min-width: 150px;
  padding: 12px 18px;
  border: 0;
  color: var(--white);
  background: transparent;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  cursor: pointer;
}

.concept-toggle button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--yellow);
}

.concept-visual {
  display: grid;
  grid-template-columns: minmax(250px, 0.76fr) minmax(520px, 1.24fr);
  gap: 60px;
  align-items: center;
  margin-top: 34px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: #27302b;
}

.concept-copy {
  grid-column: 1;
  grid-row: 1;
  transition: opacity 280ms ease, transform 280ms ease;
}

.concept-copy h3 {
  color: var(--white);
  font-size: 35px;
}

.concept-copy ul {
  margin: 24px 0 0;
  padding-left: 20px;
  color: #c8d0cc;
  font-size: 14px;
}

.concept-copy li + li {
  margin-top: 8px;
}

.concept-copy-vision,
.view-vision .concept-copy-today {
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
}

.view-vision .concept-copy-vision {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.street-section {
  display: grid;
  grid-template-columns: 0.75fr repeat(4, 1fr) 0fr 0.75fr;
  grid-column: 2;
  min-height: 270px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: grid-template-columns 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.street-section > div {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
  overflow: hidden;
  transition: background 400ms ease, opacity 300ms ease;
}

.edge {
  color: var(--ink);
  background: #b9c79b;
}

.edge span {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.lane,
.median-lane {
  border-right: 1px dashed rgba(255, 255, 255, 0.34);
  background: #3b413e;
}

.lane span,
.median-lane span {
  font-family: var(--serif);
  font-size: 38px;
}

.median-lane {
  opacity: 0;
  color: var(--ink);
  background: var(--yellow);
}

.view-vision .street-section {
  grid-template-columns: 1.15fr 1fr 0fr 0fr 1fr 0.82fr 1.15fr;
}

.view-vision .lane-b,
.view-vision .lane-c {
  opacity: 0;
}

.view-vision .median-lane {
  opacity: 1;
}

.concept-caption {
  grid-column: 1 / -1;
  margin: -20px 0 0;
  color: #98a59e;
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.5;
  text-transform: uppercase;
}

.outcome-list {
  border-bottom: 1px solid var(--ink);
}

.outcome {
  display: grid;
  grid-template-columns: 70px minmax(220px, 0.6fr) minmax(280px, 1fr);
  gap: 38px;
  align-items: baseline;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
}

.outcome:last-child {
  border-bottom: 0;
}

.outcome > span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 12px;
}

.outcome p {
  margin: 0;
}

.people-section {
  color: var(--ink);
  background: var(--yellow);
}

.people-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(460px, 1.2fr);
  gap: 70px;
}

.people-layout h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.4vw, 76px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.people-section .eyebrow {
  color: var(--orange-dark);
}

.people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
}

.people-grid div {
  min-height: 145px;
  padding: 24px 22px 24px 0;
  border-right: 1px solid rgba(24, 32, 28, 0.35);
  border-bottom: 1px solid rgba(24, 32, 28, 0.35);
}

.people-grid div:nth-child(even) {
  padding-left: 22px;
  border-right: 0;
}

.people-grid strong,
.people-grid span {
  display: block;
}

.people-grid strong {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.people-grid span {
  margin-top: 25px;
  font-size: 13px;
}

.people-note {
  grid-column: 2;
  max-width: 660px;
  margin: -34px 0 0;
  font-size: 15px;
}

.bridge-section {
  padding-block: 110px;
}

.bridge-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  padding: clamp(42px, 6vw, 82px);
  color: var(--white);
  background: var(--teal);
  box-shadow: 12px 12px 0 var(--yellow);
}

.bridge-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.3vw, 70px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.bridge-card .eyebrow {
  color: var(--yellow);
}

.bridge-card > div:last-child {
  align-self: end;
}

.bridge-card > div:last-child p {
  margin: 0 0 30px;
  color: #d6e1dd;
}

.vision-footer {
  background: var(--orange);
}

/* Separate next-steps page */

.next-hero {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  min-height: 560px;
  gap: 90px;
  align-items: end;
  padding-block: 95px 105px;
}

.next-hero h1 {
  font-size: clamp(64px, 8vw, 116px);
}

.next-hero-note {
  padding: 30px 0 6px 30px;
  border-left: 5px solid var(--orange);
}

.next-hero-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.next-hero-note strong {
  display: block;
  margin-top: 25px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
}

/* Photo-led community vision */

.photo-led-page {
  background:
    radial-gradient(circle at 9% 5%, rgba(243, 187, 53, 0.14), transparent 25rem),
    var(--paper);
}

.photo-hero {
  display: grid;
  grid-template-columns: minmax(390px, 0.78fr) minmax(540px, 1.22fr);
  min-height: 760px;
  gap: clamp(46px, 6vw, 88px);
  align-items: center;
  padding-block: 76px 100px;
}

.photo-hero h1 {
  font-size: clamp(65px, 7.3vw, 106px);
}

.photo-hero .hero-lede {
  max-width: 610px;
}

.hero-photo {
  position: relative;
  min-width: 0;
  margin: 0;
  border: 1px solid var(--ink);
  background: var(--asphalt);
  box-shadow: 14px 14px 0 var(--yellow), var(--shadow);
  transform: rotate(0.4deg);
}

.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-photo figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 17px 19px;
  border-left: 5px solid var(--orange);
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(7px);
}

.hero-photo figcaption span,
.hero-photo figcaption strong,
.hero-photo figcaption small {
  display: block;
}

.hero-photo figcaption span,
.hero-photo figcaption small {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-photo figcaption strong {
  margin-block: 3px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
}

.hero-photo figcaption small {
  color: var(--ink-soft);
}

.photo-marker {
  top: 20px;
  left: 20px;
  width: 70px;
  height: 86px;
  border-width: 3px;
}

.photo-marker span {
  font-size: 25px;
}

.photo-marker strong {
  font-size: 15px;
}

.hero-photo .future-note {
  top: 124px;
  left: 18px;
}

.problem-section {
  padding-block: 115px;
  color: var(--white);
  background: var(--teal);
}

.problem-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 55px;
}

.problem-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -42px;
  color: var(--yellow);
}

.problem-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.8vw, 82px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.problem-intro > p:last-child {
  margin: 0;
  color: #d2e0dc;
}

.evidence-photo-layout {
  display: grid;
  grid-template-columns: minmax(500px, 1.25fr) minmax(330px, 0.75fr);
  gap: 55px;
  align-items: stretch;
}

.evidence-photo {
  position: relative;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 11px 11px 0 var(--yellow);
}

.evidence-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.evidence-photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 10px 13px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.photo-findings {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  list-style: none;
}

.photo-findings li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 17px;
  align-content: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.photo-findings li > span {
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 11px;
}

.photo-findings strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.1;
}

.photo-findings p {
  margin: 9px 0 0;
  color: #c1d3ce;
  font-size: 13px;
}

.baseline-note {
  margin-top: 26px;
  color: #b9cec8;
  font-family: var(--mono);
  font-size: 9px;
  text-align: right;
  text-transform: uppercase;
}

.option-section {
  color: var(--white);
  background: var(--asphalt);
}

.option-section .section-heading {
  border-color: rgba(255, 255, 255, 0.5);
}

.option-section .section-heading > p:last-child {
  color: #b8c2bd;
}

.option-section .eyebrow {
  color: var(--yellow);
}

.photo-option-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 55px;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.photo-option-tabs button {
  min-height: 72px;
  padding: 16px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: transparent;
  font-size: 13px;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.photo-option-tabs button:last-child {
  border-right: 0;
}

.photo-option-tabs button span {
  display: block;
  margin-bottom: 5px;
  color: #829089;
  font-family: var(--mono);
  font-size: 9px;
}

.photo-option-tabs button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--yellow);
}

.photo-option-tabs button[aria-pressed="true"] span {
  color: var(--orange-dark);
}

.photo-option-stage {
  display: grid;
  grid-template-columns: minmax(560px, 1.35fr) minmax(300px, 0.65fr);
  gap: 50px;
  align-items: center;
  margin-top: 30px;
}

.photo-stack {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: #111713;
  box-shadow: 10px 10px 0 rgba(243, 187, 53, 0.95);
}

.photo-panel {
  position: absolute;
  inset: 0;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 430ms ease, transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.photo-panel.is-active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.photo-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-panel figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: baseline;
  padding: 15px 17px;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.93);
  backdrop-filter: blur(7px);
}

.photo-panel figcaption strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.photo-panel figcaption span {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 8px;
  text-align: right;
  text-transform: uppercase;
}

.render-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 5;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--yellow);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.option-copy-stack {
  position: relative;
  min-height: 405px;
}

.option-copy {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 280ms ease, transform 280ms ease;
}

.option-copy.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.option-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.option-copy > p:not(.eyebrow) {
  margin: 23px 0 0;
  color: #c1cbc6;
  font-size: 15px;
}

.option-copy ul {
  margin: 28px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  color: #aebbb5;
  font-size: 13px;
  list-style-position: inside;
}

.option-copy li + li {
  margin-top: 8px;
}

.render-disclosure {
  max-width: 900px;
  margin: 42px 0 0;
  color: #8f9c95;
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.6;
  text-transform: uppercase;
}

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

.concrete-outcomes .outcome {
  grid-template-columns: 70px minmax(250px, 0.72fr) minmax(300px, 1fr);
}

.precedent-section {
  color: var(--ink);
  background: var(--yellow);
}

.precedent-section .eyebrow {
  color: var(--orange-dark);
}

.precedent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
  border-bottom: 1px solid var(--ink);
}

.precedent-card {
  position: relative;
  min-height: 440px;
  padding: 38px 34px 34px;
  border-right: 1px solid rgba(24, 32, 28, 0.35);
  text-decoration: none;
  transition: padding 180ms ease, background 180ms ease;
}

.precedent-card:last-child {
  border-right: 0;
}

.precedent-card:hover,
.precedent-card:focus-visible {
  padding-inline: 34px;
  background: rgba(255, 253, 247, 0.34);
}

.precedent-number {
  display: block;
  margin-bottom: 80px;
  font-family: var(--mono);
  font-size: 11px;
}

.precedent-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.precedent-card > p:not(.eyebrow) {
  margin: 18px 0 34px;
  font-size: 14px;
}

.precedent-card > strong {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  font-family: var(--mono);
  font-size: 10px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.evidence-caution {
  display: grid;
  grid-template-columns: minmax(260px, 0.5fr) minmax(400px, 1fr);
  gap: 70px;
  margin-top: 40px;
  padding: 30px 0 0;
  border-top: 1px solid rgba(24, 32, 28, 0.4);
}

.evidence-caution strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.evidence-caution p {
  margin: 0;
  font-size: 14px;
}

.site-footer {
  padding-block: 80px;
  color: var(--white);
  background: var(--orange);
}

.site-footer .eyebrow {
  color: var(--white);
  opacity: 0.75;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: end;
}

.site-footer h2 {
  max-width: 600px;
}

.footer-grid > div:last-child {
  text-align: right;
}

.footer-grid p:last-child {
  margin: 18px 0 0;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.button-light {
  color: var(--ink);
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .photo-hero,
  .problem-intro,
  .evidence-photo-layout,
  .photo-option-stage {
    grid-template-columns: 1fr;
  }

  .photo-hero {
    min-height: 0;
  }

  .problem-intro .eyebrow {
    margin-bottom: -40px;
  }

  .evidence-photo img {
    min-height: 0;
  }

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

  .photo-findings li {
    display: block;
    padding-right: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.32);
  }

  .photo-findings li + li {
    padding-left: 24px;
  }

  .photo-findings li:last-child {
    border-right: 0;
  }

  .photo-findings li > span {
    display: block;
    margin-bottom: 22px;
  }

  .photo-option-stage {
    gap: 45px;
  }

  .option-copy-stack {
    min-height: 315px;
  }

  .precedent-card {
    min-height: 490px;
  }

  .vision-map {
    min-height: 520px;
  }

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

  .friction-card:nth-child(2) {
    border-right: 0;
  }

  .friction-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--rule);
  }

  .concept-visual {
    grid-template-columns: 1fr;
  }

  .street-section {
    grid-column: 1;
  }

  .people-layout,
  .bridge-card,
  .next-hero {
    grid-template-columns: 1fr;
  }

  .people-note {
    grid-column: 1;
    margin-top: 0;
  }

  .next-hero {
    min-height: auto;
    gap: 50px;
  }

  .street-figure {
    min-height: 430px;
  }

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

  .not-grid h2,
  .not-grid p {
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .not-grid p:nth-child(3) {
    border-right: 0;
  }

  .fact > div {
    grid-template-columns: 1fr 1fr;
  }

  .fact a {
    grid-column: 2;
    justify-self: start;
  }

  .plan-track {
    grid-template-columns: 1fr 1fr;
    gap: 50px 0;
  }

  .plan-track::before {
    display: none;
  }

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

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

  body {
    font-size: 16px;
  }

  .status-bar {
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
  }

  .status-bar span:last-child {
    display: none;
  }

  .site-header {
    height: auto;
    padding-block: 17px 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  nav {
    justify-content: space-between;
    width: 100%;
    gap: 14px;
  }

  nav a:first-child {
    display: none;
  }

  .photo-led-page nav a:nth-child(2) {
    display: none;
  }

  nav a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding-block: 58px 70px;
    gap: 58px;
  }

  .photo-hero {
    gap: 52px;
    padding-block: 58px 78px;
  }

  .photo-hero h1 {
    font-size: clamp(51px, 15.6vw, 74px);
  }

  .hero-photo {
    box-shadow: 7px 7px 0 var(--yellow);
  }

  .photo-marker {
    top: 12px;
    left: 12px;
    width: 57px;
    height: 69px;
  }

  .hero-photo figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .hero-photo figcaption strong {
    font-size: 19px;
  }

  .hero-photo .future-note {
    top: 92px;
    left: 10px;
  }

  .problem-section {
    padding-block: 80px;
  }

  .problem-intro {
    gap: 20px;
    margin-bottom: 40px;
  }

  .problem-intro .eyebrow {
    margin-bottom: 0;
  }

  .evidence-photo {
    box-shadow: 6px 6px 0 var(--yellow);
  }

  .photo-findings {
    grid-template-columns: 1fr;
  }

  .photo-findings li,
  .photo-findings li + li {
    display: grid;
    padding: 25px 0;
    border-right: 0;
  }

  .photo-findings li > span {
    margin-bottom: 0;
  }

  .baseline-note {
    text-align: left;
  }

  .photo-option-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .photo-option-tabs button:nth-child(2) {
    border-right: 0;
  }

  .photo-option-tabs button:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .photo-option-stage {
    gap: 38px;
  }

  .photo-stack {
    box-shadow: 6px 6px 0 var(--yellow);
  }

  .photo-panel figcaption {
    right: 9px;
    bottom: 9px;
    left: 9px;
    display: block;
    padding: 10px 12px;
  }

  .photo-panel figcaption span {
    display: block;
    margin-top: 2px;
    text-align: left;
  }

  .render-badge {
    top: 9px;
    left: 9px;
  }

  .option-copy-stack {
    min-height: 365px;
  }

  .concrete-outcomes .outcome {
    grid-template-columns: 42px 1fr;
  }

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

  .precedent-card,
  .precedent-card + .precedent-card {
    min-height: 360px;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(24, 32, 28, 0.35);
  }

  .precedent-card:last-child {
    border-bottom: 0;
  }

  .precedent-card:hover,
  .precedent-card:focus-visible {
    padding-inline: 16px;
  }

  .precedent-number {
    margin-bottom: 45px;
  }

  .precedent-card > strong,
  .precedent-card + .precedent-card > strong {
    right: 0;
    bottom: 30px;
    left: 0;
  }

  .evidence-caution {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vision-hero h1,
  .next-hero h1 {
    font-size: clamp(50px, 15.5vw, 72px);
  }

  .vision-map {
    min-height: 440px;
  }

  .map-road {
    left: 44%;
    width: 92px;
  }

  .map-note {
    top: 142px;
    right: 16px;
    max-width: 145px;
    font-size: 18px;
  }

  .map-place {
    font-size: 8px;
  }

  .place-one,
  .place-four {
    right: 16px;
  }

  .place-two {
    left: 16px;
  }

  .place-three {
    right: 16px;
    bottom: 140px;
  }

  .idea-strip-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .idea-strip .eyebrow {
    margin: 0;
  }

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

  .friction-card,
  .friction-card + .friction-card {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .friction-icon {
    margin-bottom: 30px;
  }

  .concept-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .concept-toggle button {
    min-width: 0;
    padding-inline: 8px;
  }

  .concept-visual {
    gap: 36px;
    padding: 24px;
  }

  .concept-copy h3 {
    font-size: 29px;
  }

  .street-section {
    min-height: 220px;
  }

  .concept-caption {
    margin-top: -10px;
  }

  .outcome {
    grid-template-columns: 42px 1fr;
    gap: 18px;
  }

  .outcome p {
    grid-column: 2;
  }

  .people-layout {
    gap: 45px;
  }

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

  .people-grid div,
  .people-grid div:nth-child(even) {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
  }

  .people-grid span {
    margin-top: 8px;
  }

  .bridge-card {
    gap: 40px;
    box-shadow: 7px 7px 0 var(--yellow);
  }

  .next-hero {
    padding-block: 68px 78px;
  }

  .next-hero-note {
    padding: 22px 0 0 22px;
  }

  h1 {
    font-size: clamp(51px, 16vw, 74px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .street-figure {
    min-height: 390px;
  }

  .mile-marker {
    top: 55px;
    left: 24px;
    width: 78px;
    height: 95px;
  }

  .future-note {
    top: 172px;
    left: 19px;
  }

  .figure-caption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

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

  .not-grid h2,
  .not-grid p {
    padding: 19px 0;
    border-right: 0;
  }

  .section {
    padding-block: 82px;
  }

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

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

  .fact {
    grid-template-columns: 45px 1fr;
    padding: 30px 0;
  }

  .fact > div {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .fact a {
    grid-column: auto;
  }

  .plan-track {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .plan-track li {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 19px;
    padding: 0;
  }

  .plan-marker {
    margin: 0;
  }

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

  .decision,
  .decision + .decision {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .decision:last-child {
    border-bottom: 0;
  }

  .decision > span {
    margin-bottom: 30px;
  }

  .decision-note {
    text-align: left;
  }

  .role-choices button {
    grid-template-columns: 92px 1fr 18px;
    gap: 12px;
  }

  .role-choices button strong {
    font-size: 21px;
  }

  summary {
    grid-template-columns: 1fr 26px;
    gap: 9px;
  }

  summary span {
    font-size: 23px;
  }

  summary small {
    grid-column: 1;
    grid-row: 2;
  }

  summary::after {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .drawer-content {
    grid-template-columns: 1fr;
  }

  .drawer-content a {
    min-height: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .footer-grid > div:last-child {
    text-align: left;
  }
}

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

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

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

/* Public participation and operations */

.partners-page {
  background:
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(24, 32, 28, 0.04) 100%),
    var(--paper);
}

.people-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  min-height: 620px;
  align-items: end;
  gap: clamp(50px, 9vw, 130px);
  padding-block: 95px 88px;
}

.people-hero h1 {
  font-size: clamp(58px, 7.6vw, 106px);
}

.people-hero-copy {
  padding-bottom: 8px;
}

.people-hero-copy > p {
  margin: 0 0 32px;
  color: var(--ink-soft);
  font-size: 21px;
  line-height: 1.55;
}

.facts-ribbon {
  color: var(--white);
  background: var(--teal);
}

.facts-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.facts-ribbon article {
  min-height: 180px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.facts-ribbon article:last-child {
  border-right: 0;
}

.facts-ribbon strong {
  display: block;
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 500;
  line-height: 0.9;
}

.facts-ribbon span {
  display: block;
  max-width: 190px;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.organization-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 52px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.organization-card {
  min-height: 530px;
  padding: 34px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: rgba(255, 253, 247, 0.46);
}

.organization-card:nth-child(4n + 2),
.organization-card:nth-child(4n + 3) {
  background: rgba(229, 222, 206, 0.55);
}

.organization-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
  font-family: var(--mono);
  text-transform: uppercase;
}

.organization-meta span {
  color: var(--orange);
  font-size: 12px;
}

.organization-meta small {
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.organization-card h3 {
  max-width: 470px;
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(31px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
}

.status-pill {
  display: inline-block;
  margin: 0 0 25px;
  padding: 5px 9px;
  color: var(--teal);
  border: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.organization-card > p:not(.status-pill) {
  color: var(--ink-soft);
}

.coordination-question {
  margin: 30px 0 26px;
  padding: 20px;
  background: var(--white);
  border-left: 4px solid var(--yellow);
}

.coordination-question strong {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.coordination-question p {
  margin: 7px 0 0;
  font-size: 14px;
}

.organization-card > a {
  font-size: 12px;
  font-weight: 650;
  text-underline-offset: 3px;
}

.directory-loading {
  grid-column: 1 / -1;
  min-height: 230px;
  margin: 0;
  padding: 50px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  color: var(--ink-soft);
}

.completed-work-section {
  color: var(--white);
  background: var(--asphalt);
}

.completed-work-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 9vw, 130px);
}

.completed-work-grid h2 {
  max-width: 500px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.completed-work-grid > div:last-child > p:first-child {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.big-fact {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  margin: 40px 0;
  padding-block: 25px;
  border-block: 1px solid rgba(255, 255, 255, 0.24);
}

.big-fact strong {
  color: var(--yellow);
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.big-fact span {
  max-width: 260px;
  font-size: 13px;
}

.business-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 8vw, 110px);
}

.business-heading h2 {
  max-width: 680px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px, 5.8vw, 80px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.business-heading > p {
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: 18px;
}

.coverage-note {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  margin: 58px 0 40px;
  padding: 26px 30px;
  color: var(--white);
  background: var(--teal);
}

.coverage-note strong {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.coverage-note p {
  margin: 0;
  font-size: 14px;
}

.directory-tools {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(200px, 0.55fr) auto;
  align-items: end;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--ink);
  border-bottom: 0;
  background: var(--white);
}

.directory-tools label,
.public-form label,
.newsletter-form label,
.admin-page label {
  display: grid;
  gap: 7px;
}

.directory-tools label > span,
.public-form label > span:first-child,
.newsletter-form label > span:first-child,
.admin-page label > span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.directory-tools input,
.directory-tools select,
.public-form input,
.public-form select,
.public-form textarea,
.newsletter-form input,
.admin-page input,
.admin-page select,
.admin-page textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid rgba(24, 32, 28, 0.45);
  border-radius: 0;
  background: var(--white);
  font: 14px/1.4 var(--sans);
}

.public-form textarea,
.admin-page textarea {
  resize: vertical;
}

.directory-tools input:focus,
.directory-tools select:focus,
.public-form input:focus,
.public-form select:focus,
.public-form textarea:focus,
.newsletter-form input:focus,
.admin-page input:focus,
.admin-page select:focus,
.admin-page textarea:focus {
  outline: 3px solid rgba(243, 187, 53, 0.5);
  outline-offset: 1px;
}

.directory-tools > p {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.business-table-wrap,
.admin-table-wrap {
  overflow-x: auto;
}

.business-table,
.admin-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 253, 247, 0.6);
  font-size: 13px;
}

.business-table th,
.business-table td,
.admin-table-wrap th,
.admin-table-wrap td {
  padding: 17px 16px;
  border: 1px solid var(--rule);
  text-align: left;
  vertical-align: top;
}

.business-table thead th,
.admin-table-wrap thead th {
  color: var(--white);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.business-table tbody th {
  min-width: 190px;
  font-size: 14px;
}

.business-table td a {
  color: var(--teal);
  font-size: 11px;
}

.table-status {
  display: inline-block;
  min-width: 96px;
  padding: 5px 7px;
  border: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.35;
  text-transform: uppercase;
}

.status-neutral { color: var(--ink-soft); }
.status-warning { color: var(--orange-dark); }
.status-active { color: var(--teal); }

.directory-error {
  margin: 0;
  padding: 30px;
  color: var(--orange-dark);
  border: 1px solid var(--orange-dark);
}

.business-empty td {
  padding: 40px 24px;
  text-align: center;
}

.business-empty strong,
.business-empty span {
  display: block;
}

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

.business-response-section {
  background: var(--paper-deep);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(50px, 9vw, 125px);
}

.form-layout h2 {
  margin: 0 0 25px;
  font-family: var(--serif);
  font-size: clamp(50px, 5vw, 74px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.form-layout > div:first-child > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.form-trust {
  margin-top: 30px;
  padding: 18px;
  border-left: 4px solid var(--teal);
  background: var(--white);
  font-size: 13px;
}

.public-form {
  display: grid;
  gap: 20px;
  padding: 32px;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 8px 8px 0 var(--teal);
}

.form-row,
.newsletter-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.check-label {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px !important;
  font-size: 12px;
  line-height: 1.45;
}

.check-label input {
  width: 17px;
  min-height: 17px;
  margin-top: 1px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-size: 13px;
  font-weight: 650;
}

.form-status.is-error { color: var(--orange-dark); }
.form-status.is-success { color: var(--teal); }

.newsletter-section {
  padding-top: 0;
}

.newsletter-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  padding: 50px;
  color: var(--white);
  background: var(--orange);
  box-shadow: 10px 10px 0 var(--ink);
}

.newsletter-card h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 66px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.newsletter-card .eyebrow {
  color: var(--white);
}

.newsletter-form {
  display: grid;
  gap: 18px;
  align-content: center;
}

.newsletter-form input {
  border-color: transparent;
}

.newsletter-form .check-label {
  color: var(--white);
}

.contact-section {
  padding-top: 20px;
}

.prose-page {
  max-width: 860px;
}

.prose-page h1 {
  max-width: 820px;
}

.prose-lede {
  margin: 40px 0 70px;
  color: var(--ink-soft);
  font-size: 22px;
}

.prose-page h2 {
  margin: 45px 0 12px;
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 500;
}

.source-date {
  margin-top: 65px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

/* Private admin dashboard */

.admin-page {
  min-height: 100vh;
  background: #ebe8df;
  font-size: 15px;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 16px 28px;
  color: var(--white);
  background: var(--ink);
}

.admin-header .wordmark { color: var(--white); }

.admin-header > div {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.admin-header button,
.admin-business-actions button {
  padding: 8px 12px;
  color: var(--ink);
  border: 0;
  background: var(--yellow);
  font-weight: 750;
  cursor: pointer;
}

.admin-login {
  display: grid;
  min-height: calc(100vh - 74px);
  place-items: center;
  padding: 40px 24px;
}

.admin-login form {
  width: min(520px, 100%);
  padding: 44px;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 10px 10px 0 var(--teal);
}

.admin-login h1 {
  margin-bottom: 25px;
  font-size: clamp(48px, 6vw, 72px);
}

.admin-login label {
  margin: 26px 0 18px;
}

.admin-dashboard {
  width: min(1460px, calc(100vw - 48px));
  margin: 0 auto;
  padding-block: 58px 90px;
}

.admin-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 80px;
}

.admin-intro h1 {
  font-size: clamp(58px, 6vw, 86px);
}

.admin-intro > p {
  max-width: 520px;
  color: var(--ink-soft);
  font-size: 17px;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 45px 0;
  border: 1px solid var(--ink);
  background: var(--white);
}

.admin-metrics article {
  min-height: 135px;
  padding: 24px;
  border-right: 1px solid var(--ink);
}

.admin-metrics article:last-child { border-right: 0; }

.admin-metrics strong {
  display: block;
  margin-bottom: 9px;
  color: var(--teal);
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}

.admin-metrics span {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.admin-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  border-bottom: 1px solid var(--ink);
}

.admin-tabs button {
  padding: 14px 19px;
  border: 1px solid var(--ink);
  border-bottom: 0;
  background: transparent;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
}

.admin-tabs button + button { border-left: 0; }
.admin-tabs button[aria-pressed="true"] { color: var(--white); background: var(--teal); }

.admin-panel {
  min-height: 500px;
  padding: 35px 0;
}

.admin-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.admin-panel-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
}

.admin-panel-heading label { width: min(320px, 100%); }

.admin-business-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.admin-business-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--ink);
  background: var(--white);
}

.admin-business-title {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.admin-business-title h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.admin-business-title p,
.admin-business-title > span {
  margin: 3px 0 0;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.admin-business-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.admin-business-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-business-actions span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 650;
}

.admin-sync-action {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-sync-action button {
  min-height: 44px;
  padding: 10px 16px;
  color: var(--white);
  border: 0;
  background: var(--teal);
  font: 650 12px/1 var(--sans);
  cursor: pointer;
}

.admin-sync-action button:disabled {
  opacity: 0.5;
  cursor: wait;
}

.admin-sync-action span {
  color: var(--ink-soft);
  font-size: 12px;
}

.admin-table-wrap table { min-width: 780px; }

.admin-warning,
.empty-state {
  padding: 30px;
  border: 1px solid var(--orange-dark);
  background: var(--white);
}

.admin-warning p { margin-bottom: 0; }

.admin-organization-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.admin-organization-list article {
  padding: 24px;
  border: 1px solid var(--ink);
  background: var(--white);
}

.admin-organization-list h3 {
  margin: 8px 0 14px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.admin-organization-list article > p:first-child,
.admin-organization-list strong {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .people-hero,
  .business-heading,
  .completed-work-grid,
  .form-layout,
  .newsletter-card,
  .admin-intro {
    grid-template-columns: 1fr;
  }

  .people-hero {
    min-height: 0;
    align-items: start;
    gap: 42px;
    padding-block: 70px;
  }

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

  .facts-ribbon article:nth-child(2),
  .admin-metrics article:nth-child(2) { border-right: 0; }

  .facts-ribbon article:nth-child(-n + 2),
  .admin-metrics article:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.25); }

  .organization-card { min-height: 0; }
  .admin-business-list { grid-template-columns: 1fr; }
  .admin-organization-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .organization-grid,
  .facts-ribbon-grid,
  .admin-metrics,
  .admin-organization-list {
    grid-template-columns: 1fr;
  }

  .facts-ribbon article,
  .admin-metrics article,
  .facts-ribbon article:nth-child(2),
  .admin-metrics article:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .organization-card { padding: 24px; }
  .organization-meta { margin-bottom: 28px; }
  .coverage-note { grid-template-columns: 1fr; gap: 8px; }
  .directory-tools { grid-template-columns: 1fr; }
  .directory-tools > p { margin: 0; }
  .form-row,
  .newsletter-fields,
  .admin-business-fields {
    grid-template-columns: 1fr;
  }

  .public-form,
  .newsletter-card,
  .admin-login form { padding: 24px; }
  .newsletter-card { gap: 36px; }
  .big-fact { grid-template-columns: 1fr; }
  .admin-dashboard { width: min(100% - 28px, 1460px); }
  .admin-header { align-items: flex-start; gap: 16px; }
  .admin-header > div span { display: none; }
  .admin-panel-heading { align-items: stretch; flex-direction: column; }
  .admin-panel-heading label { width: 100%; }
  .admin-business-title { flex-direction: column; }
}

/* Barton Springs evidence case study */

.case-page {
  background:
    radial-gradient(circle at 85% 6%, rgba(0, 110, 102, 0.12), transparent 28rem),
    var(--paper);
}

.case-hero {
  display: grid;
  grid-template-columns: minmax(420px, 1.02fr) minmax(480px, 0.98fr);
  min-height: 760px;
  gap: clamp(54px, 7vw, 100px);
  align-items: center;
  padding-block: 80px 110px;
}

.case-hero h1 {
  font-size: clamp(60px, 6.8vw, 96px);
  line-height: 0.92;
}

.case-hero h1 em {
  max-width: 780px;
  color: var(--teal);
}

.case-hero .hero-lede {
  max-width: 700px;
  font-size: clamp(17px, 1.55vw, 21px);
}

.case-hero-caveat {
  max-width: 650px;
  margin: 28px 0 18px;
  padding-left: 18px;
  border-left: 4px solid var(--orange);
  font-weight: 650;
}

.case-scoreboard {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid var(--ink);
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    var(--asphalt);
  background-size: 32px 32px;
  box-shadow: 14px 14px 0 var(--yellow), var(--shadow);
}

.score-main {
  padding: 52px 48px 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.score-main > span,
.score-side span {
  color: #b8c4be;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.score-main > strong {
  display: block;
  margin: 16px 0 4px;
  color: var(--yellow);
  font-family: var(--serif);
  font-size: clamp(78px, 10vw, 136px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.76;
}

.score-main > strong small {
  margin-left: 8px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.score-main p {
  max-width: 360px;
  margin: 23px 0 0;
  color: #c6d0cb;
  font-size: 14px;
}

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

.score-side article {
  min-height: 180px;
  padding: 30px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.score-side article:last-child {
  border-right: 0;
}

.score-side strong,
.score-side span {
  display: block;
}

.score-side strong {
  margin-bottom: 17px;
  color: var(--yellow);
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.score-side span {
  line-height: 1.45;
}

.case-stamp {
  position: absolute;
  top: 36px;
  right: 33px;
  width: 76px;
  height: 76px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--orange);
  box-shadow: 4px 4px 0 var(--yellow);
  cursor: pointer;
  transform: rotate(7deg);
  transition: transform 180ms ease, background 180ms ease;
}

.case-stamp:hover,
.case-stamp:focus-visible {
  background: var(--yellow);
  transform: rotate(0) scale(1.06);
}

.case-stamp span,
.case-stamp strong {
  display: block;
  line-height: 1;
}

.case-stamp span {
  font-family: var(--serif);
  font-size: 28px;
}

.case-stamp strong {
  margin-top: 3px;
  font-family: var(--mono);
  font-size: 8px;
}

.case-secret {
  top: auto;
  right: 24px;
  bottom: 194px;
  left: auto;
  color: var(--ink);
}

.case-summary,
.case-section {
  padding-block: 120px;
}

.case-summary {
  color: var(--white);
  background: var(--teal);
}

.case-summary .eyebrow,
.travel-section .eyebrow,
.transfer-section .eyebrow {
  color: var(--yellow);
}

.case-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 55px;
  align-items: end;
  padding-bottom: 44px;
  border-bottom: 1px solid currentColor;
}

.case-section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -30px;
}

.case-section-heading h2,
.travel-copy h2,
.case-conclusion h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.97;
}

.case-section-heading > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.case-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.case-metric {
  min-height: 440px;
  padding: 38px 30px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.27);
}

.case-metric:first-child {
  padding-left: 0;
}

.case-metric:last-child {
  padding-right: 0;
  border-right: 0;
}

.metric-index {
  display: block;
  min-height: 82px;
  color: #b8d2cd;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.case-metric > strong {
  display: block;
  color: var(--yellow);
  font-family: var(--serif);
  font-size: clamp(56px, 6vw, 82px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.case-metric > strong small {
  font-size: 0.38em;
  letter-spacing: -0.02em;
}

.case-metric h3 {
  margin: 24px 0 0;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.case-metric p {
  margin: 18px 0 0;
  color: #c5d8d4;
  font-size: 13px;
}

.case-counterpoint {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 70px;
  margin-top: 35px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.case-counterpoint strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.case-counterpoint p {
  margin: 0;
  color: #d1e0dd;
  font-size: 14px;
}

.travel-section {
  color: var(--white);
  background: var(--asphalt);
}

.travel-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(65px, 9vw, 130px);
  align-items: center;
}

.travel-copy > p:not(.eyebrow, .source-note) {
  max-width: 500px;
  margin: 30px 0 0;
  color: #bdc8c3;
}

.source-note,
.case-as-of {
  margin: 35px 0 0;
  color: #87948e;
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.55;
  text-transform: uppercase;
}

.travel-chart {
  position: relative;
  padding: 30px 30px 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.035);
}

.chart-key {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 18px;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.chart-key span::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  content: "";
}

.key-faster::before {
  background: var(--teal);
}

.key-slower::before {
  background: var(--orange);
}

.chart-row {
  display: grid;
  grid-template-columns: 155px 1fr 58px;
  gap: 16px;
  align-items: center;
  min-height: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.chart-row > span {
  color: #c3cdc8;
  font-size: 11px;
}

.chart-row > strong {
  color: var(--white);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  text-align: right;
}

.bar {
  position: relative;
  display: block;
  height: 18px;
  background: linear-gradient(90deg, transparent 49.75%, rgba(255, 255, 255, 0.4) 49.75%, rgba(255, 255, 255, 0.4) 50.25%, transparent 50.25%);
}

.bar::after {
  position: absolute;
  top: 2px;
  bottom: 2px;
  width: calc(var(--value) * 4.6%);
  content: "";
}

.bar.slower::after {
  left: 50%;
  background: var(--orange);
}

.bar.faster::after {
  right: 50%;
  background: var(--teal);
}

.bar.same::after {
  left: calc(50% - 3px);
  width: 6px;
  background: var(--yellow);
}

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

.volume-bars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 440px;
  gap: 38px;
  align-items: end;
  padding-top: 65px;
}

.volume-bars article {
  display: grid;
  min-width: 0;
}

.volume-bars span,
.volume-bars small {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.volume-bars span {
  margin-bottom: 13px;
}

.volume-bars i {
  display: block;
  width: var(--volume);
  height: 150px;
  background: var(--teal);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.volume-bars article:first-child i {
  background: var(--asphalt);
}

.volume-bars article:nth-child(2) i {
  height: 113px;
  background: var(--orange);
}

.volume-bars article:nth-child(3) i {
  height: 141px;
}

.volume-bars strong {
  margin-top: 17px;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.85;
}

.volume-bars small {
  margin-top: 11px;
  color: var(--ink-soft);
}

.volume-reading {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  gap: 70px;
  margin-top: 50px;
  padding-top: 28px;
  border-top: 1px solid var(--ink);
}

.volume-reading strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.volume-reading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.comparison-section {
  color: var(--ink);
  background: var(--yellow);
}

.comparison-section .eyebrow {
  color: var(--orange-dark);
}

.comparison-table {
  border-bottom: 1px solid var(--ink);
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.45fr 0.7fr 1fr;
  gap: 34px;
  align-items: baseline;
  padding: 25px 0;
  border-bottom: 1px solid rgba(24, 32, 28, 0.28);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row > span {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.comparison-row strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.15;
}

.comparison-row p {
  margin: 0;
  font-size: 14px;
}

.comparison-row mark {
  padding: 3px 6px;
  color: var(--white);
  background: var(--orange-dark);
}

.comparison-head {
  color: var(--ink-soft);
}

.comparison-head strong {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.data-gap-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  margin-top: 65px;
  padding: 46px;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 10px 10px 0 var(--orange);
}

.data-gap-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.data-gap-card > div:last-child p {
  margin: 4px 0 27px;
  color: var(--ink-soft);
  font-size: 14px;
}

.data-gap-card a {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.transfer-section {
  color: var(--white);
  background: var(--asphalt);
}

.transfer-section .case-section-heading {
  border-color: rgba(255, 255, 255, 0.55);
}

.transfer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 60px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.transfer-card {
  padding: 42px;
}

.transfer-card + .transfer-card {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.transfer-card > span {
  display: block;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.transfer-no > span {
  color: #ff8d72;
}

.transfer-card ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.transfer-card li {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 28px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.transfer-card li:last-child {
  border-bottom: 0;
}

.transfer-card li strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.08;
}

.transfer-card li p {
  margin: 0;
  color: #b8c4be;
  font-size: 12px;
}

.case-conclusion {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: end;
  margin-top: 90px;
  padding: 55px;
  color: var(--ink);
  background: var(--orange);
  box-shadow: 12px 12px 0 var(--yellow);
}

.case-conclusion .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -42px;
  color: var(--white);
}

.case-conclusion > p:not(.eyebrow) {
  margin: 0;
}

.case-conclusion .button {
  grid-column: 2;
  justify-self: start;
}

.case-sources {
  padding-bottom: 150px;
  background: var(--paper);
}

.source-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--ink);
}

.source-list a {
  display: grid;
  min-height: 210px;
  padding: 30px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.source-list a:nth-child(3n) {
  border-right: 0;
}

.source-list a:hover,
.source-list a:focus-visible {
  color: var(--white);
  background: var(--teal);
  transform: translateY(-4px);
}

.source-list span,
.source-list small {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.source-list span {
  align-self: start;
  color: var(--orange);
}

.source-list strong {
  align-self: end;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.05;
}

.source-list small {
  margin-top: 9px;
  color: var(--ink-soft);
}

.source-list a:hover small,
.source-list a:focus-visible small {
  color: #c9dad6;
}

.case-as-of {
  color: var(--ink-soft);
  text-align: right;
}

.precedent-feature {
  background: rgba(255, 253, 247, 0.22);
}

.precedent-feature::before {
  position: absolute;
  top: 0;
  right: 34px;
  width: 56px;
  height: 8px;
  background: var(--orange);
  content: "";
}

/* Header participation call to action */

.header-join {
  flex: 0 0 auto;
  min-height: 43px;
  padding: 10px 15px;
  border: 1px solid var(--ink);
  color: var(--white);
  background: var(--orange);
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.header-join:hover,
.header-join:focus-visible {
  background: var(--orange-dark);
  box-shadow: 6px 6px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.join-dialog {
  width: min(760px, calc(100vw - 32px));
  max-height: min(880px, calc(100vh - 32px));
  padding: 0;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 14px 14px 0 rgba(24, 32, 28, 0.72);
}

.join-dialog::backdrop {
  background: rgba(16, 24, 20, 0.72);
  backdrop-filter: blur(3px);
}

.join-dialog-bar {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  color: var(--white);
  background: var(--teal);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.join-dialog-bar button {
  padding: 6px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-transform: uppercase;
}

.join-form {
  display: grid;
  gap: 28px;
  padding: 36px;
}

.join-intro h2 {
  max-width: 620px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 68px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.join-intro > p:last-child {
  margin: 17px 0 0;
  color: var(--ink-soft);
}

.join-levels,
.join-interests {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
  border: 0;
  gap: 12px;
}

.join-levels legend,
.join-interests legend {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.join-levels label {
  display: grid;
  grid-template-columns: 20px 1fr;
  min-height: 126px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--ink);
  gap: 13px;
  cursor: pointer;
  transition: background 160ms ease, box-shadow 160ms ease;
}

.join-levels label:has(input:checked) {
  background: var(--paper-deep);
  box-shadow: inset 0 -5px 0 var(--orange);
}

.join-levels input,
.join-interests input,
.join-consent input {
  accent-color: var(--orange);
}

.join-levels strong,
.join-levels small {
  display: block;
}

.join-levels strong {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
}

.join-levels small {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.join-interests {
  padding: 20px;
  border: 1px solid var(--ink);
  background: var(--white);
}

.join-interests label {
  display: flex;
  min-height: 40px;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}

.join-contact {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 14px;
}

.join-contact label {
  display: grid;
  gap: 7px;
}

.join-contact label > span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.join-contact label small {
  color: var(--ink-soft);
  font-size: 9px;
}

.join-contact input {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.join-contact input:focus {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.join-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.45;
}

.join-submit {
  display: flex;
  align-items: center;
  gap: 22px;
}

.join-submit .form-status {
  margin: 0;
  font-size: 13px;
}

@media (max-width: 1120px) {
  .site-header .nav-next {
    display: none;
  }
}

@media (max-width: 850px) and (min-width: 721px) {
  .site-header nav a:nth-child(n + 3) {
    display: none;
  }
}

@media (max-width: 1040px) {
  .case-hero,
  .travel-layout {
    grid-template-columns: 1fr;
  }

  .case-hero {
    min-height: 0;
  }

  .case-scoreboard {
    min-height: 0;
  }

  .case-metric-grid {
    grid-template-columns: 1fr 1fr;
  }

  .case-metric:nth-child(2) {
    border-right: 0;
  }

  .case-metric:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.27);
  }

  .case-metric:nth-child(3) {
    padding-left: 0;
  }

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

  .source-list a:nth-child(3n) {
    border-right: 1px solid var(--rule);
  }

  .source-list a:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .site-header nav {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-left: 0;
  }

  .header-join {
    grid-column: 2;
    grid-row: 1;
  }

  .join-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    box-shadow: 7px 7px 0 rgba(24, 32, 28, 0.72);
  }

  .join-form {
    gap: 23px;
    padding: 27px 20px 30px;
  }

  .join-levels,
  .join-interests,
  .join-contact {
    grid-template-columns: 1fr;
  }

  .join-levels label {
    min-height: 0;
  }

  .join-submit {
    display: grid;
  }

  .precedent-card,
  .precedent-card + .precedent-card {
    padding: 30px 24px;
  }

  .precedent-card > strong,
  .precedent-card + .precedent-card > strong {
    right: 24px;
    left: 24px;
  }

  .case-page nav a:nth-child(2),
  .case-page nav a:nth-child(3) {
    display: none;
  }

  .case-hero {
    gap: 58px;
    padding-block: 58px 80px;
  }

  .case-hero h1 {
    font-size: clamp(50px, 15vw, 70px);
  }

  .case-scoreboard {
    box-shadow: 7px 7px 0 var(--yellow);
  }

  .score-main {
    padding: 36px 25px 32px;
  }

  .score-main > strong {
    font-size: 78px;
  }

  .score-side {
    grid-template-columns: 1fr;
  }

  .score-side article {
    display: grid;
    grid-template-columns: 110px 1fr;
    min-height: 0;
    align-items: center;
    padding: 22px 25px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .score-side article:last-child {
    border-bottom: 0;
  }

  .score-side strong {
    margin: 0;
  }

  .case-stamp {
    top: 18px;
    right: 16px;
    width: 62px;
    height: 62px;
  }

  .case-secret {
    right: 13px;
    bottom: 203px;
  }

  .case-summary,
  .case-section {
    padding-block: 80px;
  }

  .case-section-heading,
  .case-counterpoint,
  .volume-reading,
  .data-gap-card,
  .case-conclusion {
    grid-template-columns: 1fr;
  }

  .case-section-heading {
    gap: 20px;
  }

  .case-section-heading .eyebrow,
  .case-conclusion .eyebrow {
    margin-bottom: 0;
  }

  .case-metric-grid {
    grid-template-columns: 1fr;
  }

  .case-metric,
  .case-metric:first-child,
  .case-metric:nth-child(3),
  .case-metric:last-child {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.27);
  }

  .metric-index {
    min-height: 40px;
  }

  .case-counterpoint,
  .volume-reading {
    gap: 18px;
  }

  .travel-chart {
    padding: 20px 14px 14px;
  }

  .chart-row {
    grid-template-columns: 104px 1fr 50px;
    gap: 8px;
  }

  .chart-row > span {
    font-size: 9px;
  }

  .volume-bars {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 45px;
  }

  .volume-bars i,
  .volume-bars article:nth-child(2) i,
  .volume-bars article:nth-child(3) i {
    height: 62px;
  }

  .comparison-head {
    display: none;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 26px 0;
  }

  .comparison-row > span {
    color: var(--orange-dark);
  }

  .data-gap-card {
    gap: 30px;
    padding: 28px;
    box-shadow: 6px 6px 0 var(--orange);
  }

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

  .transfer-card {
    padding: 28px;
  }

  .transfer-card + .transfer-card {
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    border-left: 0;
  }

  .transfer-card li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .case-conclusion {
    gap: 28px;
    padding: 30px;
    box-shadow: 7px 7px 0 var(--yellow);
  }

  .case-conclusion .button {
    grid-column: 1;
  }

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

  .source-list a,
  .source-list a:nth-child(2n),
  .source-list a:nth-child(3n) {
    min-height: 170px;
    border-right: 0;
  }

  .case-as-of {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-page *,
  .case-page *::before,
  .case-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
