/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #06111F;
  color: #E2E8F0;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

/* ── BRAND TOKENS ── */
:root {
  --navy:       #06111F;
  --navy-2:     #0D1F3C;
  --navy-3:     #142847;
  --navy-4:     #1A3260;
  --orange:     #F97316;
  --orange-dim: rgba(249,115,22,0.15);
  --orange-glow:rgba(249,115,22,0.08);
  --yellow:     #FBBF24;
  --white:      #F8FAFC;
  --slate:      #94A3B8;
  --slate-dim:  rgba(148,163,184,0.12);
  --border:     rgba(148,163,184,0.12);
  --border-hi:  rgba(249,115,22,0.35);
}

/* ── TYPOGRAPHY ── */
.display { font-family: 'Syne', sans-serif; }

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(6,17,31,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--border);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-logo span { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: #EA6C0A; transform: translateY(-1px); }
.nav-cta svg { width: 14px; height: 14px; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 80px;
  text-align: center;
  overflow: hidden;
}

/* Radial glow behind hero */
.hero::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(249,115,22,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Grid map background */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148,163,184,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-dim);
  border: 0.5px solid var(--border-hi);
  color: var(--orange);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: fadeUp 0.6s ease both;
}

.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease 0.1s both;
}

.hero-h1 .accent { color: var(--orange); }
.hero-h1 .dim { color: var(--slate); }

.hero-sub {
  font-size: 17px;
  color: var(--slate);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.65;
  font-weight: 300;
  animation: fadeUp 0.6s ease 0.2s both;
}

.hero-cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
  animation: fadeUp 0.6s ease 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: #EA6C0A;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(249,115,22,0.35);
}
.btn-primary svg { width: 16px; height: 16px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  padding: 14px 28px;
  border-radius: 10px;
  border: 0.5px solid rgba(255,255,255,0.2);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
}
.btn-ghost svg { width: 16px; height: 16px; }

.hero-note {
  font-size: 12px;
  color: var(--slate);
  opacity: 0.6;
  animation: fadeUp 0.6s ease 0.35s both;
}

/* ── MAP PREVIEW ── */
.map-preview {
  position: relative;
  margin-top: 52px;
  border-radius: 16px;
  overflow: hidden;
  border: 0.5px solid rgba(249,115,22,0.2);
  background: #0a1929;
  height: 280px;
  animation: fadeUp 0.7s ease 0.4s both;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 0.5px rgba(249,115,22,0.15);
}

.map-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148,163,184,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.map-preview::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(transparent, #06111F);
}

/* Animated zones */
.zone {
  position: absolute;
  border-radius: 10px;
  border: 1.5px solid;
  animation: zonePop 0.5s ease both;
}
@keyframes zonePop {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.zone-a { width: 160px; height: 100px; top: 40px; left: 8%;  border-color: rgba(249,115,22,0.6); background: rgba(249,115,22,0.08); animation-delay: 0.6s; }
.zone-b { width: 130px; height: 90px;  top: 35px; left: 28%; border-color: rgba(251,191,36,0.5);  background: rgba(251,191,36,0.06);  animation-delay: 0.75s; }
.zone-c { width: 145px; height: 105px; top: 50px; left: 47%; border-color: rgba(56,189,248,0.5);  background: rgba(56,189,248,0.06);  animation-delay: 0.9s; }
.zone-d { width: 120px; height: 85px;  top: 38px; left: 67%; border-color: rgba(52,211,153,0.5);  background: rgba(52,211,153,0.06);  animation-delay: 1.05s; }

.zone-label {
  position: absolute;
  top: 8px; left: 10px;
  font-size: 10px;
  font-weight: 600;
  font-family: 'Syne', sans-serif;
  letter-spacing: 0.06em;
}
.zone-a .zone-label { color: #F97316; }
.zone-b .zone-label { color: #FBBF24; }
.zone-c .zone-label { color: #38BDF8; }
.zone-d .zone-label { color: #34D399; }

.map-dot {
  position: absolute;
  border-radius: 50%;
  animation: dotPop 0.3s ease both;
}
@keyframes dotPop {
  from { opacity: 0; transform: scale(0); }
  to   { opacity: 1; transform: scale(1); }
}

/* Link share pill */
.link-pill {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  background: var(--navy-2);
  border: 0.5px solid var(--border-hi);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  animation: slideInRight 0.5s ease 1.3s both;
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.link-pill-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.link-pill-icon svg { width: 14px; height: 14px; color: white; }
.link-pill-url { color: var(--slate); font-size: 11px; }
.link-pill-url strong { color: var(--white); font-weight: 500; }
.link-pill-badge {
  background: rgba(52,211,153,0.15);
  color: #34D399;
  font-size: 10px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 20px;
}

/* ── STATS BAR ── */
.stats-bar {
  position: relative;
  z-index: 1;
  background: var(--navy-2);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 28px 40px;
  display: flex;
  justify-content: center;
  gap: 0;
}

.stat {
  flex: 1;
  max-width: 200px;
  text-align: center;
  padding: 0 20px;
  border-right: 0.5px solid var(--border);
}
.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.stat-desc {
  font-size: 12px;
  color: var(--slate);
  line-height: 1.4;
}

/* ── SECTIONS SHARED ── */
section {
  position: relative;
  z-index: 1;
  padding: 96px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--slate);
  max-width: 520px;
  line-height: 1.65;
  font-weight: 300;
}

/* ── VALUE PROPS ── */
.value-section { text-align: center; }
.value-section .section-sub { margin: 0 auto 56px; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--navy-2);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.value-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-4px);
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.value-card:hover::before { opacity: 1; }

.value-card-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--orange-dim);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
  color: rgba(249,115,22,0.1);
}

.value-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--orange-dim);
  border: 0.5px solid var(--border-hi);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
}
.value-icon svg { width: 20px; height: 20px; }

.value-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.value-desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
  font-weight: 300;
}

/* ── HOW IT WORKS ── */
.how-section { background: transparent; }
.how-section > .section-container { max-width: 1100px; margin: 0 auto; }

.steps-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 22px);
  right: calc(12.5% + 22px);
  height: 1px;
  background: linear-gradient(90deg, var(--orange), rgba(249,115,22,0.2));
}

.step {
  text-align: center;
  padding: 0 8px;
}

.step-num-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy-3);
  border: 1.5px solid var(--border-hi);
  margin-bottom: 20px;
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--orange);
}

.step-num-wrap::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 0.5px solid rgba(249,115,22,0.15);
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.55;
  font-weight: 300;
}

/* ── DIVIDER ── */
.divider {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  height: 0.5px;
  background: var(--border);
}

/* ── SOCIAL PROOF ── */
.proof-section { text-align: center; }

.clients-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 40px 0 52px;
}

.client-pill {
  background: var(--navy-2);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  transition: border-color 0.2s, color 0.2s;
}
.client-pill:hover { border-color: var(--border-hi); color: var(--white); }

.testimonial {
  background: var(--navy-2);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  padding: 36px 40px;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -16px; left: 32px;
  font-family: 'Syne', sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  opacity: 0.6;
}

.testimonial-text {
  font-size: 17px;
  color: var(--white);
  line-height: 1.7;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy-4);
  border: 0.5px solid var(--border-hi);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
}

.author-info { text-align: left; }
.author-name { font-size: 14px; font-weight: 500; color: var(--white); }
.author-role { font-size: 12px; color: var(--slate); }

/* ── FINAL CTA ── */
.cta-section-wrap {
  position: relative;
  z-index: 1;
  background: var(--navy-2);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 96px 40px;
  text-align: center;
  overflow: hidden;
}

.cta-section-wrap::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(249,115,22,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.cta-h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-h2 span { color: var(--orange); }

.cta-sub {
  font-size: 16px;
  color: var(--slate);
  margin-bottom: 36px;
  font-weight: 300;
}

.cta-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto 14px;
}

.cta-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.cta-input::placeholder { color: var(--slate); opacity: 0.7; }
.cta-input:focus { border-color: rgba(249,115,22,0.5); }

.cta-note {
  font-size: 12px;
  color: var(--slate);
  opacity: 0.6;
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  background: #030C16;
  padding: 36px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 0.5px solid var(--border);
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: -0.01em;
}
.footer-logo span { color: var(--orange); }

.footer-by {
  font-size: 11px;
  color: rgba(148,163,184,0.5);
  margin-top: 2px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-size: 12px;
  color: rgba(148,163,184,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--slate); }

.footer-copy {
  font-size: 12px;
  color: rgba(148,163,184,0.4);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 100px 20px 60px; }
  .stats-bar { padding: 24px 20px; gap: 0; flex-wrap: wrap; }
  .stat { min-width: 50%; border-right: none; border-bottom: 0.5px solid var(--border); padding: 16px; }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  section { padding: 60px 20px; }
  .value-grid { grid-template-columns: 1fr; }
  .steps-container { grid-template-columns: repeat(2, 1fr); }
  .steps-container::before { display: none; }
  .cta-form { flex-direction: column; }
  footer { padding: 28px 20px; flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}