:root {
  color-scheme: light;
  --ink: #11191f;
  --muted: #66737d;
  --paper: #f7f2e7;
  --paper-strong: #fffaf0;
  --blue: #0b5ec9;
  --blue-deep: #063b78;
  --aqua: #00a7a8;
  --green: #267d5b;
  --yellow: #ffd342;
  --coral: #f05d4e;
  --line: rgba(17, 25, 31, 0.14);
  --shadow: 0 24px 70px rgba(13, 34, 54, 0.18);
  --radius: 8px;
  --content: min(1160px, calc(100vw - 36px));
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

body.no-webgl .three-stage::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: rotate(-8deg);
}

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

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px max(18px, calc((100vw - 1160px) / 2));
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-elevated {
  background: rgba(255, 250, 240, 0.92);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(17, 25, 31, 0.1);
  backdrop-filter: blur(16px);
}

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

.brand-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.brand-mark strong,
.brand-mark small {
  display: block;
  line-height: 1.1;
}

.brand-mark small {
  margin-top: 2px;
  font-size: 12px;
  opacity: 0.76;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.site-header.is-elevated .site-nav {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.site-nav a {
  text-decoration: none;
  padding: 8px 13px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--yellow);
  color: var(--ink);
  outline: 0;
}

.hero-section {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  background: radial-gradient(circle at 72% 22%, rgba(255, 211, 66, 0.58), transparent 23%),
    linear-gradient(132deg, var(--blue-deep) 0%, #085cab 42%, #108184 100%);
  color: #fff;
  display: grid;
  align-items: center;
  padding: 74px 0 14px;
}

.three-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.78;
}

.three-stage canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: auto -10% -22% -10%;
  height: 40%;
  background: var(--paper);
  transform: skewY(-4deg);
  transform-origin: 0 0;
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 390px);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 900;
}

.section-kicker {
  color: var(--blue);
}

.section-kicker.light {
  color: var(--yellow);
}

.hero-copy h1 {
  margin: 12px 0 16px;
  font-size: clamp(82px, 15vw, 150px);
  line-height: 0.85;
  letter-spacing: 0;
  font-weight: 950;
  text-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
}

.hero-lede {
  max-width: 600px;
  margin: 0;
  font-size: clamp(20px, 3.3vw, 34px);
  line-height: 1.35;
  font-weight: 800;
  word-break: keep-all;
}

.hero-actions,
.panel-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg,
.icon-button svg,
.text-button svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.5;
}

.button.primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.16);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  border-color: rgba(255, 255, 255, 0.28);
}

.source-section .button.secondary,
.town-detail .button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.button.compact {
  min-height: 42px;
  padding: 0 14px;
  font-size: 14px;
}

.button:hover,
.button:focus-visible,
.icon-button:hover,
.icon-button:focus-visible,
.text-button:hover,
.text-button:focus-visible {
  transform: translateY(-2px);
  outline: 0;
}

.button:focus-visible,
.icon-button:focus-visible,
.text-button:focus-visible,
.source-page:focus-visible,
.town-tile:focus-visible,
.orbit-pill:focus-visible {
  outline: 3px solid rgba(255, 211, 66, 0.82);
  outline-offset: 3px;
}

.hero-poster {
  position: relative;
  width: min(100%, 330px);
  transform: perspective(1100px) rotateY(-14deg) rotateX(5deg);
  transform-style: preserve-3d;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.34));
  animation: floatPoster 7s ease-in-out infinite;
}

.hero-poster::before {
  content: "";
  position: absolute;
  inset: 16px -18px -18px 18px;
  border: 2px solid rgba(255, 211, 66, 0.52);
  transform: translateZ(-40px);
}

.hero-poster img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.poster-badge {
  position: absolute;
  right: -18px;
  top: 28px;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 50%;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
}

.poster-badge span,
.poster-badge strong {
  grid-area: 1 / 1;
}

.poster-badge span {
  transform: translateY(-18px);
  font-size: 12px;
  font-weight: 900;
}

.poster-badge strong {
  transform: translateY(10px);
  font-size: 42px;
  line-height: 1;
}

.hero-ribbon {
  position: relative;
  z-index: 3;
  width: var(--content);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(17, 25, 31, 0.12);
  background: rgba(255, 250, 240, 0.9);
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(17, 25, 31, 0.1);
  backdrop-filter: blur(14px);
}

.hero-ribbon span {
  min-height: 44px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 12px;
  font-weight: 900;
  border-right: 1px solid rgba(17, 25, 31, 0.12);
}

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

.section-pad {
  width: var(--content);
  margin: 0 auto;
  padding: clamp(74px, 10vw, 124px) 0;
}

.section-heading {
  max-width: 820px;
  margin: 10px 0 34px;
}

.section-heading.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading h2,
.candidate-band h2,
.vote-card h2 {
  margin: 0;
  font-size: clamp(34px, 6vw, 70px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 950;
  word-break: keep-all;
}

.section-heading p,
.focus-card p,
.pledge-panel p,
.vote-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  word-break: keep-all;
}

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

.focus-section {
  padding-top: 24px;
}

.focus-card {
  min-height: 360px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(152deg, #073160, #0d70c7 48%, #12a69a);
  border-radius: var(--radius);
  transform-style: preserve-3d;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.focus-card:nth-child(2) {
  background: linear-gradient(152deg, #154938, #17966f 52%, #ffd342);
}

.focus-card:nth-child(3) {
  background: linear-gradient(152deg, #4b2430, #f05d4e 50%, #ffd342);
}

.focus-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transform: translateZ(34px);
}

.focus-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -76px;
  top: -76px;
  border: 28px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.focus-card:hover {
  transform: translateY(-8px) rotateX(4deg) rotateY(-4deg);
  box-shadow: var(--shadow);
}

.focus-index {
  position: absolute;
  top: 24px;
  left: 26px;
  font-size: 14px;
  font-weight: 950;
  color: var(--yellow);
}

.focus-card h3 {
  position: relative;
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.18;
  word-break: keep-all;
}

.focus-card p {
  position: relative;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
}

.text-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: inherit;
  padding: 0;
  font-weight: 900;
}

.pledge-section {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - 1160px) / 2));
  padding-right: max(18px, calc((100vw - 1160px) / 2));
  background: #fffaf0;
  border-block: 1px solid var(--line);
}

.orbit-controls {
  display: flex;
  gap: 8px;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.pledge-explorer {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(320px, 430px);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
}

.orbit-shell {
  position: relative;
  min-height: 560px;
  perspective: 1200px;
  overflow: hidden;
}

.orbit-shell::before,
.orbit-shell::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(68deg);
  pointer-events: none;
}

.orbit-shell::before {
  width: min(72vw, 560px);
  height: min(72vw, 560px);
  border: 1px solid rgba(11, 94, 201, 0.18);
}

.orbit-shell::after {
  width: min(54vw, 410px);
  height: min(54vw, 410px);
  border: 1px dashed rgba(0, 167, 168, 0.3);
}

.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 176px;
  height: 176px;
  transform: translate(-50%, -50%) translateZ(60px);
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 24px 54px rgba(11, 94, 201, 0.34);
  z-index: 12;
}

.orbit-core span,
.orbit-core small {
  font-weight: 900;
}

.orbit-core strong {
  font-size: 42px;
  line-height: 0.98;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  z-index: 14;
}

.orbit-pill {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 214px;
  min-height: 92px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 6px;
  padding: 15px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 25, 31, 0.12);
  box-shadow: 0 20px 40px rgba(17, 25, 31, 0.12);
  color: var(--ink);
  font-weight: 950;
  text-align: left;
  word-break: keep-all;
  opacity: var(--card-opacity, 1);
  filter: blur(var(--blur, 0));
  z-index: var(--layer, 10);
  transform:
    translate(-50%, -50%)
    translate3d(var(--x, 0), var(--y, -154px), var(--z, 0))
    rotateY(var(--rotate-y, 0deg))
    rotateZ(var(--rotate-z, 0deg))
    scale(var(--scale, 1));
  transform-style: preserve-3d;
  transition:
    background 180ms ease,
    color 180ms ease,
    opacity 260ms ease,
    filter 260ms ease,
    transform 540ms cubic-bezier(0.2, 0.85, 0.2, 1),
    box-shadow 220ms ease;
}

.orbit-pill strong {
  font-size: 20px;
  line-height: 1.18;
}

.orbit-pill span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
}

.orbit-pill.is-active {
  background: var(--yellow);
  color: var(--ink);
  border-color: rgba(17, 25, 31, 0.08);
  box-shadow: 0 28px 58px rgba(17, 25, 31, 0.2);
}

.orbit-pill.is-active span {
  color: rgba(17, 25, 31, 0.64);
}

.pledge-panel {
  min-height: 520px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(24px, 5vw, 38px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.pledge-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 211, 66, 0.22), transparent 28%),
    linear-gradient(330deg, rgba(0, 167, 168, 0.32), transparent 30%);
  pointer-events: none;
}

.pledge-panel > * {
  position: relative;
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--yellow);
  font-weight: 950;
}

.pledge-panel h3 {
  margin: 16px 0 12px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
}

.pledge-panel p {
  color: rgba(255, 255, 255, 0.74);
  margin: 0 0 18px;
}

.pledge-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pledge-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  line-height: 1.45;
}

.pledge-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(255, 211, 66, 0.12);
}

.mini-meter {
  flex: 1;
  min-width: 160px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.mini-meter span {
  display: block;
  width: 10%;
  height: 100%;
  background: var(--yellow);
  border-radius: inherit;
  transition: width 240ms ease;
}

.town-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  gap: clamp(24px, 5vw, 54px);
  align-items: stretch;
}

.town-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  perspective: 1200px;
}

.town-tile {
  min-height: 118px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(17, 25, 31, 0.06);
  transition: transform 220ms ease, background 180ms ease, box-shadow 220ms ease;
  transform: rotateX(0deg) rotateY(0deg);
}

.town-tile strong {
  font-size: 22px;
  font-weight: 950;
}

.town-tile span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.town-tile:hover,
.town-tile.is-active {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow);
  transform: translateY(-7px) rotateX(7deg) rotateY(-5deg);
}

.town-tile:hover span,
.town-tile.is-active span {
  color: rgba(255, 255, 255, 0.78);
}

.town-detail {
  background: linear-gradient(150deg, #0c3a70, #0b5ec9 58%, #00a7a8);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.town-detail-head span {
  color: var(--yellow);
  font-size: 14px;
  font-weight: 950;
}

.town-detail h3 {
  margin: 6px 0 18px;
  font-size: 46px;
  line-height: 1;
}

.town-detail ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}

.town-detail li {
  padding-left: 18px;
  position: relative;
  line-height: 1.48;
  word-break: keep-all;
}

.town-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

.candidate-section {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - 1160px) / 2));
  padding-right: max(18px, calc((100vw - 1160px) / 2));
}

.candidate-band {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 32px;
  align-items: start;
  padding: clamp(28px, 6vw, 54px);
  border-radius: var(--radius);
  color: #fff;
  background: var(--blue-deep);
}

.candidate-band h2 {
  font-size: clamp(30px, 4.8vw, 56px);
}

.candidate-facts {
  margin: 0;
  display: grid;
  gap: 12px;
}

.candidate-facts div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.candidate-facts dt {
  color: var(--yellow);
  font-weight: 950;
}

.candidate-facts dd {
  margin: 0;
  line-height: 1.55;
}

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

.source-page {
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(17, 25, 31, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.source-page:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.source-page img {
  width: 100%;
  aspect-ratio: 1078 / 1475;
  object-fit: cover;
  background: #eee;
}

.source-page span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 13px;
  font-weight: 900;
}

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

.vote-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 5vw, 42px);
  background: var(--yellow);
  border-radius: var(--radius);
  color: var(--ink);
}

.vote-card p {
  margin: 12px 0 0;
  color: rgba(17, 25, 31, 0.72);
}

.site-footer {
  width: var(--content);
  margin: 0 auto;
  padding: 24px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.page-dialog {
  width: min(980px, calc(100vw - 24px));
  max-height: calc(100dvh - 24px);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #11191f;
  color: #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
}

.page-dialog::backdrop {
  background: rgba(7, 18, 32, 0.7);
  backdrop-filter: blur(6px);
}

.dialog-toolbar {
  position: sticky;
  top: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 44px 1fr 44px 44px;
  gap: 8px;
  align-items: center;
  padding: 10px;
  background: rgba(17, 25, 31, 0.92);
}

.dialog-toolbar strong {
  text-align: center;
}

.page-dialog img {
  width: 100%;
  height: auto;
  background: #fff;
}

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

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

@keyframes floatPoster {
  0%,
  100% {
    transform: perspective(1100px) rotateY(-14deg) rotateX(5deg) translateY(0);
  }
  50% {
    transform: perspective(1100px) rotateY(-8deg) rotateX(8deg) translateY(-16px);
  }
}

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

@media (max-width: 960px) {
  .site-header {
    color: var(--ink);
    background: rgba(255, 250, 240, 0.92);
    backdrop-filter: blur(14px);
  }

  .site-nav {
    border-color: var(--line);
    background: #fff;
  }

  .hero-section {
    min-height: auto;
    padding-top: 92px;
  }

  .hero-grid,
  .pledge-explorer,
  .town-layout,
  .candidate-band {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 1;
  }

  .hero-poster {
    order: 2;
    margin: 0 auto;
    max-width: 270px;
  }

  .hero-ribbon,
  .focus-track,
  .source-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .orbit-shell {
    min-height: 380px;
  }

  .orbit-pill {
    width: 180px;
    min-height: 82px;
    padding: 13px 14px;
  }

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

@media (max-width: 640px) {
  :root {
    --content: min(100vw - 28px, 560px);
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand-mark small {
    display: none;
  }

  .site-nav {
    gap: 0;
  }

  .site-nav a {
    padding: 7px 8px;
    font-size: 13px;
  }

  .hero-section {
    padding-top: 80px;
    padding-bottom: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(62px, 18vw, 96px);
  }

  .hero-lede {
    font-size: 19px;
  }

  .hero-actions,
  .panel-actions,
  .vote-card,
  .section-heading.split,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 44px;
  }

  .focus-track,
  .source-grid,
  .town-map {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 20px;
  }

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

  .hero-poster {
    max-width: 220px;
  }

  .hero-ribbon {
    display: none;
  }

  .focus-card {
    min-height: 300px;
  }

  .pledge-section,
  .candidate-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .orbit-shell {
    min-height: auto;
    perspective: none;
    display: grid;
    gap: 10px;
  }

  .orbit-core {
    position: static;
    transform: none;
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    padding: 18px;
  }

  .orbit-ring {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    transform: none !important;
  }

  .orbit-pill,
  .orbit-pill.is-active {
    position: static;
    width: 100%;
    min-height: 60px;
    transform: none;
    opacity: 1;
    filter: none;
  }

  .pledge-panel {
    min-height: auto;
  }

  .candidate-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .dialog-toolbar {
    grid-template-columns: 42px 1fr 42px 42px;
  }
}
