:root {
  --bg: #050506;
  --bg-soft: #0a0a0d;
  --ink: #f7f7fa;
  --muted: #a7a7b2;
  --muted-2: #74747f;
  --line: rgba(255,255,255,.12);
  --line-bright: rgba(255,255,255,.22);
  --glass: rgba(16,16,22,.58);
  --violet: #b9a3ff;
  --blue: #d7ccff;
  --cyan: #cbbcff;
  --lime: #eee8ff;
  --success: #83f7ad;
  --warning: #ffd36a;
  --danger: #ff8080;
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
  --header-h: 84px;
  --radius: 28px;
  --ease: cubic-bezier(.2,.75,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .025;
  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='.7'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: #050506; background: var(--cyan); }

.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;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: #050506;
  background: white;
  border-radius: 12px;
}
.skip-link:focus { transform: none; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: 120px; position: relative; }
.section + .section { border-top: 1px solid rgba(255,255,255,.05); }

.space-scene {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% -20%, rgba(55,44,105,.18), transparent 42%),
    linear-gradient(180deg, #050506 0%, #050506 55%, #07070a 100%);
}
.stars { position: absolute; inset: -20%; background-repeat: repeat; transform: rotate(-8deg); }
.stars-a {
  opacity: .35;
  background-image:
    radial-gradient(circle, #fff 0 1px, transparent 1.3px),
    radial-gradient(circle, #fff 0 .7px, transparent 1px);
  background-position: 0 0, 37px 79px;
  background-size: 170px 170px, 110px 110px;
}
.stars-b {
  opacity: .18;
  background-image: radial-gradient(circle, #b9d4ff 0 1px, transparent 1.2px);
  background-position: 20px 30px;
  background-size: 260px 260px;
  animation: starDrift 60s linear infinite;
}
.nebula { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .12; }
.nebula-one { width: 620px; height: 620px; background: var(--violet); top: 2%; right: -260px; }
.nebula-two { width: 480px; height: 480px; background: var(--blue); top: 65%; left: -250px; opacity: .07; }
.moon {
  position: absolute;
  width: 540px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.09);
  background:
    radial-gradient(circle at 67% 28%, rgba(255,255,255,.18) 0 2%, transparent 2.5%),
    radial-gradient(circle at 34% 66%, rgba(0,0,0,.3) 0 7%, transparent 7.5%),
    radial-gradient(circle at 65% 70%, rgba(0,0,0,.2) 0 10%, transparent 10.5%),
    radial-gradient(circle at 42% 35%, rgba(255,255,255,.16), rgba(255,255,255,.035) 46%, rgba(255,255,255,.01) 68%);
  box-shadow: inset -80px -20px 100px rgba(0,0,0,.7), 0 0 100px rgba(185,163,255,.08);
  opacity: .28;
}
.moon::before, .moon::after, .moon span {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}
.moon::before { width: 16%; height: 11%; top: 27%; left: 22%; transform: rotate(-23deg); }
.moon::after { width: 9%; height: 7%; top: 56%; left: 59%; }
.moon span { width: 6%; height: 5%; top: 18%; left: 58%; }
.moon-home { right: -220px; top: 130px; }
.orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  transform: rotate(-23deg);
}
.orbit i { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: white; box-shadow: 0 0 14px white; top: 48%; left: -3px; }
.orbit-one { width: 720px; height: 290px; right: -270px; top: 260px; }
.orbit-two { width: 420px; height: 170px; left: -210px; top: 74%; }
.orbit-two i { left: auto; right: 20px; background: var(--violet); }

.site-header {
  width: min(1320px, calc(100vw - 32px));
  height: var(--header-h);
  margin: 14px auto 0;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 14px;
  z-index: 100;
  border: 1px solid transparent;
  border-radius: 22px;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, height .35s ease;
}
.site-header.scrolled {
  height: 68px;
  background: rgba(8,8,10,.72);
  border-color: var(--line);
  box-shadow: 0 16px 50px rgba(0,0,0,.25);
  backdrop-filter: blur(22px) saturate(1.25);
}
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand-logo { width: 118px; height: 58px; display: block; object-fit: contain; object-position: left center; }
.footer-brand .brand-logo { width: 150px; height: auto; }
.brand > span:last-child { display: flex; flex-direction: column; line-height: 1.05; }
.brand strong { font: 700 1rem/1 var(--font-display); letter-spacing: .18em; }
.brand small { margin-top: 5px; color: var(--muted); font-size: .62rem; letter-spacing: .08em; }
.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 35px;
  aspect-ratio: 1;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
}
.brand-mark::before { content: ""; width: 14px; height: 2px; background: white; box-shadow: 0 5px 0 white; transform: translateY(-2.5px); }
.brand-mark::after { content: ""; position: absolute; inset: -4px 7px; border: 1px solid rgba(185,163,255,.65); border-radius: 50%; transform: rotate(55deg); }
.brand-mark i { position: absolute; width: 4px; height: 4px; border-radius: 50%; right: 2px; top: 3px; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a[href="index.html"] { display: none; }
.site-nav a { position: relative; color: #b6b6c1; font-size: .8rem; font-weight: 500; transition: color .2s ease; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; height: 1px; left: 0; right: 100%; bottom: -8px; background: white; transition: right .25s ease; }
.site-nav a:hover, .site-nav a.active { color: white; }
.site-nav a:hover::after, .site-nav a.active::after { right: 0; }
.site-nav .nav-cta { padding: 10px 15px; color: #0a0a0d; background: white; border-radius: 11px; }
.site-nav .nav-cta span { display: inline-block; margin-left: 4px; transition: transform .2s ease; }
.site-nav .nav-cta:hover span { transform: translate(2px,-2px); }
.nav-toggle { display: none; border: 0; background: none; padding: 8px; cursor: pointer; }
.nav-toggle > span:not(.sr-only) { display: block; width: 22px; height: 1px; margin: 6px 0; background: white; transition: transform .2s ease; }
body.nav-open { overflow: hidden; }

.glass-panel {
  background: linear-gradient(140deg, rgba(255,255,255,.075), rgba(255,255,255,.018));
  border: 1px solid var(--line);
  box-shadow: inset 0 1px rgba(255,255,255,.05), 0 30px 80px rgba(0,0,0,.28);
  backdrop-filter: blur(22px);
}
.eyebrow { margin: 0 0 20px; color: #c8c8d2; font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow > span { display: inline-block; width: 26px; height: 1px; margin: 0 10px 3px 0; background: linear-gradient(90deg, var(--violet), var(--cyan)); }
h1, h2, h3 { margin-top: 0; font-family: var(--font-display); letter-spacing: -.04em; }
h1 { margin-bottom: 28px; font-size: clamp(3.6rem, 7.5vw, 7.8rem); line-height: .91; font-weight: 500; }
h1 em { color: transparent; font-style: normal; -webkit-text-stroke: 1px rgba(255,255,255,.6); }
h2 { margin-bottom: 25px; font-size: clamp(2.4rem, 5vw, 5rem); line-height: 1; font-weight: 500; }
h3 { margin-bottom: 14px; font-size: clamp(1.45rem, 2.4vw, 2.15rem); line-height: 1.1; font-weight: 500; }
p { color: var(--muted); }
.hero-lede { max-width: 660px; font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.75; }
.large-copy { color: white; font: 500 clamp(1.35rem, 2.2vw, 2rem)/1.4 var(--font-display); letter-spacing: -.02em; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  min-height: 51px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid var(--line-bright);
  border-radius: 13px;
  font-size: .82rem;
  font-weight: 600;
  transition: transform .25s var(--ease), background .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #050506; background: white; border-color: white; }
.button-primary:hover, .button-light:hover { background: #dfe5f1; }
.button-ghost { background: rgba(255,255,255,.035); backdrop-filter: blur(12px); }
.button-ghost:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.075); }
.button-light { color: #050506; background: white; border-color: white; }
.button-large { min-height: 60px; padding-inline: 27px; border-radius: 15px; font-size: .9rem; }
[data-page="schools"] .button, [data-page="product"] .button { min-height: 58px; padding-inline: 25px; font-size: .86rem; }
.top-gap { margin-top: 28px; }
.coming-status { color: var(--violet) !important; }
.text-link { display: inline-flex; gap: 10px; align-items: center; margin-top: 18px; color: white; font-size: .85rem; font-weight: 600; }
.text-link::before { content: ""; width: 18px; height: 1px; background: var(--violet); transition: width .25s ease; }
.text-link:hover::before { width: 32px; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(2px,-2px); }

.hero { min-height: calc(100svh - 98px); padding: 70px 0 80px; position: relative; display: grid; align-items: center; }
.home-hero { grid-template-columns: .88fr 1.12fr; gap: clamp(35px, 5vw, 75px); }
.hero-copy { position: relative; z-index: 2; }
.home-hero h1 { margin-left: -5px; }
.hero-note { margin-top: 24px; color: var(--muted-2); font-size: .75rem; }
.pulse-dot { display: inline-block; width: 6px; height: 6px; margin-right: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 0 rgba(131,247,173,.5); animation: pulse 2s infinite; }
.hero-stage { position: relative; min-height: 560px; display: grid; place-items: center; transform-style: preserve-3d; transition: transform .25s ease-out; }
.hero-stage::before { content: ""; position: absolute; width: 95%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; transform: rotateX(70deg) translateZ(-30px); }
.stage-glow { position: absolute; width: 65%; aspect-ratio: 1; border-radius: 50%; background: rgba(185,163,255,.2); filter: blur(80px); }
.hero-product { width: min(650px, 110%); position: relative; z-index: 2; filter: drop-shadow(0 50px 50px rgba(0,0,0,.65)); transform: translateZ(25px) rotate(-2deg); }
.stage-caption { position: absolute; z-index: 4; right: 2%; bottom: 10%; min-width: 235px; padding: 16px 18px; border-radius: 18px; transform: translateZ(55px); }
.stage-caption span, .stage-caption small { display: block; color: var(--muted); font-size: .65rem; }
.stage-caption strong { display: block; margin: 4px 0 2px; font: 500 .92rem/1.2 var(--font-display); }
.glass-orbit { position: absolute; z-index: 3; padding: 8px 11px; color: #d6d6df; background: rgba(8,8,12,.5); border: 1px solid var(--line); border-radius: 999px; backdrop-filter: blur(12px); font-size: .62rem; letter-spacing: .05em; transform: translateZ(35px); }
.glass-orbit span { display: inline-grid; place-items: center; width: 22px; height: 22px; margin-right: 6px; color: white; background: rgba(255,255,255,.1); border-radius: 50%; }
.orbit-label-one { left: 3%; top: 18%; }
.orbit-label-two { right: 0; top: 32%; }
.product-hero-stage { min-height: 650px; isolation: isolate; }
.product-hero-stage::before { width: 105%; opacity: .65; }
.hero-product-frame { position: absolute; z-index: 1; width: 79%; left: 6%; top: 10%; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 26px; background: #050506; box-shadow: 0 35px 90px rgba(0,0,0,.52); transform: translateZ(16px) rotate(-2.5deg); }
.hero-product-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 70px rgba(0,0,0,.35); pointer-events: none; }
.hero-product-box { width: 100%; display: block; }
.hero-product-rocket { position: absolute; z-index: 3; width: 103%; right: -14%; bottom: 2%; filter: drop-shadow(0 35px 30px rgba(0,0,0,.8)); transform: translateZ(48px) rotate(-7deg); }
.hero-product-label { position: absolute; z-index: 5; left: 4%; bottom: 5%; padding: 14px 16px; border-radius: 15px; transform: translateZ(60px); }
.hero-product-label span { display: block; margin-bottom: 5px; color: var(--violet); font-size: .58rem; letter-spacing: .12em; }
.hero-product-label strong { font: 500 .82rem/1.2 var(--font-display); }

.signal-strip { overflow: hidden; padding: 0; border-block: 1px solid var(--line); background: rgba(255,255,255,.02); }
.signal-strip div { width: min(1320px, calc(100% - 40px)); min-height: 58px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: clamp(16px, 2.5vw, 38px); }
.signal-strip span { color: #898994; font-size: .64rem; letter-spacing: .2em; white-space: nowrap; }
.signal-strip i { width: 5px; height: 5px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 12px var(--violet); }
.quick-start { margin-top: 70px; padding: 28px; display: grid; grid-template-columns: .65fr 1.35fr; align-items: center; gap: 30px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.025); backdrop-filter: blur(18px); }
.quick-start-label h2 { margin: 0; max-width: 310px; font-size: clamp(1.7rem, 3vw, 2.7rem); }
.quick-start-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.quick-start-options a { min-height: 180px; padding: 23px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.02); transition: transform .22s ease, border-color .22s ease, background .22s ease; }
.quick-start-options a:hover { transform: translateY(-3px); border-color: rgba(185,163,255,.55); background: rgba(185,163,255,.055); }
.quick-start-options a:first-child { color: #08080b; background: linear-gradient(135deg, #fff, #e8e0ff); border-color: #fff; box-shadow: 0 18px 55px rgba(185,163,255,.1); }
.quick-start-options a:first-child span, .quick-start-options a:first-child small { color: #554b70; }
.quick-start-options span { color: var(--violet); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; }
.quick-start-options strong { font: 500 1.02rem/1.25 var(--font-display); }
.quick-start-options small { color: var(--muted-2); font-size: .68rem; }

.split-section { display: grid; grid-template-columns: 1.05fr .95fr; gap: 10%; }
.section-intro h2 { max-width: 680px; }
.mission-copy { padding-top: 52px; }
.mission-copy > p:not(.large-copy) { max-width: 530px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 80px; margin-bottom: 50px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 430px; }
.project-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 18px; }
.project-card { min-height: 610px; position: relative; overflow: hidden; border-radius: var(--radius); }
.project-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,.04); }
.project-number { position: absolute; top: 22px; left: 24px; z-index: 3; color: var(--muted-2); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.project-featured > img { width: 100%; height: 62%; object-fit: cover; object-position: center; mix-blend-mode: screen; opacity: .9; transition: transform .7s var(--ease); }
.project-featured:hover > img { transform: scale(1.035); }
.project-featured { background: radial-gradient(circle at 68% 24%, rgba(185,163,255,.16), transparent 38%), #070709; }
.project-featured > .project-product-cutout { height: 66%; padding: 52px 28px 72px; object-fit: contain; mix-blend-mode: normal; opacity: 1; transform: rotate(-3deg); filter: drop-shadow(0 30px 25px rgba(0,0,0,.78)); }
.project-featured:hover > .project-product-cutout { transform: rotate(-3deg) scale(1.025); }
.project-content { position: absolute; inset: auto 0 0; z-index: 2; padding: 34px; background: linear-gradient(0deg, rgba(5,5,7,.97) 12%, rgba(5,5,7,.75) 75%, transparent); }
.project-content p { max-width: 670px; }
.status-pill { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 16px; color: #cdd3d9; font-size: .63rem; letter-spacing: .08em; text-transform: uppercase; }
.status-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 10px var(--success); }
.status-pill.muted i { background: var(--violet); box-shadow: 0 0 10px var(--violet); }
.project-secret { background: radial-gradient(circle at 50% 28%, rgba(185,163,255,.12), transparent 45%), rgba(255,255,255,.02); }
.compact-project { min-height: 520px; }
.secret-visual { height: 62%; display: grid; place-items: center; position: relative; }
.secret-visual > span { z-index: 2; color: rgba(255,255,255,.3); font: 300 6rem/1 var(--font-display); }
.mini-moon { position: absolute; width: 190px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 32% 25%, #aaa, #3a3a42 35%, #111 73%); box-shadow: inset -40px -15px 45px #000, 0 0 60px rgba(185,163,255,.15); opacity: .45; }
.secret-orbit { position: absolute; width: 90%; height: 34%; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; transform: rotate(-25deg); }

.pathway { min-height: 630px; padding: 24px; display: grid; grid-template-columns: .82fr 1.18fr; overflow: hidden; border-radius: 34px; }
.pathway-visual { min-height: 100%; position: relative; overflow: hidden; border-radius: 24px; background: radial-gradient(circle at 40% 48%, rgba(255,255,255,.12), transparent 3%), radial-gradient(circle at 45% 50%, rgba(185,163,255,.19), transparent 30%), #08080b; }
.pathway-visual::before { content: ""; position: absolute; width: 350px; aspect-ratio: 1; left: 50%; top: 50%; transform: translate(-50%,-50%); border-radius: 50%; background: radial-gradient(circle at 32% 25%, #888 0 2%, #3c3d43 35%, #111 72%); box-shadow: inset -75px -20px 75px #000, 0 0 90px rgba(185,163,255,.18); }
.pathway-visual span, .pathway-visual i, .pathway-visual b { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; transform: translate(-50%,-50%) rotate(-28deg); }
.pathway-visual span { width: 510px; height: 170px; }
.pathway-visual i { width: 640px; height: 260px; }
.pathway-visual b { width: 8px; height: 8px; left: 83%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
.pathway-copy { padding: 54px clamp(24px, 5vw, 70px); display: flex; flex-direction: column; justify-content: center; }
.pathway-copy h2 { font-size: clamp(2.4rem, 4vw, 4rem); }
.pathway-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.path-card { min-height: 178px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.025); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.path-card:first-child { color: #08080b; background: linear-gradient(135deg, #fff, #e8e0ff); border-color: white; }
.path-card:first-child span, .path-card:first-child i { color: #554b70; }
.path-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.05); }
.path-card span { color: var(--muted); font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; }
.path-card strong { font: 500 1.15rem/1.2 var(--font-display); }
.path-card i { color: #c9c9d0; font-size: .7rem; font-style: normal; }
.path-card.disabled { opacity: .65; }

.safety-teaser { display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: 9%; }
.safety-console { padding: 22px; border-radius: var(--radius); }
.console-top { height: 42px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid var(--line); }
.console-top > span { width: 7px; height: 7px; border-radius: 50%; background: #444; }
.console-top > span:first-child { background: var(--violet); }
.console-top small { margin-left: auto; color: var(--muted-2); font: 500 .58rem/1 var(--font-display); letter-spacing: .1em; }
.console-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding-top: 20px; }
.console-grid > div { min-height: 105px; padding: 18px; display: flex; align-items: end; gap: 12px; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.07); border-radius: 16px; }
.console-grid span { font-size: .78rem; }
.console-check { display: grid; place-items: center; flex: 0 0 auto; width: 25px; height: 25px; color: var(--success); border: 1px solid rgba(131,247,173,.3); border-radius: 50%; font-style: normal; font-size: .7rem; }
.safety-copy h2 { font-size: clamp(2.5rem, 4.7vw, 4.8rem); }

.team-teaser { min-height: 650px; display: grid; align-items: end; overflow: hidden; border-radius: 34px; padding: 0; }
.team-banner { position: absolute; inset: 0; }
.team-banner img { width: 100%; height: 100%; object-fit: cover; opacity: .72; }
.team-banner-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,5,7,.96), rgba(5,5,7,.55) 55%, rgba(5,5,7,.3)), linear-gradient(0deg, rgba(5,5,7,.95), transparent 70%); }
.team-teaser-content { position: relative; z-index: 2; max-width: 650px; padding: clamp(40px, 7vw, 90px); }
.team-teaser-content p:not(.eyebrow) { max-width: 510px; }
.founder-teaser { min-height: 610px; grid-template-columns: 1.08fr .92fr; align-items: stretch; border: 1px solid var(--line); background: radial-gradient(circle at 80% 20%, rgba(185,163,255,.1), transparent 38%), #070709; }
.founder-teaser-visual { min-width: 0; padding: 13px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.founder-teaser-visual > div { overflow: hidden; border-radius: 24px; background: #0c0c0f; }
.founder-teaser-visual img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.2) saturate(.75) contrast(1.05); }
.founder-teaser-visual > div:first-child img { object-position: center 35%; }
.founder-teaser-visual > div:last-child img { object-position: center 30%; }
.founder-teaser .team-teaser-content { max-width: none; align-self: center; padding: clamp(40px, 6vw, 82px); }
.section-logo { width: 145px; margin-bottom: 38px; }
.final-cta { min-height: 380px; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.final-cta h2 { max-width: 800px; margin-bottom: 0; }

.site-footer { padding: 70px 0 28px; border-top: 1px solid var(--line); display: grid; grid-template-columns: .75fr 1.25fr; gap: 30px clamp(50px, 8vw, 120px); }
.footer-main { grid-column: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 24px; padding-bottom: 52px; }
.footer-main p { margin: 0; font-size: .85rem; }
.footer-email { justify-self: start; font: 500 clamp(.82rem, 1.3vw, 1rem)/1.3 var(--font-display); }
.footer-email-stack { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-email-stack a { padding-bottom: 5px; border-bottom: 1px solid var(--line-bright); }
.footer-links { grid-column: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; width: 100%; max-width: none; margin: 0; padding: 12px 0 55px; }
.footer-links > div { display: flex; flex-direction: column; gap: 10px; }
.footer-links span { margin-bottom: 6px; color: var(--muted-2); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a { color: #b6b6c1; font-size: .78rem; }
.footer-links a:hover { color: white; }
.footer-bottom { grid-column: 1 / -1; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.07); display: flex; justify-content: space-between; color: var(--muted-2); font-size: .65rem; }

/* Interior pages */
.page-hero { min-height: 72svh; padding: 100px 0 80px; display: grid; align-items: end; position: relative; }
.page-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 7%; }
.page-hero h1 { font-size: clamp(3.8rem, 8vw, 8rem); }
.page-hero h1 .outline { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.55); }
.page-hero-copy { max-width: 690px; }
.page-hero-copy > p:not(.eyebrow) { max-width: 620px; font-size: 1.08rem; }
.hero-art { min-height: 500px; position: relative; display: grid; place-items: center; }
.hero-art img { position: relative; z-index: 2; filter: drop-shadow(0 40px 45px rgba(0,0,0,.7)); }
.hero-art::before { content: ""; position: absolute; width: 80%; aspect-ratio: 1; border: 1px solid var(--line); border-radius: 50%; box-shadow: 0 0 80px rgba(185,163,255,.08); }
.hero-art::after { content: ""; position: absolute; width: 110%; height: 38%; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; transform: rotate(-18deg); }
.hero-art .float-tag { position: absolute; z-index: 3; padding: 10px 13px; color: #d8d8e0; background: rgba(10,10,14,.58); border: 1px solid var(--line); border-radius: 999px; backdrop-filter: blur(15px); font-size: .65rem; letter-spacing: .06em; }
.hero-art .tag-top { top: 18%; right: 4%; }
.hero-art .tag-bottom { bottom: 14%; left: 3%; }
.page-section-heading { max-width: 790px; margin-bottom: 50px; }
.page-section-heading.center { margin-inline: auto; text-align: center; }
.page-section-heading.center .eyebrow > span { display: none; }
.content-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.info-card { min-height: 300px; padding: 28px; position: relative; overflow: hidden; border-radius: 22px; }
.info-card .card-icon { width: 42px; height: 42px; margin-bottom: 60px; display: grid; place-items: center; border: 1px solid var(--line-bright); border-radius: 50%; color: var(--cyan); }
.info-card .card-index { position: absolute; top: 28px; right: 28px; color: var(--muted-2); font: 500 .62rem/1 var(--font-display); }
.info-card h3 { font-size: 1.5rem; }
.info-card p { font-size: .87rem; }
.info-card::after { content: ""; position: absolute; width: 150px; height: 150px; right: -80px; bottom: -90px; border: 1px solid var(--line); border-radius: 50%; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; border: 1px solid var(--line); border-radius: 26px; overflow: hidden; background: var(--line); }
.feature-list > div { padding: 32px; background: rgba(7,7,9,.95); }
.feature-list span { display: block; margin-bottom: 10px; color: var(--cyan); font: 500 .65rem/1 var(--font-display); letter-spacing: .12em; text-transform: uppercase; }
.feature-list strong { display: block; margin-bottom: 8px; font: 500 1.2rem/1.2 var(--font-display); }
.feature-list p { margin: 0; font-size: .82rem; }

.product-showcase { display: grid; grid-template-columns: .8fr 1.2fr; gap: 18px; }
.product-summary { padding: clamp(32px, 5vw, 60px); border-radius: 28px; display: flex; flex-direction: column; justify-content: center; }
.product-summary .availability { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; font-size: .75rem; }
.product-summary .availability span { color: var(--muted); }
.product-summary .availability strong { color: var(--success); font-weight: 500; }
.product-main-image { min-height: 610px; overflow: hidden; border-radius: 28px; position: relative; }
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-page-art { overflow: hidden; border: 1px solid var(--line); border-radius: 32px; background: radial-gradient(circle at 70% 30%, rgba(185,163,255,.17), transparent 42%), #070709; }
.product-page-art::before { width: 92%; }
.product-page-art > img:first-child { width: 115%; max-width: none; z-index: 2; transform: rotate(-8deg); filter: drop-shadow(0 45px 36px rgba(0,0,0,.78)); }
.product-page-art .product-art-logo { position: absolute; z-index: 4; left: 7%; top: 8%; width: 125px; min-height: 0; filter: none; }
.product-composition { background: radial-gradient(circle at 70% 25%, rgba(185,163,255,.16), transparent 42%), #070709; isolation: isolate; }
.product-main-image.product-composition .composition-box { position: absolute; width: 76%; height: auto; left: 8%; top: 10%; object-fit: contain; border: 1px solid rgba(255,255,255,.1); border-radius: 22px; box-shadow: 0 28px 70px rgba(0,0,0,.48); transform: rotate(-2deg); }
.product-main-image.product-composition .composition-rocket { position: absolute; z-index: 2; width: 100%; height: auto; right: -10%; bottom: 1%; object-fit: contain; filter: drop-shadow(0 30px 25px rgba(0,0,0,.8)); transform: rotate(-7deg); }
.image-label { position: absolute; left: 20px; bottom: 20px; padding: 9px 12px; background: rgba(5,5,7,.7); border: 1px solid var(--line); border-radius: 999px; backdrop-filter: blur(15px); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.gallery-grid { display: grid; grid-template-columns: 1.1fr .9fr .7fr; gap: 14px; }
.gallery-item { min-height: 360px; padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #08080a; cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease), opacity .3s ease; }
.gallery-item:hover img { transform: scale(1.035); opacity: .9; }
.gallery-item.tall { grid-row: span 2; min-height: 735px; }
.gallery-item.wide { grid-column: span 2; }
.product-gallery-clean { grid-template-columns: 1.2fr .8fr; }
.product-gallery-clean .gallery-item.wide { grid-column: 1 / -1; min-height: 560px; }
.product-gallery-clean .gallery-item:not(.wide) { min-height: 440px; }
.product-gallery-clean .gallery-item img { object-fit: contain; background: #050505; }
.render-gallery-card { background: radial-gradient(circle at 65% 35%, rgba(185,163,255,.17), transparent 46%), #070709; }
.render-gallery-card img { padding: 28px; object-fit: contain; filter: drop-shadow(0 30px 28px rgba(0,0,0,.75)); transform: rotate(-4deg); }
.render-gallery-card:hover img { transform: rotate(-4deg) scale(1.025); opacity: 1; }
.real-rocket-card { background: radial-gradient(circle at 50% 45%, rgba(185,163,255,.1), transparent 46%), #050505; }
.real-rocket-card img { padding: 18px; object-fit: contain; background: #050505; filter: drop-shadow(0 24px 25px rgba(0,0,0,.78)); }
.real-rocket-card:hover img { transform: scale(1.025); opacity: 1; }
.lightbox { position: fixed; inset: 0; z-index: 500; display: none; place-items: center; padding: 30px; background: rgba(0,0,0,.88); backdrop-filter: blur(18px); }
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1200px, 94vw); max-height: 86vh; border-radius: 20px; box-shadow: 0 30px 100px #000; }
.lightbox button { position: fixed; top: 25px; right: 25px; width: 45px; height: 45px; border: 1px solid var(--line-bright); border-radius: 50%; background: rgba(255,255,255,.08); cursor: pointer; }

.audience-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 16px; }
.audience-card { min-height: 520px; padding: clamp(32px, 5vw, 60px); border-radius: 28px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.audience-card.available { background: radial-gradient(circle at 90% 0, rgba(215,204,255,.16), transparent 34%), linear-gradient(140deg, rgba(255,255,255,.07), rgba(255,255,255,.02)); }
.audience-card.coming { opacity: .75; }
.audience-card .audience-index { color: var(--muted-2); font: 500 .68rem/1 var(--font-display); letter-spacing: .12em; }
.audience-card h2 { max-width: 570px; font-size: clamp(2.5rem, 5vw, 4.8rem); }
.audience-card p { max-width: 540px; }
.audience-status { display: inline-flex; align-items: center; gap: 8px; color: var(--success); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.audience-status i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 12px currentColor; }
.audience-card.coming .audience-status { color: var(--violet); }
.proposal-overview { padding: clamp(28px, 6vw, 72px); display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(35px, 7vw, 90px); border-radius: 30px; }
.proposal-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.proposal-copy h2 { font-size: clamp(2.5rem, 4.5vw, 4.5rem); }
.proposal-copy > p:not(.eyebrow) { max-width: 610px; }
.proposal-copy .button { margin-top: 25px; }
.proposal-facts { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; }
.proposal-facts > div { min-height: 88px; padding: 17px 20px; display: flex; align-items: center; justify-content: space-between; gap: 25px; background: rgba(255,255,255,.018); }
.proposal-facts > div + div { border-top: 1px solid var(--line); }
.proposal-facts dt { color: var(--muted-2); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
.proposal-facts dd { margin: 0; max-width: 220px; text-align: right; font: 500 .88rem/1.3 var(--font-display); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.benefit-card { min-height: 325px; padding: 28px; border-radius: 22px; display: flex; flex-direction: column; align-items: flex-start; }
.benefit-card > span { margin-bottom: auto; color: var(--cyan); font: 500 .64rem/1 var(--font-display); letter-spacing: .12em; }
.benefit-card h3 { margin-top: 60px; font-size: 1.45rem; }
.benefit-card p { margin-bottom: 0; font-size: .82rem; }
.ecosystem-grid { display: grid; grid-template-columns: repeat(6, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: var(--line); gap: 1px; }
.ecosystem-card { min-height: 360px; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; background: #08080b; }
.ecosystem-card:nth-child(1), .ecosystem-card:nth-child(2) { grid-column: span 3; }
.ecosystem-card:nth-child(n+3) { grid-column: span 2; }
.ecosystem-card > span { margin-bottom: auto; color: var(--muted-2); font: 500 .62rem/1 var(--font-display); letter-spacing: .1em; text-transform: uppercase; }
.ecosystem-card h3 { font-size: 1.55rem; }
.ecosystem-card p { margin-bottom: 0; font-size: .82rem; }
.ecosystem-card.with-context-image { min-height: 520px; padding-top: 245px; position: relative; overflow: hidden; }
.ecosystem-media { position: absolute; inset: 0 0 auto; height: 220px; overflow: hidden; }
.ecosystem-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, #08080b, transparent 70%), linear-gradient(120deg, rgba(185,163,255,.16), transparent); }
.ecosystem-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.2) saturate(.72) contrast(1.05); transition: transform .55s var(--ease), filter .35s ease; }
.ecosystem-card:hover .ecosystem-media img { transform: scale(1.025); filter: grayscale(0) saturate(.95) contrast(1); }
.stock-credit { margin: 14px 2px 0; color: var(--muted-2); font-size: .6rem; }
.stock-credit a { text-decoration: underline; text-underline-offset: 3px; }
.proposal-steps { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: 26px; overflow: hidden; background: var(--line); gap: 1px; }
.proposal-steps article { min-height: 190px; padding: 28px; display: grid; grid-template-columns: 55px 1fr; align-items: start; gap: 18px; background: #08080b; }
.proposal-steps article > span { color: var(--cyan); font: 500 .65rem/1 var(--font-display); letter-spacing: .1em; }
.proposal-steps strong { display: block; margin-bottom: 12px; font: 500 1.08rem/1.2 var(--font-display); }
.proposal-steps p { margin: 0; font-size: .79rem; }
.programme-gallery { display: grid; grid-template-columns: 1.2fr .8fr; gap: 12px; }
.programme-photo { min-height: 335px; margin: 0; position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #08080b; }
.programme-photo-main { grid-row: span 2; min-height: 682px; }
.programme-photo-launch { grid-column: 1 / -1; min-height: 440px; }
.programme-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.05); transition: transform .6s var(--ease), filter .4s ease; }
.programme-photo:hover img { transform: scale(1.025); filter: saturate(1) contrast(1); }
.programme-photo figcaption { position: absolute; inset: auto 0 0; padding: 70px 24px 22px; background: linear-gradient(0deg, rgba(4,4,6,.94), transparent); }
.programme-photo figcaption span { display: block; margin-bottom: 5px; color: var(--cyan); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; }
.programme-photo figcaption strong { font: 500 .92rem/1.3 var(--font-display); }
.faq-list { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; }
.faq-list details { background: rgba(255,255,255,.018); }
.faq-list details + details { border-top: 1px solid var(--line); }
.faq-list summary { min-height: 82px; padding: 20px 25px; display: flex; align-items: center; justify-content: space-between; gap: 30px; list-style: none; cursor: pointer; font: 500 clamp(.92rem, 1.6vw, 1.08rem)/1.3 var(--font-display); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); transition: transform .25s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details > p { max-width: 830px; margin: -5px 70px 0 25px; padding-bottom: 25px; font-size: .82rem; }
.journey { counter-reset: journey; display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.journey-step { counter-increment: journey; padding: 40px 28px 40px 0; position: relative; }
.journey-step + .journey-step { padding-left: 28px; border-left: 1px solid var(--line); }
.journey-step::before { content: "0" counter(journey); display: block; margin-bottom: 55px; color: var(--muted-2); font: 500 .65rem/1 var(--font-display); letter-spacing: .1em; }
.journey-step strong { display: block; margin-bottom: 12px; font: 500 1.12rem/1.25 var(--font-display); }
.journey-step p { font-size: .79rem; }

.safety-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.flow-card { min-height: 260px; padding: 25px; border-radius: 20px; }
.flow-card > span { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 55px; border: 1px solid var(--line-bright); border-radius: 50%; color: var(--cyan); font: 500 .65rem/1 var(--font-display); }
.flow-card h3 { font-size: 1.25rem; }
.flow-card p { font-size: .8rem; }
.demo-shell { padding: clamp(22px, 4vw, 45px); border-radius: 30px; }
.demo-head { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.demo-head h3 { margin: 0; }
.demo-mode { color: var(--warning); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }
.readiness-layout { padding-top: 32px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 45px; align-items: center; }
.readiness-orb { width: min(300px, 80%); aspect-ratio: 1; margin: auto; position: relative; display: grid; place-items: center; border: 1px solid var(--line-bright); border-radius: 50%; background: radial-gradient(circle, rgba(185,163,255,.2), transparent 60%); box-shadow: inset 0 0 60px rgba(185,163,255,.08); }
.readiness-orb::before, .readiness-orb::after { content: ""; position: absolute; border: 1px solid var(--line); border-radius: 50%; }
.readiness-orb::before { width: 120%; height: 42%; transform: rotate(-20deg); }
.readiness-orb::after { width: 145%; height: 55%; transform: rotate(28deg); }
.readiness-orb span { position: relative; z-index: 2; text-align: center; }
.readiness-orb strong { display: block; font: 500 2.5rem/1 var(--font-display); }
.readiness-orb small { color: var(--muted); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.readiness-orb.ready { border-color: rgba(131,247,173,.6); background: radial-gradient(circle, rgba(131,247,173,.23), transparent 60%); box-shadow: 0 0 65px rgba(131,247,173,.12); }
.readiness-controls { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.readiness-toggle { padding: 18px; display: flex; align-items: center; gap: 12px; text-align: left; background: rgba(255,255,255,.025); border: 1px solid var(--line); border-radius: 15px; cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.readiness-toggle > i { width: 22px; height: 22px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--line-bright); border-radius: 6px; color: transparent; font-style: normal; font-size: .7rem; }
.readiness-toggle > span { display: flex; flex-direction: column; }
.readiness-toggle strong { font-size: .78rem; }
.readiness-toggle small { color: var(--muted-2); font-size: .64rem; }
.readiness-toggle.selected { border-color: rgba(131,247,173,.4); background: rgba(131,247,173,.045); }
.readiness-toggle.selected > i { color: #07150c; background: var(--success); border-color: var(--success); }
.readiness-message { grid-column: 1 / -1; margin: 8px 0 0; padding: 12px 14px; color: #b9b9c3; background: rgba(255,255,255,.025); border-radius: 12px; font-size: .75rem; }
.quiz-card { margin-top: 18px; padding: clamp(22px, 4vw, 45px); border-radius: 30px; }
.quiz-progress { display: flex; align-items: center; gap: 15px; margin-bottom: 28px; }
.quiz-progress-track { height: 3px; flex: 1; overflow: hidden; background: rgba(255,255,255,.09); border-radius: 5px; }
.quiz-progress-track i { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--violet), var(--cyan)); transition: width .3s ease; }
.quiz-progress span { color: var(--muted); font-size: .68rem; }
.quiz-question { display: none; }
.quiz-question.active { display: block; animation: fadeUp .35s var(--ease); }
.quiz-question h3 { max-width: 780px; margin-bottom: 25px; font-size: clamp(1.35rem, 2.4vw, 2rem); }
.quiz-options { display: grid; gap: 10px; }
.quiz-option { width: 100%; padding: 16px 18px; display: flex; gap: 12px; align-items: center; text-align: left; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.02); cursor: pointer; }
.quiz-option i { width: 26px; height: 26px; display: grid; place-items: center; border: 1px solid var(--line-bright); border-radius: 50%; font-style: normal; font-size: .65rem; }
.quiz-option:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.04); }
.quiz-option.correct { border-color: rgba(131,247,173,.5); background: rgba(131,247,173,.05); }
.quiz-option.wrong { border-color: rgba(255,128,128,.5); background: rgba(255,128,128,.05); }
.quiz-feedback { min-height: 46px; margin: 18px 0 0; color: #c7c7cf; font-size: .8rem; }
.quiz-result { display: none; text-align: center; padding: 30px 10px 10px; }
.quiz-result.active { display: block; }
.result-mark { width: 70px; height: 70px; margin: 0 auto 20px; display: grid; place-items: center; color: var(--success); border: 1px solid rgba(131,247,173,.4); border-radius: 50%; font: 500 1.5rem/1 var(--font-display); box-shadow: 0 0 50px rgba(131,247,173,.12); }
.quiz-result p { max-width: 620px; margin-inline: auto; }

.team-hero-art { overflow: hidden; border-radius: 28px; }
.team-hero-art img { width: 100%; min-height: 460px; object-fit: cover; }
.about-brand-panel { min-height: 500px; padding: clamp(38px, 6vw, 70px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; background: radial-gradient(circle at 78% 18%, rgba(185,163,255,.18), transparent 32%), linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015)); }
.about-brand-panel img { width: min(300px, 72%); min-height: 0; height: auto; margin-bottom: 55px; object-fit: contain; }
.about-brand-panel p { margin: 0 0 24px; color: white; font: 500 clamp(2.4rem, 4vw, 4.3rem)/.98 var(--font-display); letter-spacing: -.05em; }
.about-brand-panel p strong { color: var(--violet); font-weight: 500; }
.about-brand-panel > span { color: var(--muted-2); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.founder-card { min-height: 480px; padding: clamp(30px, 5vw, 55px); border-radius: 28px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.founder-card::after { content: attr(data-initials); position: absolute; right: -20px; top: 20px; color: rgba(255,255,255,.035); font: 600 12rem/1 var(--font-display); letter-spacing: -.1em; }
.founder-index { position: relative; z-index: 1; color: var(--muted-2); font: 500 .65rem/1 var(--font-display); letter-spacing: .12em; }
.founder-info { position: relative; z-index: 1; }
.founder-info h3 { font-size: clamp(2rem, 4vw, 4rem); }
.founder-info .role { color: white; font-size: .82rem; }
.founder-info p { max-width: 480px; }
.founder-card.with-photo { min-height: 690px; padding: 0; justify-content: flex-start; }
.founder-card.with-photo::after { display: none; }
.founder-card.with-photo .founder-index { position: absolute; z-index: 3; top: 20px; left: 20px; padding: 9px 11px; color: #e5e5ec; background: rgba(5,5,7,.62); border: 1px solid var(--line); border-radius: 999px; backdrop-filter: blur(12px); }
.founder-photo { height: 390px; overflow: hidden; position: relative; background: #0a0a0d; }
.founder-photo::after { content: ""; position: absolute; inset: auto 0 0; height: 45%; background: linear-gradient(0deg, rgba(8,8,11,.95), transparent); }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: saturate(.8) contrast(1.04); transition: transform .55s var(--ease), filter .4s ease; }
.founder-card.with-photo:hover .founder-photo img { transform: scale(1.025); filter: saturate(1) contrast(1); }
.founder-card.with-photo .founder-info { padding: 34px clamp(28px, 4vw, 46px) 38px; }
.founder-card.with-photo .founder-info h3 { font-size: clamp(2rem, 3.4vw, 3.5rem); }

.careers-board { border: 1px solid var(--line); border-radius: 26px; overflow: hidden; }
.career-row { min-height: 110px; padding: 22px 28px; display: grid; grid-template-columns: 1fr 1.4fr auto; align-items: center; gap: 25px; background: rgba(255,255,255,.018); }
.career-row + .career-row { border-top: 1px solid var(--line); }
.career-row strong { font: 500 1.1rem/1.2 var(--font-display); }
.career-row span { color: var(--muted); font-size: .78rem; }
.career-row i { color: var(--muted-2); font-size: .65rem; font-style: normal; letter-spacing: .1em; text-transform: uppercase; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 5%; align-items: start; }
.contact-details { position: sticky; top: 110px; }
.contact-details h2 { font-size: clamp(2.6rem, 5vw, 5rem); }
.contact-link { display: block; margin: 30px 0; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.contact-link span { display: block; color: var(--muted-2); font-size: .63rem; letter-spacing: .1em; text-transform: uppercase; }
.contact-link strong { display: block; margin-top: 6px; font: 500 clamp(.92rem, 1.6vw, 1.15rem)/1.3 var(--font-display); overflow-wrap: anywhere; }
.contact-form { padding: clamp(25px, 5vw, 55px); border-radius: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 14px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #c6c6cf; font-size: .7rem; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 0; color: white; background: transparent; border: 0; border-bottom: 1px solid var(--line-bright); border-radius: 0; outline: none; }
.field select { color-scheme: dark; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cyan); }
.contact-form .button { margin-top: 28px; cursor: pointer; }
.form-note { margin: 15px 0 0; color: var(--muted-2); font-size: .68rem; }

.ask-tel {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  min-height: 48px;
  padding: 8px 15px 8px 9px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: white;
  background: rgba(10,10,14,.82);
  border: 1px solid rgba(185,163,255,.5);
  border-radius: 999px;
  box-shadow: 0 14px 45px rgba(0,0,0,.38), 0 0 30px rgba(185,163,255,.08);
  backdrop-filter: blur(18px);
  font-size: .72rem;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.ask-tel span { width: 30px; height: 30px; display: grid; place-items: center; color: #09090c; background: var(--violet); border-radius: 50%; font-size: .95rem; }
.ask-tel:hover { transform: translateY(-3px); border-color: var(--violet); background: rgba(18,16,25,.94); }

.legal-note { padding: 18px 20px; color: var(--muted); border-left: 2px solid var(--warning); background: rgba(255,211,106,.035); font-size: .78rem; }
.badge { display: inline-block; padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@keyframes starDrift { to { transform: rotate(-8deg) translate3d(120px,60px,0); } }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(131,247,173,0); } 100% { box-shadow: 0 0 0 0 rgba(131,247,173,0); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } }

@media (max-width: 1050px) {
  :root { --shell: min(100% - 36px, 920px); }
  .site-nav { gap: 10px; }
  .site-nav a { font-size: .7rem; }
  .home-hero, .page-hero-grid { grid-template-columns: 1fr; }
  .quick-start { grid-template-columns: 1fr; }
  .home-hero { padding-top: 100px; }
  .hero-stage { min-height: 480px; }
  .hero-product { width: min(650px, 90%); }
  .page-hero { padding-top: 80px; }
  .page-hero-grid .hero-art { min-height: 420px; }
  .split-section { grid-template-columns: 1fr; gap: 10px; }
  .mission-copy { padding-top: 0; }
  .project-grid { grid-template-columns: 1fr 1fr; }
  .pathway { grid-template-columns: .75fr 1.25fr; }
  .safety-teaser { gap: 45px; }
  .content-grid-3 { grid-template-columns: 1fr 1fr; }
  .journey { grid-template-columns: 1fr 1fr; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .journey-step:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .journey-step:nth-child(4) { border-top: 1px solid var(--line); }
  .safety-flow { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  :root { --header-h: 66px; }
  .section { padding-block: 88px; }
  .site-header, .site-header.scrolled { width: calc(100vw - 20px); margin-top: 10px; top: 10px; padding: 0 10px 0 14px; background: rgba(8,8,10,.94); border-color: var(--line); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-toggle { position: relative; z-index: 1002; width: 46px; height: 46px; padding: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; flex: 0 0 46px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(255,255,255,.055); touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
  .nav-toggle > span:not(.sr-only) { width: 21px; height: 2px; margin: 3px 0; border-radius: 99px; transform-origin: center; }
  .nav-toggle[aria-expanded="true"] > span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; z-index: 1001; min-height: 100vh; min-height: 100dvh; padding: calc(var(--header-h) + 50px) max(20px, env(safe-area-inset-right)) max(28px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left)); display: flex; align-items: stretch; flex-direction: column; justify-content: flex-start; gap: 8px; overflow-y: auto; overscroll-behavior: contain; background: radial-gradient(circle at 88% 8%, rgba(185,163,255,.18), transparent 34%), rgba(5,5,7,.985); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-10px); transition: opacity .22s ease, visibility .22s ease, transform .22s ease; }
  .site-nav.open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .site-nav a, .site-nav a[href="index.html"], .site-nav a[href="careers.html"] { min-height: 56px; padding: 13px 14px; display: flex; align-items: center; justify-content: space-between; color: #e9e9ef; font: 500 clamp(1.15rem, 6vw, 1.45rem)/1.2 var(--font-display); border: 1px solid transparent; border-bottom-color: var(--line); border-radius: 12px; }
  .site-nav a.active { color: white; background: rgba(185,163,255,.1); border-color: rgba(185,163,255,.25); }
  .site-nav a::after { display: none; }
  .site-nav .nav-cta { min-height: 58px; margin-top: 12px; padding: 14px 18px; justify-content: center; text-align: center; border: 0; color: #0a0a0d; }
  .nav-open .ask-tel { opacity: 0; pointer-events: none; }
  .hero { min-height: auto; }
  .home-hero { padding-top: 95px; }
  .hero-stage { min-height: 420px; }
  .hero-stage::before { width: 110%; }
  .orbit-label-two { right: 3%; }
  .section-heading { align-items: start; flex-direction: column; gap: 20px; }
  .project-grid { grid-template-columns: 1fr; }
  .quick-start-options { grid-template-columns: 1fr; }
  .quick-start-options a { min-height: 120px; }
  .project-card { min-height: 550px; }
  .pathway { grid-template-columns: 1fr; }
  .pathway-visual { min-height: 360px; }
  .safety-teaser { grid-template-columns: 1fr; }
  .safety-copy { order: -1; }
  .final-cta { align-items: flex-start; flex-direction: column; justify-content: center; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-email { justify-self: start; grid-column: 1 / -1; }
  .product-showcase, .audience-grid, .contact-layout { grid-template-columns: 1fr; }
  .proposal-overview { grid-template-columns: 1fr; }
  .programme-gallery { grid-template-columns: 1fr 1fr; }
  .programme-photo-main { grid-column: span 2; grid-row: auto; min-height: 560px; }
  .product-main-image { min-height: 480px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: auto; min-height: 450px; }
  .gallery-item.wide { grid-column: span 2; }
  .readiness-layout { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; }
  .contact-details { position: static; }
  .founder-teaser { grid-template-columns: 1fr; }
  .founder-teaser-visual { min-height: 500px; }
  .site-footer { grid-template-columns: 1fr; gap: 12px; }
  .footer-main, .footer-links, .footer-bottom { grid-column: 1; }
  .footer-main { padding-bottom: 30px; }
  .footer-links { padding-top: 10px; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 28px); --radius: 22px; }
  .section { padding-block: 74px; }
  h1 { font-size: clamp(3rem, 15.5vw, 5rem); }
  h2 { font-size: clamp(2.2rem, 11vw, 3.6rem); }
  .brand small { display: none; }
  .brand-logo { width: 103px; height: 48px; }
  .ask-tel { right: 14px; bottom: 14px; min-height: 44px; padding: 6px 12px 6px 7px; }
  .ask-tel span { width: 29px; height: 29px; }
  .hero-stage { min-height: 330px; }
  .hero-product { width: 110%; max-width: none; }
  .glass-orbit { display: none; }
  .stage-caption { right: 0; bottom: 2%; min-width: 210px; }
  .signal-strip { padding: 14px 0; }
  .signal-strip div { width: calc(100% - 28px); min-height: 0; flex-wrap: wrap; justify-content: center; gap: 11px 20px; }
  .signal-strip span { font-size: .57rem; letter-spacing: .13em; }
  .signal-strip i { display: none; }
  .project-card { min-height: 500px; }
  .project-content { padding: 24px; }
  .project-featured > img { height: 55%; }
  .pathway { padding: 12px; }
  .pathway-copy { padding: 34px 16px; }
  .pathway-visual { min-height: 300px; }
  .pathway-visual::before { width: 250px; }
  .pathway-actions { grid-template-columns: 1fr; }
  .console-grid { grid-template-columns: 1fr; }
  .console-grid > div { min-height: 80px; }
  .team-teaser { min-height: 580px; }
  .team-teaser-content { padding: 34px 24px; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-email { grid-column: auto; }
  .footer-links { width: 100%; grid-template-columns: 1fr 1fr; margin: 0; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
  .product-hero-stage { min-height: 390px; }
  .hero-product-frame { width: 88%; left: 1%; top: 10%; border-radius: 18px; }
  .hero-product-rocket { width: 112%; right: -18%; bottom: 2%; }
  .hero-product-label { left: 1%; bottom: 1%; max-width: 190px; }
  .quick-start { padding: 20px; }
  .quick-start-options a { min-height: 150px; padding: 20px; }
  .founder-teaser { min-height: 760px; }
  .founder-teaser-visual { min-height: 410px; }
  .founder-teaser .team-teaser-content { padding: 38px 24px 48px; }
  .section-logo { margin-bottom: 26px; }
  .about-brand-panel { min-height: 410px; padding: 38px 28px; }
  .about-brand-panel img { margin-bottom: 38px; }
  .product-page-art > img:first-child { width: 124%; }
  .product-main-image.product-composition .composition-box { width: 87%; left: 4%; }
  .product-main-image.product-composition .composition-rocket { width: 115%; right: -17%; }
  .product-gallery-clean .gallery-item.wide, .product-gallery-clean .gallery-item:not(.wide) { min-height: 390px; }
  .page-hero { min-height: auto; padding: 100px 0 55px; }
  .page-hero h1 { font-size: clamp(3.2rem, 17vw, 5.2rem); }
  .page-hero-grid .hero-art { min-height: 320px; }
  .content-grid-3, .feature-list, .safety-flow { grid-template-columns: 1fr; }
  .benefit-grid, .proposal-steps { grid-template-columns: 1fr; }
  .ecosystem-grid { grid-template-columns: 1fr; }
  .ecosystem-card:nth-child(n) { grid-column: auto; min-height: 280px; }
  .programme-gallery { grid-template-columns: 1fr; }
  .programme-photo, .programme-photo-main { grid-column: auto; min-height: 390px; }
  .proposal-facts > div { align-items: flex-start; flex-direction: column; gap: 7px; }
  .proposal-facts dd { max-width: none; text-align: left; }
  .faq-list summary { padding-inline: 18px; }
  .faq-list details > p { margin-inline: 18px 45px; }
  .info-card { min-height: 255px; }
  .info-card .card-icon { margin-bottom: 40px; }
  .product-main-image { min-height: 380px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item.tall { min-height: 390px; }
  .gallery-item.wide { grid-column: auto; }
  .journey { grid-template-columns: 1fr; }
  .journey-step, .journey-step + .journey-step, .journey-step:nth-child(3) { padding: 30px 5px; border-left: 0; border-top: 1px solid var(--line); }
  .journey-step:first-child { border-top: 0; }
  .journey-step::before { margin-bottom: 28px; }
  .readiness-controls { grid-template-columns: 1fr; }
  .demo-head { align-items: flex-start; flex-direction: column; }
  .founder-card { min-height: 420px; }
  .founder-card.with-photo { min-height: 640px; }
  .founder-photo { height: 350px; }
  .career-row { grid-template-columns: 1fr; gap: 8px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
}

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