@font-face {
  font-family: 'Chivo';
  src: url('assets/fonts/Chivo-Variable-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Chivo';
  src: url('assets/fonts/Chivo-Variable-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Chivo';
  src: url('assets/fonts/Chivo-Variable-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: 'Bebas Neue';
  src: url('assets/fonts/BebasNeue-400-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #090c10;
  --bg-alt: #10161d;
  --text: #f1f5f8;
  --muted: #b2becb;
  --accent: #e63b2e;
  --accent-2: #f0b429;
  --border: #2c3a48;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Chivo', sans-serif;
  color: var(--text);
  background:
    radial-gradient(86rem 52rem at 8% -16%, rgb(120 38 38 / 26%) 0%, transparent 64%),
    radial-gradient(74rem 46rem at 92% -10%, rgb(80 24 24 / 22%) 0%, transparent 62%),
    linear-gradient(180deg, #0a0d12 0%, #120e12 52%, #170f12 100%);
  line-height: 1.5;
}

html.is-scroll-locked,
body.is-scroll-locked {
  overflow: hidden;
  overscroll-behavior: none;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
}

p {
  margin: 0;
}

a {
  color: var(--accent-2);
}

.hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  align-items: end;
  border-bottom: 1px solid var(--border);
}

.hero__picture {
  position: absolute;
  inset: 0;
  display: block;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 18%) 0%, rgb(0 0 0 / 84%) 68%),
    linear-gradient(90deg, rgb(5 10 15 / 92%) 0%, rgb(5 10 15 / 46%) 72%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.hero__topbar {
  display: none;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

main {
  background:
    radial-gradient(90rem 44rem at 84% -8%, rgb(118 36 36 / 20%) 0%, transparent 62%),
    radial-gradient(74rem 40rem at 12% 24%, rgb(82 24 24 / 16%) 0%, transparent 58%),
    linear-gradient(180deg, #0c1016 0%, #120e12 52%, #170f12 100%);
}

.kicker,
.section__kicker,
.modal__kicker {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  color: var(--accent-2);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero h1 {
  margin-top: 0.25rem;
  max-width: 19ch;
  font-size: clamp(2rem, 6vw, 4.3rem);
  text-transform: uppercase;
}

.hero__accent {
  color: #ff3a2f;
}

.subhead {
  margin-top: 0.9rem;
  max-width: 64ch;
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: #d5dee8;
}

.subhead__alert {
  display: block;
  margin-top: 0.6rem;
  font-weight: 900;
  color: #ffd447;
}

.subhead__alert-danger {
  color: #ff3a2f;
}

.hero__actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero__desktop-only {
  display: inline-block;
}

.mobile-nav-toggle {
  display: inline-flex;
  flex-direction: column;
  margin: 0;
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  border: 1px solid rgb(213 222 232 / 42%);
  border-radius: 999px;
  background: rgb(5 10 15 / 56%);
  box-shadow: none;
  cursor: pointer;
  transition:
    opacity 160ms ease,
    visibility 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.mobile-nav-toggle:hover {
  border-color: rgb(240 180 41 / 42%);
  background: rgb(10 16 23 / 72%);
}

.mobile-nav-toggle__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.22rem;
}

.mobile-nav-toggle__icon span {
  display: block;
  width: 1.05rem;
  height: 2px;
  border-radius: 999px;
  background: #f7fbff;
}

.mobile-nav-toggle.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(2 5 9 / 74%);
}

.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(84vw, 20rem);
  padding: 0.95rem;
  background: #0d141c;
  border-left: 1px solid #3f5368;
  box-shadow: -18px 0 40px rgb(0 0 0 / 38%);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.mobile-nav__eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  color: var(--accent-2);
  font-size: 1rem;
}

.mobile-nav__close {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: #f7fbff;
  padding: 0.45rem 0.75rem;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.mobile-nav__link {
  display: block;
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.78rem 0.9rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent-2);
  border-radius: 10px;
  background: var(--bg-alt);
  color: var(--text);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.mobile-nav__link:hover {
  border-color: #4d677f;
}

.btn,
.platform-btn {
  display: inline-block;
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.btn:focus-visible,
.resource:focus-visible,
a:focus-visible,
.platform-btn:focus-visible,
.modal__close:focus-visible,
.hero__topnav-link:focus-visible,
.mobile-nav-toggle:focus-visible,
.mobile-nav__close:focus-visible,
.mobile-nav__link:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: #ca2e21;
}

.btn--start-here {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 0 0 0 rgb(230 59 46 / 55%);
  animation: startHerePulse 1.8s ease-out infinite;
}

@keyframes startHerePulse {
  0% {
    box-shadow: 0 0 0 0 rgb(230 59 46 / 55%);
  }
  70% {
    box-shadow: 0 0 0 14px rgb(230 59 46 / 0%);
  }
  100% {
    box-shadow: 0 0 0 0 rgb(230 59 46 / 0%);
  }
}

.btn--ghost {
  border-color: #d5dee8;
  color: #f7fbff;
  background: rgb(255 255 255 / 3%);
}

.section {
  width: min(1080px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3.2rem) 0;
}

.section__head h2 {
  margin-top: 0.35rem;
  font-size: clamp(1.55rem, 3.5vw, 2.45rem);
}

.section--platform {
  border-bottom: 1px solid var(--border);
}

.section--flyer {
  border-top: 1px solid var(--border);
  padding-top: clamp(1.5rem, 3vw, 2.1rem);
}

.section__head--flyer {
  margin-bottom: 0.9rem;
}

.flyer-callout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 360px);
  gap: 1.2rem;
  align-items: center;
  border: 1px solid rgb(240 180 41 / 35%);
  border-radius: 20px;
  padding: clamp(1rem, 3vw, 1.35rem);
  background:
    radial-gradient(36rem 24rem at 100% 0%, rgb(230 59 46 / 14%) 0%, transparent 58%),
    linear-gradient(135deg, rgb(240 180 41 / 10%) 0%, rgb(255 255 255 / 2%) 36%, rgb(230 59 46 / 10%) 100%),
    rgb(255 255 255 / 3%);
  box-shadow: 0 18px 40px rgb(0 0 0 / 24%);
}

.flyer-callout__content {
  min-width: 0;
}

.flyer-copy {
  margin-top: 0;
  max-width: 54ch;
  color: #d8e3ee;
  font-size: clamp(1.08rem, 2.15vw, 1.24rem);
  line-height: 1.62;
}

.flyer-copy--secondary {
  margin-top: 0.5rem;
  color: #bfcbd8;
}

.flyer-meta {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.flyer-meta__item {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.72rem;
  border: 1px solid rgb(240 180 41 / 32%);
  border-radius: 999px;
  background: rgb(8 12 18 / 42%);
  color: #ffe08a;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.flyer-actions {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.flyer-actions .btn {
  text-align: center;
}

.flyer-preview {
  position: relative;
  display: block;
  padding: 0.8rem;
  border: 1px solid #405366;
  border-radius: 18px;
  background: linear-gradient(180deg, rgb(255 255 255 / 7%) 0%, rgb(255 255 255 / 2%) 100%);
  text-decoration: none;
  box-shadow: 0 16px 36px rgb(0 0 0 / 28%);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.flyer-preview:hover {
  transform: translateY(-2px);
  border-color: rgb(240 180 41 / 70%);
  box-shadow: 0 22px 44px rgb(0 0 0 / 32%);
}

.flyer-preview img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid #3f5368;
}

.flyer-preview__badge {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgb(5 10 15 / 84%);
  border: 1px solid rgb(240 180 41 / 38%);
  color: #ffe08a;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (min-width: 901px) {
  .section--flyer {
    padding-top: 1.1rem;
    padding-bottom: 1.4rem;
  }

  .section__head--flyer {
    margin-bottom: 0.8rem;
  }

  .flyer-callout {
    width: 100%;
    margin: 0 auto;
    grid-template-columns: minmax(0, 1fr) minmax(190px, 250px);
    gap: 0.95rem;
    padding: 0.8rem 1rem;
    border-radius: 16px;
  }

  .flyer-copy {
    max-width: 46ch;
    font-size: 1.08rem;
  }

  .flyer-meta {
    margin-top: 0.6rem;
    gap: 0.4rem;
  }

  .flyer-meta__item {
    padding: 0.28rem 0.55rem;
    font-size: 0.74rem;
  }

  .flyer-actions {
    margin-top: 0.7rem;
  }

  .flyer-actions .btn {
    padding: 0.58rem 0.95rem;
    font-size: 0.92rem;
  }

  .flyer-preview {
    padding: 0.45rem;
    border-radius: 12px;
  }

  .flyer-preview__badge {
    top: 0.65rem;
    right: 0.65rem;
    min-height: 1.6rem;
    padding: 0.22rem 0.52rem;
    font-size: 0.68rem;
  }
}

.section--bridge {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.bridge-callout {
  border: 1px solid #4a5f74;
  border-left: 5px solid var(--accent-2);
  border-radius: 12px;
  background: linear-gradient(180deg, rgb(255 255 255 / 4%) 0%, rgb(255 255 255 / 2%) 100%);
  padding: 0.95rem 1rem;
}

.bridge-callout h3 {
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  color: #f7fbff;
}

.bridge-callout p {
  margin-top: 0.55rem;
  color: #d8e3ee;
}

.platform-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.platform-card,
.fact-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, rgb(255 255 255 / 3%) 0%, rgb(255 255 255 / 1%) 100%);
  padding: 1rem;
}

.platform-card h3,
.fact-card h3 {
  font-size: clamp(1rem, 2.3vw, 1.26rem);
  color: var(--accent-2);
}

.fact-card h3 {
  color: var(--accent-2);
}

.platform-card p,
.fact-card p {
  margin-top: 0.6rem;
  color: #d4dfe9;
}

.platform-card--rights,
.platform-card--vendor,
.platform-card--sharing,
.platform-card--meeting {
  position: relative;
  overflow: hidden;
}

.platform-card--rights > *,
.platform-card--vendor > *,
.platform-card--sharing > *,
.platform-card--meeting > * {
  position: relative;
  z-index: 1;
}

.platform-card--rights p,
.platform-card--rights .platform-btn,
.platform-card--vendor p,
.platform-card--vendor .platform-btn,
.platform-card--sharing p,
.platform-card--sharing .platform-btn,
.platform-card--meeting p,
.platform-card--meeting .platform-btn {
  color: #e6edf5;
  text-shadow: 0 1px 1px rgb(0 0 0 / 52%);
}

.platform-card--rights h3,
.platform-card--vendor h3,
.platform-card--sharing h3,
.platform-card--meeting h3,
.platform-card--map h3,
.platform-card--audit h3 {
  color: var(--accent-2);
  text-shadow: 0 1px 2px rgb(0 0 0 / 72%);
}

.platform-card--rights::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(9 12 16 / 58%) 0%, rgb(9 12 16 / 68%) 100%),
    url('assets/img/card-rights.webp');
  background-size: cover;
  background-position: 58% 60%;
  opacity: 0.9;
  filter: brightness(1.12) contrast(1.06);
  pointer-events: none;
}

.platform-card--vendor::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(9 12 16 / 74%) 0%, rgb(9 12 16 / 84%) 100%),
    url('Images/brokenguardrail.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.84;
  pointer-events: none;
}

.platform-card--sharing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(9 12 16 / 56%) 0%, rgb(9 12 16 / 66%) 100%),
    url('assets/img/card-network.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  filter: brightness(1.2) contrast(1.12) saturate(1.08);
  pointer-events: none;
}

.platform-card--meeting::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(9 12 16 / 72%) 0%, rgb(9 12 16 / 82%) 100%),
    url('assets/img/card-meeting.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.84;
  pointer-events: none;
}

.platform-card--map {
  position: relative;
  overflow: hidden;
}

.platform-card--map > * {
  position: relative;
  z-index: 1;
}

.platform-card--map p,
.platform-card--map .platform-btn {
  color: #e6edf5;
  text-shadow: 0 1px 1px rgb(0 0 0 / 50%);
}

.platform-card--map::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(9 12 16 / 64%) 0%, rgb(9 12 16 / 74%) 100%),
    url('assets/img/map-local.webp');
  background-size: cover;
  background-position: 73% 77%;
  opacity: 0.74;
  pointer-events: none;
}

.platform-card--audit {
  position: relative;
  overflow: hidden;
}

.platform-card--audit > * {
  position: relative;
  z-index: 1;
}

.platform-card--audit p,
.platform-card--audit .platform-btn {
  color: #e6edf5;
  text-shadow: 0 2px 6px rgb(0 0 0 / 82%);
}

.platform-card--audit::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(9 12 16 / 84%) 0%, rgb(9 12 16 / 92%) 100%),
    url('assets/img/audit-dec-2025.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.95;
  filter: grayscale(0.2) brightness(0.72) contrast(1.08);
  pointer-events: none;
}

.platform-btn {
  margin-top: 0.8rem;
  color: #fff;
  background: transparent;
  border-color: #fff;
}

.platform-btn:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
}

.facts-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.section--videos {
  border-top: 1px solid var(--border);
}

.videos-intro {
  margin-top: 0.7rem;
  max-width: 72ch;
  color: #d4dfe9;
}

.video-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.video-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0.7rem;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.65rem;
  background: linear-gradient(180deg, rgb(255 255 255 / 3%) 0%, rgb(255 255 255 / 1%) 100%);
  color: var(--text);
  text-decoration: none;
}

.video-card img {
  width: 130px;
  height: auto;
  border-radius: 8px;
  border: 1px solid #3f5368;
  display: block;
}

.video-card p {
  margin: 0;
  color: #d4dfe9;
  font-size: 0.95rem;
}

.video-card:hover {
  border-color: #4d677f;
}

.source {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.text-emphasis {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.text-emphasis--danger {
  color: #ff3a2f;
  text-decoration-color: #ff3a2f;
}

.text-emphasis--warning {
  color: var(--accent-2);
  text-decoration: none;
}

.section--act {
  border-top: 1px solid var(--border);
}

.act-copy {
  margin-top: 0.8rem;
  max-width: 70ch;
  color: #d6e2ee;
}

.act-demand-key {
  color: #ffd06b;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  font-weight: 900;
}

.local-contact-block {
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgb(255 255 255 / 2%);
  padding: 0.95rem;
}

.local-contact-block--county {
  border-color: rgb(240 180 41 / 50%);
  background:
    linear-gradient(135deg, rgb(240 180 41 / 10%) 0%, rgb(230 59 46 / 8%) 100%),
    rgb(255 255 255 / 3%);
  box-shadow: 0 16px 36px rgb(0 0 0 / 24%);
}

.local-contact-block--county h3 {
  color: #ffe08a;
}

.local-contact-block h3 {
  font-size: clamp(1.1rem, 2.8vw, 1.45rem);
}

.local-contact-note {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.local-contact-warning {
  display: inline-block;
  margin-left: 0.35rem;
  color: #ffe08a;
  font-size: 0.8rem;
  font-style: italic;
  font-weight: 700;
}

.contact-phone-pop,
.local-contact-card .contact-phone-pop {
  margin-top: 0.35rem;
  color: #d9e4ef;
  font-weight: 700;
}

.local-contact-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.local-contact-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem;
  background: var(--bg-alt);
}

.local-contact-card h4 {
  margin: 0;
  font-size: 1rem;
}

.local-contact-card p {
  margin-top: 0.3rem;
  color: #d9e4ef;
  font-size: 0.94rem;
}

.resource-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.resource {
  display: block;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 0.8rem;
  background: var(--bg-alt);
}

.resource:hover {
  border-color: #4d677f;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 50;
  overflow: hidden;
  padding: 0;
}

.modal.is-open {
  display: block;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(2 5 9 / 74%);
  z-index: 0;
}

.modal__panel {
  position: absolute;
  top: 0.75rem;
  right: 0.5rem;
  bottom: 0.75rem;
  left: 0.5rem;
  margin: 0 auto;
  width: min(760px, calc(100% - 1rem));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  z-index: 1;
  background: #0d141c;
  border: 1px solid #3f5368;
  border-radius: 14px;
  padding: 1rem 1rem 1.2rem;
  box-shadow: 0 18px 40px rgb(0 0 0 / 42%);
}

.modal__close {
  border: 1px solid var(--border);
  background: transparent;
  color: #fff;
  border-radius: 8px;
  padding: 0.4rem 0.65rem;
  cursor: pointer;
  display: block;
  margin-left: auto;
  margin-bottom: 0.2rem;
}

.modal__panel h3 {
  margin-top: 0.9rem;
  font-size: clamp(1.3rem, 3.2vw, 2rem);
}

.modal__panel p {
  margin-top: 0.7rem;
  color: #d5e2ee;
  font-size: clamp(1rem, 2vw, 1.08rem);
}

#modal-body {
  margin-top: 0.7rem;
  color: #d5e2ee;
  font-size: clamp(1rem, 2vw, 1.08rem);
  overflow: visible;
  padding-bottom: 1.2rem;
}

#modal-body strong {
  color: var(--accent-2);
}

#modal-body .modal-text-danger {
  color: #ff3a2f;
  font-weight: 900;
}

.modal-map {
  margin-top: 1rem;
  position: relative;
}

.modal-map h4 {
  margin: 0;
  font-size: 1.05rem;
  color: #f4f8fc;
}

.modal-map img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  border: 1px solid #3f5368;
  border-radius: 10px;
  background: #0a1016;
  filter: brightness(1.14) contrast(1.07);
}

.modal-map__figure {
  position: relative;
  margin-top: 0.5rem;
}

.modal-map__figure img {
  margin-top: 0;
}

.osm-attribution {
  position: absolute;
  right: 0.35rem;
  bottom: 0.35rem;
  display: inline-block;
  padding: 0.18rem 0.38rem;
  font-size: 0.72rem;
  line-height: 1.2;
  color: #eaf2fb;
  background: rgb(0 0 0 / 62%);
  border: 1px solid rgb(255 255 255 / 26%);
  border-radius: 4px;
  text-decoration: none;
}

.osm-attribution:hover {
  background: rgb(0 0 0 / 75%);
}

.modal-map--compact img {
  width: min(100%, 280px);
  margin-left: auto;
  margin-right: auto;
}

.modal-map__image-wrap {
  position: relative;
  width: min(100%, 280px);
  margin: 0.5rem auto 0;
  border-radius: 10px;
  overflow: hidden;
}

.modal-map__image-wrap img {
  margin-top: 0;
}

.modal-map__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(148 27 20 / 3%) 0%, rgb(114 18 18 / 4%) 100%);
  pointer-events: none;
}

.modal-map__alert {
  text-align: center;
  color: #ff2b1f !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 0 12px rgb(255 75 63 / 35%);
}

.modal-map__note {
  margin-top: 0.45rem;
  color: #c6d4e1;
  font-size: 0.95rem;
}

.summary-video-card {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.65rem;
  align-items: center;
  border: 1px solid #3f5368;
  border-radius: 10px;
  padding: 0.55rem;
  background: rgb(255 255 255 / 3%);
  color: #d5e2ee;
  text-decoration: none;
}

.summary-video-card img {
  display: block;
  width: 120px;
  height: auto;
  border: 1px solid #3f5368;
  border-radius: 8px;
}

.summary-video-card:hover {
  border-color: #4d677f;
}

.modal-meta {
  margin: 0.5rem 0 0 1.15rem;
  padding: 0;
}

.modal-meta li {
  margin-top: 0.35rem;
  color: #d5e2ee;
}

.modal-callout {
  border: 1px solid #4d677f;
  border-left: 5px solid var(--accent-2);
  border-radius: 10px;
  background: rgb(255 255 255 / 4%);
  padding: 0.75rem 0.8rem;
}

.modal-meta-footnote {
  margin-top: 0.9rem;
  opacity: 0.82;
}

.modal-meta-footnote p,
.modal-meta-footnote li {
  font-size: 0.84rem;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem 1.2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer__disclaimer {
  margin-top: 0.45rem;
  font-size: 0.86rem;
  color: #93a5b8;
}

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

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

@media (max-width: 900px) {
  .hero__desktop-only {
    display: none;
  }

  .hero__topbar {
    display: flex;
    margin-bottom: 0;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  body {
    background:
      radial-gradient(62rem 38rem at 86% -12%, rgb(118 36 36 / 28%) 0%, transparent 64%),
      radial-gradient(56rem 34rem at 10% -14%, rgb(84 24 24 / 22%) 0%, transparent 62%),
      linear-gradient(180deg, #0a0d12 0%, #120e12 56%, #170f12 100%);
  }

  main {
    background:
      radial-gradient(68rem 34rem at 86% -14%, rgb(118 36 36 / 22%) 0%, transparent 64%),
      radial-gradient(56rem 34rem at 10% 30%, rgb(82 24 24 / 18%) 0%, transparent 60%),
      linear-gradient(180deg, #0c1016 0%, #130f13 52%, #1a1013 100%);
  }

  .platform-grid,
  .facts-grid,
  .video-grid,
  .local-contact-grid,
  .resource-grid,
  .flyer-callout {
    grid-template-columns: 1fr;
  }

  .flyer-preview {
    width: min(100%, 320px);
    margin: 0 auto;
    padding: 0.65rem;
  }

  .section--flyer {
    padding-top: 1.35rem;
  }

  .section__head--flyer {
    margin-bottom: 0.75rem;
  }

  .flyer-callout {
    gap: 0.95rem;
    padding: 0.9rem;
    border-radius: 16px;
  }

  .flyer-copy {
    font-size: 0.98rem;
  }

  .flyer-meta__item {
    padding: 0.34rem 0.6rem;
    font-size: 0.8rem;
  }

  .flyer-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .flyer-actions .btn {
    width: 100%;
  }

  .flyer-preview__badge {
    display: none;
  }

  .video-card {
    grid-template-columns: 112px 1fr;
    gap: 0.6rem;
  }

  .video-card img {
    width: 112px;
  }

  .summary-video-card {
    grid-template-columns: 108px 1fr;
  }

  .summary-video-card img {
    width: 108px;
  }

  .hero {
    min-height: 62vh;
  }

  .hero__image {
    object-position: center;
    filter: brightness(1.8) contrast(1.08) saturate(1.08);
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgb(0 0 0 / 8%) 0%, rgb(0 0 0 / 56%) 68%),
      linear-gradient(90deg, rgb(5 10 15 / 56%) 0%, rgb(5 10 15 / 22%) 72%);
  }

  .modal__panel {
    inset: 0.5rem 0.5rem 0.75rem;
    width: auto;
  }

  .platform-card--rights::before {
    background-position: 72% 30%;
  }

  .platform-card--audit::before {
    background:
      linear-gradient(180deg, rgb(9 12 16 / 62%) 0%, rgb(9 12 16 / 74%) 100%),
      url('assets/img/audit-dec-2025.webp');
    background-size: cover;
    background-position: 35% 50%;
    opacity: 0.82;
    filter: grayscale(0.1) brightness(0.9) contrast(1.04);
  }

  /* Avoid perceived blank gaps on mobile by rendering sections immediately. */
  .reveal,
  .reveal.is-revealed {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
