:root {
  --bg-deep: #0A1024;
  --bg-card: #121830;
  --bg-card-alt: #1A2240;
  --bg-row: #070A18;
  --gold: #5B79F2;
  --gold-light: #8AA1FF;
  --gold-dim: #748CEB;
  --text-primary: #EAEDFD;
  --text-muted: #9AA3C8;
  --text-dim: #7782AE;
  --red: #F59E0B;
  --green: #34D399;
  --display: "Outfit", system-ui, sans-serif;
  --serif: "Hanken Grotesk", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --border: #202A4C;
  --hair: rgb(140 160 255 / 10%);
  --shadow: 0 1px 2px rgb(0 0 0 / 50%), 0 14px 40px -14px rgb(4 6 20 / 70%), 0 36px 70px -30px rgb(4 6 20 / 70%);
  --radius: 14px;
  --radius-lg: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--serif);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 45% at 50% -5%, rgb(91 121 242 / 16%), transparent 66%),
    radial-gradient(ellipse 60% 40% at 50% 108%, rgb(138 161 255 / 8%), transparent 65%);
  pointer-events: none;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: var(--gold-light);
}

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

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.wrap {
  width: min(100% - 40px, 1120px);
  margin-inline: auto;
}

.wide {
  width: min(100% - 28px, 1280px);
}

.narrow {
  max-width: 820px;
  margin-inline: auto;
}

.centered {
  text-align: center;
}

.progress-top {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(10 16 36 / 88%);
  border-bottom: 1px solid var(--hair);
  backdrop-filter: blur(10px);
}

.nav-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand,
.nav-links a {
  font-family: var(--mono);
  text-transform: uppercase;
}

.brand {
  margin-right: auto;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  font-family: var(--display);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: .12em;
}

.nav-links .nav-watch {
  padding: 7px 12px;
  color: var(--bg-deep);
  background: var(--gold);
  font-weight: 600;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: calc(100svh - 54px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--hair);
  background:
    radial-gradient(circle at 50% 33%, rgb(91 121 242 / 22%), transparent 38%),
    linear-gradient(155deg, #1A2240 0%, #0A1024 58%, #070A18 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgb(138 161 255 / 10%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(138 161 255 / 10%) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 68px 0 64px;
  text-align: center;
}

.eyebrow,
.section-number {
  color: var(--gold-dim);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
}

h1 {
  max-width: 980px;
  margin: 14px auto 16px;
  color: var(--gold);
  font-size: clamp(34px, 6vw, 70px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.08;
  text-wrap: balance;
  font-family: var(--display);
}

.hero-sub {
  max-width: 760px;
  margin: 0 auto 32px;
  color: var(--text-primary);
  font-size: clamp(17px, 2.4vw, 22px);
  font-weight: 500;
}

.hearing-card {
  width: min(100%, 760px);
  margin-inline: auto;
  padding: 24px clamp(20px, 4vw, 38px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 5px 24px;
  color: var(--text-primary);
  text-align: left;
  background: linear-gradient(145deg, rgb(26 34 64 / 98%), rgb(18 24 48 / 98%));
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
}

.hearing-card:hover {
  color: var(--text-primary);
  border-color: var(--gold-light);
  transform: translateY(-3px);
}

.hearing-label,
.zoom-pill,
.hearing-note {
  font-family: var(--mono);
}

.hearing-label {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hearing-date {
  grid-row: 2;
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1.2;
}

.hearing-date b {
  color: var(--gold-light);
  font-weight: 600;
}

.hearing-court {
  grid-row: 3;
  color: var(--text-muted);
  font-size: 16px;
}

.zoom-pill {
  grid-column: 2;
  grid-row: 1 / span 3;
  min-width: 180px;
  padding: 16px;
  color: #ffd4d4;
  font-size: 11px;
  letter-spacing: .09em;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(160deg, rgb(229 24 24 / 16%), rgb(120 8 8 / 22%));
  border: 1.5px solid #e51818;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: zoom-pill-pulse 1.4s ease-in-out infinite;
  text-decoration: none;
}

.zoom-pill-standalone {
  grid-column: auto;
  grid-row: auto;
  width: min(100%, 260px);
  margin: 20px auto 0;
}

.zoom-pill-standalone:hover {
  color: #ffd4d4;
}

.zoom-icon rect,
.zoom-icon path {
  fill: #ff4747;
  stroke: #ff4747;
}

.zoom-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 2px;
}

.zoom-pill b {
  display: block;
  margin-top: 5px;
  padding: 6px 12px;
  color: #fff;
  background: #e51818;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .04em;
}

@keyframes zoom-pill-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229, 24, 24, .65); }
  50% { box-shadow: 0 0 0 12px rgba(229, 24, 24, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .zoom-pill { animation: none; }
}

.hearing-note {
  grid-column: 1 / -1;
  margin-top: 12px;
  padding-top: 13px;
  color: var(--text-dim);
  font-size: 10px;
  letter-spacing: .04em;
  border-top: 1px solid var(--hair);
}

.countdown {
  margin: 28px auto 0;
  display: flex;
  justify-content: center;
  gap: clamp(9px, 2vw, 18px);
}

.count-cell {
  min-width: clamp(66px, 15vw, 106px);
  padding: 10px 7px;
  border-left: 1px solid rgb(138 161 255 / 24%);
}

.count-cell:last-child {
  border-right: 1px solid rgb(138 161 255 / 24%);
}

.count-cell span {
  display: block;
  color: var(--text-primary);
  font-family: var(--mono);
  font-size: clamp(25px, 5vw, 42px);
  font-weight: 600;
  line-height: 1;
}

.count-cell small,
.count-status {
  font-family: var(--mono);
  text-transform: uppercase;
}

.count-cell small {
  display: block;
  margin-top: 8px;
  color: var(--text-dim);
  font-size: 9px;
  letter-spacing: .17em;
}

.count-status {
  margin-top: 10px;
  color: var(--text-dim);
  font-size: 9px;
  letter-spacing: .2em;
}

.section {
  padding: 92px 0;
  scroll-margin-top: 54px;
}

.section-alt {
  background: rgb(18 24 48 / 58%);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}

h2 {
  max-width: 960px;
  margin: 8px auto 30px;
  color: var(--gold);
  font-size: clamp(29px, 4.8vw, 48px);
  font-weight: 600;
  line-height: 1.16;
  text-align: center;
  text-wrap: balance;
  font-family: var(--display);
}

.section-number {
  text-align: center;
}

.section-lede {
  max-width: 880px;
  margin: -6px auto 34px;
  color: var(--text-muted);
  font-size: 17px;
  text-align: center;
}

.prose p,
.memorial-band p,
.budget-copy p,
#record > .wrap > p {
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 17px;
}

.safety-note {
  padding: 14px 16px;
  color: var(--text-dim) !important;
  font-family: var(--mono);
  font-size: 11px !important;
  line-height: 1.65;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgb(7 10 24 / 62%);
}

.stat-grid {
  max-width: 860px;
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat {
  padding: 24px 16px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-card-alt), var(--bg-card));
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold-dim);
  border-radius: var(--radius);
}

.stat strong {
  display: block;
  color: var(--gold);
  font-family: var(--mono);
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 9px;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.stat--clickable {
  position: relative;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.stat--clickable:hover,
.stat--clickable:focus-visible {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .3);
}

.stat--clickable::after {
  content: attr(data-cta);
  display: block;
  margin-top: 10px;
  padding: 4px 10px;
  color: #16241d;
  background: var(--gold);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  animation: tool-card-pulse 2.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .stat--clickable::after { animation: none; }
}

.button {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 20px;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: filter .2s ease, transform .2s ease;
  border-radius: 999px;
}

.button:hover {
  color: var(--bg-deep);
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.button-outline {
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold-dim);
}

.button-outline:hover {
  color: var(--bg-deep);
  background: var(--gold);
}

.button-large {
  padding: 16px 26px;
  font-size: 13px;
}

.button-zoom-red {
  color: #fff;
  background: #e51818;
  animation: zoom-pill-pulse 1.4s ease-in-out infinite;
}

.button-zoom-red:hover {
  color: #fff;
  filter: brightness(1.1);
}

.zoom-etiquette-note {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 13px;
}

.zoom-etiquette-note strong {
  color: var(--gold-light);
}

.table-summary {
  max-width: 630px;
  margin: 0 auto 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}

.table-summary div {
  padding: 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.table-summary div:last-child {
  border-right: 0;
}

.table-summary strong {
  display: block;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 28px;
}

.table-summary span {
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
}

table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  font-family: var(--mono);
  font-size: 12px;
}

caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

thead th {
  padding: 13px 14px;
  color: var(--gold);
  background: var(--bg-card-alt);
  font-size: 10px;
  letter-spacing: .12em;
  text-align: left;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold-dim);
}

tbody tr {
  background: var(--bg-row);
}

tbody tr:nth-child(even) {
  background: var(--bg-card);
}

tbody tr.paused {
  background: rgb(245 158 11 / 10%);
  box-shadow: inset 3px 0 0 var(--red);
}

tbody td,
tfoot th,
tfoot td {
  padding: 13px 14px;
  color: var(--text-primary);
  vertical-align: top;
  border-bottom: 1px solid var(--hair);
}

tbody td:nth-child(1),
tbody td:nth-child(3) {
  white-space: nowrap;
}

tbody td:last-child {
  max-width: 390px;
  color: var(--text-muted);
  font-family: var(--serif);
  font-size: 13px;
}

tfoot {
  background: var(--bg-card-alt);
}

tfoot th,
tfoot td {
  color: var(--gold-light);
  border-top: 1px solid var(--gold-dim);
}

.badge {
  display: inline-block;
  padding: 4px 8px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .09em;
  white-space: nowrap;
  text-transform: uppercase;
  border: 1px solid;
}

.badge-paused {
  color: #dc7b73;
  background: rgb(245 158 11 / 10%);
  border-color: var(--red);
}

.badge-open {
  color: #8fbd94;
  background: rgb(52 211 153 / 10%);
  border-color: var(--green);
}

.record-explainer {
  max-width: 900px;
  margin: 30px auto 0;
}

.record-explainer p {
  margin-bottom: 17px;
  color: var(--text-muted);
  font-size: 16px;
}

.record-explainer p:nth-child(2) {
  padding: 20px 24px;
  color: var(--text-primary);
  font-size: 18px;
  border-left: 3px solid var(--gold);
  background: var(--bg-card);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.tool-card {
  padding: 26px;
  background: linear-gradient(180deg, var(--bg-card-alt), var(--bg-card));
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold-dim);
  border-radius: var(--radius);
}

.tool-card > span {
  color: var(--gold-dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.tool-card h3 {
  margin: 6px 0 10px;
  color: var(--gold);
  font-size: 21px;
  font-weight: 600;
  font-family: var(--display);
}

.tool-card p {
  color: var(--text-muted);
  font-size: 15px;
}

.tool-card--clickable {
  position: relative;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.tool-card--clickable:hover,
.tool-card--clickable:focus-visible {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .3);
}

.tool-card--clickable:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.tool-card--clickable::after {
  content: attr(data-cta);
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #16241d;
  background: var(--gold);
  border-radius: 999px;
  white-space: nowrap;
  animation: tool-card-pulse 2.2s ease-in-out infinite;
}

@keyframes tool-card-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 197, 107, .5); }
  50% { box-shadow: 0 0 0 7px rgba(232, 197, 107, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .tool-card--clickable::after { animation: none; }
}

.question-block {
  max-width: 900px;
  margin: 26px auto 20px;
  padding: 25px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.question-block p {
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 500;
}

.memorial-band {
  position: relative;
  background:
    radial-gradient(circle at 20% 20%, rgb(91 121 242 / 18%), transparent 38%),
    linear-gradient(145deg, var(--bg-card-alt), var(--bg-deep));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.memorial-band .narrow {
  padding: 34px clamp(20px, 5vw, 58px);
  background: rgb(18 24 48 / 76%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.budget-grid {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) 1.25fr;
  gap: 32px;
  align-items: stretch;
  max-width: 950px;
  margin: 0 auto 24px;
}

.budget-number {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 13px;
  text-align: center;
  text-transform: uppercase;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
}

.budget-number strong {
  display: block;
  margin: 4px 0 10px;
  color: var(--gold);
  font-size: clamp(42px, 7vw, 74px);
  line-height: 1;
}

.budget-number span {
  color: var(--text-dim);
  font-size: 9px;
  letter-spacing: .11em;
}

.budget-copy {
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.budget-copy .budget-question {
  margin: 0;
  padding-top: 18px;
  color: var(--text-primary);
  font-size: 21px;
  font-weight: 500;
  border-top: 1px solid var(--border);
}

.record-link {
  margin-top: 14px;
  padding: 22px 25px;
  display: inline-flex;
  flex-direction: column;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--gold-dim);
  transition: transform .2s ease, background .2s ease;
  border-radius: var(--radius);
}

.record-link:hover {
  color: var(--text-primary);
  background: var(--bg-card-alt);
  transform: translateY(-2px);
}

.record-link span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.record-link strong {
  margin-top: 5px;
  color: var(--gold);
  font-size: clamp(20px, 4vw, 29px);
  font-weight: 600;
}

.watch-section {
  background:
    radial-gradient(circle at 50% 25%, rgb(91 121 242 / 20%), transparent 38%),
    var(--bg-card);
  border-top: 1px solid var(--border);
}

.watch-time {
  margin: -6px 0 22px;
  color: var(--text-muted);
  font-size: 19px;
}

.watch-time strong {
  color: var(--gold-light);
}

.watch-note {
  margin-top: 12px;
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .05em;
}

.share-panel {
  margin-top: 36px;
  padding: 25px;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.share-label {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.share-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.share-row button {
  padding: 10px 14px;
  color: var(--text-primary);
  background: transparent;
  border: 1px solid var(--gold-dim);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  transition: color .2s ease, background .2s ease;
  border-radius: 999px;
}

.share-row button:hover {
  color: var(--bg-deep);
  background: var(--gold);
}

.share-status {
  min-height: 20px;
  margin-top: 12px;
  color: var(--gold-light);
  font-family: var(--mono);
  font-size: 10px;
}

footer {
  padding: 44px 0 50px;
  color: var(--text-dim);
  background: var(--bg-row);
  border-top: 1px solid var(--border);
  text-align: center;
}

footer p {
  margin-bottom: 11px;
  font-size: 12px;
}

.footer-links {
  margin-top: 20px;
  padding-top: 17px;
  display: flex;
  justify-content: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .06em;
  border-top: 1px solid var(--hair);
}

.footer-links span::before {
  content: "·";
  margin-right: 14px;
}

.civic-day {
  width: min(100%, 760px);
  margin: -14px auto 26px;
  padding: 12px 16px;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .02em;
}

.promise-quote {
  margin: 26px 0;
  padding: clamp(22px, 4vw, 32px);
  background: linear-gradient(145deg, var(--bg-card-alt), var(--bg-card));
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow);
}

.promise-quote figcaption,
.promise-quote cite,
.mayor-email cite,
.email-kicker {
  color: var(--gold-light);
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.promise-quote blockquote {
  margin: 16px 0;
  color: var(--text-primary);
  font-family: var(--display);
  font-size: clamp(22px, 3.3vw, 32px);
  font-weight: 600;
  line-height: 1.25;
}

.mayor-email {
  max-width: 1000px;
  margin: 28px auto 24px;
  padding: clamp(24px, 5vw, 42px);
  background:
    radial-gradient(circle at 92% 10%, rgb(91 121 242 / 24%), transparent 34%),
    linear-gradient(145deg, var(--bg-card-alt), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.mayor-email h3 {
  max-width: 760px;
  margin: 8px 0 24px;
  color: var(--text-primary);
  font-family: var(--display);
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.2;
}

.email-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 26px;
}

.email-facts div {
  padding: 18px;
  background: rgb(7 10 24 / 64%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.email-facts strong,
.email-facts span {
  display: block;
}

.email-facts strong {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.1;
}

.email-facts span {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.35;
}

.mayor-email blockquote {
  margin: 0 0 12px;
  padding: 22px 24px;
  color: var(--text-primary);
  background: var(--bg-deep);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  line-height: 1.35;
}

.email-question {
  margin: 24px 0 0;
  padding-top: 20px;
  color: var(--text-primary);
  border-top: 1px solid var(--border);
  font-size: 19px;
  font-weight: 600;
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 28px, 1120px);
  }

  .nav-links a:not(.nav-watch) {
    display: none;
  }

  .hero-inner {
    padding: 46px 0 50px;
  }

  .hearing-card {
    grid-template-columns: 1fr;
  }

  .zoom-pill {
    grid-column: 1;
    grid-row: 4;
    margin-top: 13px;
  }

  .hearing-note {
    grid-row: 5;
  }

  .section {
    padding: 72px 0;
  }

  .tools-grid,
  .budget-grid,
  .email-facts {
    grid-template-columns: 1fr;
  }

  .civic-day {
    border-radius: var(--radius);
  }

  .table-wrap {
    overflow: visible;
    border: 0;
  }

  table,
  tbody,
  tr,
  td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  thead,
  tfoot {
    display: none;
  }

  tbody {
    display: grid;
    gap: 12px;
  }

  tbody tr,
  tbody tr:nth-child(even) {
    padding: 12px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
  }

  tbody tr.paused {
    background: rgb(245 158 11 / 10%);
    border-color: rgb(245 158 11 / 45%);
  }

  tbody td,
  tbody td:last-child {
    max-width: none;
    padding: 6px 0 6px 43%;
    position: relative;
    font-family: var(--serif);
    font-size: 14px;
    border-bottom: 1px solid var(--hair);
    white-space: normal;
  }

  tbody td:last-child {
    border-bottom: 0;
  }

  tbody td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 39%;
    color: var(--text-dim);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .09em;
    text-transform: uppercase;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 9px;
    letter-spacing: .14em;
  }

  .stat-grid,
  .table-summary {
    grid-template-columns: 1fr;
  }

  .stat,
  .table-summary div {
    padding: 15px;
  }

  .table-summary div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .table-summary div:last-child {
    border-bottom: 0;
  }

  .countdown {
    gap: 4px;
  }

  .count-cell {
    min-width: 62px;
  }

  .share-row button {
    flex: 1 1 42%;
  }

  .footer-links {
    flex-direction: column;
  }

  .footer-links span::before {
    display: none;
  }
}

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

  * {
    transition: none !important;
  }
}

@media print {
  nav,
  .progress-top,
  .share-panel {
    display: none;
  }

  body,
  .section,
  .section-alt,
  .watch-section,
  footer {
    color: #111;
    background: #fff;
  }

  .hero {
    min-height: auto;
    color: #111;
    background: #fff;
  }

  .hero-grid {
    display: none;
  }

  h1,
  h2,
  .stat strong,
  .budget-number strong {
    color: #111;
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: var(--shadow), 0 0 0 0 rgb(91 121 242 / 40%);
  }
  50% {
    box-shadow: var(--shadow), 0 0 0 10px rgb(91 121 242 / 0%);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hearing-card {
    animation: pulse-glow 2.5s ease-in-out infinite;
  }
}

@media print {
  .share-panel {
    display: none;
  }

  body,
  .section,
  .section-alt,
  .watch-section,
  footer {
    color: #111;
    background: #fff;
  }

  .hero {
    min-height: auto;
    color: #111;
    background: #fff;
  }

  .hero-grid {
    display: none;
  }

  h1,
  h2,
  .stat strong,
  .budget-number strong {
    color: #111;
  }
}

.council-statement,
.public-comment {
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: rgba(91, 121, 242, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
}

.statement-kicker,
.comment-kicker {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.council-statement h3,
.public-comment h3 {
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 0.85rem;
}

.council-statement blockquote,
.public-comment p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.council-statement cite,
.public-comment cite {
  display: block;
  font-size: 0.78rem;
  color: var(--text-dim);
  font-style: italic;
  margin-top: 0.75rem;
}

@keyframes fade-rotate {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  55% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.rotating-cta {
  min-height: 3rem;
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rotating-line {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1.5;
  margin: 0;
  animation: fade-rotate 5s ease-in-out infinite;
  max-width: 90%;
}
