:root {
  color-scheme: dark;
  --bg: #020202;
  --bg-soft: #090909;
  --panel: #111111;
  --panel-2: #171717;
  --text: #f7f2e6;
  --muted: #b7ad9a;
  --gold: #d9aa4c;
  --gold-bright: #f3ca75;
  --red: #a5232d;
  --blue: #17365d;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(165, 35, 45, 0.18), transparent 26%, transparent 74%, rgba(23, 54, 93, 0.22)),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), transparent 78%);
}

a {
  color: inherit;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(2, 2, 2, 0.88);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.site-header::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 2, 2, 0.72) 0%, rgba(2, 2, 2, 0.28) 48%, rgba(2, 2, 2, 0.44) 100%),
    linear-gradient(180deg, rgba(2, 2, 2, 0.12), rgba(2, 2, 2, 0.42));
}

.header-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
  pointer-events: none;
  filter: saturate(1.28) contrast(1.12) brightness(1.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  position: relative;
  z-index: 1;
  min-height: 76px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-title {
  display: inline-block;
  position: relative;
  z-index: 2;
}

.brand img {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(217, 170, 76, 0.75);
  object-fit: cover;
  box-shadow: 0 0 28px rgba(217, 170, 76, 0.28);
}

.nav-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(2, 2, 2, 0.42);
  backdrop-filter: blur(12px);
}

.nav-tabs a {
  min-height: 38px;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.nav-tabs a:hover,
.nav-tabs a:focus-visible {
  color: var(--text);
  background: rgba(217, 170, 76, 0.16);
  outline: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  align-items: center;
  gap: clamp(30px, 5vw, 76px);
  min-height: calc(100svh - 76px);
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 80px) clamp(44px, 7vw, 88px);
  overflow: hidden;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  line-height: 0.92;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: 1;
}

h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.hero-copy p:not(.eyebrow),
.section-copy p,
.source-note {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-points span {
  padding: 7px 10px;
  border: 1px solid rgba(247, 242, 230, 0.16);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.82rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button.primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #111;
  box-shadow: 0 14px 36px rgba(217, 170, 76, 0.24);
}

.button.secondary {
  border-color: rgba(247, 242, 230, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.button.small {
  min-height: 44px;
  padding-inline: 16px;
}

.hero-visual {
  position: relative;
}

.hero-visual::before,
.coin-showcase::before {
  position: absolute;
  inset: 8%;
  z-index: -1;
  content: "";
  border-radius: 50%;
  background: rgba(217, 170, 76, 0.12);
  filter: blur(34px);
}

.hero-visual img {
  width: min(100%, 520px);
  border-radius: 50%;
  border: 1px solid rgba(217, 170, 76, 0.5);
  box-shadow: var(--shadow);
}

.section {
  scroll-margin-top: 88px;
  padding: clamp(70px, 10vw, 126px) clamp(18px, 5vw, 80px);
}

.band {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(165, 35, 45, 0.12), transparent 34%),
    linear-gradient(315deg, rgba(23, 54, 93, 0.16), transparent 38%),
    var(--bg-soft);
}

.section-inner {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: clamp(34px, 7vw, 88px);
}

.section-copy .button {
  margin-top: 20px;
}

.coin-showcase {
  position: relative;
  margin: 0;
}

.coin-showcase::before {
  inset: 4%;
  border-radius: 18px;
}

.coin-showcase video {
  width: min(100%, 440px);
  max-height: 680px;
  margin-left: auto;
  border: 1px solid rgba(217, 170, 76, 0.42);
  border-radius: 8px;
  background: #000;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.video-band {
  background: #050505;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.stacked-heading {
  display: block;
}

.stacked-heading p:not(.eyebrow),
.two-column-head p,
.page-hero p,
.section-kicker {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
}

.page-hero {
  padding: clamp(70px, 10vw, 120px) clamp(18px, 5vw, 80px) clamp(42px, 6vw, 74px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(165, 35, 45, 0.16), transparent 36%),
    linear-gradient(300deg, rgba(23, 54, 93, 0.24), transparent 42%),
    #050505;
}

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.two-column-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  margin-bottom: 28px;
}

.feature-band,
.explore-band {
  background:
    linear-gradient(180deg, rgba(217, 170, 76, 0.08), transparent 30%),
    #050505;
}

.history-grid,
.hub-grid,
.content-grid,
.mini-event-grid,
.feature-layout,
.state-page-grid,
.map-grid {
  display: grid;
  gap: 14px;
}

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

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

.feature-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.mini-event-grid,
.week-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.feature-card,
.hub-card,
.mini-event-card,
.week-card,
.state-page-card,
.map-card,
.quiz-question {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    var(--panel);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.18);
}

.feature-card,
.hub-card,
.mini-event-card,
.week-card,
.map-card,
.quiz-question {
  padding: 18px;
}

.feature-card h3,
.hub-card h3,
.week-card h4,
.mini-event-card h4 {
  margin: 10px 0 8px;
}

.feature-card p,
.hub-card p,
.week-card p,
.mini-event-card p,
.map-card p,
.card-action {
  margin: 0;
  color: var(--muted);
}

.card-action {
  margin-top: 14px;
  color: #ddd5c8;
  font-weight: 750;
}

.hub-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 8px 10px;
  border: 1px solid rgba(217, 170, 76, 0.52);
  border-radius: 50%;
  color: var(--gold-bright);
  font-weight: 900;
}

.hub-card a,
.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold-bright);
  font-weight: 850;
  text-decoration: none;
}

.hub-card a:hover,
.hub-card a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
  outline: none;
}

.week-card span {
  color: var(--gold-bright);
  font-size: 0.86rem;
  font-weight: 850;
}

.trust-note {
  padding: 12px 14px;
  border: 1px solid rgba(217, 170, 76, 0.24);
  border-radius: 8px;
  background: rgba(217, 170, 76, 0.08);
}

.state-page-grid {
  grid-template-columns: 1fr;
  margin-top: 22px;
}

.state-page-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  padding: 20px;
}

.state-symbols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-content: start;
}

.state-symbols img {
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  object-fit: contain;
}

.fact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
}

.fact-list div {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.fact-list dt {
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.fact-list dd {
  margin: 4px 0 0;
  color: #ddd5c8;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.inline-list li {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #ddd5c8;
  font-size: 0.84rem;
  font-weight: 760;
}

.quiz-shell {
  display: grid;
  gap: 18px;
}

.quiz-question {
  margin: 0 0 14px;
}

.quiz-question legend {
  padding: 0 8px;
  color: var(--text);
  font-weight: 850;
}

.quiz-question label,
.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  color: #ddd5c8;
  cursor: pointer;
}

.quiz-question input,
.check-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.quiz-score,
.map-progress strong {
  color: var(--gold-bright);
  font-weight: 900;
}

.save-note {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 760;
}

.map-progress {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.map-progress strong {
  font-size: 2rem;
  line-height: 1;
}

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

.map-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.map-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.map-card h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.map-card-count {
  flex: 0 0 auto;
  margin-top: 5px;
  padding: 5px 9px;
  border: 1px solid rgba(217, 170, 76, 0.3);
  border-radius: 999px;
  color: var(--gold-bright);
  background: rgba(217, 170, 76, 0.1);
  font-size: 0.78rem;
  font-weight: 850;
  white-space: nowrap;
}

.map-check-list {
  display: grid;
  gap: 2px;
}

.map-card .check-row.is-extra {
  display: none;
}

.map-card.is-expanded .check-row.is-extra {
  display: flex;
}

.map-see-more {
  align-self: flex-start;
  min-height: 38px;
  margin-top: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(217, 170, 76, 0.42);
  border-radius: 8px;
  color: var(--gold-bright);
  background: rgba(217, 170, 76, 0.08);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 850;
}

.map-see-more:hover,
.map-see-more:focus-visible {
  border-color: rgba(243, 202, 117, 0.78);
  background: rgba(217, 170, 76, 0.16);
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.video-feature {
  margin: 0;
}

.video-player-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 170, 76, 0.34);
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow);
}

.video-feature video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: contain;
}

.video-share-cta {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(247, 242, 230, 0.24);
  border-radius: 999px;
  color: var(--text);
  background: rgba(2, 2, 2, 0.58);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 850;
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.video-share-cta:hover,
.video-share-cta:focus-visible {
  border-color: rgba(243, 202, 117, 0.78);
  background: rgba(2, 2, 2, 0.72);
  outline: none;
  transform: translateX(-50%) translateY(-1px);
}

.video-share-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.share-status {
  position: absolute;
  top: 60px;
  left: 50%;
  z-index: 2;
  max-width: min(320px, calc(100% - 32px));
  margin: 0;
  padding: 7px 10px;
  border: 1px solid rgba(247, 242, 230, 0.18);
  border-radius: 999px;
  color: var(--text);
  background: rgba(2, 2, 2, 0.7);
  font-size: 0.82rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
  backdrop-filter: blur(14px);
}

.share-status:not(:empty) {
  opacity: 1;
  transform: translateX(-50%);
}

.video-feature figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.events-band {
  background:
    linear-gradient(180deg, rgba(23, 54, 93, 0.24), transparent 28%),
    #030303;
}

.events-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.source-note a {
  color: var(--gold-bright);
  text-underline-offset: 4px;
}

.event-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(86px, 1fr));
  gap: 10px;
  min-width: min(100%, 360px);
}

.event-stats div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.event-stats strong,
.event-stats span {
  display: block;
}

.event-stats strong {
  color: var(--gold-bright);
  font-size: 1.8rem;
  line-height: 1;
}

.event-stats span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
  text-transform: uppercase;
}

.event-tools {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(190px, 280px) auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.field input,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #0f0f0f;
  color: var(--text);
}

.field input:focus,
.field select:focus {
  border-color: var(--gold);
  outline: 2px solid rgba(217, 170, 76, 0.25);
}

.state-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 24px;
}

.state-chip {
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
}

.state-chip.is-active,
.state-chip:hover,
.state-chip:focus-visible {
  border-color: rgba(217, 170, 76, 0.72);
  color: var(--text);
  background: rgba(217, 170, 76, 0.14);
  outline: none;
}

.event-results-head {
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 760;
}

.event-results {
  display: grid;
  gap: 34px;
}

.state-group {
  display: grid;
  gap: 14px;
}

.state-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(217, 170, 76, 0.28);
}

.state-group-count {
  color: var(--gold-bright);
  font-weight: 850;
}

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

.event-card {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    var(--panel);
}

.event-card-top,
.event-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.event-date {
  color: var(--gold-bright);
  font-size: 0.85rem;
  font-weight: 850;
}

.event-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.badge {
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.badge.free {
  border-color: rgba(217, 170, 76, 0.56);
  color: var(--gold-bright);
}

.badge.virtual {
  border-color: rgba(93, 145, 214, 0.56);
  color: #a8c8ff;
}

.event-card h4 {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.2;
}

.event-card h4 a {
  text-decoration: none;
}

.event-card h4 a:hover,
.event-card h4 a:focus-visible {
  color: var(--gold-bright);
  outline: none;
}

.event-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.event-location {
  margin: 0;
  color: #ddd5c8;
  font-size: 0.9rem;
}

.event-card-actions {
  margin-top: auto;
  padding-top: 4px;
}

.event-card-actions a {
  color: var(--gold-bright);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

.event-card-actions a:hover,
.event-card-actions a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
  outline: none;
}

.empty-state {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-2);
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 80px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #020202;
}

.site-footer p {
  margin: 0;
}

.footer-disclaimer {
  max-width: 520px;
  text-align: center;
}

.site-footer a {
  color: var(--gold-bright);
  font-weight: 800;
  text-decoration: none;
}

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

@media (max-width: 980px) {
  .hero,
  .split,
  .video-grid,
  .events-top,
  .two-column-head,
  .feature-layout,
  .history-grid,
  .hub-grid,
  .content-grid,
  .map-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual img,
  .coin-showcase video {
    margin-inline: auto;
  }

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

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

  .state-symbols {
    max-width: 260px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: stretch;
    flex-direction: column;
  }

  .nav-tabs {
    overflow-x: auto;
    justify-content: flex-start;
    border-radius: 8px;
  }

  .nav-tabs a {
    white-space: nowrap;
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .event-tools {
    grid-template-columns: 1fr;
  }

  .event-stats,
  .event-card-grid,
  .fact-list {
    grid-template-columns: 1fr;
  }

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

  .site-footer nav {
    justify-content: center;
  }
}
