/* ════════════════════════════════════════════════
   WEAPONIZED JUSTICE — Dark Editorial Theme
   ════════════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
  --black: #060606;
  --white: #f2ede6;
  --red: #9b1c1c;
  --red-bright: #c0392b;
  --red-dark: #5c0a0a;
  --gray: #111111;
  --gray-mid: #1a1a1a;
  --gray-light: #242424;
  --paper: #d4c5a9;
  --paper-dark: #8a7a62;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Crimson Text', Georgia, serif;
  overflow-x: hidden;
}

/* ─── FILM GRAIN OVERLAY ─── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 500;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.5s, backdrop-filter 0.5s;
}
nav.scrolled {
  background: rgba(6,6,6,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(155,28,28,0.3);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 4px;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--red-bright); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Courier Prime', monospace;
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(242,237,230,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

/* ─── SECTION UTILITIES ─── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 60px;
}

.sec-label {
  font-family: 'Courier Prime', monospace;
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red-bright);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.sec-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--red-bright);
}
.sec-label-center {
  justify-content: center;
}
.sec-label-center::before { display: none; }

.sec-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.88;
  letter-spacing: 2px;
  margin-bottom: 60px;
}

.section-lead {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: rgba(242,237,230,0.85);
  max-width: 700px;
  margin-top: 48px;
}
.section-lead-center {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ─── SECTION BACKGROUNDS ─── */
.section-dark {
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.section-mid {
  background: var(--gray);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.section-accent {
  background: var(--gray-mid);
  border-top: 3px solid var(--red-dark);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* ─── BUTTONS ─── */
.btn-primary {
  font-family: 'Courier Prime', monospace;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red-bright);
  padding: 18px 40px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-primary:hover {
  background: #d94040;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(192,57,43,0.3);
}
.btn-full {
  width: 100%;
  text-align: center;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-ghost {
  font-family: 'Courier Prime', monospace;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--paper);
  background: transparent;
  padding: 16px 40px;
  border: 1px solid rgba(242,237,230,0.25);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.btn-ghost:hover {
  border-color: var(--red-bright);
  color: var(--red-bright);
  background: rgba(192,57,43,0.06);
}

/* ═══════════════════════════════════
   HERO
   ═══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 60px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.25) saturate(0.5);
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(6,6,6,0.3) 0%, rgba(6,6,6,0.1) 35%, rgba(6,6,6,0.88) 100%),
    linear-gradient(to right, rgba(6,6,6,0.6) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  opacity: 0;
  animation: fadeUp 1s forwards 0.3s;
}

.hero-kicker {
  font-family: 'Courier Prime', monospace;
  font-size: 0.68rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--red-bright);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.hero-kicker::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--red-bright);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.88;
  letter-spacing: 3px;
  color: var(--white);
}
.hero-title em {
  color: var(--red-bright);
  font-style: normal;
}

.hero-quote {
  font-family: 'Crimson Text', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.65;
  color: rgba(242,237,230,0.65);
  border-left: 3px solid var(--red-bright);
  padding-left: 20px;
  margin: 36px 0;
  max-width: 540px;
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(242,237,230,0.55);
  margin-bottom: 32px;
}
.hero-desc strong {
  color: var(--red-bright);
  font-weight: 600;
}

/* ─── Counter ─── */
.counter-box {
  margin-bottom: 28px;
}
#voice-count {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
  display: block;
}
.counter-label {
  font-family: 'Courier Prime', monospace;
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--paper-dark);
}

/* ─── Hero Form ─── */
.hero-form {
  display: flex;
  max-width: 480px;
}
.hero-form input[type="email"] {
  flex: 1;
  padding: 16px 18px;
  border: 1px solid rgba(242,237,230,0.12);
  border-right: none;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: 'Crimson Text', serif;
  font-size: 1rem;
  transition: border-color 0.2s;
}
.hero-form input[type="email"]:focus {
  outline: none;
  border-color: var(--red-bright);
}
.hero-form input[type="email"]::placeholder {
  color: rgba(242,237,230,0.3);
}
.hero-form .btn-primary {
  clip-path: none;
  padding: 16px 28px;
  white-space: nowrap;
  border: 1px solid var(--red-bright);
  border-left: none;
}

/* ─── Hero Success Panel ─── */
.hero-success {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  max-width: 480px;
}
.hero-success.in {
  opacity: 1;
  transform: translateY(0);
}
.hero-success-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
}
.hero-success-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(242,237,230,0.68);
  margin-bottom: 28px;
}
.hero-success-btn {
  display: inline-block;
  margin-bottom: 16px;
}
.hero-success-back {
  display: block;
  font-family: 'Courier Prime', monospace;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(242,237,230,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.hero-success-back:hover {
  color: var(--white);
}

/* ═══════════════════════════════════
   THE TRUTH
   ═══════════════════════════════════ */
.truth-image-wrap {
  overflow: hidden;
  border-top: 2px solid var(--red-dark);
  margin-bottom: 0;
}
.truth-image-wrap img {
  width: 100%;
  display: block;
}

.truth-bill-link {
  display: inline-block;
  margin-top: 24px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(192,57,43,0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.truth-bill-link:hover {
  color: #d94040;
  border-color: #d94040;
}

/* ═══════════════════════════════════
   THE IMBALANCE
   ═══════════════════════════════════ */
.imbalance-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.imbalance-img {
  overflow: hidden;
  border-top: 2px solid var(--red-dark);
}
.imbalance-img img {
  width: 100%;
  display: block;
}
.imbalance-text p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: 1.5px;
  color: rgba(242,237,230,0.85);
}
.imbalance-cite {
  display: block;
  margin-top: 16px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  color: var(--red-bright);
  font-style: normal;
}

/* ═══════════════════════════════════
   THE UNKNOWN BILL
   ═══════════════════════════════════ */
.bill-card {
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--red-dark);
}
.bill-card img {
  width: 100%;
  display: block;
  filter: brightness(0.65);
  transition: filter 0.5s, transform 0.5s;
}
.bill-card:hover img {
  filter: brightness(0.5);
  transform: scale(1.02);
}
.bill-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 64px;
  background: linear-gradient(transparent, rgba(6,6,6,0.92));
}
.bill-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 2px;
  color: var(--white);
  max-width: 600px;
  margin-bottom: 16px;
}
.bill-subline {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.65;
  color: rgba(242,237,230,0.65);
  max-width: 600px;
  margin-bottom: 20px;
}
.bill-cta {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--red-bright);
  max-width: 600px;
}

/* ═══════════════════════════════════
   ACCOUNTABILITY
   ═══════════════════════════════════ */
.review-badge {
  display: inline-block;
  border: 2px solid var(--red-bright);
  padding: 10px 32px;
  margin-bottom: 40px;
  position: relative;
  transform: rotate(-3deg);
}
.review-badge-text {
  font-family: 'Courier Prime', monospace;
  font-size: 1rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--red-bright);
  font-weight: 700;
}
.accountability-photo {
  max-width: 300px;
  width: 100%;
  overflow: hidden;
  border-top: 2px solid var(--red-dark);
  margin-bottom: 40px;
}
.accountability-photo img {
  width: 100%;
  display: block;
  filter: grayscale(0.3) brightness(0.85);
  transition: filter 0.5s;
}
.accountability-photo:hover img {
  filter: grayscale(0) brightness(1);
}

/* ═══════════════════════════════════
   THE LEGACY — PARALLAX QUOTE
   ═══════════════════════════════════ */
.section-legacy {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.legacy-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.2) saturate(0.4);
}

.legacy-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(6,6,6,0.3) 0%, rgba(6,6,6,0.7) 100%);
}

.legacy-content {
  position: relative;
  z-index: 1;
  padding: 80px 60px;
  max-width: 800px;
}

.legacy-quote {
  font-family: 'Crimson Text', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1.55;
  color: rgba(242,237,230,0.88);
}

/* ═══════════════════════════════════
   INTAKE FORM
   ═══════════════════════════════════ */
.intake-form {
  max-width: 640px;
}

.form-group {
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.form-group:last-of-type {
  border-bottom: none;
  padding-bottom: 20px;
}

.form-group-label {
  font-family: 'Courier Prime', monospace;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 20px;
}

.form-sublabel {
  display: block;
  font-size: 0.95rem;
  color: rgba(242,237,230,0.5);
  margin-bottom: 14px;
}

.intake-form input[type="text"],
.intake-form input[type="email"],
.intake-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(242,237,230,0.1);
  border-radius: 0;
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font-family: 'Crimson Text', serif;
  font-size: 1.05rem;
  margin-bottom: 12px;
  transition: border-color 0.25s;
}
.intake-form input[type="text"]:focus,
.intake-form input[type="email"]:focus,
.intake-form textarea:focus {
  outline: none;
  border-color: var(--red-bright);
}
.intake-form input::placeholder,
.intake-form textarea::placeholder {
  color: rgba(242,237,230,0.28);
}
.intake-form textarea {
  resize: vertical;
  min-height: 130px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: rgba(242,237,230,0.7);
  cursor: pointer;
  transition: color 0.2s;
}
.check-item:hover {
  color: var(--white);
}
.check-item input[type="checkbox"] {
  accent-color: var(--red-bright);
  width: 16px;
  height: 16px;
}

.intake-form input[type="file"] {
  display: block;
  color: rgba(242,237,230,0.45);
  font-family: 'Courier Prime', monospace;
  font-size: 0.78rem;
}
.intake-form input[type="file"]::file-selector-button {
  padding: 10px 20px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid rgba(242,237,230,0.15);
  cursor: pointer;
  font-family: 'Courier Prime', monospace;
  font-size: 0.7rem;
  letter-spacing: 1px;
  margin-right: 14px;
  transition: background 0.2s, border-color 0.2s;
}
.intake-form input[type="file"]::file-selector-button:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(242,237,230,0.3);
}

/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */
.site-footer {
  position: relative;
  background: var(--black);
}

.footer-image {
  position: relative;
  height: 50vh;
  overflow: hidden;
}
.footer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) saturate(0.4);
}

.footer-cta {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}
.footer-cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: 2px;
  color: var(--paper);
  margin-bottom: 8px;
}
.footer-tagline {
  font-family: 'Courier Prime', monospace;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--paper-dark);
  margin-bottom: 28px;
}

.footer-bottom {
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 3px;
  color: var(--paper-dark);
  text-decoration: none;
}
.footer-brand span { color: var(--red-bright); }

.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-family: 'Courier Prime', monospace;
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(242,237,230,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--red-bright); }

.social-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.social-links a {
  color: currentColor;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.social-links a:hover {
  opacity: 1;
}

.footer-copy {
  font-family: 'Courier Prime', monospace;
  font-size: 0.55rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(242,237,230,0.14);
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */
@media (max-width: 960px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { padding: 0 24px 60px; }
  .section-inner { padding: 72px 24px; }
  .imbalance-split { grid-template-columns: 1fr; gap: 32px; }
  .bill-overlay { padding: 32px; }
  .legacy-content { padding: 48px 24px; }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    padding: 28px 24px;
    text-align: center;
  }
  .footer-links { gap: 16px; }
}

@media (max-width: 600px) {
  .hero-form {
    flex-direction: column;
  }
  .hero-form input[type="email"] {
    border-right: 1px solid rgba(242,237,230,0.12);
    border-bottom: none;
  }
  .hero-form .btn-primary {
    border-left: 1px solid var(--red-bright);
  }
  .hero-title {
    font-size: clamp(3.5rem, 15vw, 5rem);
  }
  .sec-h2 {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }
}
