/* MNOSS Legal Defense Fund - Main Stylesheet */
/* Version: 1.2.0 */


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

:root {
  --blue: #b51e22;
  --blue-dark: #8c1619;
  --blue-light: #d23b3f;
  --gold: #e9c9a6;
  --gold-light: #f2dec8;
  --brown: #6c4119;
  --brown-dark: #543213;
  --black: #0f0f0a;
  --white: #ffffff;
  --off-white: #f8f6f2;
  --cream: #f2ede3;
  --border: rgba(15, 15, 10, 0.1);
  --border-mid: rgba(15, 15, 10, 0.15);
  --font-head: 'Rowdies', Georgia, serif;
  --font-body: 'Nunito', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.65;
  position: relative;
}

/* ── NATIVE PATTERN BACKGROUND ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url('../images/pattern-tile.png');
  background-repeat: repeat;
  background-size: 280px 280px;
}

body::after {
  display: none;
}

nav,
main,
footer,
#intro-overlay {
  position: relative;
  z-index: 1;
}

/* ── INTRO OVERLAY ── */
#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

#intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 110px;
  background: var(--black);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 82px;
  width: auto;
}

.nav-logo img.nav-logomark {
  height: 48px;
  width: auto;
}

.nav-site-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.15;
  font-family: var(--font-head);
  color: var(--brown);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
}

.nav-site-title .line-1 {
  font-weight: 400;
}

.nav-site-title .line-2 {
  font-weight: 700;
}

/* WordPress outputs the_custom_logo() as <a class="custom-logo-link"><img class="custom-logo">,
       which the browser hoists out of the surrounding .nav-logo <a> (no nested anchors allowed),
       so it needs its own sizing rule matching .nav-logo img. */
.custom-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.custom-logo-link img.custom-logo {
  height: 82px;
  width: auto;
  max-width: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
  justify-self: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.4s ease, transform var(--transition);
  position: relative;
  padding-bottom: 5px;
  display: inline-block;
}

/* underline bar — hidden by default */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform var(--transition), background var(--transition);
  transform-origin: left;
}

/* hover: scale up, blue underline */
.nav-links a:hover {
  color: #fff;
  transform: scale(1.08);
}

.nav-links a:hover::after {
  background: var(--blue);
  transform: scaleX(1);
}

/* active section: gold text, yellow underline */
.nav-links a.section-active {
  color: var(--gold);
}

.nav-links a.section-active::after {
  background: var(--gold);
  transform: scaleX(1);
}

.nav-cta {
  justify-self: end;
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 9px 22px !important;
  border-radius: 2px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-decoration: none !important;
  border: none !important;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--blue) !important;
  color: var(--white) !important;
}

.nav-cta:focus {
  text-decoration: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--brown);
  transition: var(--transition);
  border-radius: 2px;
}

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 110px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 199;
  flex-direction: column;
  padding: 2rem 2.5rem;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(108, 65, 25, 0.15);
  text-decoration: none;
  color: var(--brown);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.mobile-menu-item:hover {
  color: var(--gold);
}

.mobile-menu-item.active {
  color: var(--brown);
}

/* Active underline in mobile */
.mobile-menu-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--brown);
}

.mobile-menu-item:last-child {
  border-bottom: none;
}

/* Feather SVG for active page */
.feather-mark {
  width: 18px;
  height: 36px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-menu-item.active .feather-mark {
  opacity: 1;
}

/* ── HERO ── */
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-headline .accent {
  color: var(--blue);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--black);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  padding: 15px 34px;
  border-radius: 2px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--blue);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--blue);
  padding: 15px 34px;
  border-radius: 2px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--blue);
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* Hero video box */
.hero-visual {
  position: relative;
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--black);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-mid);
  box-shadow: 0 20px 60px rgba(15, 15, 10, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(181, 30, 34, 0.07), rgba(181, 30, 34, 0.08));
}

.play-btn {
  position: relative;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(181, 30, 34, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 3px solid rgba(255, 255, 255, 0.3);
  transition: transform var(--transition), background var(--transition);
}

.play-btn:hover {
  transform: scale(1.08);
  background: var(--gold);
}

.video-label {
  position: relative;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--black);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  overflow: hidden;
  height: 52px;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
}

.ticker-item {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0 3rem;
  color: var(--white);
}

.ticker-item::before {
  content: '◆';
  margin-right: 1.5rem;
  color: var(--gold);
}

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

  100% {
    transform: translateX(-50%);
  }
}

/* ── BEXPART-INSPIRED ENHANCEMENTS ── */

/* Hero — angular diagonal cutout on right side */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  background: var(--white);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: var(--off-white);
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Stats bar — BExpart bold counter style */
.stat-number {
  font-size: 3rem;
  position: relative;
  display: inline-block;
}

.stat-number::after {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--gold);
  margin: 0.4rem auto 0;
}

/* Issue section — numbered cards like BExpart services */
.issue-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.issue-card::before {
  content: attr(data-num);
  position: absolute;
  top: -10px;
  right: 16px;
  font-family: var(--font-head);
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(181, 30, 34, 0.08);
  line-height: 1;
  pointer-events: none;
}

.issue-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Compare section — diagonal top edge like BExpart */
.compare-section {
  position: relative;
  background: var(--off-white);
}

/* Urgency band — blue, clean */
.urgency-band {
  position: relative;
  margin-top: 0;
}

/* Section numbers — BExpart style */
.section-num {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(181, 30, 34, 0.12);
  line-height: 1;
  position: absolute;
  top: -1rem;
  left: 2.5rem;
  pointer-events: none;
}

/* Video embed — angular frame */
.video-embed-area {
  clip-path: polygon(0 0, 96% 0, 100% 4%, 100% 100%, 4% 100%, 0 96%);
}

/* Donate section split background */
.donate-section {
  position: relative;
  background: var(--white);
}

.donate-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: var(--cream);
  z-index: 0;
}

.donate-inner {
  position: relative;
  z-index: 1;
}

/* CTA button — BExpart style with arrow animation */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -60px;
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%);
  transition: left 0.3s ease;
}

.btn-primary:hover::after {
  left: 110%;
}

/* ── STATS ── */
.stats-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 2.5rem 1rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

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

.stat-number {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
  display: block;
  text-transform: uppercase;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 0.5rem;
  display: block;
}

/* ── SECTIONS ── */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2.5rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-head);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.section-headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--brown);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.section-headline .accent {
  color: var(--blue);
}

.section-body {
  font-size: 1rem;
  color: var(--black);
  line-height: 1.8;
  max-width: 560px;
}

/* ── ISSUE SECTION — DYNAMIC ── */
#issue {
  background: var(--white);
  overflow: hidden;
}

/* Full-bleed dark intro band */
.issue-intro-band {
  background: var(--black);
  padding: 5rem 2.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.issue-intro-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/pattern-tile.png') repeat;
  background-size: 280px;
  opacity: 0.06;
  pointer-events: none;
}

.issue-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Animated headline — each word slides up */
.issue-headline-wrap .section-label {
  color: var(--gold);
}

.issue-headline-wrap .section-label::before {
  background: var(--gold);
}

.issue-headline-anim {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.issue-headline-anim .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  margin-right: 0.3em;
}

.issue-headline-anim .word.accent-word {
  color: var(--gold);
}

.issue-headline-anim .word.in {
  opacity: 1;
  transform: translateY(0);
}

.issue-intro-body {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.issue-intro-body.in {
  opacity: 1;
  transform: translateY(0);
}

.issue-intro-body strong {
  color: var(--white);
}

/* Right side — big stat callout */
.issue-stat-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.issue-stat {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.issue-stat.in {
  opacity: 1;
  transform: translateX(0);
}

.issue-stat-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.issue-stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--font-head);
  display: block;
  margin-top: 0.3rem;
  padding-left: 2px;
  border-left: 2px solid var(--blue);
  padding-left: 0.75rem;
}

/* Cards grid below */
.issue-cards-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2.5rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.issue-card-v2 {
  display: grid;
  grid-template-columns: 72px 1fr;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  overflow: hidden;
}

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

.issue-card-v2.in {
  opacity: 1;
  transform: translateX(0);
}

.card-num-col {
  background: var(--black);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: background var(--transition), color var(--transition);
}

.card-content {
  padding: 1.5rem 2rem;
}

.issue-card-v2 h3 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.35rem;
}

.issue-card-v2 p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
}

@media (max-width: 640px) {
  .issue-cards-grid {
    padding: 2rem 1rem 3rem;
  }

  .card-num-col {
    min-height: 80px;
    font-size: 0.85rem;
  }
}

/* Compare */
/* ── INTERACTIVE COMPARE TABLE ── */
.compare-section {
  background: var(--off-white);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3rem;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.07);
}

.compare-table thead tr {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  background: var(--black);
}

.compare-table thead th {
  padding: 1.25rem 1.75rem;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.compare-table thead th:first-child {
  color: rgba(255, 255, 255, 0.4);
}

.compare-table thead th.th-tribes {
  color: var(--gold);
  border-left: 3px solid var(--blue);
}

.compare-table thead th.th-kalshi {
  color: rgba(255, 255, 255, 0.6);
  border-left: 3px solid var(--brown);
}

.compare-table tbody tr {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--border);
  background: var(--white);
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  cursor: default;
}

.compare-table tbody tr:last-child {
  border-bottom: none;
}

.compare-table tbody tr.row-visible {
  opacity: 1;
  transform: translateX(0);
}

.compare-table td {
  padding: 1.1rem 1.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
  vertical-align: middle;
  transition: background 0.25s ease;
}

.cmp-label {
  color: var(--black);
  font-weight: 600;
  font-size: 0.88rem;
}

.cmp-tribes {
  border-left: 3px solid var(--blue);
  color: var(--black);
  text-align: center;
}

.cmp-kalshi {
  border-left: 3px solid var(--brown);
  color: var(--black);
  text-align: center;
}

/* Animated pill indicator */
.cmp-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cmp-pill.yes {
  background: rgba(181, 30, 34, 0.12);
  color: var(--blue);
  border: 1px solid rgba(181, 30, 34, 0.25);
}

.cmp-pill.no {
  background: rgba(108, 65, 25, 0.08);
  color: var(--brown);
  border: 1px solid rgba(108, 65, 25, 0.2);
}

.cmp-pill.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered row animation */
.compare-table tbody tr {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.25s ease;
}

.compare-table tbody tr.row-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Video section */
.video-section {
  background: var(--white);
}

.video-embed-area {
  margin-top: 3rem;
  position: relative;
  aspect-ratio: 16/9;
  background: var(--black);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.play-btn-large {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(181, 30, 34, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 4px solid rgba(255, 255, 255, 0.22);
  transition: transform var(--transition), background var(--transition);
  animation: pulse-ring 2.5s ease-out infinite;
}

.play-btn-large:hover {
  transform: scale(1.06);
  background: var(--gold);
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(181, 30, 34, 0.5);
  }

  70% {
    box-shadow: 0 0 0 22px rgba(181, 30, 34, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(181, 30, 34, 0);
  }
}

.video-embed-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* Donate */
/* Kept for form elements used in fight CTA */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.amount-btn {
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--black);
  padding: 11px 8px;
  border-radius: 2px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.amount-btn:hover,
.amount-btn.active {
  border-color: var(--blue);
  background: rgba(181, 30, 34, 0.07);
  color: var(--blue);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.4rem;
}

.form-group input {
  width: 100%;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--black);
  padding: 11px 14px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus {
  border-color: var(--blue);
}

.form-group input::placeholder {
  color: rgba(15, 15, 10, 0.28);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-disclaimer {
  font-size: 0.7rem;
  color: rgba(15, 15, 10, 0.45);
  line-height: 1.5;
  margin-top: 1rem;
}

.btn-donate {
  width: 100%;
  background: var(--blue);
  color: var(--white);
  padding: 16px;
  border: 2px solid var(--blue);
  border-radius: 2px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 1.25rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-donate:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-1px);
}

/* ── FIGHT CTA SECTION ── */
.fight-cta-section {
  background: var(--blue);
  position: relative;
  overflow: hidden;
}

.fight-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/pattern-tile.png') repeat;
  background-size: 280px;
  opacity: 0.06;
  pointer-events: none;
}

.fight-cta-centered {
  max-width: 760px;
  margin: 0 auto;
  padding: 6rem 2.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.fight-cta-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.fight-cta-accent {
  color: var(--gold);
}

.fight-cta-body {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.btn-fight-donate {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  color: var(--blue);
  padding: 17px 48px;
  border-radius: 2px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--white);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-fight-donate:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ── CONTACT SECTION — blue full-bleed ── */
.contact-section {
  background: var(--blue);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/pattern-tile.png') repeat;
  background-size: 280px;
  opacity: 0.06;
  pointer-events: none;
}

.contact-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 6rem 2.5rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact-inner .section-label {
  color: var(--gold);
  justify-content: center;
}

.contact-inner .section-label::before {
  background: var(--gold);
}

.contact-inner .section-headline {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.contact-inner .section-headline .accent {
  color: var(--gold);
}

.contact-intro {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 2.5rem;
  text-align: left;
}

.contact-form .form-group label {
  color: rgba(255, 255, 255, 0.65);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  padding: 12px 14px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.contact-form select option {
  background: var(--blue-dark);
  color: var(--white);
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-info-row {
  display: none;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.contact-info-icon {
  color: var(--gold);
}

.contact-info-label {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.1rem;
}

.contact-info-value {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
}

.btn-contact-submit {
  width: 100%;
  background: var(--white);
  color: var(--blue);
  padding: 16px;
  border: 2px solid var(--white);
  border-radius: 2px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 1.25rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-contact-submit:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.contact-success {
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.contact-success.show {
  display: flex;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 3.5rem 2.5rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(108, 65, 25, 0.2);
}

.footer-brand img {
  display: block;
  margin: 0 auto 1.25rem auto;
  width: 220px;
  height: auto;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  max-width: 380px;
  margin: 0 auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(108, 65, 25, 0.12);
  margin-bottom: 2rem;
  text-align: center;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1rem;
  text-align: center;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.stagger>* {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger.visible>*:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}

.stagger.visible>*:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}

.stagger.visible>*:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.2s;
}

.stagger.visible>*:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.3s;
}

.hero-animate {
  opacity: 0;
  transform: translateY(16px);
  animation: hero-in 0.8s ease forwards;
}

.hero-animate:nth-child(1) {
  animation-delay: 0.15s;
}

.hero-animate:nth-child(2) {
  animation-delay: 0.3s;
}

.hero-animate:nth-child(3) {
  animation-delay: 0.45s;
}

.hero-animate:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes hero-in {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    max-width: 580px;
    margin: 0 auto;
  }

  .issue-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .compare-col.tribes {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .donate-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    display: flex;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .issue-intro-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .issue-stat-block {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

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

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

  .stat-item:nth-child(3) {
    border-right: 1px solid var(--border);
    border-top: 1px solid var(--border);
  }

  .stat-item:nth-child(4) {
    border-right: none;
    border-top: 1px solid var(--border);
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {

  .compare-table thead tr,
  .compare-table tbody tr {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "label label"
      "tribes kalshi";
    row-gap: 0.6rem;
  }

  .compare-table thead tr {
    row-gap: 0 !important;
  }

  .compare-table thead th:first-child,
  .compare-table .cmp-label {
    grid-area: label;
    text-align: center;
  }

  .compare-table thead th.th-tribes,
  .compare-table .cmp-tribes {
    grid-area: tribes;
    border: 0;
    text-align: center;
  }

  .compare-table thead th.th-kalshi,
  .compare-table .cmp-kalshi {
    grid-area: kalshi;
    border: 0;
    text-align: center;
  }

  .compare-table thead th {
    padding: 0.5rem 0.6rem;
    font-size: 0.65rem;
    letter-spacing: 0.04em;
  }

  .compare-table td {
    padding: 0.6rem 0.6rem;
    font-size: 0.82rem;
  }

  .compare-table .cmp-label {
    padding-bottom: 0;
  }

  .cmp-pill {
    font-size: 0.6rem;
    letter-spacing: 0.04em;
    padding: 4px 8px;
    white-space: normal;
    text-align: center;
  }
}

/* ─── GRAVITY FORMS STYLING — Matches Original Custom Form Implementation ─── */

/* Main wrapper override */
.mnoss-contact-form_wrapper.gform_wrapper,
.gravity-theme.gform-theme--no-framework.mnoss-contact-form_wrapper {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  max-width: 100% !important;
}

/* Hide form heading and description */
.mnoss-contact-form_wrapper .gform_heading {
  display: none !important;
}

/* Hide the required legend */
.mnoss-contact-form_wrapper .gform_required_legend {
  display: none !important;
}

/* Form body */
.mnoss-contact-form_wrapper .gform-body {
  margin-bottom: 0;
  padding: 0;
}

/* Form fields container */
.mnoss-contact-form_wrapper .gform_fields {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  column-gap: 0.75rem !important;
}

/* Individual field styling */
.mnoss-contact-form_wrapper .gfield {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
}

/* Honeypot field — hidden */
.mnoss-contact-form_wrapper .gfield--type-honeypot {
  display: none !important;
}

/* Field labels — match original styling */
.mnoss-contact-form_wrapper .gfield_label {
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.4rem !important;
  display: block !important;
  font-family: var(--font-body);
}

/* Input container */
.mnoss-contact-form_wrapper .ginput_container {
  width: 100%;
}

/* Input, select, and textarea — match original exactly */
.mnoss-contact-form_wrapper input[type="text"],
.mnoss-contact-form_wrapper input[type="email"],
.mnoss-contact-form_wrapper input[type="tel"],
.mnoss-contact-form_wrapper input[type="number"],
.mnoss-contact-form_wrapper input[type="password"],
.mnoss-contact-form_wrapper select,
.mnoss-contact-form_wrapper textarea {
  width: 100% !important;
  background: rgba(255, 255, 255, 0.09) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: var(--white) !important;
  padding: 12px 14px !important;
  border-radius: 2px !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  outline: none !important;
  transition: border-color var(--transition) !important;
  appearance: none !important;
}

/* Focus states */
.mnoss-contact-form_wrapper input[type="text"]:focus,
.mnoss-contact-form_wrapper input[type="email"]:focus,
.mnoss-contact-form_wrapper input[type="tel"]:focus,
.mnoss-contact-form_wrapper input[type="number"]:focus,
.mnoss-contact-form_wrapper input[type="password"]:focus,
.mnoss-contact-form_wrapper select:focus,
.mnoss-contact-form_wrapper textarea:focus {
  border-color: var(--gold) !important;
  outline: none !important;
}

/* Placeholder text — match original */
.mnoss-contact-form_wrapper input[type="text"]::placeholder,
.mnoss-contact-form_wrapper input[type="email"]::placeholder,
.mnoss-contact-form_wrapper input[type="tel"]::placeholder,
.mnoss-contact-form_wrapper input[type="number"]::placeholder,
.mnoss-contact-form_wrapper input[type="password"]::placeholder,
.mnoss-contact-form_wrapper textarea::placeholder {
  color: rgba(255, 255, 255, 0.28) !important;
}

/* Select dropdown styling */
.mnoss-contact-form_wrapper select {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.292893 0.292893C0.683417 -0.097631 1.31658 -0.097631 1.70711 0.292893L5 3.58579L8.29289 0.292893C8.68342 -0.0976311 9.31658 -0.0976311 9.70711 0.292893C10.0976 0.683417 10.0976 1.31658 9.70711 1.70711L5.70711 5.70711C5.31658 6.09763 4.68342 6.09763 4.29289 5.70711L0.292893 1.70711C-0.0976311 1.31658 -0.0976311 0.683418 0.292893 0.292893Z' fill='rgba(255, 255, 255, 0.5)'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  padding-right: 38px !important;
}

.mnoss-contact-form_wrapper select option {
  background: var(--blue-dark) !important;
  color: var(--white) !important;
}

/* Textarea sizing — match original */
.mnoss-contact-form_wrapper textarea {
  resize: vertical !important;
  min-height: 130px !important;
}

/* Form footer — submit button */
.mnoss-contact-form_wrapper .gform-footer {
  padding: 0 !important;
  border: none !important;
  background: none !important;
  margin: 1.25rem 0 0 0 !important;
  display: block !important;
}

/* Submit button — match original styling */
.mnoss-contact-form_wrapper .gform_button,
.mnoss-contact-form_wrapper button[type="submit"],
.mnoss-contact-form_wrapper input[type="submit"] {
  width: 100% !important;
  background: var(--white) !important;
  color: var(--blue) !important;
  padding: 16px !important;
  border: 2px solid var(--white) !important;
  border-radius: 2px !important;
  font-family: var(--font-head) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  margin-top: 1.25rem !important;
  margin-bottom: 0 !important;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
}

.mnoss-contact-form_wrapper .gform_button:hover,
.mnoss-contact-form_wrapper button[type="submit"]:hover,
.mnoss-contact-form_wrapper input[type="submit"]:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
  border-color: var(--gold) !important;
  transform: translateY(-1px) !important;
}

/* Confirmation message */
.mnoss-contact-form_wrapper .gform_confirmation_message {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  margin-top: 1.25rem !important;
  padding: 14px 18px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 2px !important;
  font-family: var(--font-head) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--white) !important;
}

/* Error states */
.mnoss-contact-form_wrapper .gform_error {
  color: #ffcccc;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.mnoss-contact-form_wrapper .gfield_error input,
.mnoss-contact-form_wrapper .gfield_error select,
.mnoss-contact-form_wrapper .gfield_error textarea {
  border-color: rgba(255, 200, 200, 0.8) !important;
  background-color: rgba(255, 200, 200, 0.08) !important;
}

.mnoss-contact-form_wrapper .gfield_error .gfield_label {
  color: #ffcccc;
}

/* Field descriptions */
.mnoss-contact-form_wrapper .gfield_description {
  font-size: 0.7rem !important;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.15rem !important;
  padding-top: 0 !important;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

/* Required asterisk */
.mnoss-contact-form_wrapper .gfield_required {
  color: var(--gold) !important;
  margin-left: 0.25rem;
}