:root {
  --bg: #091521;
  --bg-2: #101f30;
  --panel: #122236;
  --panel-2: #16293f;
  --line: rgba(199, 215, 235, 0.14);
  --text: #f4f7fb;
  --muted: #8fa3bb;
  --gold: #f3aa1b;
  --teal: #21c7c8;
  --green: #3fd05d;
  --blue: #4388ff;
  --white: #ffffff;
  --shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(243, 170, 27, 0.06), transparent 22rem),
    linear-gradient(130deg, rgba(33, 199, 200, 0.08), transparent 32rem),
    var(--bg);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.52), transparent 72%);
}

button {
  font: inherit;
  letter-spacing: 0;
  cursor: pointer;
}

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

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

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: 4.3rem;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: 2.75rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  padding: 12px 14px;
  background: rgba(9, 21, 33, 0.8);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition:
    background 220ms ease,
    border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(9, 21, 33, 0.92);
  border-color: rgba(243, 170, 27, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.brand-mark {
  display: grid;
  grid-template-rows: 1fr 1fr;
  width: 32px;
  height: 26px;
  overflow: hidden;
  border-radius: 5px;
  background: #0b1220;
}

.brand-mark span:first-child {
  background: var(--blue);
}

.brand-mark span:last-child {
  background: var(--green);
}

.brand-text {
  font-size: 0.93rem;
  font-weight: 850;
  line-height: 0.88;
}

.nav-links {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.nav-links a,
.header-cta,
.primary-btn,
.ghost-btn {
  border-radius: 8px;
}

.nav-links a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.92rem;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.header-cta,
.primary-btn,
.ghost-btn {
  min-height: 44px;
  border: 0;
}

.header-cta,
.primary-btn {
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold), #f6c558);
  box-shadow: 0 14px 32px rgba(243, 170, 27, 0.22);
  font-weight: 850;
}

.header-cta {
  padding: 0 18px;
}

.ghost-btn {
  padding: 0 20px;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line);
}

.primary-btn,
.ghost-btn {
  min-width: 180px;
  padding: 0 22px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
}

.ghost-btn:hover {
  border-color: rgba(243, 170, 27, 0.32);
}

.hero {
  padding: 126px 0 46px;
  min-height: clamp(620px, 78vh, 860px);
}

.hero-grid,
.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 36px;
  align-items: center;
  min-height: clamp(500px, calc(78vh - 126px), 720px);
  padding: 34px 34px 34px 0;
  overflow: hidden;
}

.hero-grid::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    rgba(18, 34, 54, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.hero-grid::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  content: "";
  background: linear-gradient(180deg, var(--gold), transparent 82%);
  border-radius: 8px 0 0 8px;
}

.hero-copy {
  padding: 38px 0 38px 42px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-text,
.section-head p,
.metric-card p,
.panel p,
.snapshot-card figcaption,
.photo-board figcaption,
.region-stat span,
.city p,
.initiative-track p,
.concept-card p,
.decision-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.6;
}

.hero-text {
  max-width: 700px;
  margin-bottom: 34px;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
}

.hero-metrics div,
.metric-card,
.panel,
.region-stat,
.city,
.initiative-track,
.concept-card,
.decision-card,
.snapshot-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-metrics div {
  padding: 18px;
}

.hero-metrics dt {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.48rem;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 0;
  color: var(--muted);
}

.hero-stage {
  position: relative;
  justify-self: end;
  width: min(100%, 430px);
  min-height: 420px;
  padding: 22px 8px 42px 0;
}

.hero-main-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
  transform: rotate(-4deg) translateY(18px);
}

.stage-badge {
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(9, 21, 33, 0.92);
  border: 1px solid rgba(67, 136, 255, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-size: 0.78rem;
  font-weight: 800;
}

.floating-note {
  position: absolute;
  z-index: 2;
  width: min(250px, 68%);
  padding: 14px 16px;
  background: rgba(9, 21, 33, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.floating-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.floating-note strong {
  display: block;
  line-height: 1.35;
}

.note-top {
  top: 38px;
  right: -4px;
}

.note-bottom {
  bottom: 0;
  left: -10px;
}

.section {
  padding: 92px 0 0;
}

.summary {
  padding-top: 34px;
}

.section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.summary-grid,
.performance-layout,
.region-stats,
.concept-grid,
.decision-list,
.snapshot-grid {
  display: grid;
  gap: 16px;
}

.summary-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-card {
  min-height: 196px;
  padding: 24px;
}

.metric-label,
.concept-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  margin-bottom: 24px;
  color: var(--gold);
  background: rgba(243, 170, 27, 0.08);
  border: 1px solid rgba(243, 170, 27, 0.2);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.metric-card strong,
.region-stat strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.82rem;
  line-height: 1.1;
}

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

.panel {
  min-height: 352px;
  padding: 24px;
}

.panel-topline {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.panel-topline span {
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.panel-topline strong {
  font-size: 1.5rem;
  line-height: 1.2;
}

.bar-group {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.bar-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.bar-row span,
.bar-row strong {
  font-weight: 700;
}

.bar-track {
  position: relative;
  height: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.bar-fill {
  width: var(--size);
  height: 100%;
  border-radius: 8px;
}

.bar-fill.gold {
  background: linear-gradient(90deg, #f3aa1b, #f7c256);
}

.bar-fill.teal {
  background: linear-gradient(90deg, #16bec2, #45d6d6);
}

.bar-fill.green {
  background: linear-gradient(90deg, #24c14b, #5fe277);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.signal-grid div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.signal-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.signal-grid strong {
  font-size: 1.18rem;
}

.swing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.swing-card,
.photo-board {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.swing-card {
  min-height: 164px;
  padding: 16px;
}

.swing-card span,
.photo-board-head span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.swing-card strong,
.photo-board-head strong {
  display: block;
  line-height: 1.3;
}

.swing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.swing {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
}

.swing i {
  margin-left: 6px;
  font-style: normal;
}

.swing.up {
  color: #b4ffbe;
  background: rgba(63, 208, 93, 0.14);
}

.swing.down {
  color: #ffd3ae;
  background: rgba(255, 120, 72, 0.14);
}

.swing.flat {
  color: #bfd1ff;
  background: rgba(67, 136, 255, 0.16);
}

.compact strong {
  font-size: 1.06rem;
}

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

.insight-list li {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

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

.creative-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: start;
}

.photo-board {
  overflow: hidden;
}

.photo-board-head {
  padding: 18px 18px 0;
}

.photo-grid {
  display: grid;
  grid-template-columns: minmax(200px, 0.64fr) minmax(0, 1.36fr);
  gap: 12px;
  padding: 18px;
}

.real-photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 14px;
  border-radius: 8px;
  background:
    radial-gradient(circle at top left, rgba(67, 136, 255, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.real-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.portrait-shot {
  min-height: 396px;
}

.bike-shot {
  min-height: 396px;
}

.photo-chip {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--white);
  background: rgba(9, 21, 33, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 800;
}

.snapshot-card {
  overflow: hidden;
}

.snapshot-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.snapshot-card figcaption,
.photo-board figcaption {
  padding: 16px 18px 18px;
}

.creative-copy {
  display: grid;
  gap: 16px;
}

.story-card,
.story-mini,
.verdict-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-card {
  padding: 22px 24px;
}

.story-card h3 {
  margin-bottom: 12px;
  font-size: 1.54rem;
}

.story-card p,
.story-mini span,
.verdict-card p,
.city-metrics small,
.city-note {
  color: var(--muted);
  line-height: 1.6;
}

.story-grid,
.evaluation-strip,
.region-insights {
  display: grid;
  gap: 16px;
}

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

.story-mini {
  min-height: 136px;
  padding: 18px;
}

.story-mini strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.58rem;
  line-height: 1.05;
}

.evaluation-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.verdict-card {
  min-height: 176px;
  padding: 22px;
}

.verdict-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.verdict-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.54rem;
  line-height: 1.1;
}

.region-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.region-stat {
  min-height: 156px;
  padding: 22px;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.city {
  min-height: 312px;
  padding: 20px;
}

.city-head {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.city h3 {
  margin-bottom: 0;
}

.city p {
  margin-bottom: 16px;
}

.city-head span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
}

.city-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.city-metrics div {
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.city-metrics strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
  line-height: 1.08;
}

.city-metrics small {
  display: block;
  font-size: 0.78rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.chip-row i {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-style: normal;
  font-size: 0.78rem;
}

.city-note {
  display: block;
  font-size: 0.96rem;
}

.city-live .city-head span {
  color: #b4ffbe;
  background: rgba(63, 208, 93, 0.14);
}

.city-warm .city-head span {
  color: #ffe39a;
  background: rgba(243, 170, 27, 0.14);
}

.city-partial .city-head span {
  color: #bfe8ff;
  background: rgba(33, 199, 200, 0.14);
}

.city-booking .city-head span {
  color: #bfd1ff;
  background: rgba(67, 136, 255, 0.16);
}

.region-insights {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.initiatives-layout {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.initiative-track {
  padding: 22px 24px;
}

.initiative-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 10px;
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.status-warm {
  color: #ffdfa0;
  background: rgba(243, 170, 27, 0.14);
}

.status-live {
  color: #b4ffbe;
  background: rgba(63, 208, 93, 0.14);
}

.status-blue {
  color: #bfd1ff;
  background: rgba(67, 136, 255, 0.16);
}

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

.concept-card,
.decision-card {
  min-height: 210px;
  padding: 24px;
}

.decision-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 96px;
}

.decision-card span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 56px;
  color: var(--gold);
  background: rgba(243, 170, 27, 0.08);
  border: 1px solid rgba(243, 170, 27, 0.2);
  border-radius: 8px;
  font-weight: 900;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  justify-content: center;
  padding: 28px 16px 36px;
  border-top: 1px solid var(--line);
  background: rgba(9, 21, 33, 0.86);
}

.site-footer p {
  margin: 0;
}

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

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

.delay-1 {
  transition-delay: 110ms;
}

.delay-2 {
  transition-delay: 210ms;
}

@media (max-width: 1140px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 28px 28px 34px;
  }

  .hero-copy {
    padding: 8px 0 0;
  }

  .hero-stage {
    width: min(500px, 100%);
    margin: 0 0 0 auto;
    padding-right: 0;
  }

  .hero-metrics,
  .summary-grid,
  .region-stats,
  .decision-list,
  .snapshot-grid,
  .concept-grid,
  .evaluation-strip,
  .swing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .creative-layout,
  .region-insights {
    grid-template-columns: 1fr;
  }
}

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

  .nav-links {
    display: none;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.3rem;
  }

  .performance-layout,
  .creative-layout,
  .hero-metrics,
  .summary-grid,
  .region-stats,
  .cities-grid,
  .decision-list,
  .snapshot-grid,
  .concept-grid,
  .story-grid,
  .evaluation-strip,
  .region-insights,
  .swing-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 0;
    margin: 8px 0 0;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 104px;
    padding-bottom: 22px;
  }

  .hero-grid,
  .section {
    width: min(100% - 20px, 1180px);
  }

  .hero-copy {
    padding: 26px 20px 0;
  }

  h1 {
    font-size: 2.72rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 1.96rem;
  }

  .hero-text,
  .section-head p {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

  .hero-metrics {
    padding: 0 20px 20px;
  }

  .hero-stage {
    width: 100%;
    margin: 0;
    padding: 8px 0 22px;
  }

  .hero-main-image {
    transform: none;
  }

  .stage-badge {
    left: 0;
  }

  .floating-note {
    width: min(76%, 260px);
    padding: 12px 14px;
  }

  .note-top {
    top: 40px;
    right: 0;
  }

  .note-bottom {
    bottom: 0;
    left: 0;
  }

  .bar-row {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .bar-row strong {
    grid-column: 2;
    justify-self: end;
  }

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

  .portrait-shot,
  .bike-shot {
    min-height: 280px;
  }

  .city-metrics {
    grid-template-columns: 1fr;
  }

  .initiative-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .decision-list {
    padding-bottom: 74px;
  }
}

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

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