:root{
  --bg:#ffffff;
  --bg2:#f6f7fb;
  --text:#0a0b12;
  --muted:#2b2f45;
  --cyan:#00c9d2;
  --mag:#d100c5;
  --acid:#00ff66;
  --line:rgba(0,0,0,.10);
  --shadow: rgba(0,0,0,.18);
  --radius:16px;
}

@font-face{
  font-family: "Orbitron";
  src: url("../fonts/Orbitron-Variable.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background: var(--bg);
  overflow-x:hidden;
}

a{color:var(--cyan); text-decoration:none}
a:hover{text-decoration:underline}

.skip{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  z-index:50;
  padding:10px 12px;
  border-radius:10px;
  background:rgba(0,0,0,.75);
  border:1px solid var(--line);
}

.matrix{
  display:none;
}

.vignette{
  display:none;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 22px;
}

.brand{display:flex; align-items:center; gap:10px}
.brand__mark{filter: drop-shadow(0 0 10px rgba(55,246,255,.35));}
.brand__name{
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
  color:rgba(10,11,18,.85);
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(0,255,102,.35);
  background:rgba(0,255,102,.08);
  box-shadow:0 0 0 1px rgba(0,0,0,.04) inset;
}
.badge::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:99px;
  background:var(--acid);
  box-shadow:0 0 14px rgba(182,255,60,.8);
  animation:pulse 1.7s ease-in-out infinite;
}

@keyframes pulse{0%,100%{transform:scale(.9); opacity:.75} 50%{transform:scale(1.15); opacity:1}}

.shell{
  min-height:calc(100vh - 72px);
  display:grid;
  place-items:center;
  padding:30px 18px 56px;
}

.hero{
  width:min(980px, 100%);
  padding:0;
  text-align:center;
  border-radius:0;
  border:none;
  background:transparent;
  box-shadow:none;
  position:relative;
  overflow:visible;
}

.hero::before{
  content:none;
}

.kicker{
  margin:0 0 10px;
  color:rgba(167,164,199,.95);
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:12px;
}

.glitch{
  margin:0;
  font-size: clamp(25px, 3.95vw, 42px);
  line-height:1.02;
  letter-spacing:.02em;
  font-family: "Orbitron", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow:
    0 0 18px rgba(0,255,102,.25),
    0 0 28px rgba(0,255,102,.18);
  position:relative;
}

.logo{
  width: min(360px, 78vw);
  height: auto;
  margin: 2px auto 18px;
  display:block;
  filter:
    drop-shadow(0 0 18px rgba(55,246,255,.18))
    drop-shadow(0 0 22px rgba(255,60,242,.12));
  transform: translateZ(0);
  opacity: .96;
}

.glitch::before,
.glitch::after{
  content:attr(data-text);
  position:absolute;
  left:0;
  top:0;
  width:100%;
  overflow:hidden;
  clip-path: inset(0 0 0 0);
}

.glitch::before{
  transform: translate(1px, 0);
  color:rgba(0,255,102,.90);
  mix-blend-mode:screen;
  animation:glitchA 6.5s infinite linear;
  opacity:.9;
}

.glitch::after{
  transform: translate(-1px, 0);
  color:rgba(0,185,74,.88);
  mix-blend-mode:screen;
  animation:glitchB 7.5s infinite linear;
  opacity:.85;
}

@keyframes glitchA{
  0%{clip-path: inset(0 0 95% 0)}
  10%{clip-path: inset(12% 0 60% 0)}
  20%{clip-path: inset(62% 0 18% 0)}
  30%{clip-path: inset(25% 0 55% 0)}
  40%{clip-path: inset(78% 0 10% 0)}
  50%{clip-path: inset(44% 0 35% 0)}
  60%{clip-path: inset(8% 0 78% 0)}
  70%{clip-path: inset(58% 0 24% 0)}
  80%{clip-path: inset(15% 0 65% 0)}
  90%{clip-path: inset(0 0 88% 0)}
  100%{clip-path: inset(0 0 95% 0)}
}

@keyframes glitchB{
  0%{clip-path: inset(85% 0 0 0)}
  10%{clip-path: inset(60% 0 25% 0)}
  20%{clip-path: inset(10% 0 70% 0)}
  30%{clip-path: inset(55% 0 25% 0)}
  40%{clip-path: inset(20% 0 55% 0)}
  50%{clip-path: inset(72% 0 12% 0)}
  60%{clip-path: inset(35% 0 40% 0)}
  70%{clip-path: inset(5% 0 80% 0)}
  80%{clip-path: inset(45% 0 40% 0)}
  90%{clip-path: inset(75% 0 10% 0)}
  100%{clip-path: inset(85% 0 0 0)}
}

.tagline{
  margin:14px 0 0;
  font-size:16px;
  color:rgba(233,231,255,.86);
  max-width:68ch;
}

.subtitle{
  margin:0;
  font-size:clamp(18px, 2.8vw, 22px);
  color:rgba(233,231,255,.9);
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.coming{
  margin:10px auto 0;
  max-width: 52ch;
  font-size:13px;
  color:rgba(233,231,255,.72);
  letter-spacing:.06em;
  text-transform:uppercase;
}

.tagline__accent{
  color:var(--acid);
  text-shadow:0 0 16px rgba(182,255,60,.25);
}

.panel{
  margin-top:22px;
  padding:18px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.35);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.panel__row{display:grid; gap:6px; margin-bottom:12px}
.panel__title{margin:0; font-size:16px; letter-spacing:.02em}
.panel__hint{margin:0; color:var(--muted); font-size:13px}

.form{display:flex; gap:10px; flex-wrap:wrap}

input[type="email"]{
  flex: 1 1 240px;
  min-width: 220px;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(55,246,255,.25);
  background:rgba(8,8,14,.65);
  color:var(--text);
  outline:none;
  box-shadow:0 0 0 1px rgba(255,60,242,.08) inset;
}
input[type="email"]::placeholder{color:rgba(167,164,199,.65)}
input[type="email"]:focus{
  border-color:rgba(255,60,242,.45);
  box-shadow:0 0 0 4px rgba(255,60,242,.15);
}

.btn{
  border:1px solid rgba(255,60,242,.38);
  background: linear-gradient(180deg, rgba(255,60,242,.25), rgba(255,60,242,.12));
  color:var(--text);
  padding:12px 14px;
  border-radius:12px;
  font-weight:600;
  letter-spacing:.02em;
  cursor:pointer;
  transition: transform .08s ease, box-shadow .2s ease, border-color .2s ease;
  box-shadow:
    0 10px 25px rgba(255,60,242,.12),
    0 0 0 1px rgba(0,0,0,.45) inset;
}
.btn:hover{border-color:rgba(55,246,255,.35); box-shadow:0 10px 25px rgba(55,246,255,.10), 0 0 0 1px rgba(0,0,0,.45) inset}
.btn:active{transform: translateY(1px)}

.micro{margin:12px 0 0; color:rgba(167,164,199,.9); font-size:12px}

.chips{display:flex; flex-wrap:wrap; gap:8px; margin-top:18px}
.chip{
  font-size:12px;
  color:rgba(233,231,255,.85);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.22);
  padding:8px 10px;
  border-radius:999px;
}

.footer{
  margin-top:22px;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  color:rgba(167,164,199,.85);
  font-size:12px;
}

.sep{opacity:.5}
.muted{color:rgba(167,164,199,.85)}

.toast{
  position:fixed;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(55,246,255,.25);
  background: rgba(0,0,0,.70);
  color: rgba(233,231,255,.92);
  box-shadow:0 20px 50px rgba(0,0,0,.55);
  opacity:0;
  pointer-events:none;
  transition: opacity .22s ease, transform .22s ease;
}
.toast--show{opacity:1; transform:translateX(-50%) translateY(-4px)}

.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;
}

@media (max-width:520px){
  .hero{padding:20px}
  .topbar{padding:14px 16px}
}

@media (prefers-reduced-motion: reduce){
  .badge::before, .glitch::before, .glitch::after{animation:none !important}
  .matrix{display:none}
}
