/* ============================================================
   Maryland Glock Ban (SB334) — Bearing Freedom
   BLACKOUT RED — Black / White / Red only
   ============================================================ */

/* --- Fonts --- */
@font-face {
  font-family: "Satoshi";
  src: url("../assets/fonts/Satoshi-Variable.woff2") format("woff2");
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../assets/fonts/PlayfairDisplay-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../assets/fonts/PlayfairDisplay-BlackItalic.woff2") format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("../assets/fonts/JetBrainsMono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("../assets/fonts/JetBrainsMono-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: #000;
  color: #fff;
  font-family:
    "Satoshi",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: #ef4444;
  text-decoration: none;
  transition: color 0.15s;
}

a:hover {
  color: #f87171;
}

::selection {
  background: #ef4444;
  color: #000;
}

/* --- Tokens --- */
:root {
  --red: #ef4444;
  --red-dark: #dc2626;
  --white: #ffffff;
  --black: #000000;
  --gray-1: #111;
  --gray-2: #1a1a1a;
  --gray-3: #333;
  --gray-4: #555;
  --gray-5: #999;

  --f-display: "Playfair Display", Georgia, serif;
  --f-body: "Satoshi", -apple-system, sans-serif;
  --f-mono: "JetBrains Mono", "Fira Code", monospace;

  --w-content: 1080px;
  --w-narrow: 800px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Layout --- */
.section {
  padding: 3rem 2rem;
  position: relative;
}

.section__inner {
  max-width: var(--w-content);
  margin: 0 auto;
}

.section__inner--narrow {
  max-width: var(--w-narrow);
}

.section__label {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
  display: block;
}

.section__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1rem;
}

.section--alt {
  background: transparent;
}

.section--ruled {
  border-top: 1px solid var(--gray-3);
}

/* --- Alert Banner --- */
.alert-banner {
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 2rem;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.alert-banner__badge {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  padding: 0.2em 0.6em;
  flex-shrink: 0;
}

.alert-banner__ticker {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.alert-banner__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 22s linear infinite;
}

.alert-banner__text {
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: none;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- Sticky Header --- */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-3);
  padding: 0.55rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-100%);
  transition: transform 0.35s var(--ease-out);
}

.sticky-header.is-visible {
  transform: translateY(0);
}

.sticky-header__title {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.sticky-header__bill {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  color: var(--red);
  margin-left: 0.6rem;
  font-weight: 700;
}

.sticky-header__cta {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 0.4rem 1rem;
  transition: background 0.15s;
}

.sticky-header__cta:hover {
  background: var(--red-dark);
  color: var(--white);
}

/* --- Hero --- */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5rem 2rem 3.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-3);
}

.hero__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50vw;
  max-width: 500px;
  opacity: 0.03;
  color: var(--gray-4);
  pointer-events: none;
  will-change: transform;
}

.hero__overline {
  font-family: var(--f-mono);
  font-size: clamp(0.6rem, 1vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__overline-badge {
  font-family: var(--f-mono);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: var(--red);
  color: var(--white);
  padding: 0.2em 0.5em;
  animation: badge-blink 1.5s step-end infinite;
}

@keyframes badge-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.hero__headline {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 15ch;
}

.hero__sub {
  font-family: var(--f-body);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 400;
  color: var(--gray-5);
  max-width: 44ch;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--gray-3);
  border-bottom: 1px solid var(--gray-3);
  padding: 1rem 0;
}

.hero__meta {
  display: flex;
  gap: 1.5rem;
  font-family: var(--f-mono);
  font-size: 0.62rem;
  color: var(--gray-4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__scroll-cue {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--gray-4);
  font-family: var(--f-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scroll-pulse 2s ease-in-out infinite;
}

.hero__scroll-cue::after {
  content: "";
  width: 1px;
  height: 20px;
  background: linear-gradient(to bottom, var(--gray-4), transparent);
}

@keyframes scroll-pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.7;
    transform: translateX(-50%) translateY(4px);
  }
}

/* --- Countdown Strip --- */
.countdown {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  letter-spacing: 0.05em;
}

.countdown__number {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
}

.countdown__label {
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--f-body);
}

.countdown__pipe {
  width: 1px;
  height: 1.2rem;
  background: rgba(255, 255, 255, 0.3);
}

.countdown__date {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* --- Stat Cards --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--gray-3);
  position: relative;
}

.stat-card {
  background: transparent;
  border-right: 1px solid var(--gray-3);
  padding: 1.25rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.stat-card:last-child {
  border-right: none;
}

.stat-card::before {
  display: none;
}

.stat-card--amber::before {
  display: none;
}

.stat-card__number {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.stat-card__label {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1.3;
}

/* --- Legal Text / Translation Panel --- */
.legal-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.legal-text {
  background: transparent;
  border: 1px dashed var(--gray-3);
  padding: 1.5rem;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  line-height: 1.75;
  color: var(--gray-5);
  position: relative;
}

.legal-text__header {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed var(--gray-3);
}

.legal-text em {
  color: var(--red);
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: rgba(239, 68, 68, 0.3);
  text-underline-offset: 2px;
}

.translation-panel {
  background: transparent;
  border: 1px solid var(--gray-3);
  border-left: 3px solid var(--red);
  padding: 1.5rem;
}

.translation-panel__header {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-3);
}

.translation-panel p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  color: var(--gray-5);
}

.translation-panel p:last-child {
  margin-bottom: 0;
}

.translation-panel strong {
  color: var(--white);
}

/* --- Pull Quote --- */
.pull-quote {
  border-left: 6px solid var(--red);
  padding: 1.25rem 0 1.25rem 1.5rem;
  margin: 2rem 0;
}

.pull-quote__text {
  font-family: var(--f-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.pull-quote__attribution {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  color: var(--gray-4);
  letter-spacing: 0.08em;
}

/* --- Firearms Table --- */
.firearms-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.25rem 0;
  border: 1px solid var(--gray-3);
}

.firearms-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.firearms-table th {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  text-align: left;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--gray-3);
  background: var(--gray-1);
}

.firearms-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--gray-2);
  vertical-align: middle;
  color: var(--gray-5);
}

.firearms-table td:first-child {
  color: var(--white);
  font-weight: 500;
}

.firearms-table tbody tr {
  transition: background 0.1s;
}

.firearms-table tbody tr:hover {
  background: var(--gray-1);
}

/* --- Status Badge --- */
.status-badge {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2em 0.6em;
}

.status-badge--banned {
  background: var(--red);
  color: var(--white);
}

.status-badge--grandfathered {
  background: transparent;
  color: var(--gray-5);
  border: 1px solid var(--gray-3);
}

.status-badge--exempt {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gray-4);
}

/* --- Big Market Stat --- */
.market-stat {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid var(--gray-3);
  border-bottom: 1px solid var(--gray-3);
  margin-top: 1.5rem;
}

.market-stat__number {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 9vw, 6rem);
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.market-stat__label {
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--gray-5);
}

/* --- Timeline --- */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--gray-3);
}

.timeline__line-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 0;
  background: var(--red);
  transition: height 1.2s var(--ease-out);
}

.timeline__item {
  position: relative;
  padding-bottom: 1.75rem;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: -2.5rem;
  top: 0.35rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gray-3);
  transform: translateX(-3px);
  z-index: 1;
}

.timeline__item.is-active .timeline__dot {
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(239, 68, 68, 0.05);
  }
}

.timeline__item.is-past .timeline__dot {
  background: var(--red);
}

.timeline__date {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.2rem;
}

.timeline__title {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.timeline__desc {
  font-size: 0.82rem;
  color: var(--gray-5);
  line-height: 1.5;
}

/* --- CTA Sections --- */
.cta-section {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--red);
  color: var(--white);
}

.cta-section__text {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.cta-section__sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.25rem;
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}

.btn--primary {
  background: var(--black);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--gray-2);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-group {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Bar Chart --- */
.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.25rem 0;
}

.bar-chart__row {
  display: grid;
  grid-template-columns: 50px 1fr 55px;
  align-items: center;
  gap: 0.6rem;
}

.bar-chart__label {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gray-5);
  text-align: right;
}

.bar-chart__track {
  height: 22px;
  background: var(--gray-1);
  overflow: hidden;
  position: relative;
}

.bar-chart__fill {
  height: 100%;
  background: var(--red);
  width: 0;
  transition: width 1s var(--ease-out);
}

.bar-chart__fill--highlight {
  background: var(--red);
}

.bar-chart__value {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
}

/* --- Callout Box --- */
.callout-box {
  background: transparent;
  border: 1px solid var(--gray-3);
  border-left: 4px solid var(--red);
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
}

.callout-box--red {
  border-left-color: var(--red);
  background: rgba(239, 68, 68, 0.04);
}

.callout-box__title {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.callout-box p {
  font-size: 0.88rem;
  color: var(--gray-5);
  line-height: 1.6;
}

.callout-box strong {
  color: var(--white);
}

/* --- Comparison Table --- */
.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--gray-3);
  overflow: hidden;
  margin: 1.25rem 0;
}

.comparison-table__header {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.7rem 1.1rem;
  border-bottom: 1px solid var(--gray-3);
}

.comparison-table__header--claim {
  background: var(--red);
  color: var(--white);
}

.comparison-table__header--reality {
  background: var(--gray-2);
  color: var(--white);
  border-left: 1px solid var(--gray-3);
}

.comparison-table__item {
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--gray-2);
  font-size: 0.84rem;
  line-height: 1.5;
  background: transparent;
  color: var(--gray-5);
}

.comparison-table__item:last-child {
  border-bottom: none;
}

.comparison-table__col:last-child .comparison-table__item {
  border-left: 1px solid var(--gray-3);
  color: var(--white);
}

.comparison-table__item strong {
  color: var(--white);
}

/* --- Vote Bars --- */
.vote-section {
  margin-bottom: 1.75rem;
}

.vote-section__label {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.vote-bar {
  display: flex;
  height: 32px;
  overflow: hidden;
  margin-bottom: 0.35rem;
}

.vote-bar__yes {
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 0.65rem;
  font-weight: 700;
  transition: width 1s var(--ease-out);
  width: 0;
}

.vote-bar__no {
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  transition: width 1s var(--ease-out);
  width: 0;
}

.vote-bar__absent {
  background: var(--gray-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  color: var(--gray-4);
  flex: 1;
}

.vote-legend {
  display: flex;
  gap: 1.25rem;
  font-size: 0.72rem;
  color: var(--gray-5);
}

.vote-legend__item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.vote-legend__dot {
  width: 7px;
  height: 7px;
}

.vote-legend__dot--yes {
  background: var(--white);
}
.vote-legend__dot--no {
  background: var(--red);
}
.vote-legend__dot--absent {
  background: var(--gray-3);
}

/* --- Sponsor Cards --- */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 1.5rem;
  border: 1px solid var(--gray-3);
}

.sponsor-card {
  background: transparent;
  border-right: 1px solid var(--gray-3);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.sponsor-card:last-child {
  border-right: none;
}

.sponsor-card__avatar {
  width: 40px;
  height: 40px;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.sponsor-card__info {
  min-width: 0;
}

.sponsor-card__name {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sponsor-card__detail {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  color: var(--gray-4);
  letter-spacing: 0.05em;
}

/* --- Penalty Card --- */
.penalty-card {
  background: transparent;
  border: 2px solid var(--red);
  padding: 1.25rem 1.5rem;
  font-family: var(--f-mono);
  position: relative;
}

.penalty-card__header {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-3);
}

.penalty-card__row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-2);
}

.penalty-card__row:last-child {
  border-bottom: none;
}

.penalty-card__key {
  font-size: 0.72rem;
  color: var(--gray-5);
}

.penalty-card__value {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
}

/* --- Split Grid --- */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

/* --- Share Buttons --- */
.share-buttons {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  transition: all 0.15s;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
}

.share-btn:hover {
  border-color: var(--white);
  color: var(--white);
}

.share-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* --- Bigger Picture / Multi-state --- */
.state-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 1.25rem 0;
  border: 1px solid var(--gray-3);
}

.state-card {
  background: transparent;
  padding: 1.25rem 1.5rem;
}

.state-card:first-child {
  border-right: 1px solid var(--gray-3);
}

.state-card__name {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.state-card__detail {
  font-size: 0.84rem;
  color: var(--gray-5);
  line-height: 1.5;
}

/* --- Footer --- */
.site-footer {
  border-top: 1px solid var(--gray-3);
  padding: 2rem 2rem;
  text-align: center;
}

.site-footer__sources {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  color: var(--gray-4);
  max-width: var(--w-narrow);
  margin: 1rem auto 0;
  line-height: 1.7;
}

.site-footer__sources a {
  color: var(--gray-4);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer__sources a:hover {
  color: var(--red);
}

.site-footer__brand {
  font-family: var(--f-mono);
  font-size: 0.55rem;
  color: var(--gray-3);
  margin-top: 1.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* --- Animate-in --- */
[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.4s var(--ease-out),
    transform 0.4s var(--ease-out);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-delay="1"] {
  transition-delay: 0.06s;
}
[data-animate-delay="2"] {
  transition-delay: 0.12s;
}
[data-animate-delay="3"] {
  transition-delay: 0.18s;
}
[data-animate-delay="4"] {
  transition-delay: 0.24s;
}

/* --- Utility --- */
.text-muted {
  color: var(--gray-5);
}

.mb-2 {
  margin-bottom: 1.25rem;
}

.section__subtitle {
  font-family: var(--f-display);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section__subtitle--sm {
  font-size: 1.3rem;
  margin-top: 2rem;
}

.section__subtitle--xs {
  font-size: 1.15rem;
  margin-top: 1.5rem;
}

/* --- Scroll Depth Marker --- */
[data-scroll-depth] {
  position: absolute;
  pointer-events: none;
  height: 1px;
  width: 1px;
}

[data-scroll-depth="25"] {
  top: 25%;
}
[data-scroll-depth="50"] {
  top: 50%;
}
[data-scroll-depth="75"] {
  top: 75%;
}
[data-scroll-depth="100"] {
  bottom: 0;
  top: auto;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card:nth-child(2) {
    border-right: none;
  }

  .stat-card:nth-child(1),
  .stat-card:nth-child(2) {
    border-bottom: 1px solid var(--gray-3);
  }

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

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

  .sponsor-card {
    border-right: none;
    border-bottom: 1px solid var(--gray-3);
  }

  .sponsor-card:last-child {
    border-bottom: none;
  }

  .comparison-table {
    grid-template-columns: 1fr;
  }

  .comparison-table__col:last-child .comparison-table__item {
    border-left: none;
  }

  .comparison-table__header--reality {
    border-left: none;
  }

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

  .state-card:first-child {
    border-right: none;
    border-bottom: 1px solid var(--gray-3);
  }

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

  .bar-chart__row {
    grid-template-columns: 45px 1fr 45px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 2.5rem 1.25rem;
  }

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

  .hero {
    padding: 4rem 1.25rem 2.5rem;
  }

  .hero__headline {
    font-size: 2.2rem;
  }

  .hero__overline {
    flex-direction: column;
    gap: 0.4rem;
  }

  .cta-section {
    padding: 2.25rem 1.25rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .share-buttons {
    flex-direction: column;
    align-items: center;
  }

  .countdown {
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.75rem 1.25rem;
  }

  .countdown__pipe {
    display: none;
  }

  .alert-banner {
    font-size: 0.65rem;
    padding: 0.4rem 1.25rem;
  }
}
