:root {
  --bg: #05070f;
  --ink: #eef4ff;
  --muted: #9aabc2;
  --line: rgba(166, 196, 255, .16);
  --cyan: #5ce1ff;
  --violet: #9b7cff;
  --hot: #ff5d7a;
  --glass: rgba(8, 14, 28, .62);
  --mx: 50%;
  --my: 20%;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.lx {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Manrope, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.field, .glow, .aurora { position: fixed; inset: 0; pointer-events: none; }
.field { z-index: 0; width: 100%; height: 100%; }
.glow {
  z-index: 1;
  background: radial-gradient(520px circle at var(--mx) var(--my), rgba(92, 225, 255, .09), transparent 42%);
}
.aurora { z-index: 0; overflow: hidden; }
.aurora span {
  position: absolute;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .45;
  animation: drift 18s ease-in-out infinite alternate;
}
.aurora span:nth-child(1) { background: #123a55; top: -18vw; left: -8vw; }
.aurora span:nth-child(2) { background: #2a1d55; right: -12vw; top: 10vh; animation-delay: -6s; }
.aurora span:nth-child(3) { background: #0e3d42; left: 30vw; bottom: -20vw; animation-delay: -11s; width: 36vw; height: 36vw; }
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4vw, -3vh, 0) scale(1.12); }
}

.top, main, .foot { position: relative; z-index: 2; }
.top {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 6vw;
  transition: background .3s, border-color .3s;
}
.top.stuck {
  background: rgba(5, 7, 15, .72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: Syne, sans-serif; letter-spacing: -.03em; }
.logo img { width: 44px; height: 44px; mix-blend-mode: screen; object-fit: cover; }
.logo b { font-weight: 800; }
.links { display: flex; align-items: center; gap: 22px; }
.links a { text-decoration: none; color: var(--muted); font-size: 14px; font-weight: 600; }
.links a:hover { color: white; }
.menu { display: none; background: transparent; border: 0; width: 42px; height: 42px; padding: 10px; cursor: pointer; }
.menu i { display: block; height: 1px; background: white; margin: 7px 0; }

.go, .ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  border: 0;
  font-family: inherit;
  font-size: 15px;
}
.go {
  color: #041018;
  background: linear-gradient(120deg, var(--cyan), #d7fbff 45%, var(--violet));
  background-size: 180% 180%;
  animation: sheen 7s ease infinite;
  box-shadow: 0 0 0 1px rgba(255,255,255,.2), 0 10px 40px rgba(92, 225, 255, .18);
}
.go:hover { transform: translateY(-1px); }
.ghost { color: var(--ink); background: transparent; border: 1px solid var(--line); }
.ghost:hover { border-color: rgba(92, 225, 255, .5); }
@keyframes sheen {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
  padding: 4vh 8vw 8vh 7vw;
}
.rail {
  position: absolute;
  left: 18px;
  top: 42%;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: .42em;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: rgba(154, 171, 194, .55);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cyan);
}
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(92, 225, 255, .7);
  animation: ping 1.8s infinite;
}
@keyframes ping {
  70% { box-shadow: 0 0 0 10px rgba(92, 225, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(92, 225, 255, 0); }
}
h1, h2, h3 { font-family: Syne, sans-serif; font-weight: 700; letter-spacing: -.045em; margin: 0; }
h1 { font-size: clamp(56px, 7.4vw, 108px); line-height: .88; font-weight: 800; }
h1 .line { display: block; }
h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--cyan), #fff 40%, var(--violet));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheen 6s linear infinite;
}
.lede { max-width: 620px; color: var(--muted); font-size: 18px; }
.cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 22px; }
.facts { display: flex; gap: 18px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; color: var(--muted); font-size: 14px; }
.facts strong { display: block; color: white; font-size: 13px; letter-spacing: .04em; }

.hud { display: grid; justify-items: center; gap: 18px; }
.eye { position: relative; width: min(340px, 78vw); aspect-ratio: 1; display: grid; place-items: center; }
.eye img {
  width: 68%;
  height: 68%;
  object-fit: cover;
  mix-blend-mode: screen;
  animation: float 5.5s ease-in-out infinite;
  filter: drop-shadow(0 0 28px rgba(92, 225, 255, .35));
}
@keyframes float {
  50% { transform: translateY(-8px); }
}
.ring {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(92, 225, 255, .28);
  animation: spin 18s linear infinite;
}
.ring.r2 { inset: 0; border-color: rgba(155, 124, 255, .28); animation-duration: 28s; animation-direction: reverse; }
.ring::after, .ring.r2::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  top: 8%;
  left: 50%;
  box-shadow: 0 0 12px var(--cyan);
}
.ring.r2::before { background: var(--violet); box-shadow: 0 0 12px var(--violet); top: auto; bottom: 6%; }
@keyframes spin { to { transform: rotate(360deg); } }
.sweep {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 72%, rgba(92, 225, 255, .22), transparent 86%);
  animation: spin 7s linear infinite;
  mask: radial-gradient(circle, transparent 58%, black 60%);
}
.ticket {
  width: min(420px, 100%);
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px 18px 18px;
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
  position: relative;
}
.ticket::before {
  content: "";
  position: absolute;
  left: 0; right: 0; height: 40%;
  background: linear-gradient(180deg, rgba(92, 225, 255, .12), transparent);
  animation: scan 3.4s linear infinite;
  pointer-events: none;
}
@keyframes scan {
  from { top: -40%; }
  to { top: 110%; }
}
.ticket header, .meter { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.ticket header { font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.live { color: var(--cyan); }
.who { margin: 14px 0 0; font-weight: 700; }
.subj { margin: 2px 0 12px; color: var(--muted); }
.meter { margin-top: 8px; }
.bar { flex: 1; height: 4px; border-radius: 99px; background: rgba(255,255,255,.08); overflow: hidden; }
.bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--cyan), var(--hot)); transition: width .6s ease; }
.meter strong { font-family: Syne, sans-serif; font-size: 28px; min-width: 42px; text-align: right; }
.meter em { font-style: normal; font-size: 11px; letter-spacing: .14em; color: var(--hot); }
.why { margin: 10px 0 0; color: #c5d4e8; font-size: 14px; min-height: 44px; }

.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: 14px 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee div { display: flex; gap: 42px; width: max-content; animation: ticker 28s linear infinite; }
.marquee span {
  font-family: Syne, sans-serif;
  font-size: 22px;
  letter-spacing: -.03em;
  color: rgba(238, 244, 255, .72);
}
.marquee span::before { content: "✦"; color: var(--cyan); margin-right: 42px; font-size: 12px; vertical-align: middle; }
@keyframes ticker { to { transform: translateX(-50%); } }

.block { padding: 12vh 8vw; }
.head { max-width: 760px; margin-bottom: 36px; }
h2 { font-size: clamp(36px, 4.6vw, 64px); line-height: .96; margin-bottom: 14px; }
.head p:last-child { color: var(--muted); }
.bento {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 14px;
}
.card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(16, 24, 42, .8), rgba(8, 12, 24, .7));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  min-height: 210px;
  transition: transform .35s ease, border-color .35s ease;
}
.card.wide { grid-row: span 2; min-height: 100%; }
.card:hover { transform: translateY(-4px); border-color: rgba(92, 225, 255, .45); }
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.08), transparent 68%);
  transform: translateX(-130%);
  transition: transform .7s ease;
}
.card:hover::after { transform: translateX(130%); }
.idx { font-family: "IBM Plex Mono", monospace; color: var(--cyan); font-size: 12px; letter-spacing: .16em; }
.card h3 { font-size: 32px; margin: 10px 0; }
.card p { color: var(--muted); }
.card ul { display: flex; gap: 8px; flex-wrap: wrap; padding: 0; list-style: none; }
.card li { border: 1px solid var(--line); border-radius: 999px; padding: 6px 10px; font-size: 13px; }
.card.accent {
  background:
    radial-gradient(400px 180px at 100% 0%, rgba(155, 124, 255, .28), transparent 60%),
    linear-gradient(180deg, rgba(16, 24, 42, .8), rgba(8, 12, 24, .7));
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 0;
  margin: 0;
  counter-reset: none;
}
.steps li {
  padding: 22px 18px 26px;
  border-top: 1px solid rgba(92, 225, 255, .45);
  position: relative;
}
.steps li::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}
.steps span { font-family: "IBM Plex Mono", monospace; color: var(--muted); font-size: 12px; }
.steps h3 { margin: 12px 0 8px; font-size: 28px; }
.steps p { color: var(--muted); margin: 0; }

.creed {
  margin: 0 8vw 4vh;
  padding: 8vh 6vw;
  border-radius: 32px;
  background:
    radial-gradient(700px 280px at 10% 0%, rgba(92, 225, 255, .16), transparent 55%),
    linear-gradient(180deg, #0b1222, #070b16);
  border: 1px solid var(--line);
}
.creed blockquote {
  margin: 0 0 28px;
  font-family: Syne, sans-serif;
  font-size: clamp(32px, 4.4vw, 62px);
  line-height: 1.02;
  letter-spacing: -.04em;
  font-weight: 700;
}
.notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.notes p { margin: 0; color: var(--muted); }

.contact { display: grid; grid-template-columns: 1fr .9fr; gap: 48px; align-items: start; }
.contact b { color: white; font-weight: 650; }
.cycle { font-family: "IBM Plex Mono", monospace; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; color: var(--cyan); }
.cycle em { font-style: normal; color: white; }
.form {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(8, 14, 28, .7);
  border: 1px solid var(--line);
}
.form label { display: grid; gap: 6px; font-size: 13px; color: var(--muted); }
.form input, .form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(4, 8, 16, .7);
  color: white;
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  outline: none;
}
.form input:focus, .form textarea:focus { border-color: rgba(92, 225, 255, .7); box-shadow: 0 0 0 4px rgba(92, 225, 255, .08); }
.form .go { justify-self: start; margin-top: 6px; }

.foot {
  padding: 28px 8vw 40px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.foot p { margin: 0; }
.tiny { font-family: "IBM Plex Mono", monospace; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }

.js .rise { opacity: 0; transform: translateY(18px); animation: rise .8s ease forwards; }
.js .bento .rise:nth-child(2) { animation-delay: .08s; }
.js .bento .rise:nth-child(3) { animation-delay: .16s; }
.js .bento .rise:nth-child(4) { animation-delay: .24s; }
.js .steps .rise:nth-child(2) { animation-delay: .08s; }
.js .steps .rise:nth-child(3) { animation-delay: .16s; }
.js .steps .rise:nth-child(4) { animation-delay: .24s; }
@keyframes rise {
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .hero, .bento, .steps, .notes, .contact { grid-template-columns: 1fr; }
  .card.wide { grid-row: auto; }
  .rail { display: none; }
  .menu { display: block; }
  .links {
    display: none;
    position: absolute;
    top: 72px;
    right: 6vw;
    left: 6vw;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    background: rgba(6, 10, 20, .94);
    border: 1px solid var(--line);
    border-radius: 18px;
  }
  .links.open { display: flex; }
  h1 { font-size: clamp(46px, 12vw, 72px); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .field, .glow { display: none; }
}
