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

:root {
  --navy:        #0A2240;
  --navy-deep:   #061629;
  --navy-mid:    #122d52;
  --emerald:     #00C896;
  --emerald-lt:  #33FFAA;
  --emerald-pale:#e0fff0;
  --coral:       #FF9A83;
  --coral-deep:  #e8836a;
  --gold:        #FFDB00;
  --melon:       #FEBAAD;
  --off-white:   #F7F8FB;
  --white:       #FFFFFF;
  --border:      rgba(10,34,64,0.09);
  --border-mid:  rgba(10,34,64,0.16);
  --serif:       'DM Serif Display', Georgia, serif;
  --sans:        'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--navy-deep);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ──────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(6,22,41,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-wordmark {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.dimple-dot { color: var(--coral); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.nav-links a:hover { color: rgba(255,255,255,0.9); }
.nav-cta {
  background: var(--emerald) !important;
  color: var(--navy-deep) !important;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: background 0.15s !important;
}
.nav-cta:hover { background: var(--emerald-lt) !important; }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  transition: color 0.15s;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}
.nav-dropdown-toggle:hover { color: rgba(255,255,255,0.9); }
.nav-dropdown-toggle svg { width: 10px; height: 10px; transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(6,22,41,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 180px;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6) !important;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.95) !important;
}

/* ── HAMBURGER ──────────────────────────────────── */
.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; z-index: 200;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger span + span { margin-top: 6px; }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(6,22,41,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 99;
  padding: 32px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu a {
  font-size: 18px; font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.15s;
}
.mobile-menu a:active { color: var(--coral); }
.mobile-menu .nav-cta {
  display: inline-block; text-align: center;
  margin-top: 16px; padding: 14px 28px;
  border: none; border-bottom: none;
}
.mobile-dropdown { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-dropdown-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; border: none;
  font-size: 18px; font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 14px 0; cursor: pointer;
  font-family: inherit; transition: color 0.15s;
}
.mobile-dropdown-toggle svg { transition: transform 0.25s; }
.mobile-dropdown-toggle.open svg { transform: rotate(180deg); }
.mobile-dropdown-items {
  display: none; flex-direction: column;
  padding-left: 16px; padding-bottom: 8px;
}
.mobile-dropdown-items.open { display: flex; }
.mobile-dropdown-items a {
  font-size: 16px; color: rgba(255,255,255,0.5);
  padding: 10px 0; border-bottom: none;
}

/* ── PAGE HERO ─────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,102,32,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}
.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.page-hero-label-dot {
  width: 5px; height: 5px;
  background: var(--emerald-lt);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(51,255,170,0.5);
}
.page-hero-headline {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--coral);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.page-hero-headline em {
  font-style: italic;
  color: var(--white);
}

/* ── METADATA BAR ──────────────────────────────── */
.meta-bar {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.meta-bar-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 28px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.meta-item-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}
.meta-item-value {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* ── CONTENT SECTIONS ──────────────────────────── */
.evidence-section {
  padding: 80px 40px;
  position: relative;
}
.evidence-section:nth-child(even) {
  background: var(--navy);
}
.evidence-section:nth-child(odd) {
  background: var(--navy-deep);
}
.evidence-inner {
  max-width: 860px;
  margin: 0 auto;
}
.section-number {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.section-title em {
  font-style: italic;
  color: var(--coral);
}
.section-subtitle {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--coral);
  line-height: 1.3;
  margin-bottom: 20px;
}
.evidence-text {
  font-size: 16px;
  color: rgba(255,255,255,0.80);
  line-height: 1.85;
  margin-bottom: 24px;
}
.evidence-text strong {
  color: var(--white);
  font-weight: 600;
}
.evidence-text em {
  font-style: italic;
  color: var(--coral);
}

/* ── HIGHLIGHT BLOCK ───────────────────────────── */
.highlight-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 32px;
  margin: 28px 0;
}
.highlight-block p {
  font-size: 16px;
  color: rgba(255,255,255,0.80);
  line-height: 1.85;
}
.highlight-block p em {
  font-style: italic;
  color: var(--coral);
}

/* ── STAT CALLOUT ──────────────────────────────── */
.stat-callout {
  text-align: center;
  padding: 40px 0;
  margin: 32px 0;
}
.stat-callout-num {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 72px);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.stat-callout-label {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
}

/* ── QUOTE BLOCK ───────────────────────────────── */
.quote-block {
  border-left: 3px solid var(--coral);
  padding: 20px 0 20px 28px;
  margin: 28px 0;
}
.quote-block p {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
}
.quote-attribution {
  font-family: var(--sans);
  font-size: 13px;
  font-style: normal;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
}

/* ── TABLE STYLES ──────────────────────────────── */
.evidence-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 14px;
}
.evidence-table thead th {
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.evidence-table tbody td {
  padding: 14px 16px;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  vertical-align: top;
  line-height: 1.6;
}
.evidence-table tbody tr:last-child td {
  border-bottom: none;
}
.evidence-table tbody td:first-child {
  color: var(--white);
  font-weight: 500;
}
.evidence-table tbody td:last-child {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

/* ── DOMAIN CARD ───────────────────────────────── */
.domain-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 32px;
  margin: 20px 0;
}
.domain-card-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}
.domain-card-number {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--emerald);
  font-weight: 700;
}
.domain-card-title {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--coral);
  line-height: 1.2;
}
.domain-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 12px;
}
.domain-card-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}
.domain-card-value {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

/* ── CONVERGENCE TABLE ─────────────────────────── */
.convergence-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px 28px;
  margin: 16px 0;
}
.convergence-card-header {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}
.convergence-card-req {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
}
.convergence-card-solution {
  font-size: 14px;
  color: var(--emerald);
  line-height: 1.6;
  margin-bottom: 8px;
}
.convergence-card-source {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ── MANDATE LIST ──────────────────────────────── */
.mandate-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.mandate-list li {
  position: relative;
  padding: 10px 0 10px 24px;
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mandate-list li:last-child { border-bottom: none; }
.mandate-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
}

/* ── SUPPLY LIST ───────────────────────────────── */
.supply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.supply-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px 24px;
}
.supply-item-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.supply-item-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ── PILOT TARGETS ─────────────────────────────── */
.target-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  counter-reset: target;
}
.target-list li {
  counter-increment: target;
  position: relative;
  padding: 12px 0 12px 40px;
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.target-list li:last-child { border-bottom: none; }
.target-list li::before {
  content: counter(target);
  position: absolute;
  left: 0;
  top: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0,200,150,0.12);
  color: var(--emerald);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── REFERENCE LIST ────────────────────────────── */
.reference-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  counter-reset: ref;
}
.reference-list li {
  counter-increment: ref;
  position: relative;
  padding: 10px 0 10px 36px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.reference-list li:last-child { border-bottom: none; }
.reference-list li::before {
  content: '[' counter(ref) ']';
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
}
.reference-list li em {
  font-style: italic;
  color: rgba(255,255,255,0.5);
}
.reference-list li strong {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* ── CLOSING ───────────────────────────────────── */
.closing-section {
  background: var(--navy);
  padding: 96px 40px;
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-tagline {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 8px;
}
.closing-tagline em {
  color: var(--coral);
  font-style: italic;
}
.closing-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
}

/* ── FOOTER ───────────────────────────────────── */
footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.footer-wordmark { font-family: var(--serif); font-size: 18px; color: var(--coral); }
.footer-legal { font-size: 12px; color: rgba(255,255,255,0.45); max-width: 640px; line-height: 1.7; text-align: center; }
.footer-venture { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 6px; font-weight: 500; }
.footer-purpose { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 8px; line-height: 1.6; }
.footer-acnc { font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ── ANIMATIONS ───────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; flex-direction: column; }
  .page-hero { padding: 100px 24px 60px; }
  .evidence-section { padding: 56px 24px; }
  .meta-bar-inner { padding: 24px 24px; gap: 24px; }
  .supply-grid { grid-template-columns: 1fr; }
  .domain-card-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-legal { text-align: left; }
  footer { padding: 28px 24px; }
  .closing-section { padding: 56px 24px; }
  .evidence-table { font-size: 13px; }
  .evidence-table thead th { padding: 10px 12px; }
  .evidence-table tbody td { padding: 12px 12px; }
}

@media (max-width: 600px) {
  .page-hero { padding: 88px 16px 48px; }
  .evidence-section { padding: 48px 16px; }
  .meta-bar-inner { padding: 20px 16px; flex-direction: column; gap: 16px; }
  nav { padding: 0 16px; }
  footer { padding: 24px 16px; }
  .closing-section { padding: 48px 16px; }
  .convergence-card { padding: 20px; }
  .domain-card { padding: 20px; }
  .highlight-block { padding: 20px; }
  .evidence-table { display: block; overflow-x: auto; }
}

/* Accessibility & motion preferences */
.skip-link{position:absolute;left:-9999px;top:0;z-index:2000;background:#0E6620;color:#fff;padding:10px 18px;border-radius:0 0 10px 0;font-size:14px;font-weight:600;text-decoration:none}
.skip-link:focus{left:0}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{outline:2px solid #FF9A83;outline-offset:2px}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important}
  .fade-up{opacity:1 !important;transform:none !important}
}
