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

:root {
  --bg:        #0d0a0b;
  --surface:   #1a1a1a;
  --surface2:  #222222;
  --accent:    #C8102E;
  --accent2:   #8b0a1d;
  --text:      #f5f0eb;
  --text-dim:  #9a9088;
  --text-mute: #5c5650;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Syne', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── TYPOGRAPHY ─────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

/* ─── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(13,10,11,0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
}
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.nav-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  text-transform: uppercase;
}

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 8rem 2rem 4rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-gradient-1 {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(200,16,46,0.12) 0%, transparent 70%);
}
.hero-gradient-2 {
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 50%;
  height: 50%;
  background: radial-gradient(ellipse at center, rgba(200,16,46,0.06) 0%, transparent 70%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
}
.hero-headline-top {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  color: var(--text);
}
.hero-headline-mid {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-style: italic;
  color: var(--accent);
}
.hero-headline-bottom {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  color: var(--text);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  font-weight: 400;
}

/* Hero visual - CSS towers + silhouettes */
.hero-visual {
  position: relative;
  height: 420px;
  width: 100%;
}
.hero-visual-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0d0a0b 0%, #1a1018 50%, #0d0a0b 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.tower {
  position: absolute;
  bottom: 0;
  background: linear-gradient(180deg, #1c1c1c 0%, #111 100%);
}
.tower::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(200,16,46,0.4), transparent);
}
.tower::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 0; right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 18px,
    rgba(255,255,255,0.03) 18px,
    rgba(255,255,255,0.03) 20px
  );
}
.tower-1 { left: 15%; width: 40px; height: 70%; }
.tower-2 { left: 40%; width: 55px; height: 95%; }
.tower-3 { left: 65%; width: 35px; height: 80%; }

.silhouettes {
  position: absolute;
  bottom: 5%;
  left: 10%;
  right: 10%;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 60px;
}
.person {
  width: 8px;
  background: #1c1c1c;
  border-radius: 4px 4px 0 0;
}
.person:nth-child(1) { height: 40px; }
.person:nth-child(2) { height: 55px; }
.person:nth-child(3) { height: 38px; }
.person:nth-child(4) { height: 48px; }

.glow-orb {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200,16,46,0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Hero stats */
.hero-stats {
  max-width: 1200px;
  margin: 3rem auto 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--text-mute);
  max-width: 200px;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ─── MANIFESTO ───────────────────────────────────── */
.manifesto {
  padding: 7rem 2rem;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--accent);
}
.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}
.manifesto-body { display: flex; flex-direction: column; gap: 1.5rem; }
.manifesto-text {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-dim);
}
.manifesto-lead { color: var(--text); font-size: 1.4rem; }
.manifesto-emphasis {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--text);
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

/* ─── FEATURES ─────────────────────────────────────── */
.features {
  padding: 7rem 2rem;
  background: var(--bg);
}
.features-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}
.features-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature-card {
  background: var(--surface);
  padding: 2.5rem 2rem 2.5rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.04);
  position: relative;
  transition: background 0.2s ease;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.feature-card:hover { background: var(--surface2); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.feature-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.feature-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-dim);
}

/* ─── EVIDENCE ─────────────────────────────────────── */
.evidence {
  padding: 7rem 2rem;
  background: var(--surface);
}
.evidence-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.evidence-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
  margin: 1rem 0 1.5rem;
}
.evidence-body {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.evidence-cases { display: flex; flex-direction: column; gap: 0; }
.case-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.case-company {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.case-allegation {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* Evidence visual - CSS stacked docs */
.evidence-visual {
  padding-top: 1rem;
}
.evidence-stack {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.doc {
  position: absolute;
  background: var(--surface2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
}
.doc::after {
  content: '';
  position: absolute;
  top: 12px; left: 12px; right: 12px;
  height: 2px;
  background: rgba(255,255,255,0.05);
  box-shadow: 0 18px 0 rgba(255,255,255,0.04), 0 36px 0 rgba(255,255,255,0.03);
}
.doc-1 { width: 180px; height: 230px; transform: rotate(-8deg) translate(-30px, 20px); top: 10%; left: 5%; }
.doc-2 { width: 180px; height: 230px; transform: rotate(4deg) translate(20px, 30px); top: 15%; right: 5%; }
.doc-3 { width: 160px; height: 200px; transform: rotate(-2deg) translate(0, 40px); top: 25%; }

.phone-mockup {
  position: absolute;
  bottom: 5%;
  right: 10%;
  width: 110px;
  height: 180px;
  background: #111;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(200,16,46,0.2);
}
.phone-screen {
  width: 85%;
  padding: 8px;
  text-align: center;
}
.phone-text {
  font-size: 0.5rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-style: italic;
}

/* ─── CLOSING ─────────────────────────────────────── */
.closing {
  padding: 8rem 2rem;
  background: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-rule {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 3rem;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-bottom: 3rem;
}
.closing-vision {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 2.5rem;
  border-radius: 2px;
}
.closing-vision p {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.75;
}
.closing-mandate {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text) !important;
  margin-top: 1.5rem;
}

/* ─── FOOTER ───────────────────────────────────────── */
.footer {
  background: var(--surface);
  padding: 4rem 2rem 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-logo {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-mute);
}
.footer-links { display: flex; gap: 4rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 0.25rem;
}
.footer-link {
  font-size: 0.82rem;
  color: var(--text-dim);
}
.footer-rule {
  height: 1px;
  background: rgba(255,255,255,0.05);
  margin-bottom: 1.5rem;
}
.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-mute);
}
.footer-established {
  font-size: 0.7rem;
  color: var(--text-mute);
  letter-spacing: 0.08em;
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: #b00d24;
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}
.btn-large {
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
}
.btn-nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  font-size: 0.75rem;
}
.btn-nav-cta:hover { background: #b00d24; }

/* ─── NAV ─────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  background: rgba(13,10,11,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(13,10,11,0.72) 0%,
    rgba(13,10,11,0.85) 50%,
    rgba(13,10,11,1) 100%);
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-badge {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }

.hero-stats {
  max-width: 1200px;
  margin: 3rem auto 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--text-mute);
  max-width: 200px;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ─── SHARED SECTIONS ───────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.section-body {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.section-cta {
  text-align: center;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.cta-text {
  font-size: 1rem;
  color: var(--text-dim);
}

/* ─── MISSION ──────────────────────────────────────── */
.mission {
  padding: 7rem 2rem;
  background: var(--surface);
  position: relative;
}
.mission-divider {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 3rem 0;
}
.mission-what {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 2.5rem;
  font-style: italic;
}
.mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.pillar {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 2rem;
  border-top: 2px solid var(--accent);
}
.pillar-icon { font-size: 2rem; margin-bottom: 1rem; }
.pillar h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.pillar p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.65; }

/* ─── TESTIMONIES GRID ─────────────────────────────── */
.testimonies-section {
  padding: 7rem 2rem;
  background: var(--bg);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.video-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: border-color 0.2s;
}
.video-card:hover { border-color: rgba(200,16,46,0.4); }
.video-embed-wrap {
  position: relative;
  overflow: hidden;
  background: #0d0a0b;
}
.video-embed-wrap iframe {
  display: block;
}
.video-thumb {
  height: 180px;
  background: linear-gradient(135deg, #1a1520, #0d0a0b);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.play-icon {
  width: 56px;
  height: 56px;
  background: rgba(200,16,46,0.15);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
}
.video-dur {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(0,0,0,0.7);
  color: var(--text-dim);
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}
.video-info { padding: 1.5rem; }
.video-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.state-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  background: rgba(255,255,255,0.05);
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
  margin-left: 0.5rem;
}
.video-harm-type {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.video-excerpt {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
  font-style: italic;
}

/* ─── EDUCATION ─────────────────────────────────────── */
.education-section {
  padding: 7rem 2rem;
  background: var(--surface);
}
.edu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.edu-card {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 2rem;
  position: relative;
  transition: border-color 0.2s;
}
.edu-card:hover { border-color: rgba(200,16,46,0.3); }
.edu-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.edu-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.edu-card p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.65; }
.edu-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(200,16,46,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-top: 1rem;
}
.edu-cta { margin-top: 3rem; text-align: center; }

/* ─── LEGAL ─────────────────────────────────────────── */
.legal-section {
  padding: 7rem 2rem;
  background: var(--bg);
}
.legal-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.legal-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem;
  position: relative;
}
.legal-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mute);
  background: rgba(255,255,255,0.05);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.legal-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
}
.legal-card > p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.legal-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.legal-points li {
  font-size: 0.85rem;
  color: var(--text-dim);
  padding-left: 1.25rem;
  position: relative;
}
.legal-points li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}
.legal-status {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.legal-momentum {
  background: var(--surface);
  border: 1px solid rgba(200,16,46,0.2);
  border-left: 4px solid var(--accent);
  padding: 2rem 2.5rem;
}
.legal-momentum p {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.75;
}

/* ─── TESTIMONY FORM ────────────────────────────────── */
.testimony-form-section {
  padding: 7rem 2rem;
  background: var(--surface);
}
.guide-download {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(200,16,46,0.07);
  border: 1px solid rgba(200,16,46,0.2);
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.guide-icon { font-size: 2.5rem; flex-shrink: 0; }
.guide-text { flex: 1; }
.guide-text strong { font-size: 1rem; color: var(--text); display: block; margin-bottom: 0.4rem; }
.guide-text p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }

.form-container {
  max-width: 720px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-group input[type="text"],
.form-group input[type="url"],
.form-group textarea {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  border-radius: 2px;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 160px; }

.harm-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-dim);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
}

.file-drop {
  border: 2px dashed rgba(255,255,255,0.12);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s;
}
.file-drop:hover { border-color: rgba(200,16,46,0.5); }
.file-drop input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.file-drop p { font-size: 0.9rem; color: var(--text-dim); }
.file-link { color: var(--accent); text-decoration: underline; }
.file-hint { font-size: 0.75rem; color: var(--text-mute); margin-top: 0.4rem; }
#file-list { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.4rem; }
.file-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  background: rgba(255,255,255,0.03);
  padding: 0.4rem 0.75rem;
  border-radius: 2px;
}

.consent-box {
  background: rgba(200,16,46,0.05);
  border: 1px solid rgba(200,16,46,0.15);
  padding: 1.25rem 1.5rem;
}
.consent-label { line-height: 1.6; }

.form-submit { margin-top: 2rem; }
.form-privacy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-mute);
  margin-top: 0.75rem;
}

.form-success {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.05);
}
.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(200,16,46,0.1);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent);
  margin: 0 auto 1.5rem;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.form-success p { font-size: 0.92rem; color: var(--text-dim); line-height: 1.7; }

/* ─── PUBLIC STORIES ────────────────────────────────── */
.public-stories-section {
  padding: 7rem 2rem;
  background: var(--bg);
}
.public-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.public-story-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 2rem;
  transition: border-color 0.2s;
}
.public-story-card:hover { border-color: rgba(200,16,46,0.3); }
.story-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.story-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.harm-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(200,16,46,0.08);
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
}
.story-excerpt {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1rem;
}
.story-meta {
  font-size: 0.72rem;
  color: var(--text-mute);
  letter-spacing: 0.06em;
}

/* ─── FOOTER ────────────────────────────────────────── */
.site-footer {
  background: #080608;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-logo {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-mute);
  margin-bottom: 0.75rem;
}
.footer-mission {
  font-size: 0.82rem;
  color: var(--text-mute);
  max-width: 280px;
  line-height: 1.65;
}
.footer-links { display: flex; gap: 4rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 0.25rem;
}
.footer-link {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--accent); }
.footer-rule {
  height: 1px;
  background: rgba(255,255,255,0.04);
  margin-bottom: 1.5rem;
}
.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copy { font-size: 0.75rem; color: var(--text-mute); }
.footer-legal { font-size: 0.72rem; color: var(--text-mute); }

/* ─── ADMIN PANEL ──────────────────────────────────── */
.admin-login-page {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.admin-login-box {
  width: 100%;
  max-width: 400px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem;
}
.admin-login-box h1 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.admin-login-box p {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
}
.admin-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.admin-form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.admin-form-group input {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: 2px;
}
.admin-form-group input:focus {
  outline: none;
  border-color: var(--accent);
}
.admin-submit {
  width: 100%;
  margin-top: 1rem;
}
.admin-error {
  background: rgba(200,16,46,0.1);
  border: 1px solid rgba(200,16,46,0.3);
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: #ff6b6b;
  margin-bottom: 1rem;
  display: none;
}

.admin-dashboard {
  min-height: 100vh;
  background: var(--bg);
  padding: 2rem;
}
.dashboard-header {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dashboard-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text);
}
.dashboard-count {
  font-size: 0.82rem;
  color: var(--text-mute);
  margin-top: 0.25rem;
}
.dashboard-stats {
  display: flex;
  gap: 1.5rem;
}
.dashboard-stat {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 1rem 1.5rem;
  text-align: center;
}
.dashboard-stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.dashboard-stat-label {
  font-size: 0.68rem;
  color: var(--text-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.dashboard-table-wrap {
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
}
.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.04);
}
.dashboard-table th {
  text-align: left;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
}
.dashboard-table td {
  font-size: 0.88rem;
  color: var(--text-dim);
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  vertical-align: top;
}
.dashboard-table tr:hover td { background: rgba(255,255,255,0.01); }
.dashboard-table .name-cell {
  color: var(--text);
  font-weight: 500;
}
.status-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}
.status-new { background: rgba(255,180,0,0.1); color: #ffb400; }
.status-reviewing { background: rgba(100,150,255,0.1); color: #6496ff; }
.status-approved { background: rgba(0,200,100,0.1); color: #00c864; }
.status-rejected { background: rgba(200,16,46,0.1); color: #e63946; }

.action-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.action-btn {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: opacity 0.2s;
}
.action-btn:hover { opacity: 0.8; }
.btn-approve { background: rgba(0,200,100,0.15); color: #00c864; }
.btn-review  { background: rgba(100,150,255,0.15); color: #6496ff; }
.btn-reject  { background: rgba(200,16,46,0.15); color: #e63946; }
.btn-view    { background: rgba(255,255,255,0.06); color: var(--text-dim); }

.testimony-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  display: none;
}
.testimony-modal.open { display: flex; }
.modal-content {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2rem;
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1.5rem;
}
.modal-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}
.modal-meta {
  font-size: 0.8rem;
  color: var(--text-mute);
  margin-top: 0.25rem;
}
.modal-close {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}
.modal-narrative {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.modal-evidence { margin-top: 1rem; }
.modal-evidence-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 0.5rem;
}
.modal-evidence-link {
  font-size: 0.85rem;
  color: var(--accent);
}

/* ─── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1100px) {
  .mission-pillars { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .public-stories-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .video-grid { grid-template-columns: 1fr; }
  .edu-grid { grid-template-columns: 1fr; }
  .legal-cards { grid-template-columns: 1fr; }
  .public-stories-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 2rem; }
  .footer-links { flex-direction: column; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .harm-checkboxes { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
  .dashboard-stats { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .hero { padding: 7rem 1.25rem 3rem; }
  .mission { padding: 4rem 1.25rem; }
  .testimonies-section { padding: 4rem 1.25rem; }
  .education-section { padding: 4rem 1.25rem; }
  .legal-section { padding: 4rem 1.25rem; }
  .testimony-form-section { padding: 4rem 1.25rem; }
  .public-stories-section { padding: 4rem 1.25rem; }
  .guide-download { flex-direction: column; align-items: start; }
  .hero-ctas { flex-direction: column; align-items: start; }
  .dashboard-header { flex-direction: column; align-items: start; gap: 1rem; }
}