:root {
  color-scheme: dark;
  --canvas: #050a12;
  --canvas-soft: #07101c;
  --surface: rgba(13, 24, 39, .72);
  --surface-strong: #0d1827;
  --line: rgba(151, 174, 198, .16);
  --line-strong: rgba(69, 214, 217, .34);
  --text: #f4f7fb;
  --muted: #9fb0c3;
  --signal: #45d6d9;
  --signal-soft: #86f6ef;
  --gold: #f1b84b;
  --urgent: #f04f5f;
  --green: #55c78a;
  --max: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 10%, rgba(240, 79, 95, .07), transparent 30rem),
    var(--canvas);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--text);
  color: var(--canvas);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--signal-soft);
  outline-offset: 4px;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.ambient__grid {
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image:
    linear-gradient(rgba(145, 170, 192, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145, 170, 192, .055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.ambient__pointer {
  position: absolute;
  top: 0;
  left: 0;
  width: min(48rem, 76vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 214, 217, .085), transparent 67%);
  transform: translate3d(70vw, 25vh, 0) translate(-50%, -50%);
  will-change: transform;
}

.ambient__beam {
  position: absolute;
  width: 1px;
  height: 160vh;
  background: linear-gradient(transparent, rgba(69, 214, 217, .35), transparent);
  transform: rotate(34deg);
}

.ambient__beam--one { left: 22%; top: -50%; }
.ambient__beam--two { right: 18%; top: -35%; opacity: .5; }

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img { filter: drop-shadow(0 0 18px rgba(239, 35, 60, .14)); }

.brand__name {
  max-width: 145px;
  color: #cbd5e1;
  font-size: .83rem;
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.brand__name strong { display: block; color: var(--text); font-size: 1rem; letter-spacing: .08em; }

.header-actions { display: flex; align-items: center; gap: 24px; }

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(241, 184, 75, .08), 0 0 18px rgba(241, 184, 75, .6);
  animation: pulse 2.8s ease-in-out infinite;
}

.header-link,
footer a {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.motion-toggle {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(13, 24, 39, .45);
  color: var(--muted);
  font: inherit;
  font-size: .61rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}

.motion-toggle span { color: var(--signal-soft); }
.motion-toggle:hover { border-color: var(--line-strong); color: var(--text); }

.header-link:hover,
footer a:hover { color: var(--text); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(460px, .97fr);
  align-items: center;
  min-height: 740px;
  padding: 56px 0 68px;
  border-bottom: 1px solid var(--line);
}

.hero__copy { position: relative; z-index: 2; padding-right: 54px; }

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

.eyebrow span { padding-right: 14px; }
.eyebrow b { padding-left: 14px; border-left: 1px solid var(--line-strong); color: var(--muted); font-weight: 650; }

h1, h2, h3, p { text-wrap: pretty; }

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.6rem, 6.2vw, 6.9rem);
  font-weight: 420;
  letter-spacing: -.073em;
  line-height: .91;
}

h1 em {
  color: transparent;
  background: linear-gradient(95deg, var(--text) 4%, var(--signal-soft) 65%, var(--signal));
  background-clip: text;
  font-style: normal;
}

.lede {
  max-width: 630px;
  margin: 30px 0 0;
  color: #b4c2d0;
  font-size: clamp(1.02rem, 1.3vw, 1.2rem);
  line-height: 1.7;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button--primary { border-color: rgba(69, 214, 217, .44); background: var(--signal); color: #031116; box-shadow: 0 12px 36px rgba(69, 214, 217, .13); }
.button--primary:hover { background: var(--signal-soft); }
.button--secondary { background: rgba(13, 24, 39, .82); color: var(--text); }
.button--secondary:hover { border-color: rgba(244, 247, 251, .35); }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 620px;
  margin: 52px 0 0;
  padding: 0;
}

.trust-strip div { padding: 0 20px; border-left: 1px solid var(--line); }
.trust-strip div:first-child { padding-left: 0; border-left: 0; }
.trust-strip dt { color: var(--muted); font-size: .62rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.trust-strip dd { margin: 5px 0 0; color: var(--text); font-size: .82rem; }

.signal-visual {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 46%, rgba(69, 214, 217, .14), transparent 33%),
    linear-gradient(145deg, rgba(18, 34, 55, .72), rgba(5, 10, 18, .5));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 40px 100px rgba(0,0,0,.3);
  contain: layout paint style;
  isolation: isolate;
}

.signal-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .33;
  background-image:
    linear-gradient(rgba(69,214,217,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69,214,217,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black, transparent 76%);
}

.visual-label {
  position: absolute;
  z-index: 3;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: .6rem;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.visual-label b { color: var(--signal-soft); font-weight: 750; }
.visual-label b i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 10px var(--signal);
  animation: pulse 2.8s ease-in-out infinite;
}
.visual-label--top { top: 22px; }
.visual-label--bottom { bottom: 22px; }

.globe-shell { position: absolute; inset: 74px 22px 66px; display: grid; place-items: center; perspective: 900px; }

.globe {
  position: relative;
  width: min(78%, 390px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(134, 246, 239, .36);
  border-radius: 50%;
  background:
    radial-gradient(circle at 33% 28%, rgba(134, 246, 239, .18), transparent 18%),
    radial-gradient(circle at 70% 80%, rgba(69, 214, 217, .16), transparent 35%),
    #071725;
  box-shadow:
    inset -52px -30px 90px rgba(0,0,0,.75),
    inset 24px 12px 64px rgba(69,214,217,.13),
    0 0 80px rgba(69,214,217,.1);
}

.globe__canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.globe.is-canvas-ready .globe__grid,
.globe.is-canvas-ready .globe__land,
.globe.is-canvas-ready .signal {
  display: none;
}

.globe__atmosphere { position: absolute; inset: 0; border-radius: 50%; box-shadow: inset 0 0 18px rgba(134,246,239,.3); }

.globe__grid {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  opacity: .42;
  background-image:
    repeating-radial-gradient(ellipse at center, transparent 0 23px, rgba(134,246,239,.18) 24px 25px),
    repeating-linear-gradient(90deg, transparent 0 32px, rgba(134,246,239,.13) 33px 34px);
  animation: globe-spin 22s linear infinite;
}

.globe__land {
  position: absolute;
  border: 1px solid rgba(134,246,239,.25);
  background: linear-gradient(145deg, rgba(69,214,217,.22), rgba(26,83,99,.09));
  filter: drop-shadow(0 0 12px rgba(69,214,217,.14));
  animation: land-drift 22s linear infinite;
}

.globe__land--a { top: 22%; left: 10%; width: 42%; height: 30%; border-radius: 70% 30% 46% 60%; transform: rotate(15deg); }
.globe__land--b { top: 47%; left: 44%; width: 37%; height: 28%; border-radius: 35% 65% 60% 38%; transform: rotate(-19deg); }
.globe__land--c { top: 18%; left: 70%; width: 26%; height: 22%; border-radius: 58% 42% 66% 34%; transform: rotate(22deg); }

.orbit {
  position: absolute;
  width: 92%;
  aspect-ratio: 1;
  border: 1px solid rgba(159,176,195,.22);
  border-radius: 50%;
  transform: rotateX(66deg) rotateZ(-18deg);
}

.orbit--two { width: 80%; transform: rotateY(68deg) rotateZ(28deg); }
.orbit__runner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: orbit-runner 9s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}
.orbit i {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px var(--gold);
  transform: translateY(-50%);
}
.orbit--two .orbit__runner { animation-duration: 13s; animation-direction: reverse; }
.orbit--two i { background: var(--signal); box-shadow: 0 0 16px var(--signal); }

.signal { position: absolute; width: 8px; height: 8px; border: 2px solid var(--signal-soft); border-radius: 50%; box-shadow: 0 0 14px var(--signal); }
.signal::after { content: ""; position: absolute; inset: -9px; border: 1px solid rgba(69,214,217,.4); border-radius: 50%; animation: ping 2.4s ease-out infinite; }
.signal--one { top: 31%; left: 30%; }
.signal--two { top: 57%; left: 66%; }
.signal--three { top: 68%; left: 42%; }
.signal--two::after { animation-delay: -.8s; }
.signal--three::after { animation-delay: -1.6s; }

.scan-line {
  position: absolute;
  z-index: 2;
  width: 72%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(69,214,217,.85), transparent);
  box-shadow: 0 0 14px rgba(69,214,217,.45);
  animation: scan 5.5s linear infinite;
  animation-play-state: paused;
  will-change: transform, opacity;
}
.signal-visual.is-motion-active .orbit__runner,
.signal-visual.is-motion-active .scan-line { animation-play-state: running; }

.signal-sequence {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 53px;
  display: flex;
  width: min(78%, 420px);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 8px 11px;
  border: 1px solid rgba(151, 174, 198, .12);
  border-radius: 999px;
  background: rgba(3, 10, 18, .9);
  color: #8293a6;
  font-size: .52rem;
  font-weight: 800;
  letter-spacing: .12em;
  list-style: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.signal-sequence li {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .4s ease;
}

.signal-sequence li::after {
  content: "";
  width: 20px;
  height: 1px;
  margin-left: 6px;
  background: rgba(151, 174, 198, .18);
}

.signal-sequence li:last-child::after { display: none; }
.signal-sequence span { color: #5f7082; }
.signal-sequence .is-active { color: var(--signal-soft); }
.signal-sequence .is-active span { color: var(--gold); }

.capabilities { padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: 1fr 1.15fr; column-gap: 70px; align-items: end; margin-bottom: 46px; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2, .launch-panel h2 { margin: 0; font-size: clamp(2.3rem, 4vw, 4.5rem); font-weight: 430; letter-spacing: -.055em; line-height: 1; }
.section-heading > p:last-child { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.75; }

.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.capability-card {
  position: relative;
  min-height: 390px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(18,34,55,.7), rgba(7,16,28,.5));
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease, border-color .3s ease;
}
.capability-card[data-visible="true"] { opacity: 1; transform: none; }
.capability-card:nth-child(2) { transition-delay: .1s; }
.capability-card:nth-child(3) { transition-delay: .2s; }
.capability-card:hover { border-color: var(--line-strong); }
.card-index { color: var(--gold); font-size: .64rem; font-weight: 800; letter-spacing: .18em; }
.capability-card h3 { margin: 25px 0 9px; font-size: 1.6rem; font-weight: 520; letter-spacing: -.03em; }
.capability-card p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.7; }

.card-graphic { position: relative; height: 150px; margin: 28px 0 0; overflow: hidden; border-radius: 12px; background: rgba(3,10,18,.45); }
.card-graphic--radar::before { content:""; position:absolute; width:140px; height:140px; left:50%; top:50%; border:1px solid rgba(69,214,217,.35); border-radius:50%; transform:translate(-50%,-50%); background:repeating-radial-gradient(circle,transparent 0 22px,rgba(69,214,217,.13) 23px 24px); }
.card-graphic--radar::after { content:""; position:absolute; width:70px; height:70px; left:50%; top:50%; transform-origin:0 0; background:conic-gradient(from 0deg,rgba(69,214,217,.38),transparent 35%); animation:radar 4s linear infinite; }
.card-graphic--radar i { position:absolute; width:5px; height:5px; border-radius:50%; background:var(--signal); box-shadow:0 0 12px var(--signal); }
.card-graphic--radar i:nth-child(1){left:32%;top:34%}.card-graphic--radar i:nth-child(2){left:61%;top:57%}.card-graphic--radar i:nth-child(3){left:73%;top:25%}

.card-graphic--evidence { display:grid; place-content:center; gap:9px; }
.card-graphic--evidence i { display:block; width:160px; height:8px; border-radius:5px; background:linear-gradient(90deg,var(--signal),rgba(69,214,217,.12)); animation:evidence 3s ease-in-out infinite alternate; }
.card-graphic--evidence i:nth-child(2){width:120px;animation-delay:-1s}.card-graphic--evidence i:nth-child(3){width:145px;animation-delay:-2s}

.card-graphic--map { background-image:linear-gradient(rgba(69,214,217,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(69,214,217,.08) 1px,transparent 1px);background-size:22px 22px}
.card-graphic--map i { position:absolute; width:9px;height:9px;border:2px solid var(--gold);border-radius:50%;box-shadow:0 0 16px rgba(241,184,75,.6)}
.card-graphic--map i::after {content:"";position:absolute;inset:-8px;border:1px solid rgba(241,184,75,.25);border-radius:50%;animation:ping 2.6s ease-out infinite}
.card-graphic--map i:nth-child(1){left:22%;top:42%}.card-graphic--map i:nth-child(2){left:58%;top:28%}.card-graphic--map i:nth-child(3){left:74%;top:67%}

.launch-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 90px;
  margin-bottom: 90px;
  padding: 72px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: radial-gradient(circle at 100% 0, rgba(69,214,217,.12), transparent 38%), var(--surface);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.launch-panel[data-visible="true"] { opacity: 1; transform: none; }
.launch-panel__body { align-self: end; }
.launch-panel__body p { color: var(--muted); line-height: 1.75; }
.text-link { display:inline-flex;gap:22px;margin-top:18px;color:var(--signal-soft);font-size:.73rem;font-weight:800;letter-spacing:.1em;text-decoration:none;text-transform:uppercase}
.progress { position:absolute;left:0;right:0;bottom:0;height:3px;background:rgba(159,176,195,.1)}
.progress span { display:block;width:var(--progress);height:100%;background:linear-gradient(90deg,var(--signal),var(--gold));box-shadow:0 0 16px rgba(69,214,217,.4)}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 40px;
  min-height: 150px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .78rem;
}
.footer-brand { display:flex;align-items:center;gap:12px;color:var(--text);font-weight:650}
footer nav { display:flex;flex-wrap:wrap;justify-content:flex-end;gap:20px}
.copyright {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #718397;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.error-page { display:grid;place-items:start;align-content:center;min-height:100vh;max-width:720px;padding:40px}
.error-page h1 { font-size:clamp(2.6rem,7vw,5rem);margin:10px 0 16px}
.error-page p:not(.eyebrow){color:var(--muted);margin-bottom:30px}

@keyframes pulse { 50% { opacity:.45; transform:scale(.8); } }
@keyframes globe-spin { to { transform:translateX(34px) rotate(2deg); } }
@keyframes land-drift { 50% { translate:18px 2px; opacity:.8; } }
@keyframes orbit-runner { to { transform:rotate(360deg); } }
@keyframes ping { 0%{transform:scale(.4);opacity:0}30%{opacity:1}100%{transform:scale(1.7);opacity:0} }
@keyframes scan {
  0% { transform: translate3d(0, -145px, 0); opacity: 0; }
  10%, 90% { opacity: 1; }
  100% { transform: translate3d(0, 145px, 0); opacity: 0; }
}
@keyframes radar { to { transform:rotate(360deg); } }
@keyframes evidence { to { opacity:.38; transform:scaleX(.72); transform-origin:left; } }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 50px; }
  .hero__copy { padding-right: 0; }
  .signal-visual { min-height: 570px; }
  .section-heading, .launch-panel { grid-template-columns: 1fr; gap: 28px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card { min-height: 320px; }
  footer { grid-template-columns: 1fr; gap: 16px; padding: 36px 0; }
  footer nav { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .site-header, main, footer { width: min(calc(100% - 28px), var(--max)); }
  .site-header { min-height: 78px; }
  .header-actions .status { display: none; }
  .header-actions { gap: 10px; }
  .brand__name { font-size:.7rem; }
  .hero { min-height: auto; padding-top: 72px; }
  .eyebrow b { display: none; }
  h1 { font-size: clamp(3.25rem, 16vw, 5.2rem); }
  .lede { font-size: 1rem; }
  .button { width: 100%; }
  .trust-strip { grid-template-columns: 1fr; gap: 18px; }
  .trust-strip div { padding: 0 0 0 14px; }
  .trust-strip div:first-child { padding-left: 14px; border-left: 1px solid var(--line); }
  .signal-visual { min-height: 450px; border-radius: 20px; }
  .globe-shell { inset: 65px 4px 60px; }
  .visual-label b { display:none; }
  .signal-sequence { width: calc(100% - 32px); bottom: 48px; }
  .signal-sequence li::after { width: 8px; }
  .capabilities { padding: 86px 0; }
  .section-heading { margin-bottom: 30px; }
  .launch-panel { padding: 36px 26px 46px; }
}

html.motion-paused { scroll-behavior: auto; }
html.motion-paused *,
html.motion-paused *::before,
html.motion-paused *::after {
  animation-play-state: paused !important;
  transition-duration: .001ms !important;
}
html.motion-paused .capability-card,
html.motion-paused .launch-panel { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html:not(.motion-enabled) { scroll-behavior: auto; }
  html:not(.motion-enabled) *,
  html:not(.motion-enabled) *::before,
  html:not(.motion-enabled) *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  html:not(.motion-enabled) .capability-card,
  html:not(.motion-enabled) .launch-panel { opacity: 1; transform: none; }
  html:not(.motion-enabled) .signal-sequence li { transition: none; }
}
