:root {
  --navy: #0A1628;
  --navy-mid: #0F2040;
  --amber: #F59E0B;
  --amber-dim: #B47408;
  --cream: #F0EBE1;
  --cream-muted: rgba(240, 235, 225, 0.65);
  --white: #FFFFFF;
  --bg-light: #F5F3EE;
  --text-dark: #0A1628;
  --text-muted: #6B7280;
  --border: rgba(240, 235, 225, 0.12);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--cream);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--amber); color: var(--navy); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, .nav-logo, .footer-logo {
  font-family: 'Syne', sans-serif;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  background: rgba(10, 22, 40, 0.85);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--cream-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--amber);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 28px;
}
.amber { color: var(--amber); }
.hero-lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--cream-muted);
  max-width: 480px;
}

/* ── GLOBE VISUAL ── */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 400px;
}
.globe-core {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 35% 35%, #F59E0B, #B47408);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(245, 158, 11, 0.5), 0 0 120px rgba(245, 158, 11, 0.2);
  position: relative;
  z-index: 3;
}
.globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(245, 158, 11, 0.25);
  z-index: 2;
}
.ring-1 { width: 220px; height: 220px; }
.ring-2 { width: 320px; height: 320px; border-color: rgba(245, 158, 11, 0.15); }
.ring-3 { width: 420px; height: 420px; border-color: rgba(245, 158, 11, 0.08); }
.globe-pulse {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.1);
  animation: pulse 3s ease-in-out infinite;
  z-index: 1;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.8); opacity: 0; }
}

/* ── HERO STATS ── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
.stat {
  flex: 1;
  padding: 0 40px;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--cream-muted);
  line-height: 1.4;
}
.stat-div {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── PROOF ── */
.proof {
  background: var(--navy-mid);
  padding: 64px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.proof-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  color: var(--cream);
  max-width: 720px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.proof-source {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ── FEATURES ── */
.features {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 64px;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 560px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
}
.feature-card {
  padding: 48px 40px;
  background: var(--navy-mid);
  transition: background 0.2s;
}
.feature-card:hover { background: rgba(15, 32, 64, 0.8); }
.feature-icon {
  margin-bottom: 24px;
  opacity: 0.9;
}
.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 15px;
  color: var(--cream-muted);
  line-height: 1.7;
}

/* ── PROCESS ── */
.process {
  padding: 100px 40px;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process .section-header { text-align: center; margin-bottom: 72px; }
.process .section-title { max-width: 100%; }
.process-steps {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}
.step-num {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 16px;
}
.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 14px;
  color: var(--cream-muted);
  line-height: 1.7;
}
.process-connector {
  flex-shrink: 0;
  width: 60px;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--amber) 0px, var(--amber) 4px, transparent 4px, transparent 10px);
  margin-top: 32px;
  opacity: 0.5;
}

/* ── CLOSING ── */
.closing {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.closing-inner {
  max-width: 760px;
}
.closing-headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 18px;
  color: var(--cream-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--cream);
  display: block;
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 12px;
  color: var(--cream-muted);
}
.footer-meta {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-height: 260px; }
  .globe-ring.ring-3 { display: none; }
  .hero-stats { flex-direction: column; gap: 32px; }
  .stat { padding: 0; text-align: center; }
  .stat-div { display: none; }
  .features, .closing { padding: 64px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 32px 24px; }
  .process { padding: 64px 24px; }
  .process-steps { flex-direction: column; gap: 40px; }
  .process-connector { display: none; }
  .process-step { padding: 0; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}