:root {
  --navy: #0a1628;
  --navy-mid: #142240;
  --gold: #d4a843;
  --gold-light: #e8c87a;
  --cream: #f5f0e6;
  --cream-dark: #ece5d6;
  --text-dark: #0a1628;
  --text-mid: #3a4a5e;
  --text-light: #7a8a9e;
  --white: #ffffff;
  --off-white: #faf8f3;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-dashboard-link {
  margin-left: auto;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.15s;
  display: flex;
  align-items: center;
}
.nav-dashboard-link:hover { color: var(--gold); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 48px 80px;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 168, 67, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 67, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 32px 0 0;
}
.hero-stat:first-child { padding-left: 0; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(212, 168, 67, 0.3);
  margin-right: 32px;
}

/* SECTION SHARED */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

/* SERVICES */
.services { padding: 100px 48px; background: var(--cream); }
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
  border: 1px solid var(--cream-dark);
}
.service-card {
  padding: 40px 36px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  transition: border-color 0.2s;
}
.service-card:hover { border-color: var(--gold); }
.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  margin-bottom: 20px;
  border-radius: 2px;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* COVERAGE */
.coverage { padding: 100px 48px; background: var(--navy-mid); }
.coverage-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.coverage .section-heading { color: var(--white); }
.coverage-body {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-top: 16px;
}
.coverage-regions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}
.region {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.region-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* COVERAGE VISUAL */
.coverage-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
}
.globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 67, 0.2);
}
.globe-ring-1 { width: 180px; height: 180px; }
.globe-ring-2 { width: 260px; height: 260px; border-color: rgba(212, 168, 67, 0.12); }
.globe-ring-3 { width: 340px; height: 340px; border-color: rgba(212, 168, 67, 0.07); }
.globe-core {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DIFFERENTIATOR */
.diff { padding: 100px 48px; background: var(--cream); }
.diff-inner { max-width: 1100px; margin: 0 auto; }
.diff-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 168, 67, 0.4);
  padding: 6px 14px;
  margin-bottom: 28px;
}
.diff-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.diff-body {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 60px;
}
.diff-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--cream-dark);
}
.diff-pillar {
  display: flex;
  gap: 20px;
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
}
.pillar-mark {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: rgba(212, 168, 67, 0.25);
  flex-shrink: 0;
  line-height: 1;
}
.diff-pillar h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.diff-pillar p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* CLOSING */
.closing { padding: 100px 48px; background: var(--navy); }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-statement {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* FOOTER */
.footer { padding: 40px 48px; background: var(--navy); border-top: 1px solid rgba(212, 168, 67, 0.12); }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.footer-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}
.footer-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 64px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-stat-sep { display: none; }
  .services { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .coverage { padding: 64px 24px; }
  .coverage-inner { grid-template-columns: 1fr; gap: 40px; }
  .coverage-visual { display: none; }
  .diff { padding: 64px 24px; }
  .diff-pillars { grid-template-columns: 1fr; }
  .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 12px; }
}