@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #050914;
  --panel: rgba(9, 18, 35, 0.82);
  --panel-strong: #081323;
  --line: rgba(100, 210, 255, 0.22);
  --text: #eaf7ff;
  --muted: #91a9bd;
  --cyan: #38d5ff;
  --blue: #3d73ff;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Sora', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(56, 213, 255, 0.18), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(61, 115, 255, 0.20), transparent 28%),
    linear-gradient(180deg, #02050c 0%, var(--bg) 45%, #02050c 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

a { color: inherit; text-decoration: none; }

.nav {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.brand {
  letter-spacing: -0.04em;
  font-size: 1.45rem;
}

.brand-main { font-weight: 700; }
.brand-light { font-weight: 300; }

.nav nav {
  display: flex;
  gap: 26px;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav a:hover { color: var(--cyan); }

.nav-cta {
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--text) !important;
  background: rgba(56, 213, 255, 0.08);
}

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 70px auto 110px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  color: var(--cyan);
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(3rem, 7vw, 6.3rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.lead {
  color: #b7c9d8;
  font-size: 1.12rem;
  line-height: 1.8;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.94rem;
}

.btn.primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #00101d;
}

.btn.secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}

.mission-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(9,18,35,0.94), rgba(3,9,18,0.94));
  box-shadow: 0 30px 100px rgba(0,0,0,0.45), inset 0 0 80px rgba(56,213,255,0.06);
  border-radius: 32px;
  padding: 28px;
  min-height: 560px;
  position: relative;
  overflow: hidden;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.pulse {
  width: 10px;
  height: 10px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 24px var(--cyan);
}

.globe {
  width: 330px;
  height: 330px;
  margin: 70px auto 50px;
  border-radius: 50%;
  border: 1px solid rgba(56,213,255,0.35);
  background:
    radial-gradient(circle at 35% 25%, rgba(56,213,255,0.38), transparent 24%),
    radial-gradient(circle at 60% 70%, rgba(61,115,255,0.35), transparent 28%),
    rgba(56,213,255,0.04);
  position: relative;
  box-shadow: inset 0 0 60px rgba(56,213,255,0.18), 0 0 80px rgba(56,213,255,0.13);
}

.ring {
  position: absolute;
  inset: -28px;
  border: 1px solid rgba(56,213,255,0.24);
  border-radius: 50%;
  transform: rotateX(66deg) rotateZ(20deg);
}

.r2 { inset: 30px; transform: rotateX(72deg) rotateZ(-38deg); }
.r3 { inset: -65px; transform: rotateX(78deg) rotateZ(70deg); }

.sat {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 16px var(--cyan);
  position: absolute;
}

.s1 { top: 40px; right: 42px; }
.s2 { bottom: 68px; left: 28px; }
.s3 { top: 160px; right: -22px; }

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.metrics div {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,0.035);
}

.metrics strong {
  display: block;
  color: white;
  margin-bottom: 6px;
}

.metrics span {
  color: var(--muted);
  font-size: 0.78rem;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 110px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 50px;
  align-items: start;
}

.split p:last-child,
.section > p,
.product-card p,
.columns p,
.timeline span,
.cta p,
footer p {
  color: var(--muted);
  line-height: 1.8;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
  background: rgba(9, 18, 35, 0.72);
  min-height: 285px;
  display: flex;
  flex-direction: column;
}

.product-card span {
  color: var(--cyan);
  font-size: 0.82rem;
  margin-bottom: 34px;
}

.product-card a {
  color: var(--cyan);
  margin-top: auto;
  font-weight: 600;
}

.product-card.highlight {
  background: linear-gradient(180deg, rgba(56,213,255,0.14), rgba(9,18,35,0.75));
}

.dark-panel {
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 44px;
  background: linear-gradient(135deg, rgba(9,18,35,0.92), rgba(4,8,18,0.92));
}

.columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 36px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.timeline div {
  border-left: 2px solid var(--cyan);
  padding: 10px 0 10px 22px;
}

.timeline strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.cta {
  text-align: center;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 50% 0%, rgba(56,213,255,0.18), transparent 40%), rgba(9,18,35,0.78);
  border-radius: 36px;
  padding: 64px 36px;
}

.cta p {
  max-width: 760px;
  margin: 0 auto 28px;
}

footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 60px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.28;
  pointer-events: none;
}

.orb-one {
  width: 280px;
  height: 280px;
  background: var(--cyan);
  top: 16%;
  right: -80px;
}

.orb-two {
  width: 240px;
  height: 240px;
  background: var(--blue);
  bottom: 8%;
  left: -80px;
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    gap: 20px;
  }

  .nav nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero,
  .split,
  .product-grid,
  .columns,
  .timeline {
    grid-template-columns: 1fr;
  }

  .mission-card {
    min-height: auto;
  }

  .globe {
    width: 250px;
    height: 250px;
  }

  .metrics,
  footer {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}
