:root {
  --bg: #0b0e14;
  --bg-soft: #11141d;
  --ink: #d3d7da;
  --muted: #8b9196;
  --accent: #00e697;
  --accent-soft: rgba(0, 230, 151, 0.28);
  --accent-faint: rgba(0, 230, 151, 0.09);
  --line: rgba(0, 230, 151, 0.75);
  --font: "Chakra Petch", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  overflow: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
}



#space-canvas,
#hex-glow-canvas,
.vignette {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#space-canvas { opacity: 1; }
#hex-glow-canvas { opacity: 1; z-index: 1; }

.vignette {
  background: radial-gradient(ellipse at center, transparent 46%, rgba(0, 0, 0, 0.8) 100%);
}

.scene {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.corner {
  position: absolute;
  width: 22px;
  height: 22px;
  opacity: 0.9;
}
.corner--tl { top: 4.6vh; left: 3vw; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.corner--tr { top: 4.6vh; right: 3vw; border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
.corner--bl { bottom: 5.4vh; left: 3vw; border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
.corner--br { bottom: 5.4vh; right: 3vw; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }

.topbar {
  position: absolute;
  top: 7.1vh;
  left: 7.1vw;
  right: 7.1vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}

.mini-brand,
.mini-brand:visited {
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.04em;
  font-size: clamp(15px, 1.28vw, 24px);
}
.mini-brand strong { color: var(--accent); font-weight: 500; }
.mini-brand span { color: #aeb4b7; font-weight: 300; }

.manifest {
  margin: 0;
  color: var(--accent);
  font-size: clamp(9px, 0.72vw, 13px);
  letter-spacing: 0.12em;
}
.manifest span { opacity: 0.92; }

.hero {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 4;
}

h1 {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.04em;
  margin: 0;
  font-family: var(--font);
  font-size: clamp(68px, 9.8vw, 154px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-shadow: 0 0 24px rgba(0,0,0,.78);
}
h1 span {
  color: var(--accent);
  filter: drop-shadow(0 0 16px rgba(0, 230, 151, 0.27));
}
h1 em {
  color: #d7dadd;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.strapline {
  margin: 4.2vh 0 0;
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3.5vw, 62px);
  font-size: clamp(11px, 1.15vw, 18px);
  letter-spacing: 0.72em;
  text-indent: 0.72em;
}
.strapline strong { color: var(--accent); font-weight: 500; }
.strapline span { color: #f4f5f5; }

.footer {
  position: absolute;
  left: 7.15vw;
  right: 7.15vw;
  bottom: 7.5vh;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 5;
  font-size: clamp(9px, 0.72vw, 13px);
  letter-spacing: 0.3em;
  line-height: 2.05;
}
.footer p { margin: 0; display: grid; }
.footer__right { text-align: right; }

@media (max-width: 860px) {
  .topbar { top: 5.7vh; left: 7vw; right: 7vw; }
  .manifest { display: none; }
  .hero-content { padding: 0 7vw; }
  h1 { font-size: clamp(58px, 15vw, 112px); letter-spacing: -0.02em; }
  .strapline { margin-top: 3.4vh; gap: 18px; font-size: clamp(9px, 2.1vw, 15px); letter-spacing: .38em; text-indent: .38em; }
  .footer { bottom: 5.5vh; font-size: 8px; letter-spacing: .22em; }
}

@media (max-width: 540px) {
  h1 { font-size: clamp(52px, 17vw, 92px); }
  .strapline { display: grid; gap: 11px; }
  .footer { left: 6vw; right: 6vw; bottom: 4vh; }
}

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