
*, *::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;
}

.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; }

/* Dropdown */
.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;
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
.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;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,154,131,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.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;
}
.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);
}
.hero-h1 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald-lt);
  margin-bottom: 18px;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(44px, 5.5vw, 68px);
  color: var(--coral);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.hero-sub {
  font-size: 20px;
  color: rgba(255,255,255,0.70);
  font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.hero-body {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--emerald);
  color: var(--navy-deep);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--sans);
  padding: 14px 30px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--emerald-lt); transform: translateY(-1px); }
.btn-ghost {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--sans);
  padding: 14px 30px;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
  transition: all 0.15s;
  letter-spacing: 0.01em;
  background: transparent;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.9);
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.arch-diagram {
  width: 100%;
  max-width: 420px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(8px);
}
.arch-center {
  text-align: center;
  padding: 24px 16px;
  background: var(--navy-deep);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  margin-bottom: 20px;
}
.arch-center-label {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 8px;
}
.arch-center-title {
  font-family: var(--serif);
  font-size: 22px; color: var(--coral); line-height: 1.2; margin-bottom: 6px;
}
.arch-center-sub {
  font-size: 12px; color: rgba(255,255,255,0.5);
}
.arch-verticals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.arch-vert {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}
.arch-vert:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
}
.arch-vert-icon {
  font-size: 18px; margin-bottom: 4px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; margin: 0 auto 6px;
  background: rgba(255,219,0,0.08);
  border-radius: 6px;
}
.arch-vert-icon svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.arch-vert-name {
  font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
}
.arch-connector {
  display: flex; justify-content: center; padding: 8px 0;
}
.arch-connector svg { width: 20px; height: 20px; stroke: rgba(255,255,255,0.2); fill: none; }

/* ── STATS BAR ────────────────────────────────── */
.stats-bar {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.stats-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
}
.stat-item {
  flex: 1;
  padding: 32px 0;
  border-right: 1px solid rgba(255,255,255,0.06);
  padding-right: 40px;
  padding-left: 40px;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  line-height: 1.5;
  max-width: 200px;
}

/* ── SHARED SECTION STYLES ─────────────────────── */
.section-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.eyebrow {
  font-size: 10px;
  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-mark {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  display: inline-block;
  transform: rotate(90deg);
  line-height: 1;
}
.section-heading {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.section-heading.light { color: var(--coral); }
.section-body {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}

/* ── MANDATE SECTION ──────────────────────────── */
.mandate {
  position: relative;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 96px 0;
}
.mandate-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald-lt);
  background: rgba(14,102,32,0.2);
  border: 1px solid rgba(14,102,32,0.3);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.mandate-tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 4px rgba(0,200,150,0.15);
}
.mandate-heading {
  font-family: var(--serif);
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--white);
  max-width: 880px;
  margin-bottom: 18px;
}
.mandate-heading em {
  font-style: italic;
  color: var(--coral);
}
.mandate-lede {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  max-width: 740px;
  margin-bottom: 56px;
}

.crisis-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.crisis-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.crisis-stat:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}
.crisis-stat-num {
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 36px);
  color: var(--coral);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.crisis-stat-label {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.01em;
}
.crisis-stat-label strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.crisis-stats-source {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-align: right;
  margin-top: -40px;
  margin-bottom: 56px;
  letter-spacing: 0.02em;
}

.mandate-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: start;
}
.mandate-prose p {
  font-size: 15.5px; line-height: 1.85;
  color: rgba(255,255,255,0.82);
  margin-bottom: 18px;
}
.mandate-prose p strong { color: var(--white); font-weight: 600; }
.mandate-prose p .article {
  font-family: var(--serif);
  font-style: italic;
  color: var(--coral-deep);
}
.article-pills {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px;
}
.article-pill {
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.article-pill strong {
  color: var(--emerald);
  font-weight: 600;
  margin-right: 6px;
}
.mandate-facts { display: grid; gap: 14px; }
.fact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 22px 24px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.fact-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.fact-row {
  display: flex; align-items: baseline;
  justify-content: space-between; gap: 16px;
}
.fact-num {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--emerald);
  line-height: 1;
  flex-shrink: 0;
}
.fact-title {
  font-size: 14px; font-weight: 600;
  color: var(--white); margin-bottom: 4px;
}
.fact-desc {
  font-size: 13px; line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

/* ── PILOT SECTION ────────────────────────────── */
.pilot { padding: 96px 0; background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%); }
.pilot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-top: 48px;
}
.pilot-body { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 20px; }
.pull-quote {
  font-family: var(--serif);
  font-size: 22px; color: var(--coral);
  font-style: italic; line-height: 1.35;
  border-left: 3px solid var(--coral);
  padding-left: 20px;
  margin: 28px 0;
}
.pilot-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 36px;
  display: flex; flex-direction: column; gap: 28px;
}
.pilot-stat {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding-bottom: 24px;
}
.pilot-stat:last-of-type { border-bottom: none; padding-bottom: 0; }
.pilot-stat-num {
  font-family: var(--serif);
  font-size: 46px; color: var(--gold);
  line-height: 1; letter-spacing: -0.02em;
  margin-bottom: 5px;
}
.pilot-stat-label { font-size: 14px; color: rgba(255,255,255,0.75); }
.pilot-partners {
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 14px 18px;
}
.pilot-partners-label {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 6px;
}
.pilot-partners-text { font-size: 13px; color: rgba(255,255,255,0.80); line-height: 1.7; }

/* ── INSIGHT SECTION ─────────────────────────── */
.insight {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
}
.insight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 48px;
}
.insight-quote {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--coral);
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 24px;
  border-left: 3px solid var(--coral);
  padding-left: 24px;
}
.insight-body {
  font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 16px;
}
.insight-card {
  background: var(--navy-deep);
  border-radius: 20px;
  padding: 32px;
}
.insight-card-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); margin-bottom: 16px;
}
.insight-card-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.quadrant {
  border-radius: 12px; padding: 18px; text-align: center;
}
.quadrant-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 6px;
}
.quadrant-desc {
  font-size: 12px; line-height: 1.5;
}
.quadrant.occupied {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
}
.quadrant.occupied .quadrant-label { color: rgba(255,255,255,0.85); }
.quadrant.occupied .quadrant-desc { color: rgba(255,255,255,0.7); }
.quadrant.dimple {
  background: var(--emerald);
  border: 1px solid rgba(255,255,255,0.15);
}
.quadrant.dimple .quadrant-label { color: var(--navy-deep); font-weight: 700; }
.quadrant.dimple .quadrant-desc { color: rgba(6,22,41,0.75); }

/* ── VERTICALS ───────────────────────────────── */
.verticals {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--navy) 0%, #0d2d50 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.verticals::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 460px at 85% 0%, rgba(255,219,0,0.06), transparent 60%),
    radial-gradient(700px 420px at 0% 100%, rgba(255,154,131,0.08), transparent 60%);
  pointer-events: none;
}
.verticals .section-wrap { position: relative; z-index: 1; }
.verticals-intro {
  font-size: 17px; line-height: 1.8;
  color: rgba(255,255,255,0.78);
  max-width: 700px; margin-bottom: 56px;
}
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.vert-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.vert-card:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}
.vert-card-header {
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 14px;
}
.vert-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.vert-icon svg { width: 18px; height: 18px; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.vert-brand-mark {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  transform: rotate(90deg);
  line-height: 1;
}
.vert-card-title {
  font-size: 16px; font-weight: 600; color: var(--white); line-height: 1.2;
}
.vert-card-tag {
  font-size: 10px; font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 4px;
}
.vert-card-body {
  padding: 18px 24px 24px;
}
.vert-card-desc {
  font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.7;
}
.vert-card-stat {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--gold);
  font-style: italic;
}

/* ── PATENT SECTION ──────────────────────────── */
.patents {
  padding: 96px 0;
  background: linear-gradient(180deg, #0d2d50 0%, var(--navy) 100%);
  color: var(--white);
}
.patents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}
.patent-card {
  background: var(--navy-deep);
  border-radius: 20px;
  padding: 32px;
}
.patent-items {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
.patent-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px;
  transition: border-color 0.2s;
}
.patent-item:hover {
  border-color: rgba(255,255,255,0.18);
}
.patent-item-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.patent-item-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.patent-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255,219,0,0.08);
  border: 1px solid rgba(255,219,0,0.15);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

/* ── HOW IT WORKS ─────────────────────────────── */
.how-header {
  background: var(--navy);
  padding: 72px 40px;
  text-align: center;
}
.how-body { background: var(--navy-deep); padding: 72px 0; }
.how-intro {
  font-size: 17px; color: rgba(255,255,255,0.85);
  line-height: 1.8; max-width: 700px;
  margin-bottom: 56px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 56px;
}
.feature-tile {
  background: var(--navy);
  border-radius: 18px;
  padding: 26px 22px;
}
.tile-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.tile-eyebrow {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 7px;
}
.tile-title {
  font-size: 15px; font-weight: 500;
  color: var(--coral); margin-bottom: 8px; line-height: 1.3;
}
.tile-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}
.flow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  overflow: hidden;
  border: 0.5px solid rgba(255,255,255,0.1);
}
.flow-step {
  padding: 36px 32px;
  border-right: 0.5px solid rgba(255,255,255,0.1);
  position: relative;
}
.flow-step:last-child { border-right: none; }
.flow-number {
  font-family: var(--serif);
  font-size: 52px; color: var(--emerald);
  opacity: 0.15; line-height: 1;
  position: absolute; top: 24px; right: 28px;
}
.flow-title {
  font-size: 16px; font-weight: 600;
  color: var(--white); margin-bottom: 10px; line-height: 1.3;
}
.flow-desc {
  font-size: 14px; color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ── WHY SCHOOLS SECTION ─────────────────────── */
.schools-section {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
}
.schools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
  margin-top: 56px;
}
.school-reason {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 32px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.school-reason:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}
.school-reason-num {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--emerald-lt);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
}
.school-reason-title {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--coral);
  line-height: 1.3;
  margin-bottom: 12px;
}
.school-reason-body {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}

/* ── SUKHA COUNCIL QUOTE ─────────────────────── */
.council-quote {
  padding: 80px 0;
  background: var(--navy-deep);
  color: var(--white);
  text-align: center;
}
.council-quote-text {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  color: rgba(255,255,255,0.90);
  line-height: 1.6;
  max-width: 780px;
  margin: 0 auto 24px;
  position: relative;
  padding: 0 24px;
}
.council-quote-text::before {
  content: "\201C";
  font-size: 64px;
  color: var(--coral);
  position: absolute;
  top: -20px;
  left: -8px;
  line-height: 1;
  opacity: 0.5;
}
.council-quote-attr {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
}

/* ── SUKHA SECTION ───────────────────────────── */
.sukha {
  padding: 96px 0;
  background: var(--navy);
}
.sukha-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 48px;
  align-items: start;
}
.sukha-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
}
.sukha-card-header {
  background: rgba(255,255,255,0.06);
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sukha-card-body {
  padding: 20px 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.sukha-dim {
  display: flex; gap: 14px; align-items: flex-start;
}
.sukha-letter {
  width: 28px; height: 28px;
  background: var(--emerald); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 11px; font-weight: 700; color: var(--navy-deep);
}
.sukha-dim-text {
  font-size: 13px; color: rgba(255,255,255,0.80); line-height: 1.5;
}
.sukha-dim-text strong { color: white; }
.sukha-footer {
  background: var(--emerald); padding: 16px 24px;
}
.sukha-footer p {
  font-size: 13px; color: rgba(6,22,41,0.85); line-height: 1.65;
}

/* SUKHA Dashboard Mock */
.sukha-dashboard {
  background: var(--navy-deep);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 24px;
}
.sukha-dashboard-header {
  padding: 14px 20px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sukha-dashboard-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.sukha-dashboard-badge {
  font-size: 10px;
  font-weight: 600;
  color: var(--emerald);
  background: rgba(0,200,150,0.1);
  padding: 4px 10px;
  border-radius: 100px;
}
.sukha-dashboard-body {
  padding: 20px;
}
.sukha-score-display {
  text-align: center;
  padding: 20px 0 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 20px;
}
.sukha-score-number {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--emerald);
  line-height: 1;
  letter-spacing: -0.02em;
}
.sukha-score-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}
.sukha-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sukha-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sukha-bar-letter {
  width: 22px;
  height: 22px;
  background: rgba(0,200,150,0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--emerald);
  flex-shrink: 0;
}
.sukha-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.sukha-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.6s ease;
}
.sukha-bar-value {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  width: 32px;
  text-align: right;
  flex-shrink: 0;
}

/* ── TEAM ─────────────────────────────────────── */
.team-section { background: var(--navy-deep); padding: 96px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 48px;
}
.team-card {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 22px;
}
.team-card.featured {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
}
.team-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 16px; color: var(--coral);
  margin-bottom: 12px;
}
.team-name { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.team-role { font-size: 12px; color: var(--emerald-lt); font-weight: 500; margin-bottom: 8px; }
.team-bio { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.6; }

.sukha-council { margin-top: 64px; padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.08); }
.sukha-council-title { font-family: var(--serif); font-size: 28px; color: var(--emerald-lt); margin-bottom: 12px; }
.sukha-council-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; max-width: 680px; }
.sukha-council-card { border-color: rgba(0,200,150,0.15); }

/* ── CONTACT ──────────────────────────────────── */
.contact { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%); padding: 96px 40px; }
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-heading {
  font-family: var(--serif);
  font-size: 42px; color: var(--coral);
  line-height: 1.1; margin-bottom: 16px;
}
.contact-body { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 32px; }
.contact-detail {
  display: flex; flex-direction: column; gap: 14px;
}
.contact-item { display: flex; flex-direction: column; gap: 3px; }
.contact-item-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.contact-item-value {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.15s;
}
.contact-item-value:hover { color: var(--coral); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.form-input, .form-textarea, .form-select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px; font-family: var(--sans);
  color: var(--white);
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--emerald); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select option { background: var(--navy); color: var(--white); }
.form-btn {
  background: var(--emerald);
  color: var(--navy-deep);
  border: none;
  border-radius: 100px;
  padding: 14px 32px;
  font-size: 15px; font-weight: 600;
  font-family: var(--sans);
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  align-self: flex-start;
  letter-spacing: 0.01em;
}
.form-btn:hover { background: var(--emerald-lt); transform: translateY(-1px); }
.form-success {
  display: none;
  background: rgba(0,200,150,0.08);
  border: 1px solid rgba(0,200,150,0.2);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
}
.form-success.show { display: block; }
.form-success-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--emerald-lt);
  margin-bottom: 8px;
}
.form-success-body {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ── CLOSE ───────────────────────────────────── */
.close-section {
  background: var(--navy);
  padding: 96px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.close-section::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,102,32,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.close-inner { max-width: 680px; margin: 0 auto; position: relative; }
.close-tagline {
  font-family: var(--serif);
  font-size: clamp(64px, 10vw, 100px);
  color: var(--coral);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.close-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 40px;
}
.close-brand-mark {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 700;
  color: var(--coral);
  display: inline-block;
  transform: rotate(90deg);
  line-height: 1;
}
.close-brand-name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--coral);
  letter-spacing: 0.02em;
}
.dimple-dot { color: var(--melon); }
.close-cta {
  display: inline-block;
  background: var(--emerald);
  color: var(--navy-deep);
  font-size: 15px; font-weight: 600;
  font-family: var(--sans);
  padding: 16px 40px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  letter-spacing: 0.02em;
}
.close-cta:hover { background: var(--emerald-lt); transform: scale(1.02); }

/* ── 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); }

/* ── 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;
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner, .insight-grid, .pilot-grid, .contact-inner, .sukha-grid, .mandate-grid, .patents-grid { grid-template-columns: 1fr; gap: 48px; }
  .schools-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .feature-grid, .verticals-grid { grid-template-columns: 1fr 1fr; }
  .flow-steps { grid-template-columns: 1fr; }
  .flow-step { border-right: none; border-bottom: 0.5px solid rgba(255,255,255,0.1); }
  .flow-step:last-child { border-bottom: none; }
  .crisis-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stats-bar-inner { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 24px 0; padding-left: 0; }
  .stat-item:last-child { border-bottom: none; }
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; flex-direction: column; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { align-items: center; }
  .footer-legal { text-align: center; }
  .hero { padding: 100px 24px 60px; }
  .section-wrap { padding: 0 24px; }
  .how-header { padding: 56px 24px; }
  .contact { padding: 72px 24px; }
  .close-section { padding: 72px 24px; }
  footer { padding: 28px 24px; }
  .insight, .verticals, .mandate, .pilot, .sukha, .patents, .team-section { padding: 72px 0; }
  .schools-section, .council-quote { padding: 72px 0; }
  .stats-bar-inner { padding: 0 24px; }
  .insight-card-grid { grid-template-columns: 1fr 1fr; }
  .btn-primary, .btn-ghost, .close-cta, .form-btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }
}

@media (max-width: 600px) {
  .hero { padding: 88px 16px 48px; min-height: auto; }
  .hero-headline { margin-bottom: 10px; }
  .hero-sub { font-size: 17px; margin-bottom: 16px; }
  .hero-body { font-size: 15px; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; text-align: center; justify-content: center; }
  .section-wrap { padding: 0 16px; }
  .stats-bar-inner { padding: 0 16px; }
  nav { padding: 0 16px; }
  .how-header { padding: 48px 16px; }
  .contact { padding: 56px 16px; }
  .close-section { padding: 56px 16px; }
  footer { padding: 24px 16px; }
  .insight, .verticals, .mandate, .pilot, .sukha, .patents { padding: 56px 0; }
  .schools-section, .council-quote { padding: 56px 0; }
  .schools-grid { grid-template-columns: 1fr !important; }
  .council-quote-text { font-size: 20px; padding: 0 16px; }
  .crisis-stats { grid-template-columns: 1fr 1fr; }
  .crisis-stat-num { font-size: 24px; }
  .crisis-stats-source { margin-top: -28px; margin-bottom: 40px; }
  .stat-num { font-size: 36px; }
  .feature-grid, .verticals-grid { grid-template-columns: 1fr !important; }
  .insight-card-grid { grid-template-columns: 1fr !important; }
  .contact-heading { font-size: 32px; }
  .contact-inner { gap: 32px !important; }
  .flow-step { padding: 28px 20px; }
  .pilot-card { padding: 28px; }
}

/* 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}
}
