:root {
  --bg: #050914;
  --bg-2: #080d1c;
  --bg-card: #0a1122;
  --fg: #e8edf5;
  --fg-2: #8899b4;
  --accent: #1D5FFF;
  --accent-2: #3a7aff;
  --accent-dim: rgba(29, 95, 255, 0.12);
  --crisis: #E85D04;
  --border: rgba(29, 95, 255, 0.15);
  --border-2: rgba(29, 95, 255, 0.08);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
}
.nav-badge {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--accent-dim);
}

/* Hero */
.hero {
  padding: 80px 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--fg);
}
.hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-2);
  max-width: 460px;
}

/* Globe visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.globe-wrapper {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.globe-rings .ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ring-1 { width: 160px; height: 160px; }
.ring-2 { width: 200px; height: 200px; border-color: rgba(29,95,255,0.2); }
.ring-3 { width: 240px; height: 240px; border-color: rgba(29,95,255,0.1); }
.ring-4 { width: 280px; height: 280px; border-color: rgba(29,95,255,0.05); }
.globe-core {
  position: relative;
  z-index: 1;
}
.globe-core svg { animation: rotate 30s linear infinite; }
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Architecture */
.architecture {
  background: var(--bg-2);
  padding: 80px 40px;
}
.arch-header {
  max-width: 1200px;
  margin: 0 auto 60px;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 20px;
}
.arch-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.arch-desc {
  font-size: 16px;
  color: var(--fg-2);
  max-width: 520px;
}
.agents-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.agent-card {
  background: var(--bg-2);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.agent-card.crisis { background: rgba(232, 93, 4, 0.04); }
.agent-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
}
.agent-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
}
.agent-desc {
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.5;
}
.arch-footer {
  max-width: 1200px;
  margin: 24px auto 0;
  text-align: center;
}
.plus-badge {
  font-size: 12px;
  color: var(--fg-2);
  letter-spacing: 0.05em;
}

/* Stats */
.stats {
  padding: 60px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stat-item {
  text-align: center;
  flex: 1;
}
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* Clients */
.clients {
  padding: 60px 40px;
  background: var(--bg-2);
}
.clients-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 32px;
}
.clients-logos {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.client-logo {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-2);
  border: 1px solid var(--border-2);
  padding: 6px 16px;
  border-radius: 4px;
  letter-spacing: 0.03em;
}

/* Closing */
.closing {
  padding: 100px 40px;
  background: var(--bg);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing-line {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 48px;
}
.closing-divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 48px;
}
.closing-claims {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  text-align: left;
}
.claim {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.5;
}
.claim-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  background: var(--accent-dim);
}

/* Footer */
.footer {
  padding: 32px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.footer-note {
  font-size: 12px;
  color: var(--fg-2);
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 24px 40px;
  }
  .hero-visual { order: -1; }
  .globe-wrapper { width: 180px; height: 180px; }
  .ring-1 { width: 120px; height: 120px; }
  .ring-2 { width: 150px; height: 150px; }
  .ring-3 { width: 180px; height: 180px; }
  .ring-4 { width: 210px; height: 210px; }
  .agents-grid { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; gap: 32px; }
  .stat-divider { width: 40px; height: 1px; }
  .closing-claims { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 28px; }
  .clients-logos { gap: 8px; }
  .client-logo { font-size: 12px; padding: 5px 12px; }
}