:root {
  --black: #0a0c0f;
  --dark: #111318;
  --navy: #0d1f35;
  --red: #d62828;
  --red-dim: #8b1a1a;
  --orange: #e07b00;
  --gold: #f0a500;
  --white: #f4f0e8;
  --muted: #7a8a96;
  --mono: "Space Mono", monospace;
  --display: "Barlow Condensed", sans-serif;
  --body: "Barlow", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  overflow-x: hidden;
}

/* ── SCANLINE OVERLAY ── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgb(0 0 0 / 3%) 2px,
    rgb(0 0 0 / 3%) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 5vw 60px;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 40%, rgb(214 40 40 / 8%) 0%, transparent 70%);
  pointer-events: none;
}

.hero-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.2s forwards;
}

.hero-label span {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 2px 8px;
  margin-right: 8px;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeUp 0.6s 0.35s forwards;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
  display: block;
}

.hero-sub {
  max-width: 560px;
  margin-top: 2rem;
  font-size: 1.1rem;
  line-height: 1.65;
  color: #b0bec5;
  opacity: 0;
  animation: fadeUp 0.6s 0.5s forwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s 0.65s forwards;
}

.btn {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: #b01f1f;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgb(255 255 255 / 25%);
}
.btn-outline:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--red);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker {
  display: inline-block;
  animation: ticker 30s linear infinite;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--white);
}

.ticker span {
  margin: 0 3rem;
  opacity: 0.6;
}

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

/* ── STATS ── */
.stats {
  padding: 80px 5vw;
  background: var(--dark);
  border-top: 1px solid rgb(255 255 255 / 5%);
}

.section-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: rgb(255 255 255 / 6%);
  border: 1px solid rgb(255 255 255 / 6%);
}

.stat-cell {
  background: var(--dark);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.stat-cell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}

.stat-cell.red::before {
  background: var(--red);
}
.stat-cell.orange::before {
  background: var(--orange);
}
.stat-cell.gold::before {
  background: var(--gold);
}
.stat-cell.blue::before {
  background: #2979ff;
}

.stat-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-cell.red .stat-num {
  color: var(--red);
}
.stat-cell.orange .stat-num {
  color: var(--orange);
}
.stat-cell.gold .stat-num {
  color: var(--gold);
}
.stat-cell.blue .stat-num {
  color: #5c9bff;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
  font-family: var(--body);
}

/* ── THE LIE ── */
.lie-section {
  padding: 80px 5vw;
  background: var(--black);
}

.lie-heading {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  line-height: 1.05;
}

.lie-heading em {
  font-style: normal;
  color: var(--red);
}

.lie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgb(255 255 255 / 6%);
  border: 1px solid rgb(255 255 255 / 6%);
  margin-top: 3rem;
}

@media (width <= 640px) {
  .lie-grid {
    grid-template-columns: 1fr;
  }
}

.lie-cell {
  padding: 3rem 2.5rem;
  background: var(--dark);
}

.lie-cell-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.lie-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.9;
  margin-bottom: 1rem;
}

.lie-num.dim {
  color: #3d4f5c;
}
.lie-num.hot {
  color: var(--red);
}

.lie-desc {
  font-size: 0.95rem;
  color: #7a8a96;
  line-height: 1.6;
  max-width: 360px;
}

.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--black);
  font-family: var(--display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--gold);
  border: 1px solid rgb(255 255 255 / 6%);
  border-top: none;
  border-bottom: none;
  writing-mode: vertical-lr;
}

@media (width <= 640px) {
  .vs-divider {
    writing-mode: horizontal-tb;
    padding: 1rem;
    border: none;
    border-top: 1px solid rgb(255 255 255 / 6%);
    border-bottom: 1px solid rgb(255 255 255 / 6%);
  }
  .lie-grid {
    gap: 0;
  }
}

/* ── IMAGES SECTION ── */
.evidence {
  padding: 80px 5vw;
  background: var(--navy);
}

.evidence-heading {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.evidence-sub {
  color: var(--muted);
  margin-bottom: 3rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: auto auto;
  gap: 4px;
}

@media (width <= 700px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }
}

.photo-item {
  position: relative;
  overflow: hidden;
  background: #0d1520;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) contrast(1.05);
  transition:
    filter 0.4s,
    transform 0.4s;
}

.photo-item:hover img {
  filter: saturate(1) contrast(1.1);
  transform: scale(1.02);
}

.photo-item.tall {
  grid-row: span 2;
}

.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(transparent, rgb(0 0 0 / 85%));
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgb(255 255 255 / 70%);
  text-transform: uppercase;
}

.photo-caption strong {
  display: block;
  color: var(--white);
  margin-bottom: 2px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.photo-caption a {
  color: var(--red);
  text-decoration: none;
}

.photo-caption a:hover {
  color: #fff;
}

.photo-link {
  display: block;
  height: 100%;
  text-decoration: none;
  position: relative;
}

.photo-link-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--red);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.7rem;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  pointer-events: none;
  z-index: 2;
}

.photo-item:hover .photo-link-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* ── FEDERAL AGENCIES ── */
.federal {
  padding: 80px 5vw;
  background: var(--black);
}

.federal-heading {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  line-height: 1.05;
}

.federal-sub {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  margin-bottom: 3rem;
}

.agency-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 5%);
}

.agency-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.25rem;
  background: var(--dark);
  gap: 1rem;
}

.agency-name {
  font-size: 0.9rem;
  color: #c5d0d8;
  font-family: var(--body);
  font-weight: 500;
}

.agency-count {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.agency-item.high .agency-count {
  color: var(--red);
}
.agency-item.mid .agency-count {
  color: var(--orange);
}
.agency-item.low .agency-count {
  color: #5c9bff;
}

/* ── FLOCK 101 ── */
.flock101 {
  padding: 80px 5vw;
  background: var(--dark);
  border-top: 3px solid var(--red);
}

.flock101-heading {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.flock101-sub {
  font-size: 1.05rem;
  color: #9aa6b2;
  line-height: 1.6;
  max-width: 60ch;
  margin-bottom: 2.5rem;
}

.flock101-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 5%);
}

.flock101-item {
  background: var(--dark);
  padding: 2rem;
  border-left: 3px solid var(--red);
  transition: background 0.2s;
}

.flock101-item:hover {
  background: #161b22;
}

.flock101-q {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
  color: var(--white);
}

.flock101-a {
  font-size: 0.95rem;
  color: #9aa6b2;
  line-height: 1.7;
}

.flock101-a a {
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid rgb(220 38 38 / 30%);
  transition:
    color 0.15s ease,
    border-color 0.15s ease;
}

.flock101-a a:hover {
  color: #fff;
  border-color: #fff;
}

.flock101-a a[target="_blank"] {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}

.flock101-a a[target="_blank"]:hover {
  border-color: #fff;
}

/* ── WHAT WE WANT ── */
.demands {
  padding: 80px 5vw;
  background: var(--dark);
  border-top: 3px solid var(--red);
}

.demands-heading {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.demand-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 5%);
}

.demand-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  background: var(--dark);
  transition: background 0.2s;
}

.demand-item:hover {
  background: #161b22;
}

.demand-num {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  font-family: var(--display);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--white);
  padding: 2rem;
}

.demand-body {
  padding: 2rem;
}

.demand-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.demand-desc {
  font-size: 0.95rem;
  color: #7a8a96;
  line-height: 1.65;
}

/* ── UPCOMING MEETINGS ── */
.meetings {
  padding: 80px 5vw;
  background: var(--dark);
  border-top: 3px solid var(--red);
}

.meetings-heading {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.meetings-sub {
  font-size: 1.05rem;
  color: #9aa6b2;
  line-height: 1.6;
  max-width: 60ch;
  margin-bottom: 2rem;
}

/* ── SAMPLE COMMENT ── */
.comment {
  padding: 80px 5vw;
  background: var(--black);
  border-top: 3px solid var(--red);
}

.comment-heading {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 1rem;
}

.comment-heading em {
  color: var(--red);
  font-style: normal;
}

.comment-sub {
  font-size: 1.05rem;
  color: #9aa6b2;
  line-height: 1.6;
  max-width: 60ch;
  margin-bottom: 2.5rem;
}

.comment-jurisdictions {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  margin-bottom: 1rem;
  max-width: 70ch;
}

.comment-jurisdiction {
  flex: 1 1 240px;
  background: var(--black);
  border: 1px solid rgb(255 255 255 / 10%);
  color: #9aa6b2;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}

.comment-jurisdiction:hover {
  color: #fff;
  border-color: rgb(255 255 255 / 25%);
}

.comment-jurisdiction.active {
  background: #1a0808;
  color: #fff;
  border-color: var(--red);
  border-left-width: 3px;
}

.comment-tabs {
  display: flex;
  gap: 1px;
  margin-bottom: 1px;
  max-width: 70ch;
}

.comment-tab {
  flex: 1;
  background: var(--dark);
  border: 1px solid rgb(255 255 255 / 8%);
  border-bottom: none;
  color: #9aa6b2;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 1rem;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.comment-tab:hover {
  color: #fff;
}

.comment-tab.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.comment-box.hidden {
  display: none;
}

.comment-box {
  background: var(--dark);
  border-left: 3px solid var(--red);
  padding: 2rem;
  font-family: var(--mono);
  font-size: 0.95rem;
  line-height: 1.75;
  color: #cdd6df;
  max-width: 70ch;
}

.comment-box p {
  margin: 0 0 1rem;
}

.comment-box p:last-child {
  margin-bottom: 0;
}

.comment-box strong {
  color: #fff;
  font-weight: 700;
}

.comment-blank {
  display: inline-block;
  padding: 0 0.4rem;
  border-bottom: 1px dashed var(--red);
  color: var(--red);
  font-style: italic;
}

.comment-copy {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.85rem 1.4rem;
  background: var(--red);
  color: #fff;
  border: none;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease;
}

.comment-copy:hover {
  background: #b91c1c;
}

.comment-copy.copied {
  background: #16a34a;
}

/* ── EMAIL OFFICIALS ── */
.email-officials {
  padding: 80px 5vw;
  background: var(--dark);
  border-top: 3px solid var(--red);
}

.email-heading {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.email-sub {
  font-size: 1.05rem;
  color: #9aa6b2;
  line-height: 1.6;
  max-width: 60ch;
  margin-bottom: 2rem;
}

.email-jurisdictions {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  margin-bottom: 2rem;
  max-width: 70ch;
}

.email-jurisdiction {
  flex: 1 1 240px;
  background: var(--black);
  border: 1px solid rgb(255 255 255 / 10%);
  color: #9aa6b2;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}

.email-jurisdiction:hover {
  color: #fff;
  border-color: rgb(255 255 255 / 25%);
}

.email-jurisdiction.active {
  background: #1a0808;
  color: #fff;
  border-color: var(--red);
  border-left-width: 3px;
}

.email-panel.hidden {
  display: none;
}

.email-cta {
  margin-bottom: 1.5rem;
}

.email-people-label,
.email-template-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #9aa6b2;
  line-height: 1.6;
  max-width: 70ch;
  margin: 1.5rem 0 0.75rem;
}

.email-people-label code {
  font-size: 0.85em;
  background: var(--black);
  padding: 0.1rem 0.35rem;
  color: var(--red);
}

.email-people {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 5%);
  max-width: 70ch;
}

.email-people li {
  background: var(--black);
}

.email-people a {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.25rem;
  color: #cdd6df;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
}

.email-people a:hover {
  background: #161b22;
  border-left-color: var(--red);
  color: #fff;
}

.email-people strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.email-people span {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5c6975;
}

/* ── MAILING LIST SIGNUP ── */
.signup {
  padding: 80px 5vw;
  background: var(--dark);
  border-top: 3px solid var(--red);
}

.signup-heading {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.signup-sub {
  font-size: 1.05rem;
  color: #9aa6b2;
  line-height: 1.6;
  max-width: 60ch;
  margin-bottom: 2rem;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 560px;
  padding: 2rem;
  background: var(--black);
  border-left: 3px solid var(--red);
}

.signup-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.signup-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9aa6b2;
}

.signup-label em {
  font-style: normal;
  color: #5c6975;
  text-transform: none;
  letter-spacing: 0.04em;
}

.signup-form input {
  appearance: none;
  background: var(--dark);
  border: 1px solid rgb(255 255 255 / 8%);
  border-left: 2px solid rgb(220 38 38 / 25%);
  color: #fff;
  font-family: var(--barlow, system-ui);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}

.signup-form input:focus {
  outline: none;
  border-color: rgb(255 255 255 / 18%);
  border-left-color: var(--red);
  background: #161b22;
}

.signup-submit {
  align-self: flex-start;
  background: var(--red);
  color: #fff;
  border: none;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 1.6rem;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.15s ease;
}

.signup-submit:hover {
  background: #b91c1c;
}

.signup-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.signup-success {
  max-width: 560px;
  padding: 2rem;
  background: var(--black);
  border-left: 3px solid #16a34a;
  color: #cdd6df;
  font-family: var(--barlow, system-ui);
  font-size: 1rem;
  line-height: 1.6;
}

.signup-success p {
  margin: 0 0 0.5rem;
}

.signup-success p:last-child {
  margin-bottom: 0;
  color: #9aa6b2;
}

.signup-success strong {
  color: #fff;
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ── ACTION ── */
.action {
  padding: 80px 5vw;
  background: var(--red);
  text-align: center;
}

.action h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 5rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.action p {
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  opacity: 0.85;
  line-height: 1.6;
}

.action .btn-white {
  background: var(--white);
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  transition: all 0.2s;
  margin: 0.4rem;
}

.action .btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgb(0 0 0 / 30%);
}

.action .btn-dark {
  background: rgb(0 0 0 / 25%);
  color: var(--white);
  border: 1px solid rgb(255 255 255 / 40%);
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  margin: 0.4rem;
}

.action .btn-dark:hover {
  background: rgb(0 0 0 / 40%);
  transform: translateY(-3px);
}

/* ── FOOTER ── */
footer {
  padding: 2.5rem 5vw;
  background: var(--black);
  border-top: 1px solid rgb(255 255 255 / 6%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

footer p {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}

footer .footer-links {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

footer .footer-links a {
  color: var(--red);
  text-decoration: none;
  transition: color 0.15s ease;
}

footer .footer-links a:hover {
  color: #fff;
}

footer .footer-links span {
  color: var(--muted);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5vw;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgb(10 12 15 / 92%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgb(255 255 255 / 6%);
}

.nav-logo {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span {
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

@media (width <= 560px) {
  .nav-links {
    display: none;
  }
}

/* ── BLOCKQUOTE ── */
.pull-quote {
  border-left: 3px solid var(--red);
  padding: 1.5rem 2rem;
  margin: 3rem 0;
  background: rgb(214 40 40 / 5%);
  font-family: var(--display);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--white);
}

.pull-quote cite {
  display: block;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-top: 1rem;
  font-style: normal;
}

/* ── GV SECTION ── */
.gv-section {
  padding: 80px 5vw;
  background: #0c1420;
  border-top: 1px solid rgb(255 255 255 / 4%);
}
