:root{
  --bg0:#060712;
  --bg1:#0b0f24;
  --bg2:#070a18;
  --text:#eaf0ff;
  --muted:#b9c0d9;
  --muted2:#95a0c5;
  --stroke:rgba(255,255,255,.12);
  --card:rgba(255,255,255,.07);
  --card2:rgba(255,255,255,.05);
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --accent:#7c5cff;
  --cyan:#22d3ee;
  --pink:#ff4fd8;
  --radius:22px;
  --radius-sm:16px;
  --container: 1140px;
  --brand-logo: url("./assets/logo.png");
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 20% -10%, rgba(124,92,255,.30), transparent 55%),
    radial-gradient(900px 700px at 90% 0%, rgba(34,211,238,.20), transparent 55%),
    radial-gradient(1000px 800px at 60% 120%, rgba(255,79,216,.14), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.95}
strong{font-weight:600}

.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:absolute;
  left:-999px;
  top:10px;
  z-index:9999;
  background:#fff;
  color:#000;
  padding:10px 12px;
  border-radius:10px;
}
.skip-link:focus{left:12px}

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

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background:linear-gradient(180deg, rgba(6,7,18,.82), rgba(6,7,18,.35));
  border-bottom:1px solid rgba(255,255,255,.06);
}

.nav{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-weight:700;
  letter-spacing:.2px;
}

.brand__mark{
  width:34px;
  height:34px;
  border-radius:12px;
  background-color:#ffffff;
  background-image: var(--brand-logo);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 10px 28px rgba(124,92,255,.18);
  position:relative;
  overflow:hidden;
}
.brand__mark::after{
  content:none;
}

.nav__links{
  display:flex;
  align-items:center;
  gap:16px;
  color:rgba(234,240,255,.88);
  font-weight:500;
}
.nav__links a{padding:10px 10px; border-radius:12px; border:1px solid transparent}
.nav__links a:hover{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.06);
}

.nav__toggle{
  display:none;
  appearance:none;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.05);
  border-radius:14px;
  padding:10px 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.nav__toggleLines{
  display:block;
  width:22px;
  height:14px;
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.92) 0 2px,
      transparent 2px 6px,
      rgba(255,255,255,.92) 6px 8px,
      transparent 8px 12px,
      rgba(255,255,255,.92) 12px 14px
    );
  opacity:.92;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:600;
  letter-spacing:.2px;
  box-shadow: 0 14px 38px rgba(0,0,0,.25);
  transition: transform .12s ease, filter .12s ease, background .12s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0)}
.btn--sm{padding:10px 12px; border-radius:14px}
.btn--primary{
  border:1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(140% 160% at 20% 20%, rgba(255,255,255,.26), transparent 42%),
    linear-gradient(135deg, rgba(124,92,255,1), rgba(34,211,238,1));
}
.btn--ghost{
  background:rgba(255,255,255,.03);
}

.text-gradient{
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--accent));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.hero{
  position:relative;
  min-height: calc(92vh - 66px);
  display:flex;
  align-items:stretch;
  overflow:hidden;
}
#space-canvas{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
}
.hero__glow{
  position:absolute;
  inset:-30%;
  background:
    radial-gradient(900px 600px at 15% 15%, rgba(124,92,255,.30), transparent 60%),
    radial-gradient(1000px 720px at 80% 10%, rgba(34,211,238,.22), transparent 60%),
    radial-gradient(900px 700px at 55% 65%, rgba(255,79,216,.16), transparent 65%);
  filter: blur(8px);
  pointer-events:none;
}

.hero__bottomFade{
  position:absolute;
  left:0; right:0; bottom:0;
  height:140px;
  background:linear-gradient(180deg, transparent, var(--bg1));
  pointer-events:none;
}

.hero__grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  align-items:center;
  gap:34px;
  padding: 56px 0 46px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  border-radius:999px;
  color:rgba(234,240,255,.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.badge__dot{
  width:10px; height:10px; border-radius:999px;
  background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.75), rgba(34,211,238,1) 45%, rgba(124,92,255,1));
  box-shadow: 0 0 0 4px rgba(34,211,238,.14);
}

.hero__title{
  margin:16px 0 10px;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: clamp(42px, 4.6vw, 74px);
  line-height: 1.02;
  letter-spacing: -.8px;
}
.hero__lead{
  margin: 14px 0 20px;
  color: rgba(234,240,255,.84);
  font-size: clamp(16px, 1.25vw, 18.5px);
  line-height: 1.6;
  max-width: 62ch;
}
.hero__lead p{margin:0}
.hero__lead p + p{margin-top:12px}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin: 18px 0 24px}

.hero__stats{
  margin:0;
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}
.stat{
  padding:14px 14px;
  border-radius: var(--radius-sm);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
}
.stat dt{color: rgba(234,240,255,.92); font-weight:700; margin-bottom:6px}
.stat dd{margin:0; color: rgba(185,192,217,.95)}

.hero__visual{position:relative; min-height: 420px}
.orb{
  position:absolute;
  border-radius:999px;
  filter: blur(.2px);
  opacity:.95;
  mix-blend-mode: screen;
}
.orb--a{
  width: 240px; height: 240px;
  left: -20px; top: 40px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.32), rgba(124,92,255,.35) 35%, transparent 70%);
}
.orb--b{
  width: 300px; height: 300px;
  right: -60px; top: -20px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.26), rgba(34,211,238,.22) 35%, transparent 72%);
}

.glassCard{
  position:relative;
  margin-left:auto;
  width:min(420px, 100%);
  border-radius: 28px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  box-shadow: 0 35px 90px rgba(0,0,0,.55);
  overflow:hidden;
  backdrop-filter: blur(14px);
}
.glassCard::before{
  content:"";
  position:absolute;
  inset:-80px -120px auto auto;
  width:280px; height:280px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.25), transparent 60%);
  transform: rotate(18deg);
  opacity:.7;
}
.glassCard__img{
  display:block;
  width:100%;
  height:auto;
  transform: translateY(6px);
}
.glassCard__meta{
  position:absolute;
  left:16px; right:16px; bottom:16px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  padding:14px 14px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(6,7,18,.35);
  backdrop-filter: blur(10px);
}
.glassCard__label{color: rgba(185,192,217,.95); font-size: 13px}
.glassCard__name{font-family:"Space Grotesk", Inter, system-ui, sans-serif; font-size: 18px; font-weight:700}

.floaty{
  position:absolute;
  width: min(160px, 36vw);
  height:auto;
  opacity:.95;
  filter: drop-shadow(0 22px 30px rgba(0,0,0,.55));
  transform-origin: center;
  animation: float 6.5s ease-in-out infinite;
  pointer-events:none;
}
.floaty--rocket{
  right: 26px;
  bottom: -8px;
  width: min(170px, 40vw);
  animation-duration: 7.6s;
}
.floaty--astro{
  left: -12px;
  bottom: 26px;
  width: min(170px, 42vw);
  animation-duration: 8.4s;
  animation-delay: .2s;
}
@keyframes float{
  0%,100%{transform: translateY(0) rotate(-1deg)}
  50%{transform: translateY(-12px) rotate(1.5deg)}
}

.section{
  padding: 84px 0;
}
.section--alt{
  background:
    radial-gradient(900px 650px at 20% 20%, rgba(124,92,255,.14), transparent 60%),
    radial-gradient(900px 650px at 80% 10%, rgba(34,211,238,.11), transparent 60%),
    linear-gradient(180deg, rgba(7,10,24,.72), rgba(7,10,24,.20));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section__header{
  display:grid;
  gap:10px;
  margin-bottom: 26px;
}
.section__title{
  margin:0;
  font-family:"Space Grotesk", Inter, system-ui, sans-serif;
  font-size: clamp(28px, 2.6vw, 40px);
  letter-spacing:-.4px;
}
.section__lead{
  margin:0;
  color: rgba(185,192,217,.95);
  line-height: 1.65;
  max-width: 74ch;
}
.section__footer{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 22px;
}

.featureGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  padding: 18px 18px;
  box-shadow: 0 22px 60px rgba(0,0,0,.35);
  min-height: 168px;
}
.card__icon{width:44px; height:auto; margin-bottom:10px}
.card h3{
  margin: 4px 0 8px;
  font-family:"Space Grotesk", Inter, system-ui, sans-serif;
  letter-spacing:-.2px;
}
.card p{margin:0; color: rgba(185,192,217,.95); line-height:1.6}

.menuGrid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.menuCard{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.03));
  overflow:hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
  display:flex;
  flex-direction:column;
}
.menuCard__img{
  width:100%;
  height:auto;
  display:block;
  background: rgba(0,0,0,.15);
}
.menuCard__body{
  padding: 14px 14px 16px;
  display:grid;
  gap: 10px;
}
.menuCard h3{
  margin:0;
  font-family:"Space Grotesk", Inter, system-ui, sans-serif;
  letter-spacing:-.2px;
}
.menuCard p{margin:0; color: rgba(185,192,217,.95); line-height:1.55}
.menuCard__meta{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  margin-top:2px;
}
.pill{
  font-size: 12px;
  font-weight:700;
  letter-spacing:.3px;
  padding: 7px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(140% 160% at 20% 20%, rgba(255,255,255,.20), transparent 45%),
    linear-gradient(135deg, rgba(124,92,255,.35), rgba(34,211,238,.20));
}

.galleryGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
}
.galleryItem{
  position:relative;
  margin:0;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  overflow:hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}
.galleryItem:nth-child(1){grid-row: span 2}
.galleryItem img{width:100%; height:100%; object-fit:cover; display:block}
.galleryItem figcaption{
  position:absolute;
  left:12px; bottom:12px;
  padding: 10px 12px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(6,7,18,.38);
  backdrop-filter: blur(10px);
  font-weight:600;
  color: rgba(234,240,255,.92);
}

.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items:center;
}
.infoList{
  display:grid;
  gap: 12px;
  margin-top: 14px;
}
.info{
  padding: 14px 14px;
  border-radius: var(--radius-sm);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.info__k{color: rgba(185,192,217,.95); font-weight:700; margin-bottom:6px}
.info__v{color: rgba(234,240,255,.92); line-height:1.55}
.info__v a{text-decoration:underline; text-decoration-color: rgba(34,211,238,.40)}
.tinyNote{margin-top:12px; color: rgba(149,160,197,.95); line-height:1.6}

.mapCard{
  position:relative;
  border-radius: 26px;
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  overflow:hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}
.mapCard__img{display:block; width:100%; height:auto}
.mapCard--embed{
  aspect-ratio: 16 / 11;
}
.mapCard__iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:block;
  filter: saturate(1.05) contrast(1.05);
}
.mapCard__cta{
  position:absolute;
  right:16px;
  bottom:16px;
  padding: 10px 12px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(6,7,18,.38);
  backdrop-filter: blur(10px);
  font-weight:700;
  color: rgba(234,240,255,.92);
}
.mapCard__cta:hover{
  background: rgba(255,255,255,.08);
}
.mapCard__pin{
  position:absolute;
  left:52%;
  top:48%;
  width:18px; height:18px;
  border-radius:999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.8), rgba(255,79,216,1));
  box-shadow: 0 0 0 10px rgba(255,79,216,.12), 0 18px 40px rgba(0,0,0,.35);
}
.mapCard__label{
  position:absolute;
  left:16px;
  bottom:16px;
  padding: 10px 12px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(6,7,18,.38);
  backdrop-filter: blur(10px);
  font-weight:700;
}

.ctaPanel{
  border-radius: 28px;
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(124,92,255,.18), transparent 60%),
    radial-gradient(900px 600px at 80% 10%, rgba(34,211,238,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: 0 40px 110px rgba(0,0,0,.55);
  padding: 22px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 18px;
}
.ctaPanel h2{
  margin:0 0 6px;
  font-family:"Space Grotesk", Inter, system-ui, sans-serif;
  letter-spacing:-.2px;
}
.ctaPanel p{margin:0; color: rgba(185,192,217,.95); line-height:1.6}
.ctaPanel__actions{display:flex; gap:12px; flex-wrap:wrap}

.footer{
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(7,10,24,.22), rgba(7,10,24,.65));
  text-align:center;
}
.footer__inner{
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}
.brand--footer .brand__mark{width:30px; height:30px; border-radius:12px}
.brand--footer{justify-content:center}
.footer__brand{
  width: min(920px, 100%);
  margin-inline:auto;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.footer__brand p{
  margin:10px auto 0;
  color: rgba(185,192,217,.95);
  line-height:1.65;
  max-width: 72ch;
}

.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .6s ease;
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .floaty{animation:none}
  .reveal{transition:none}
  .btn{transition:none}
}

@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr; padding-top: 44px}
  .hero__visual{order:-1; min-height: 360px}
  .menuGrid{grid-template-columns: repeat(2, 1fr)}
  .featureGrid{grid-template-columns: 1fr}
  .galleryGrid{grid-template-columns: 1fr}
  .galleryItem:nth-child(1){grid-row:auto}
  .split{grid-template-columns: 1fr}
  .footer__inner{display:flex}
  .nav__toggle{display:inline-flex}
  .nav__links{
    display:none;
    position:absolute;
    right:20px;
    top:64px;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    padding:10px;
    width: min(320px, calc(100% - 40px));
    border-radius: 18px;
    border:1px solid rgba(255,255,255,.14);
    background: rgba(6,7,18,.78);
    backdrop-filter: blur(14px);
    box-shadow: 0 22px 80px rgba(0,0,0,.55);
  }
  .nav__links.is-open{display:flex}
  .nav__links a{padding:12px 12px}
}

@media (max-width: 520px){
  .hero__stats{gap:10px}
  .ctaPanel{flex-direction:column; align-items:stretch}
}


