:root {
  --bg: #06101f;
  --bg-2: #09182b;
  --panel: rgba(255,255,255,.08);
  --panel-2: rgba(255,255,255,.12);
  --line: rgba(255,255,255,.14);
  --text: #edf7ff;
  --muted: #a7bad2;
  --brand: #27f5c7;
  --brand-2: #3ba5ff;
  --brand-3: #8c5cff;
  --warning: #ffd166;
  --shadow: 0 28px 90px rgba(0,0,0,.38);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(39,245,199,.18), transparent 34%),
    radial-gradient(circle at 85% 8%, rgba(140,92,255,.18), transparent 34%),
    radial-gradient(circle at 55% 55%, rgba(59,165,255,.09), transparent 40%),
    linear-gradient(135deg, #040914 0%, var(--bg) 50%, #071a2e 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 82%);
}

body.no-scroll { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img, svg { display: block; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

.skip-link {
  position: absolute;
  top: -60px;
  left: 24px;
  z-index: 1000;
  background: var(--brand);
  color: #03131d;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(4, 10, 21, .74);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -.04em;
}
.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(39,245,199,.18);
}
.brand-name { line-height: 1; }
.brand-name span { display: block; color: var(--muted); font-size: 12px; letter-spacing: .15em; text-transform: uppercase; margin-top: 5px; }
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: .2s ease;
}
.nav a:hover, .nav a.active { color: var(--text); background: rgba(255,255,255,.08); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  border-radius: 16px;
  padding: 10px 12px;
}
.menu-btn span { display: block; width: 22px; height: 2px; background: currentColor; margin: 5px 0; border-radius: 2px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #04101b;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 18px 45px rgba(39,245,199,.24);
}
.btn-soft {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,.08);
}
.btn-soft:hover { border-color: rgba(39,245,199,.45); background: rgba(39,245,199,.10); }
.btn-full { width: 100%; }

.hero { position: relative; padding: 92px 0 58px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 56px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  background: rgba(39,245,199,.08);
  border: 1px solid rgba(39,245,199,.22);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .02em;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 22px var(--brand); }
h1 {
  font-size: clamp(44px, 7vw, 82px);
  line-height: .94;
  letter-spacing: -.075em;
  margin: 22px 0 20px;
}
.grad { background: linear-gradient(135deg, #fff, #bfe9ff 42%, #70ffd8); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lede {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
  max-width: 660px;
  margin: 0 0 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 700;
}
.meta-pill {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  border-radius: 999px;
  padding: 10px 13px;
}

.hero-card {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
  border-radius: calc(var(--radius) + 12px);
  padding: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 70% 10%, rgba(39,245,199,.35), transparent 35%), radial-gradient(circle at 20% 90%, rgba(140,92,255,.25), transparent 42%);
  opacity: .8;
  pointer-events: none;
}
.hero-card > * { position: relative; }
.orbit {
  width: min(300px, 78vw);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(255,255,255,.11), rgba(255,255,255,.02));
}
.orbit-logo {
  width: 158px;
  border-radius: 38px;
  filter: drop-shadow(0 26px 60px rgba(39,245,199,.18));
}
.status-card {
  margin-top: -16px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(3,14,26,.75);
  border-radius: 26px;
  padding: 20px;
  backdrop-filter: blur(20px);
}
.status-row { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.status-row:last-child { border-bottom: 0; }
.status-row span { color: var(--muted); }
.status-row strong { text-align: right; }

.section { padding: 74px 0; }
.section-tight { padding-top: 40px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.kicker { color: var(--brand); font-weight: 900; letter-spacing: .18em; text-transform: uppercase; font-size: 12px; margin: 0 0 10px; }
h2 { font-size: clamp(34px, 5vw, 56px); line-height: 1; letter-spacing: -.06em; margin: 0; }
.section-copy { color: var(--muted); line-height: 1.7; max-width: 560px; margin: 0; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.045));
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 18px 70px rgba(0,0,0,.18);
}
.card:hover { border-color: rgba(39,245,199,.34); }
.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #04101b;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  font-weight: 950;
  margin-bottom: 16px;
}
.card h3 { margin: 0 0 10px; font-size: 21px; letter-spacing: -.03em; }
.card p { color: var(--muted); line-height: 1.65; margin: 0; }
.card ul { margin: 18px 0 0; padding: 0; list-style: none; color: var(--muted); }
.card li { padding: 8px 0 8px 25px; position: relative; border-top: 1px solid rgba(255,255,255,.08); }
.card li::before { content: "✓"; color: var(--brand); position: absolute; left: 0; font-weight: 900; }

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.metric {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.06);
}
.metric strong { display: block; font-size: 30px; letter-spacing: -.04em; margin-bottom: 6px; }
.metric span { color: var(--muted); font-weight: 750; }

.process { counter-reset: step; }
.step { position: relative; padding-top: 64px; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 22px;
  left: 24px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .14em;
}

.pricing-card { display: flex; flex-direction: column; min-height: 100%; }
.price { font-size: 36px; line-height: 1; letter-spacing: -.06em; margin: 14px 0 6px; font-weight: 950; }
.price small { color: var(--muted); font-size: 15px; letter-spacing: 0; font-weight: 800; }
.badge {
  display: inline-flex;
  align-self: flex-start;
  color: #04101b;
  background: linear-gradient(135deg, var(--warning), #fff1b8);
  border-radius: 999px;
  padding: 7px 11px;
  font-weight: 950;
  font-size: 12px;
  margin-bottom: 12px;
}
.pricing-card .btn { margin-top: auto; }
.featured { border-color: rgba(39,245,199,.46); box-shadow: 0 26px 95px rgba(39,245,199,.10); transform: translateY(-10px); }

.cta {
  border: 1px solid rgba(39,245,199,.26);
  background: linear-gradient(135deg, rgba(39,245,199,.15), rgba(59,165,255,.10), rgba(140,92,255,.12));
  border-radius: calc(var(--radius) + 10px);
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow);
}
.cta h2 { margin-bottom: 14px; }
.cta p { color: var(--muted); margin: 0; line-height: 1.7; }

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
  align-items: start;
}
.info-list { display: grid; gap: 12px; }
.info-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.055);
}
.info-item b { display: block; margin-bottom: 4px; }
.info-item span, .info-item a { color: var(--muted); line-height: 1.5; }
.form-card { padding: 26px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
label { color: var(--muted); font-weight: 800; font-size: 13px; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(4,13,25,.72);
  border-radius: 16px;
  padding: 14px 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
textarea { min-height: 132px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: rgba(39,245,199,.62); box-shadow: 0 0 0 4px rgba(39,245,199,.10); }
select option { background: #071426; color: #fff; }
.form-note { color: var(--muted); font-size: 13px; line-height: 1.55; margin: 14px 0 0; }

.legal-layout { display: grid; grid-template-columns: 280px 1fr; gap: 30px; align-items: start; padding: 64px 0; }
.legal-nav { position: sticky; top: 104px; }
.legal-content { max-width: 850px; }
.legal-content h1 { font-size: clamp(38px, 6vw, 62px); margin-top: 0; }
.legal-content h2 { font-size: 28px; margin-top: 38px; }
.legal-content p, .legal-content li { color: var(--muted); line-height: 1.75; }
.legal-content ul { padding-left: 22px; }
.legal-card { border: 1px solid var(--line); background: rgba(255,255,255,.06); border-radius: 26px; padding: 24px; }

.footer {
  padding: 46px 0;
  border-top: 1px solid var(--line);
  background: rgba(2,8,16,.45);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 28px;
  align-items: start;
}
.footer p, .footer a { color: var(--muted); line-height: 1.7; }
.footer h3 { margin: 0 0 12px; }
.footer-links { display: grid; gap: 9px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding-top: 30px; color: var(--muted); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero-grid, .contact-grid, .legal-layout, .cta { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4, .metric-strip { grid-template-columns: 1fr 1fr; }
  .featured { transform: none; }
  .nav {
    position: fixed;
    inset: 82px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(4,10,21,.96);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px; }
  .menu-btn { display: inline-block; }
  .header-actions .btn { display: none; }
  .legal-nav { position: static; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .hero { padding-top: 58px; }
  .grid-3, .grid-4, .metric-strip, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn, .cta .btn { width: 100%; }
  .section-head { display: block; }
  .section-copy { margin-top: 14px; }
  .cta { padding: 26px; }
}
