/* ─── Reset & Base ─────────────────────────────────────────────────────────── */

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

:root {
  --red:         #c5050c;
  --red-bright:  #e8121a;
  --red-dim:     #8b0009;
  --bg:          #0a0a0a;
  --bg-card:     #141414;
  --bg-dark:     #0d0d0d;
  --bg-section:  #111111;
  --text:        #f0f0f0;
  --text-muted:  #888;
  --text-dim:    #555;
  --border:      #222;
  --border-bright: #333;
  --green:       #22c55e;
  --yellow:      #f59e0b;
  --radius:      12px;
  --radius-sm:   8px;
  --nav-h:       64px;
  --font:        'Inter', system-ui, sans-serif;
  --font-display:'Space Grotesk', 'Inter', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

em {
  font-style: italic;
  color: #ddd;
}

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

/* ─── Utilities ─────────────────────────────────────────────────────────────── */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-red { color: var(--red-bright); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* stagger siblings */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* ─── Buttons ────────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(197,5,12,0.4);
}

.btn-ghost {
  background: rgba(255,255,255,0.07);
  color: var(--text);
  border: 1px solid var(--border-bright);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-bright);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red-bright);
  background: rgba(197,5,12,0.07);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* ─── Navigation ─────────────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-color: var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo-de    { color: var(--text-muted); }
.logo-flock { color: var(--red-bright); }
.logo-uw    { color: var(--text); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--red-bright) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* ─── Hero ───────────────────────────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 60px) 0 80px;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197,5,12,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,5,12,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 80%);
}

.hero-scan {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  animation: scan 4s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes scan {
  0%   { top: 0%; opacity: 0; }
  5%   { opacity: 0.6; }
  95%  { opacity: 0.6; }
  100% { top: 100%; opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 28px;
  padding: 8px 16px;
  background: rgba(197,5,12,0.1);
  border: 1px solid rgba(197,5,12,0.3);
  border-radius: 100px;
}

.dot-pulse {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--red-bright);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(197,5,12,0.6); }
  50%       { box-shadow: 0 0 0 8px rgba(197,5,12,0); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-sub strong { color: #fff; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}

.scroll-dot {
  animation: scrollDot 2.5s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { cy: 8; opacity: 1; }
  50%       { cy: 14; opacity: 0.4; }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── Stats Banner ───────────────────────────────────────────────────────────── */

.stats-banner {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}

.stats-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 48px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--red-bright);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.stat-zero { color: var(--text-dim); }

.stat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.stats-footnote {
  text-align: center;
  margin-top: 40px;
  font-size: 0.78rem;
  color: var(--text-dim);
}
.stats-footnote a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.stats-footnote a:hover { color: var(--text); }

/* ─── Callout Band ───────────────────────────────────────────────────────────── */

.callout-band {
  background: linear-gradient(135deg, rgba(197,5,12,0.12), rgba(197,5,12,0.04));
  border-top: 1px solid rgba(197,5,12,0.2);
  border-bottom: 1px solid rgba(197,5,12,0.2);
  padding: 64px 0;
}

.callout-quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  border: none;
}

.callout-big {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--red-bright);
  letter-spacing: -0.04em;
  line-height: 1;
}

.callout-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
}
.callout-text strong { color: #fff; }

/* ─── Section Base ───────────────────────────────────────────────────────────── */

.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  max-width: 700px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #fff;
  margin: 16px 0 20px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  padding: 5px 12px;
  border-radius: 100px;
}

.section-tag-red {
  color: var(--red-bright);
  background: rgba(197,5,12,0.1);
  border-color: rgba(197,5,12,0.3);
}

.section-tag-green {
  color: var(--green);
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.3);
}

/* ─── Explainer Grid ─────────────────────────────────────────────────────────── */

.explainer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.explainer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.2s;
}

.explainer-card:hover {
  border-color: var(--border-bright);
}

.explainer-icon {
  width: 44px;
  height: 44px;
  color: var(--red-bright);
  margin-bottom: 20px;
}
.explainer-icon svg {
  width: 100%;
  height: 100%;
}

.explainer-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.explainer-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Risks Grid ─────────────────────────────────────────────────────────────── */

.risks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.risk-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.risk-card:hover {
  border-color: rgba(197,5,12,0.4);
  transform: translateY(-2px);
}

.risk-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.risk-card:hover::before { opacity: 1; }

.risk-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(197,5,12,0.25);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.05em;
}

.risk-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.risk-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Claims ─────────────────────────────────────────────────────────────────── */

.claims-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.claim-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.claim-row:last-child { border-bottom: none; }
.claim-row:hover { background: rgba(255,255,255,0.02); }

.claim-badge {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 16px 28px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  border-right: 1px solid var(--border);
  line-height: 1.3;
  padding-top: 32px;
}

.claim-partial {
  color: var(--yellow);
  background: rgba(245,158,11,0.06);
}

.claim-false {
  color: var(--red-bright);
  background: rgba(197,5,12,0.06);
}

.claim-body {
  padding: 28px 32px;
}

.claim-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.claim-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Pushback Grid ──────────────────────────────────────────────────────────── */

.pushback-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pushback-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s;
}

.pushback-card:hover {
  border-color: rgba(34,197,94,0.3);
}

.pushback-org {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.pushback-card blockquote {
  font-size: 1rem;
  font-style: italic;
  color: #fff;
  line-height: 1.6;
  border-left: 3px solid var(--green);
  padding-left: 16px;
  margin: 0;
}

.pushback-action {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.pushback-status {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-top: auto;
  width: fit-content;
}

.pushback-status-active {
  background: rgba(34,197,94,0.12);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.3);
}

.pushback-status-won {
  background: rgba(34,197,94,0.2);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.5);
}

/* ─── Documents ──────────────────────────────────────────────────────────────── */

.docs-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.doc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 20px;
  transition: border-color 0.2s;
}

.doc-card:hover {
  border-color: var(--border-bright);
}

.doc-icon {
  width: 44px;
  height: 44px;
  color: var(--text-dim);
  flex-shrink: 0;
}
.doc-icon svg {
  width: 100%;
  height: 100%;
}

.doc-info h3 {
  font-family: var(--font-display);
  font-size: 0.975rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.doc-info p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.doc-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
}

.doc-download {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid var(--border-bright);
  color: var(--text-muted);
  transition: all 0.2s;
}

.doc-download:not(.doc-coming-soon):hover {
  border-color: var(--red);
  color: var(--red-bright);
  background: rgba(197,5,12,0.07);
}

.doc-coming-soon {
  cursor: default;
  opacity: 0.5;
}

/* ─── Take Action ────────────────────────────────────────────────────────────── */

.section-act {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(197,5,12,0.05) 100%);
  border-top: 1px solid rgba(197,5,12,0.15);
}

.act-header {
  max-width: 700px;
  margin: 0 auto 64px;
  text-align: center;
}

.act-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #fff;
  margin: 16px 0 20px;
}

.act-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.act-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.act-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s;
}

.act-card:hover {
  border-color: rgba(197,5,12,0.4);
  transform: translateY(-2px);
}

.act-step {
  width: 36px;
  height: 36px;
  background: rgba(197,5,12,0.12);
  border: 1px solid rgba(197,5,12,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red-bright);
}

.act-card h3 {
  font-family: var(--font-display);
  font-size: 0.975rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.act-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

/* ─── Footer ─────────────────────────────────────────────────────────────────── */

.footer {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 64px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand .nav-logo {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 340px;
  margin-bottom: 8px;
}

.footer-disclaimer {
  font-size: 0.78rem !important;
  color: var(--text-dim) !important;
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
}

/* ─── Who Has Access ─────────────────────────────────────────────────────────── */

.access-explainer {
  margin-bottom: 48px;
}

.access-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.access-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  min-width: 160px;
}

.access-node-origin {
  border-color: rgba(197,5,12,0.4);
  background: rgba(197,5,12,0.07);
}

.access-node-wide {
  border-color: rgba(245,158,11,0.4);
  background: rgba(245,158,11,0.06);
}

.access-node-label {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}

.access-node-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.access-arrow {
  font-size: 1.25rem;
  color: var(--text-dim);
  flex-shrink: 0;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.access-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s;
}

.access-card:hover {
  border-color: rgba(245,158,11,0.3);
}

.access-card h3 {
  font-family: var(--font-display);
  font-size: 0.975rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.35;
}

.access-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Map Embed ──────────────────────────────────────────────────────────────── */

.map-embed-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}

.map-embed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}

.map-embed-header h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.map-embed-header p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin: 0;
}

.map-embed-frame {
  display: block;
  width: 100%;
  height: 600px;
  border: none;
  background: #1a1a1a;
}

/* ─── Contact Email ──────────────────────────────────────────────────────────── */

.contact-email {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  letter-spacing: 0.01em;
  user-select: all;
}

/* ─── Responsive ─────────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .risks-grid     { grid-template-columns: repeat(2, 1fr); }
  .access-grid    { grid-template-columns: repeat(2, 1fr); }
  .act-grid       { grid-template-columns: repeat(2, 1fr); }
  .explainer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid     { grid-template-columns: repeat(3, 1fr); }
  .stat-item      { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(3n) { border-right: none; }
  .stat-item:last-child    { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 1200px) {
  :root { --nav-h: 60px; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .hamburger { display: flex; }

  .pushback-grid  { grid-template-columns: 1fr; }
  .footer-inner   { grid-template-columns: 1fr; gap: 32px; }

  .claim-row { grid-template-columns: 1fr; }
  .claim-badge { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 24px; justify-content: flex-start; }

  .doc-card { grid-template-columns: 40px 1fr; }
  .doc-download { grid-column: 1 / -1; justify-self: start; }

  .hero-headline { font-size: 2.2rem; }
}

@media (max-width: 600px) {
  .risks-grid     { grid-template-columns: 1fr; }
  .access-grid    { grid-template-columns: 1fr; }
  .act-grid       { grid-template-columns: 1fr; }
  .explainer-grid { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .section        { padding: 72px 0; }
  .section-act    { padding: 72px 0; }
}
