:root {
  color-scheme: dark;
  --bg: #07101d;
  --panel: rgba(15, 28, 47, 0.72);
  --text: #f5f7fb;
  --muted: #9da9bc;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #82f7ce;
  --accent-2: #8ca8ff;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(78, 121, 255, 0.12), transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(95, 255, 202, 0.10), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.orb {
  position: fixed;
  width: 32rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .12;
  pointer-events: none;
}
.orb-one { top: -15rem; right: -8rem; background: var(--accent-2); }
.orb-two { bottom: -18rem; left: -10rem; background: var(--accent); }

.shell {
  width: min(calc(100% - 40px), var(--max));
  min-height: 100vh;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.nav {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .18em;
}
.brand-mark { color: var(--accent); font-size: 1rem; }
.contact-link {
  color: var(--muted);
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s ease;
}
.contact-link:hover { color: var(--text); }

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 0 80px;
}

.status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  margin-bottom: 34px;
  border: 1px solid rgba(130, 247, 206, .22);
  border-radius: 999px;
  background: rgba(130, 247, 206, .06);
  color: #c7ffec;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
  animation: pulse 2s infinite;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3.2rem, 8.5vw, 7.8rem);
  line-height: .92;
  letter-spacing: -.065em;
  font-weight: 760;
}
h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px rgba(245, 247, 251, .50);
}

.lead {
  max-width: 600px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.75;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 750;
  font-size: .9rem;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.primary { background: var(--text); color: var(--bg); border-color: var(--text); }
.secondary { background: rgba(255,255,255,.03); }
.secondary:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.2); }

.progress-card {
  max-width: 760px;
  margin-top: 64px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  backdrop-filter: blur(16px);
}
.progress-copy {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: .82rem;
}
.progress-copy strong { color: var(--text); font-weight: 650; }
.progress-track {
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255,255,255,.08);
}
.progress-fill {
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 20px rgba(130,247,206,.22);
}
.milestones {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: #748197;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

footer {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #718096;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.72); opacity: .55; }
}

@media (max-width: 700px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .nav { min-height: 76px; }
  .hero { padding: 66px 0 56px; }
  h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .lead { margin-top: 26px; }
  .progress-card { margin-top: 48px; }
  footer { align-items: flex-start; flex-direction: column; justify-content: center; padding: 22px 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
