:root {
  --black: #030508;
  --panel: #090c12;
  --white: #f5f7fa;
  --muted: #8b939f;
  --line: rgba(255, 255, 255, 0.14);
  --blue: #2f9cff;
  --blue-light: #80c8ff;
  --display: "Space Grotesk", sans-serif;
  --body: "Inter", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--body);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.noise {
  position: fixed;
  inset: 0;
  opacity: .04;
  z-index: 20;
  pointer-events: none;
  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");
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 600; letter-spacing: .14em; font-size: 14px; }
.brand img { width: 40px; height: 40px; object-fit: cover; border-radius: 50%; }
.brand-dot { color: var(--blue-light); }
.desktop-nav { display: flex; gap: 34px; }
.desktop-nav a { color: #bbc1ca; font-size: 13px; transition: color .25s; }
.desktop-nav a:hover { color: white; }
.nav-cta { border: 1px solid rgba(255,255,255,.35); padding: 13px 18px; font-size: 12px; text-transform: uppercase; letter-spacing: .09em; transition: .25s; }
.nav-cta:hover { background: var(--white); color: var(--black); }
.nav-cta span, .text-link span { color: var(--blue); margin-left: 12px; }
.menu-toggle, .mobile-nav { display: none; }

.hero { position: relative; min-height: 100vh; overflow: hidden; display: flex; align-items: flex-start; padding: 145px 7vw 7vh; }
#starfield { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,5,8,.88) 0%, rgba(3,5,8,.15) 55%, rgba(3,5,8,.45) 100%), linear-gradient(0deg, rgba(3,5,8,.75), transparent 45%);
}
.hero-glow { position: absolute; width: 65vw; height: 65vw; right: -17vw; top: 8vh; border-radius: 50%; background: radial-gradient(circle at 30% 40%, #38658a 0, #142b42 17%, #080e16 44%, transparent 70%); filter: blur(2px); opacity: .85; }
.hero-glow::before { content: ""; position: absolute; inset: 6%; border-radius: 50%; border-left: 2px solid rgba(117,197,255,.65); transform: rotate(-20deg); filter: blur(1px); }
.hero-logo {
  position: absolute;
  z-index: 2;
  top: 19%;
  right: 7%;
  width: clamp(280px, 37vw, 590px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.hero-logo::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: rgba(0, 8, 15, .38);
  filter: blur(35px);
}
.hero-logo img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  mix-blend-mode: screen;
  opacity: .82;
  filter: drop-shadow(0 0 28px rgba(48, 157, 255, .28));
}
.orbit { position: absolute; border: 1px solid rgba(90,177,255,.34); border-radius: 50%; z-index: 1; }
.orbit-one { width: 82vw; height: 30vw; right: -22vw; top: 30vh; transform: rotate(-18deg); }
.orbit-two { width: 56vw; height: 17vw; right: -5vw; top: 41vh; transform: rotate(20deg); }
.hero-content { position: relative; z-index: 3; width: min(54vw, 820px); }
.eyebrow { color: var(--blue-light); text-transform: uppercase; letter-spacing: .22em; font-size: 11px; font-weight: 600; }
.eyebrow::before { content: ""; display: inline-block; width: 38px; height: 1px; background: var(--blue); vertical-align: middle; margin-right: 14px; }
.hero h1, .section h2, .statement h2, .contact h2 { font-family: var(--display); font-size: clamp(62px, 9.4vw, 150px); line-height: .82; letter-spacing: -.065em; margin: 30px 0 0; font-weight: 500; }
.hero h1 { font-size: clamp(62px, 7.7vw, 122px); }
.hero h1 span, .section h2 span, .statement h2 span, .contact h2 span { color: transparent; -webkit-text-stroke: 1px rgba(130,198,255,.75); }
.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; max-width: 700px; margin-top: 55px; }
.hero-bottom p { width: min(560px, 65vw); color: #b1b8c2; line-height: 1.75; font-size: 14px; }
.circle-link { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); font-size: 22px; transition: .25s; }
.circle-link:hover { border-color: var(--blue); color: var(--blue); transform: translateY(4px); }
.hero-index, .hero-coordinate { position: absolute; z-index: 2; color: #78818c; font-family: var(--display); font-size: 10px; letter-spacing: .18em; }
.hero-index { right: 4vw; bottom: 7vh; }
.hero-coordinate { right: 4vw; top: 150px; line-height: 1.8; text-align: right; }

.section { padding: 140px 7vw; }
.section-label { text-transform: uppercase; font-size: 10px; letter-spacing: .2em; color: #89919b; border-top: 1px solid var(--line); padding-top: 18px; }
.section-label span { color: var(--blue); margin-right: 18px; }
.manifesto { min-height: 100vh; }
.manifesto-copy { padding: 90px 0 20px 12vw; position: relative; }
.manifesto-copy .lead { color: #7f8790; font-size: 13px; margin-bottom: 32px; }
.manifesto h2 { font-size: clamp(58px, 8vw, 126px); }
.manifesto-detail { width: 370px; margin: 55px 7vw 0 auto; }
.manifesto-detail p, .section-heading p, .company-copy > p { color: #969ea9; line-height: 1.8; font-size: 14px; }
.text-link { display: inline-block; margin-top: 20px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.3); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 55px 3.5vw; border-right: 1px solid var(--line); }
.stat:last-child { border: 0; }
.stat strong { font-family: var(--display); display: block; font-size: clamp(36px, 5vw, 72px); font-weight: 400; letter-spacing: -.05em; }
.stat strong span { color: var(--blue-light); }
.stat p { color: #7f8790; font-size: 11px; text-transform: uppercase; letter-spacing: .11em; }

.platform { background: #06080c; }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; padding: 80px 0 65px; }
.section-heading h2 { font-size: clamp(55px, 7vw, 112px); margin: 0; }
.section-heading > p { max-width: 360px; margin: 0 0 5px; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.capability-card { min-height: 600px; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.card-number { color: #68717d; font-size: 10px; letter-spacing: .17em; }
.capability-card h3 { font-family: var(--display); font-size: 27px; font-weight: 500; margin: 0 0 16px; position: absolute; bottom: 100px; }
.capability-card > p { color: #858e9a; font-size: 13px; line-height: 1.7; position: absolute; bottom: 24px; max-width: 300px; }
.card-visual { position: absolute; inset: 50px 0 180px; display: grid; place-items: center; }
.core { width: 100px; height: 100px; background: radial-gradient(circle at 35% 30%, #eaf7ff, #4ca8ef 25%, #0b3658 55%, #02070b 75%); border-radius: 50%; box-shadow: 0 0 60px #1686df, 0 0 140px rgba(47,156,255,.4); }
.core-ring { position: absolute; width: 250px; height: 92px; border: 1px solid rgba(116,197,255,.5); border-radius: 50%; transform: rotate(-24deg); }
.visual-compute::after { content: ""; position: absolute; width: 330px; height: 330px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; }
.sun { width: 80px; height: 80px; border-radius: 50%; background: white; box-shadow: 0 0 35px #fff, 0 0 90px #48a9ff; }
.panel { position: absolute; width: 150px; height: 85px; border: 1px solid #4086bd; background: repeating-linear-gradient(90deg, transparent 0 18px, rgba(91,180,246,.2) 19px 20px), repeating-linear-gradient(0deg, #071522 0 13px, #224a68 14px 15px); }
.panel-one { margin-left: -235px; transform: perspective(300px) rotateY(20deg); }
.panel-two { margin-left: 235px; transform: perspective(300px) rotateY(-20deg); }
.visual-network { background: radial-gradient(circle, rgba(30,119,183,.12), transparent 50%); }
.visual-network::before, .visual-network::after { content: ""; position: absolute; border: 1px solid rgba(100,190,255,.38); border-radius: 50%; }
.visual-network::before { width: 280px; height: 280px; }
.visual-network::after { width: 210px; height: 70px; transform: rotate(-20deg); }
.visual-network span { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: #dff5ff; box-shadow: 0 0 14px #4db4ff; }
.visual-network span:nth-child(1) { transform: translate(-100px,-70px); }
.visual-network span:nth-child(2) { transform: translate(105px,-25px); }
.visual-network span:nth-child(3) { transform: translate(-40px,105px); }
.visual-network span:nth-child(4) { transform: translate(55px,60px); }

.statement { min-height: 95vh; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; background: #020407; }
.earth { position: absolute; width: 72vw; height: 72vw; border-radius: 50%; bottom: -49vw; background: radial-gradient(circle at 50% 0%, #81c7f2 0, #244660 8%, #0b1824 22%, #020508 48%); box-shadow: 0 -15px 80px rgba(65,157,224,.35); }
.statement-content { position: relative; z-index: 1; }
.statement-content > p { text-transform: uppercase; letter-spacing: .23em; font-size: 10px; color: var(--blue-light); }
.statement h2 { font-size: clamp(50px, 7.2vw, 112px); }
.statement-note { position: absolute; bottom: 40px; z-index: 2; color: #727b87; font-size: 11px; letter-spacing: .08em; }

.roadmap .timeline { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 30px; border-top: 1px solid var(--line); }
.milestone { padding: 46px 30px 40px 0; position: relative; min-height: 300px; }
.timeline-dot { width: 9px; height: 9px; background: #3b424b; border-radius: 50%; position: absolute; top: -5px; box-shadow: 0 0 0 8px var(--black); }
.milestone.complete .timeline-dot { background: var(--blue); box-shadow: 0 0 16px var(--blue), 0 0 0 8px var(--black); }
.year { color: var(--blue-light); font-size: 11px; letter-spacing: .2em; }
.milestone h3 { font-family: var(--display); font-size: 26px; font-weight: 500; margin-top: 48px; }
.milestone > p:not(.year) { color: #818995; line-height: 1.7; font-size: 13px; max-width: 240px; }
.status { display: inline-block; margin-top: 24px; text-transform: uppercase; letter-spacing: .14em; font-size: 9px; color: #606976; border: 1px solid #252a31; padding: 7px 9px; }

.company { background: #06080c; }
.company-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 8vw; padding-top: 85px; align-items: center; }
.company-copy h2 { font-size: clamp(50px, 6.6vw, 104px); margin: 0; }
.company-copy > p { max-width: 480px; margin-top: 45px; }
.company-panel { height: 570px; border: 1px solid var(--line); position: relative; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle, #101b28, #06080c 55%); }
.company-panel img { width: 68%; border-radius: 50%; position: relative; z-index: 1; mix-blend-mode: screen; }
.panel-orbit { position: absolute; width: 130%; height: 38%; border: 1px solid rgba(83,169,232,.45); border-radius: 50%; transform: rotate(-22deg); }
.panel-orbit::after { content: ""; position: absolute; width: 7px; height: 7px; border-radius: 50%; background: white; box-shadow: 0 0 16px #4caeff; left: 15%; top: 18%; }

.contact { min-height: 92vh; display: grid; place-items: center; text-align: center; padding: 100px 5vw; position: relative; overflow: hidden; background: radial-gradient(circle at 50% 80%, rgba(19,78,124,.4), transparent 45%), #020407; }
.contact::before { content: ""; position: absolute; width: 900px; height: 900px; border: 1px solid rgba(70,154,214,.14); border-radius: 50%; bottom: -670px; }
.contact-inner { position: relative; z-index: 1; max-width: 1000px; width: 100%; }
.contact h2 { font-size: clamp(60px, 9vw, 140px); }
.contact-copy { max-width: 540px; margin: 35px auto; color: #919aa6; line-height: 1.7; font-size: 14px; }
.contact-email { display: inline-block; color: var(--blue-light); font-family: var(--display); font-size: clamp(17px, 2vw, 25px); letter-spacing: .02em; padding-bottom: 8px; border-bottom: 1px solid rgba(128, 200, 255, .4); }
.contact-email span { margin-left: 8px; font-size: .7em; }
.contact-form { display: flex; max-width: 580px; margin: 45px auto 0; border-bottom: 1px solid #53616e; align-items: flex-end; }
.contact-form label { flex: 1; text-align: left; }
.contact-form label span { display: block; text-transform: uppercase; font-size: 9px; letter-spacing: .16em; color: #697481; }
.contact-form input { width: 100%; background: transparent; color: white; border: 0; outline: 0; padding: 13px 0; }
.contact-form button { background: transparent; color: white; border: 0; padding: 18px 0 18px 25px; text-transform: uppercase; font-size: 10px; letter-spacing: .1em; cursor: pointer; }
.contact-form button span { color: var(--blue); margin-left: 10px; }
.form-status { font-size: 12px; color: var(--blue-light); min-height: 18px; }

footer { padding: 42px 5vw; display: grid; grid-template-columns: 1.2fr 1fr auto auto; gap: 40px; align-items: center; border-top: 1px solid var(--line); color: #727b86; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.footer-brand { color: white; }
.footer-links { display: flex; gap: 20px; }
.footer-email { color: #8fbfe4; text-transform: lowercase; letter-spacing: .04em; }

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

@media (max-width: 900px) {
  .desktop-nav, .nav-cta { display: none; }
  .menu-toggle { display: block; width: 44px; height: 44px; background: none; border: 0; position: relative; z-index: 12; }
  .menu-toggle span:not(.sr-only) { display: block; height: 1px; background: white; width: 24px; margin: 7px auto; transition: .25s; }
  .menu-toggle.open span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .mobile-nav { position: fixed; display: flex; flex-direction: column; inset: 0; background: rgba(3,5,8,.97); z-index: 11; padding: 130px 8vw; gap: 30px; font-family: var(--display); font-size: 32px; transform: translateY(-105%); transition: transform .4s ease; }
  .mobile-nav.open { transform: translateY(0); }
  .hero-glow { width: 105vw; height: 105vw; right: -50vw; top: 20vh; }
  .hero-logo { top: 25%; right: -8%; width: min(56vw, 450px); opacity: .52; }
  .hero-content { width: min(72vw, 650px); }
  .hero-coordinate { display: none; }
  .manifesto-copy { padding-left: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 35px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card { min-height: 550px; }
  .roadmap .timeline { grid-template-columns: repeat(2, 1fr); }
  .company-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .site-header { height: 74px; padding: 0 5vw; }
  .brand img { width: 34px; height: 34px; }
  .brand { font-size: 11px; }
  .hero { padding: 120px 6vw 8vh; }
  .hero-content { width: 100%; }
  .hero-logo { top: 23%; right: -20%; width: 78vw; opacity: .3; }
  .hero h1 { font-size: clamp(53px, 17vw, 80px); }
  .hero-bottom { display: block; }
  .hero-bottom p { width: 100%; }
  .circle-link { margin-top: 25px; }
  .section { padding: 95px 6vw; }
  .manifesto h2, .section-heading h2, .company-copy h2 { font-size: 15vw; }
  .manifesto-detail { width: auto; margin: 45px 0 0; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:nth-child(3) { border-bottom: 1px solid var(--line); }
  .capability-card { min-height: 500px; }
  .roadmap .timeline { grid-template-columns: 1fr; border-top: 0; }
  .milestone { border-top: 1px solid var(--line); min-height: 250px; }
  .company-panel { height: 420px; }
  .contact h2 { font-size: 16vw; }
  .contact-form { display: block; border: 0; }
  .contact-form label { display: block; border-bottom: 1px solid #53616e; }
  .contact-form button { width: 100%; border: 1px solid #53616e; margin-top: 20px; padding: 16px; }
  footer { grid-template-columns: 1fr; gap: 22px; }
  .footer-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
