@font-face {
  font-family: "Newsreader";
  src: url("assets/fonts/newsreader.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("assets/fonts/newsreader-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("assets/fonts/geist.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("assets/fonts/geist-mono.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --paper: #fbfaf6;
  --paper-strong: #f0ece2;
  --white: #ffffff;
  --ink: #0b0d10;
  --ink-soft: #30343a;
  --muted: #5c6670;
  --line: rgba(11, 13, 16, 0.17);
  --line-light: rgba(255, 255, 255, 0.23);
  --blue: #4664ab;
  --blue-deep: #344b85;
  --blue-pale: #e8edf7;
  --gold-deep: #98651c;
  --gold: #d79232;
  --gold-bright: #fcbc02;
  --silver: #a8adb3;
  --black: #0b0d10;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-soft: 0 20px 58px rgba(11, 13, 16, 0.09);
  --shadow-card: 0 12px 30px rgba(11, 13, 16, 0.09);
  --max: 1500px;
  --header-height: 82px;
  --sans: "Geist", Arial, sans-serif;
  --serif: "Newsreader", Georgia, serif;
  --mono: "Geist Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  padding-top: var(--header-height);
  padding-bottom: 46px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.page-strip {
  position: fixed;
  z-index: 120;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px max(32px, calc((100vw - 1440px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  background: rgba(7, 22, 47, 0.78);
  backdrop-filter: blur(16px);
}

.page-strip p {
  display: flex;
  gap: 16px;
  margin: 0;
  font-size: 0.75rem;
}

.page-strip p span {
  color: rgba(255, 255, 255, 0.62);
}

.page-strip a {
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-page-cta {
  display: none;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--blue);
  color: var(--white);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100% - 44px, var(--max));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.brand picture {
  display: block;
  line-height: 0;
}

.brand img {
  width: clamp(176px, 14vw, 226px);
  height: auto;
}

.site-header .brand img {
  width: clamp(176px, 14vw, 226px);
  max-height: 48px;
  object-fit: contain;
}

.brand-light img {
  width: clamp(168px, 15vw, 220px);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.3vw, 42px);
}

.primary-nav a,
.site-footer nav a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--blue);
  transition: right 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  right: 0;
}

.primary-nav__route {
  position: relative;
}

.primary-nav__route > div {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  min-width: 185px;
  display: grid;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.99);
  box-shadow: 0 20px 45px rgba(7, 22, 47, 0.15);
  transform: translate(-50%, -8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.primary-nav__route:hover > div,
.primary-nav__route:focus-within > div {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.primary-nav__route > div a {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 0.7rem;
}

.primary-nav__route > div a:last-child {
  border-bottom: 0;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border: 0;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button {
  padding: 0 22px;
  background: var(--blue);
  color: var(--white);
  box-shadow: none;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--blue-deep);
  box-shadow: var(--shadow-card);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.button-light {
  background: var(--white);
  color: var(--blue-deep);
  box-shadow: none;
}

.button-light:hover {
  background: var(--paper);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.text-link {
  min-height: 36px;
  padding: 0;
  border-bottom: 2px solid currentColor;
  border-radius: 0;
  color: var(--blue-deep);
  background: transparent;
}

.text-link:hover {
  color: var(--blue);
  transform: translateX(3px);
}

.text-button {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  font: inherit;
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.site-sections {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.section {
  position: relative;
  width: 100%;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.section-shell {
  width: min(100% - 44px, var(--max));
  margin-inline: auto;
  padding-block: clamp(78px, 8vw, 132px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.86);
}

.section-id {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 24px;
  padding-inline: 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  opacity: 0.72;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.section-id,
.gap-number,
.card-number,
.route-tag,
.council-list span {
  font-family: var(--mono);
}

h2 {
  margin-bottom: 30px;
  font-size: clamp(2.45rem, 5vw, 5.25rem);
}

p {
  color: var(--ink-soft);
}

/* Mobile-first visual order */
.section-s01 { order: 1; }
.section-s02 { order: 2; }
.section-s05 { order: 3; }
.section-s04 { order: 4; }
.section-s03 { order: 5; }
.section-s07 { order: 6; }
.section-s10 { order: 7; }
.section-s08 { order: 8; }
.section-s09 { order: 9; }
.section-s11 { order: 10; }
.section-s12 { order: 11; }
.section-s13 { order: 12; }

/* S01 — Hero */
.hero {
  background: var(--paper);
}

.hero-grid {
  width: min(100% - 26px, calc(var(--max) + 18px));
  min-height: min(760px, calc(100svh - var(--header-height) - 16px));
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(380px, 0.84fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 4.6vw, 72px);
}

.hero-copy h1 {
  max-width: 970px;
  margin: 0 0 32px;
  font-size: clamp(3.9rem, 4.7vw, 5.15rem);
  font-weight: 500;
}

.hero-copy h1 span {
  color: var(--blue);
}

.hero-intro {
  max-width: 690px;
  margin-bottom: 34px;
}

.hero-intro p {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.42;
}

.hero-panel {
  position: relative;
  min-height: 100%;
  isolation: isolate;
  overflow: hidden;
  background: var(--blue);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -15% -27% -15%;
  height: 58%;
  background: transparent;
  z-index: -1;
}

.hero-panel-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 6vw, 92px);
  color: var(--white);
}

.hero-panel-content p {
  max-width: 500px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.91);
  font-size: clamp(1rem, 1.4vw, 1.24rem);
}

.hero-panel-title {
  margin-bottom: 36px !important;
  color: var(--white) !important;
  font-size: clamp(4rem, 5.6vw, 6.25rem) !important;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.hero-panel-title span {
  color: var(--paper);
  font-style: italic;
}

.orbit {
  position: absolute;
  z-index: 1;
  top: 20%;
  left: 11%;
  width: 82%;
  aspect-ratio: 1.52 / 1;
  border: 1px solid rgba(205, 225, 255, 0.42);
  border-radius: 50%;
  transform: rotate(14deg);
}

.orbit-two {
  top: 24%;
  transform: rotate(-3deg) scale(0.88);
}

.orbit-three {
  top: 18%;
  transform: rotate(30deg) scale(0.72);
}

.orbit-dot {
  display: none;
}

/* S02 — Route */
.route-section {
  background: var(--paper);
}

.route-section .section-shell {
  padding-top: clamp(58px, 6vw, 98px);
  padding-bottom: clamp(70px, 8vw, 118px);
}

.route-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  border: 1px solid rgba(14, 27, 61, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.route-inputs,
.route-output {
  padding: clamp(38px, 4.5vw, 72px);
}

.route-inputs {
  border-right: 1px solid var(--line);
}

.route-inputs h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.2vw, 3.6rem);
}

.route-sentence {
  margin-bottom: 30px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.45rem);
  line-height: 1.25;
}

.route-choice {
  display: inline-flex;
  align-items: baseline;
  gap: 0.22em;
  margin: 0 0.08em;
  padding: 0.02em 0.12em 0.08em;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--blue);
  font: inherit;
  line-height: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.route-choice.is-next {
  box-shadow: inset 0 -2px 0 var(--blue);
}

.route-choice:hover,
.route-choice[aria-expanded="true"] {
  background: var(--blue-pale);
  color: var(--blue-deep);
}

.route-choice.is-selected {
  color: var(--blue-deep);
  font-weight: 500;
}

.route-choice:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.route-choice-panel {
  position: relative;
  z-index: 3;
  margin: -10px 0 20px;
  padding: 10px;
  border: 1px solid rgba(70, 100, 171, 0.22);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.route-choice-list {
  display: grid;
  gap: 4px;
}

.route-choice-list button {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}

.route-choice-list button:hover,
.route-choice-list button:focus-visible,
.route-choice-list button[aria-selected="true"] {
  outline: 0;
  background: var(--blue-pale);
  color: var(--blue-deep);
}

.route-instruction {
  max-width: 460px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.route-output {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper-strong);
}

.route-output-heading h3 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.1vw, 3.7rem);
}

.route-output-heading > p:last-child {
  max-width: 660px;
  margin-bottom: 28px;
}

.route-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.route-result-card {
  --route-accent: var(--gold-deep);
  --route-border: rgba(152, 101, 28, 0.30);
  --route-bg: #fffaf0;
  --route-fg: var(--ink);
  --route-muted: var(--ink-soft);
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 22px;
  border: 1px solid var(--route-border);
  border-radius: var(--radius-sm);
  background: var(--route-bg);
  color: var(--route-fg);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.route-result-card.route-access {
  --route-accent: var(--blue);
  --route-border: rgba(70, 100, 171, 0.30);
  --route-bg: var(--blue-pale);
}

.route-result-card.route-ascent {
  --route-accent: var(--silver);
  --route-border: var(--black);
  --route-bg: var(--black);
  --route-fg: var(--paper);
  --route-muted: var(--silver);
}

.route-result-card:hover {
  transform: translateY(-4px);
  border-color: currentColor;
  box-shadow: var(--shadow-card);
}

.route-result-card .route-tag {
  color: var(--route-accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.route-result-card h4 {
  margin: 0 0 8px;
  font-size: 1.3rem;
  line-height: 1.1;
}

.route-result-card p {
  margin: 0;
  color: var(--route-muted);
  font-size: 0.92rem;
}

.route-result-card .route-arrow {
  align-self: flex-end;
  color: var(--route-accent);
  font-size: 1.35rem;
}

/* S03 — Gaps */
.gaps-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.gaps-section h2 {
  max-width: 1060px;
  font-size: clamp(2.5rem, 4.5vw, 5rem);
}

.gaps-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  margin-top: 52px;
}

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

.gap summary {
  list-style: none;
  cursor: default;
  padding-top: 14px;
}

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

.gap-number,
.gap-name,
.gap-claim {
  display: block;
}

.gap-number {
  margin-bottom: 32px;
  font-weight: 700;
}

.gap-name {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gap-claim {
  min-height: 44px;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.22;
}

.gap-body {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.section-closing {
  max-width: 900px;
  margin: 54px 0 0;
  color: var(--ink);
  font-weight: 700;
}

/* S04 — Proof / Access / Ascent */
.participate-section {
  background: var(--paper);
  color: var(--ink);
  color: var(--ink);
}

.participate-section h2 {
  max-width: 1000px;
  color: var(--ink);
}

.participate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 64px;
  border-top: 1px solid var(--line);
}

.participate-card {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: 34px 34px 28px 0;
  border-right: 1px solid var(--line);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.participate-card:hover,
.participate-card:focus-within {
  transform: translateY(-6px);
  box-shadow: inset 0 4px 0 currentColor, 0 24px 48px rgba(11, 13, 16, 0.10);
}

.participate-card + .participate-card {
  padding-left: 34px;
}

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

.card-number {
  display: block;
  margin-bottom: 60px;
  color: var(--muted);
  font-size: 0.8rem;
}

.participate-card h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3.2rem);
  text-transform: uppercase;
}

.participate-card p {
  color: var(--ink-soft);
}

.card-lead {
  margin-bottom: 18px;
  font-size: 1.18rem;
  font-weight: 700;
}

.card-detail {
  max-width: 410px;
}

.card-meta {
  margin-top: 38px;
  color: var(--muted) !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.participate-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: auto;
  padding-top: 24px;
}

.participate-card__actions a {
  color: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  text-underline-offset: 4px;
}

.participate-card__actions a:hover,
.participate-card__actions a:focus-visible {
  text-decoration: underline;
}

/* S05 — AdChoices */
.adchoices-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 48%, rgba(0, 167, 199, 0.16), transparent 33%),
    linear-gradient(135deg, #020e16 0%, #061c2c 54%, #082434 100%);
  color: #f0ece2;
}

.adchoices-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr);
  align-items: center;
  gap: clamp(32px, 5vw, 96px);
  width: 100%;
  max-width: none;
  min-height: 720px;
  padding: clamp(72px, 7vw, 120px) clamp(20px, 5vw, 90px);
}

.adchoices-grid h2 {
  margin-bottom: 20px;
  color: #f0ece2;
  font-size: clamp(4.3rem, 7.2vw, 7.7rem);
  line-height: 0.88;
}

.adchoices-grid h2 span {
  color: #10afd0;
}

.adchoices-grid p {
  max-width: 720px;
  margin-bottom: 32px;
  color: rgba(240, 236, 226, 0.78);
  font-size: clamp(1.05rem, 1.42vw, 1.28rem);
  line-height: 1.68;
}

.adchoices-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px !important;
  color: #35d1eb !important;
  font-family: var(--mono);
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.adchoices-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #35d1eb;
  box-shadow: 0 0 0 6px rgba(53, 209, 235, 0.13);
}

.adchoices-section .button-light {
  background: #00a7c7;
  border-color: #00a7c7;
  color: #020e16;
  box-shadow: none;
}

.adchoices-section .button-light:hover,
.adchoices-section .button-light:focus-visible {
  background: #35d1eb;
  border-color: #35d1eb;
}

.adchoices-section .button-ghost {
  background: rgba(0, 167, 199, 0.05);
  border-color: rgba(53, 209, 235, 0.55);
  color: #35d1eb;
}

.adchoices-section .button-ghost:hover,
.adchoices-section .button-ghost:focus-visible {
  background: rgba(0, 167, 199, 0.14);
  border-color: #35d1eb;
}

.adchoices-text-link {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  color: var(--white);
  font-weight: 750;
  text-underline-offset: 5px;
}

.adchoices-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.7rem;
  margin-top: 1.8rem;
  color: rgba(240, 236, 226, 0.58);
  font-size: 0.7rem;
  line-height: 1.55;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.adchoices-assurance span {
  position: relative;
}

.adchoices-assurance span:not(:last-child)::after {
  content: "·";
  color: #00a7c7;
  position: absolute;
  right: -1rem;
}

.adchoices-visual {
  position: relative;
  justify-self: center;
  width: min(43vw, 590px);
  aspect-ratio: 1;
  border-radius: 50%;
  color: #f0ece2;
  text-decoration: none;
}

.adchoices-visual::before {
  content: "";
  position: absolute;
  inset: 5%;
  border: 1px dashed rgba(208, 174, 108, 0.45);
  border-radius: 50%;
}

.adchoices-orbit {
  position: absolute;
  border: 1px solid rgba(53, 209, 235, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.adchoices-orbit.orbit-one {
  inset: 13%;
  box-shadow:
    inset 0 0 60px rgba(0, 167, 199, 0.06),
    0 0 60px rgba(0, 167, 199, 0.05);
}

.adchoices-orbit.orbit-two {
  inset: 27%;
  border-color: rgba(208, 174, 108, 0.38);
}

.adchoices-orbit.orbit-three {
  inset: 39%;
  border-color: rgba(53, 209, 235, 0.42);
}

.adchoices-number {
  position: absolute;
  inset: 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding-top: 0.2rem;
  border: 1px solid rgba(53, 209, 235, 0.68);
  border-radius: 50%;
  background: rgba(2, 14, 22, 0.86);
  box-shadow: 0 0 45px rgba(0, 167, 199, 0.2);
}

.adchoices-number span,
.adchoices-number em {
  color: rgba(240, 236, 226, 0.64);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1;
  text-transform: uppercase;
}

.adchoices-number strong {
  color: #f0ece2;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 6.4rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.07em;
}

.adchoices-label {
  position: absolute;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 108px;
  min-height: 38px;
  padding: 0 0.75rem;
  border: 1px solid rgba(53, 209, 235, 0.42);
  background: rgba(6, 28, 44, 0.91);
  color: rgba(240, 236, 226, 0.84);
  font-family: var(--mono);
  font-size: 0.63rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.adchoices-label.label-one {
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
}

.adchoices-label.label-two {
  top: 27%;
  right: 1%;
}

.adchoices-label.label-three {
  right: 3%;
  bottom: 22%;
}

.adchoices-label.label-four {
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
}

.adchoices-label.label-five {
  bottom: 22%;
  left: 1%;
}

.adchoices-label.label-six {
  top: 27%;
  left: 0;
}

/* S07 — Rooms */
.rooms-section {
  background: var(--white);
}

.rooms-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}

.rooms-grid h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.8vw, 6.3rem);
}

.rooms-copy {
  padding-top: 50px;
}

.rooms-copy p {
  max-width: 700px;
  font-size: clamp(1.05rem, 1.5vw, 1.26rem);
}

.rooms-copy p:nth-of-type(2) {
  margin-bottom: 30px;
  color: var(--ink);
  font-weight: 700;
}

.rooms-copy .button-row {
  margin-top: 34px;
}

/* S08 — Brand Trail */
.brand-trail-section {
  background: var(--paper);
}

.brand-trail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 8vw, 140px);
}

.brand-trail-grid h2 {
  font-size: clamp(3rem, 5.5vw, 6.2rem);
}

.brand-trail-grid > div:last-child > p {
  max-width: 760px;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.content-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 34px 0;
}

.content-labels a {
  padding: 10px 14px;
  border: 1px solid rgba(152, 101, 28, 0.30);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link-light {
  color: var(--white);
}

/* S09 — Councils */
.councils-section {
  background: var(--blue);
  color: var(--white);
}

.councils-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
}

.councils-grid h2 {
  max-width: 780px;
  color: var(--white);
}

.councils-grid p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.councils-grid .button {
  margin-top: 22px;
}

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

.council-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid var(--line-light);
  color: var(--white);
  font-weight: 700;
}

.council-list span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.75rem;
}

/* S10 — Ascent */
.ascent-section {
  overflow: hidden;
  background: var(--black);
  color: var(--paper);
}

.ascent-section h2,
.ascent-section p {
  color: var(--paper);
}

.ascent-section h2 span {
  color: var(--silver);
}

.ascent-section .section-id,
.ascent-section .eyebrow {
  color: var(--silver);
}

.ascent-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
}

.ascent-grid h2 {
  margin-bottom: 0;
}

.ascent-grid > div:last-child p {
  max-width: 760px;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.ascent-line {
  color: var(--silver) !important;
  font-weight: 800;
}

.ascent-grid .button {
  margin-top: 16px;
}

/* S11 — Archive */
.archive-section {
  background: var(--paper-strong);
}

.archive-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(54px, 7vw, 118px);
  align-items: center;
}

.archive-copy h2 {
  font-family: var(--serif);
  font-size: clamp(3.3rem, 5.6vw, 6.15rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.archive-kicker {
  margin-top: -12px;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 800;
}

.archive-copy > p:not(.eyebrow, .archive-kicker, .archive-note) {
  max-width: 620px;
}

.mod-bt-001-archive-card {
  display: flex;
  max-width: 620px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(52, 75, 133, 0.23);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue-deep);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.mod-bt-001-archive-card:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  box-shadow: var(--shadow-card);
}

.mod-bt-001-archive-card > span:first-child {
  display: grid;
  gap: 2px;
}

.mod-bt-001-archive-card small {
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mod-bt-001-archive-card strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.mod-bt-001-archive-card em {
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
}

.mod-bt-001-archive-card > span:last-child {
  font-size: 1.3rem;
}

.archive-search {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 7px 7px 7px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.archive-search:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(70, 100, 171, 0.12);
}

.archive-search svg {
  width: 22px;
  fill: none;
  stroke: var(--ink-soft);
  stroke-width: 1.7;
  stroke-linecap: round;
}

.archive-search input {
  min-width: 0;
  min-height: 48px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.archive-search button {
  min-height: 44px;
  padding-inline: 18px;
  border: 0;
  border-radius: 7px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}

.archive-actions {
  margin-top: 20px;
}

.archive-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.archive-visual {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--blue-deep);
  box-shadow: var(--shadow-card);
}

.archive-visual > img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.archive-results {
  position: absolute;
  inset: 0;
  display: none;
  overflow: auto;
  padding: 24px;
  background: rgba(7, 17, 45, 0.94);
  backdrop-filter: blur(8px);
}

.archive-results.is-open {
  display: grid;
  align-content: start;
  gap: 10px;
}

.archive-result {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  color: var(--white);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
}

.archive-result:hover {
  background: rgba(255, 255, 255, 0.12);
}

.archive-result strong,
.archive-result small {
  display: block;
}

.archive-result small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.65);
}

.archive-empty {
  color: var(--white);
}

.archive-empty p {
  color: rgba(255, 255, 255, 0.78);
}

.archive-results-close {
  justify-self: end;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 1.25rem;
}

/* S12 — Legacy */
.legacy-section {
  background: var(--white);
}

.legacy-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1.65fr);
  gap: clamp(40px, 7vw, 100px);
}

.legacy-grid h2 {
  font-family: var(--serif);
  font-size: clamp(4rem, 7.6vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.legacy-grid h2 em {
  color: var(--gold-deep);
  font-weight: 400;
}

.legacy-grid p {
  max-width: 900px;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

/* S13 — Conversion */
.conversion-section {
  background: var(--black);
  color: var(--white);
}

.conversion-section h2 {
  color: var(--white);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  color: rgba(255, 255, 255, 0.60);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.50);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
}

.contact-form select {
  color-scheme: dark;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: #7ca1ff;
}

.contact-form textarea {
  min-height: 92px;
  resize: vertical;
}

.contact-form .form-wide {
  grid-column: 1 / -1;
}

.contact-form .consent-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
}

.contact-form .consent-field input {
  width: 20px;
  min-height: 20px;
  margin-top: 2px;
}

.contact-form .consent-field > span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.form-submit-wrap {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 14px;
}

.form-submit-wrap p {
  margin: 0;
  color: rgba(255, 255, 255, 0.60);
  font-size: 0.82rem;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--paper);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-top: clamp(90px, 10vw, 150px);
  padding-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.20);
}

.site-footer p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 28px;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.80);
}

.site-footer nav a:hover {
  color: var(--white);
}

/* Under-build modal */
.under-build-modal {
  width: min(92vw, 720px);
  padding: clamp(34px, 5vw, 62px);
  border: 0;
  border-radius: 24px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.32);
}

.under-build-modal::backdrop {
  background: rgba(4, 7, 13, 0.74);
  backdrop-filter: blur(8px);
}

.under-build-modal h2 {
  max-width: 590px;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.under-build-modal > p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 32px;
  font-size: 1.06rem;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
}

.back-to-top {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(7, 10, 14, 0.86);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.noscript {
  position: fixed;
  z-index: 3000;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  background: #fff2c2;
  color: #201900;
  font-weight: 700;
}

/* Desktop publishing order */
@media (min-width: 961px) {
  .section-s01 { order: 1; }
  .section-s03 { order: 2; }
  .section-s02 { order: 3; }
  .section-s04 { order: 4; }
  .section-s05 { order: 5; }
  .section-s07 { order: 6; }
  .section-s08 { order: 7; }
  .section-s09 { order: 8; }
  .section-s10 { order: 9; }
  .section-s11 { order: 10; }
  .section-s12 { order: 11; }
  .section-s13 { order: 12; }
}

@media (max-width: 1180px) {
  :root {
    --header-height: 74px;
  }

  .header-inner {
    width: min(100% - 30px, var(--max));
    gap: 22px;
  }

  .primary-nav {
    gap: 20px;
  }

  .primary-nav a {
    font-size: 0.69rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  }

  .hero-copy {
    padding: 62px;
  }

  .hero-panel-content {
    padding: 52px;
  }

  .route-results {
    grid-template-columns: 1fr;
  }

  .route-result-card {
    min-height: 130px;
  }

  .gaps-grid {
    gap: 14px;
  }
}

@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    justify-self: end;
    grid-column: 3;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .menu-lines {
    width: 26px;
    display: grid;
    gap: 6px;
  }

  .menu-lines i {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease;
  }

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

  .menu-toggle[aria-expanded="true"] .menu-lines i:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 18px 22px 30px;
    border-bottom: 1px solid var(--line);
    background: rgba(251, 250, 246, 0.98);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 180ms ease;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
  }

  .primary-nav a::after {
    display: none;
  }

  .primary-nav__route > a {
    display: block;
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
  }

  .primary-nav__route > div {
    position: static;
    min-width: 0;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 0 8px 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav__route:hover > div,
  .primary-nav__route:focus-within > div {
    transform: none;
  }

  .primary-nav__route > div a {
    padding: 9px 6px;
    border: 0;
    color: var(--blue);
    font-size: 0.64rem;
  }

  .header-cta {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .hero-grid,
  .route-card,
  .adchoices-grid,
  .rooms-grid,
  .brand-trail-grid,
  .councils-grid,
  .ascent-grid,
  .archive-grid,
  .legacy-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-panel {
    min-height: 500px;
  }

  .hero-panel-content {
    max-width: 680px;
  }

  .route-inputs {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .route-results {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gaps-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .gap {
    border-top-color: var(--line);
  }

  .gap summary {
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 10px;
    min-height: 82px;
    padding: 12px 42px 12px 0;
    cursor: pointer;
  }

  .gap summary::after {
    content: "+";
    position: absolute;
    right: 4px;
    color: var(--blue);
    font-size: 1.5rem;
    font-weight: 500;
  }

  .gap[open] summary::after {
    content: "−";
  }

  .gap-number,
  .gap-name,
  .gap-claim {
    margin: 0;
    min-height: 0;
  }

  .gap-claim {
    color: var(--ink-soft);
    font-size: 0.88rem;
    text-align: right;
  }

  .gap-body {
    padding: 0 0 26px 54px;
  }

  .participate-grid {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .participate-card,
  .participate-card + .participate-card {
    min-height: 0;
    padding: 28px 0;
    border-top: 1px solid var(--line-light);
    border-right: 0;
  }

  .card-number {
    margin-bottom: 30px;
  }

  .rooms-copy {
    padding-top: 0;
  }

  .councils-grid {
    gap: 54px;
  }

  .archive-visual {
    order: -1;
  }

  .legacy-grid {
    gap: 20px;
  }

  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  body {
    padding-bottom: 78px;
    font-size: 15px;
  }

  .page-strip {
    display: none;
  }

  .mobile-page-cta {
    position: fixed;
    z-index: 120;
    right: 16px;
    bottom: 14px;
    left: 16px;
    min-height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    color: #fff;
    background: rgba(70, 100, 171, 0.76);
    box-shadow: 0 16px 38px rgba(7, 22, 47, 0.28);
    backdrop-filter: blur(16px);
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .header-inner,
  .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .brand {
    font-size: 1.84rem;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    grid-column: 2;
  }

  .section-shell {
    padding-block: 72px;
  }

  .eyebrow {
    align-items: flex-start;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .section-id {
    min-width: 34px;
    height: 22px;
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.8rem);
  }

  .button,
  .text-link {
    font-size: 0.9rem;
  }

  .button-row {
    align-items: flex-start;
    gap: 15px;
  }

  .hero-grid {
    width: calc(100% - 16px);
    margin-top: 8px;
    border-radius: 24px;
  }

  .hero-copy {
    padding: 50px 26px 44px;
  }

  .hero-copy h1 {
    margin-bottom: 24px;
    font-size: clamp(3.2rem, 15.2vw, 4.65rem);
    line-height: 0.96;
  }

  .hero-intro p {
    font-size: 1rem;
  }

  .hero-intro p:last-child {
    display: block;
  }

  .hero-panel {
    min-height: 410px;
  }

  .hero-panel-content {
    padding: 44px 28px;
    justify-content: flex-end;
  }

  .hero-panel-title {
    margin-bottom: 28px !important;
    font-size: clamp(3.5rem, 17vw, 5rem) !important;
  }

  .hero-panel-content p:last-child {
    max-width: 290px;
  }

  .orbit {
    top: 8%;
    left: 2%;
    width: 96%;
  }

  .orbit-two {
    top: 12%;
  }

  .orbit-three {
    top: 5%;
  }

  .route-section .section-shell {
    padding-top: 38px;
  }

  .route-card {
    border-radius: 22px;
  }

  .route-inputs,
  .route-output {
    padding: 28px 20px;
  }

  .route-sentence {
    font-size: 1.55rem;
  }

  .route-choice {
    min-height: 44px;
    padding-inline: 0.18em;
  }

  .route-choice-panel {
    margin-top: -14px;
    max-height: 310px;
    overflow-y: auto;
  }

  .route-results {
    grid-template-columns: 1fr;
  }

  .route-result-card {
    min-height: 118px;
  }

  .adchoices-grid {
    gap: 46px;
    min-height: auto;
  }

  .adchoices-grid h2 {
    font-size: clamp(3.45rem, 16.5vw, 5.1rem);
  }

  .adchoices-grid p {
    font-size: 1rem;
  }

  .adchoices-grid .button {
    width: 100%;
    text-align: center;
  }

  .adchoices-visual {
    width: min(72vw, 570px);
    margin-top: 1rem;
  }

  .participate-section h2 {
    font-size: 2.7rem;
  }

  .card-detail {
    display: none;
  }

  .participate-card__actions {
    margin-top: 24px;
  }

  .participate-card h3 {
    font-size: 2.15rem;
  }

  .card-lead {
    margin-bottom: 0;
  }

  .gaps-section h2 {
    font-size: 2.55rem;
  }

  .section-closing {
    margin-top: 34px;
    font-size: 0.9rem;
  }

  .rooms-grid,
  .brand-trail-grid,
  .councils-grid,
  .ascent-grid,
  .archive-grid {
    gap: 38px;
  }

  .rooms-grid h2,
  .brand-trail-grid h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .rooms-copy p {
    font-size: 1rem;
  }

  .desktop-detail {
    display: none;
  }

  .rooms-copy .button-row .button,
  .ascent-grid .button,
  .brand-trail-grid .button,
  .councils-grid .button {
    width: 100%;
  }

  .council-list li {
    grid-template-columns: 40px 1fr;
    font-size: 0.9rem;
  }

  .archive-visual > img {
    min-height: 230px;
  }

  .archive-search {
    grid-template-columns: 22px 1fr;
    padding-right: 12px;
  }

  .archive-search button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .archive-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .legacy-grid h2 {
    font-size: clamp(3.8rem, 17vw, 5.6rem);
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .form-submit-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-submit-wrap .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer nav {
    justify-content: flex-start;
    gap: 18px 24px;
  }

  .under-build-modal .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .under-build-modal .button,
  .under-build-modal .text-link {
    width: 100%;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
  }
}

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

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

/* Standalone under-build page */
.under-build-page {
  min-height: 100vh;
  background: var(--paper);
}

.under-build-header {
  grid-template-columns: auto 1fr;
}

.under-build-header .text-link {
  justify-self: end;
}

.under-build-main {
  width: min(100% - 26px, calc(var(--max) + 18px));
  min-height: calc(100vh - var(--header-height) - 28px);
  margin: 14px auto;
}

.under-build-hero {
  position: relative;
  min-height: calc(100vh - var(--header-height) - 28px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.under-build-content {
  position: relative;
  z-index: 2;
  width: min(100% - 52px, 1080px);
  margin-left: clamp(0px, 7vw, 110px);
  padding-block: 80px;
}

.under-build-content h1 {
  max-width: 1000px;
  margin: 0 0 28px;
  font-size: clamp(4rem, 8vw, 8.6rem);
  font-weight: 800;
}

.under-build-content > p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 34px;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.under-build-orbit {
  position: absolute;
  right: -8%;
  top: 7%;
  width: min(58vw, 820px);
  aspect-ratio: 1.35 / 1;
  border: 1px solid rgba(70, 100, 171, 0.28);
  border-radius: 50%;
  transform: rotate(12deg);
}

.under-build-orbit::before,
.under-build-orbit::after {
  content: "";
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(70, 100, 171, 0.20);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.under-build-orbit::after {
  inset: 17%;
  transform: rotate(31deg);
}

.route-refreshed .route-result-card {
  animation: routeIn 420ms ease both;
}

.route-refreshed .route-result-card:nth-child(2) {
  animation-delay: 70ms;
}

.route-refreshed .route-result-card:nth-child(3) {
  animation-delay: 140ms;
}

@keyframes routeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 680px) {
  .under-build-header .text-link {
    font-size: 0.76rem;
  }

  .under-build-main,
  .under-build-hero {
    min-height: calc(100vh - var(--header-height) - 16px);
  }

  .under-build-main {
    width: calc(100% - 16px);
    margin-top: 8px;
  }

  .under-build-hero {
    border-radius: 24px;
  }

  .under-build-content {
    width: calc(100% - 44px);
    margin: 0 auto;
    padding-block: 64px;
  }

  .under-build-content h1 {
    font-size: clamp(3.25rem, 16vw, 5rem);
  }

  .under-build-orbit {
    right: -55%;
    top: 3%;
    width: 120vw;
  }
}

/* Build 02 brand and behaviour refinements */
.accent-access,
.conversion-section h2 span {
  color: var(--blue);
}

.accent-proof {
  color: var(--gold-deep);
}

.participate-section .eyebrow {
  color: var(--muted);
}

.proof-card {
  box-shadow: inset 0 4px 0 var(--gold);
}

.proof-card h3,
.proof-card .card-number {
  color: var(--gold-deep);
}

.access-card {
  box-shadow: inset 0 4px 0 var(--blue);
}

.access-card h3,
.access-card .card-number {
  color: var(--blue);
}

.ascent-card {
  padding-right: 34px;
  background: var(--black);
  box-shadow: inset 0 4px 0 var(--silver);
}

.ascent-card h3,
.ascent-card p {
  color: var(--paper);
}

.ascent-card .card-number,
.ascent-card .card-meta {
  color: var(--silver) !important;
}

.ascent-section .button {
  background: var(--paper);
  color: var(--black);
}

.ascent-section .button:hover {
  background: var(--silver);
}

.councils-grid h2 span {
  color: var(--paper);
  font-style: italic;
}

.council-status {
  margin-top: 22px;
  padding-left: 14px;
  border-left: 3px solid var(--paper);
  font-weight: 700;
}

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

.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

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

.section {
  transition: box-shadow 320ms ease;
}

.section-in-view {
  box-shadow: inset 0 1px 0 rgba(70, 100, 171, 0.08);
}

.gap {
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.gap:hover {
  transform: translateY(-5px);
  border-top-color: var(--blue);
}

.content-labels a,
.council-list li,
.archive-result {
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.content-labels a:hover,
.content-labels a:focus-visible,
.council-list li:hover {
  transform: translateX(5px);
}

.mobile-nav-cta {
  display: none;
}

@media (max-width: 960px) {
  .primary-nav .mobile-nav-cta {
    display: flex;
    justify-content: center;
    margin-top: 14px;
    border: 0;
    border-radius: 7px;
    background: var(--blue);
    color: var(--white);
  }

  .participate-card,
  .participate-card + .participate-card {
    padding-inline: 24px;
  }
}

@media (max-width: 680px) {
  .brand img {
    width: 138px;
  }

  .site-header .brand img {
    width: 58px;
    max-height: 54px;
  }

  .hero-intro p {
    display: block;
  }

  .card-detail,
  .card-meta {
    display: block;
  }

  .adchoices-visual {
    width: min(91vw, 430px);
  }

  .adchoices-assurance {
    flex-direction: column;
    gap: 0.55rem;
  }

  .adchoices-assurance span::after {
    display: none;
  }

  .adchoices-label {
    min-width: 86px;
    min-height: 34px;
    font-size: 0.52rem;
  }

  .orbit-outer {
    width: 86%;
  }

  .orbit-middle {
    width: 68%;
  }

  .orbit-inner {
    width: 44%;
  }

  .orbit-label {
    min-width: 84px;
    min-height: 34px;
    padding: 6px 8px;
    font-size: 0.5rem;
  }

  .label-agencies,
  .label-publishers {
    right: 0;
  }

  .label-platforms,
  .label-associations {
    left: 0;
  }

  .contact-form .consent-field {
    grid-template-columns: auto 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
  }
}
