:root {
  --bg: #0b0d12;
  --panel: #11141b;
  --text: #e6e8ee;
  --muted: #b5bac7;
  --primary: #4fd1c5;
  --primary-700: #3ab6ab;
  --accent: #7c5fff;
  --danger: #ff5f7a;
  --border: #242a36;
  --shadow: 0 6px 20px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 10% 0%, #0f1320 0%, #0b0d12 60%, #090a0f 100%);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .08s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #0b0d12;
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--primary-700), var(--accent)); }
.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.03);
}
.btn-outline:hover { background: rgba(255,255,255,0.06); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(160%) blur(10px);
  background: rgba(11,13,18,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: .2px;
}
.brand-logo {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.nav { position: relative; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  font-size: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background .15s ease, color .15s ease;
}
.nav-links a:hover { background: rgba(255,255,255,0.06); }

.hero {
  padding: 64px 0 32px;
  background:
    radial-gradient(800px 400px at 80% 20%, rgba(124,95,255,0.2), transparent 60%),
    radial-gradient(700px 350px at 20% 20%, rgba(79,209,197,0.18), transparent 60%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}
.hero-copy h1 {
  margin: 0 0 12px;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.hero-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  max-width: 56ch;
}
.hero-actions { display: flex; gap: 12px; }
.hero-media .media-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.media-stat {
  display: grid;
  place-items: center;
  gap: 2px;
  padding: 14px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
}
.stat-number { font-size: 24px; font-weight: 700; }
.stat-label { font-size: 12px; color: var(--muted); }

.section-head {
  text-align: center;
  margin: 40px 0 24px;
}
.section-head h2 {
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -0.2px;
}
.section-head p { margin: 0; color: var(--muted); }

.grid {
  display: grid;
  gap: 18px;
}
.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}
.card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}
.card-icon {
  font-size: 22px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
}
.card h3 { margin: 12px 0 4px; font-size: 18px; }
.card p { margin: 0 0 12px; color: var(--muted); }
.card-link {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
}

.global-figure {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
  align-items: center;
}
.world-map {
  height: 260px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background:
    radial-gradient(240px 140px at 40% 40%, rgba(124,95,255,0.3), transparent 60%),
    radial-gradient(240px 140px at 60% 60%, rgba(79,209,197,0.25), transparent 60%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04), rgba(255,255,255,0.04) 2px, transparent 2px, transparent 6px);
  box-shadow: var(--shadow);
}
.global-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.global-stats li {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}

.quote { position: relative; }
.quote p { margin: 0 0 10px; }
.quote-author { font-size: 13px; color: var(--muted); }

.cta {
  padding: 36px 0 64px;
}
.cta-inner {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}
.cta-actions { display: flex; gap: 12px; }

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 24px 0;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 14px;
}
.footer-links a {
  text-decoration: none;
  color: var(--muted);
}
.footer-copy { color: var(--muted); }

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .cards-3 { grid-template-columns: 1fr 1fr; }
  .global-figure { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    right: 0;
    top: 64px;
    flex-direction: column;
    background: rgba(11,13,18,0.95);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .cards-3 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
}
