:root {
  --bg: #0a0c10;
  --bg-elevated: #12151c;
  --bg-card: #181c26;
  --fg: #e8eaf0;
  --fg-muted: #8b92a8;
  --fg-dim: #5a6178;
  --accent: #c9a44e;
  --accent-glow: rgba(201, 164, 78, 0.15);
  --accent-subtle: rgba(201, 164, 78, 0.08);
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  letter-spacing: 0.5px;
}
.nav-name { letter-spacing: -0.3px; }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 32px 100px;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--accent-subtle);
  border: 1px solid rgba(201, 164, 78, 0.2);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 28px;
  color: var(--fg);
}
.hero-lede {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto 56px;
  line-height: 1.6;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1.1;
}
.stat-label {
  display: block;
  font-size: 13px;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}
.hero-gradient {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* SECTION SHARED */
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

/* STRATEGIES */
.strategies {
  padding: 120px 32px;
  background: var(--bg);
}
.strategies-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 64px;
}
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.strategy-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  transition: border-color 0.3s, transform 0.3s;
}
.strategy-card:hover {
  border-color: rgba(201, 164, 78, 0.2);
  transform: translateY(-2px);
}
.strategy-card.card-accent {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201, 164, 78, 0.04) 100%);
  border-color: rgba(201, 164, 78, 0.12);
}
.card-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.strategy-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.strategy-card p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* GLOBE */
.globe {
  padding: 120px 32px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.globe-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.globe-description {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
}
.globe-regions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.region {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s;
}
.region:hover { border-color: rgba(201, 164, 78, 0.25); }
.region-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--accent-glow);
}

/* CAPABILITIES */
.capabilities {
  padding: 120px 32px;
  background: var(--bg);
}
.capabilities-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.cap-item {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s;
}
.cap-item:hover { border-color: rgba(201, 164, 78, 0.2); }
.cap-icon {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 20px;
}
.cap-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.cap-item p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: 140px 32px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
  position: relative;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.closing h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 19px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* FOOTER */
.footer {
  padding: 40px 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
}
.footer-text {
  color: var(--fg-dim);
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .strategy-grid,
  .cap-grid {
    grid-template-columns: 1fr;
  }
  .globe-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .globe-regions {
    grid-template-columns: 1fr;
  }
  .hero { padding: 120px 20px 80px; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  section { padding-left: 20px; padding-right: 20px; }
}