:root {
  --void: #050814;
  --ink: #08111f;
  --navy: #10224a;
  --suit: #1a3f96;
  --bolt: #3ecbff;
  --arc: #7af0ff;
  --ice: #d8f7ff;
  --cape: #e31b23;
  --cape-deep: #9b1018;
  --gold: #f5c518;
  --chrome: #eef6ff;
  --mute: #8aa0c2;
  --line: rgba(122, 240, 255, 0.22);
  --glass: rgba(8, 16, 36, 0.62);
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { min-height: 100%; }
body {
  font-family: "Exo 2", sans-serif;
  color: var(--chrome);
  background: var(--void);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; cursor: pointer; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

#field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.void, .nebula, .hexgrid, .streaks, .vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
}
.void {
  z-index: -2;
  background:
    radial-gradient(900px 520px at 78% 18%, rgba(58, 120, 255, 0.22), transparent 62%),
    radial-gradient(700px 480px at 12% 80%, rgba(227, 27, 35, 0.14), transparent 60%),
    linear-gradient(180deg, #04060f 0%, #070d1c 46%, #050814 100%);
}
.nebula {
  z-index: -1;
  background:
    radial-gradient(circle at 70% 30%, rgba(90, 40, 180, 0.16), transparent 42%),
    radial-gradient(circle at 20% 60%, rgba(20, 90, 180, 0.14), transparent 45%);
  animation: nebula 18s ease-in-out infinite alternate;
}
.hexgrid {
  z-index: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(30deg, transparent 48%, rgba(122, 240, 255, 0.18) 49%, transparent 51%),
    linear-gradient(-30deg, transparent 48%, rgba(122, 240, 255, 0.12) 49%, transparent 51%);
  background-size: 54px 94px;
  mask-image: radial-gradient(circle at 50% 30%, #000 20%, transparent 78%);
  animation: gridshift 22s linear infinite;
}
.streaks {
  z-index: 0;
  background: repeating-linear-gradient(
    108deg,
    transparent 0 38px,
    rgba(126, 240, 255, 0.035) 38px 40px
  );
  animation: streak 8s linear infinite;
  opacity: 0.7;
}
.vignette {
  z-index: 1;
  box-shadow: inset 0 0 180px 40px rgba(2, 4, 10, 0.72);
}

.dock {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 28px;
  backdrop-filter: blur(16px);
  background: rgba(5, 8, 20, 0.72);
  border-bottom: 1px solid var(--line);
}
.mark {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.mark-gem {
  width: 48px;
  height: 48px;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: linear-gradient(160deg, var(--arc), var(--suit) 55%, var(--cape));
  padding: 2px;
  animation: gempulse 3.4s ease-in-out infinite;
}
.mark-gem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: #050814;
}
.mark-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.mark-copy b {
  font-family: "Bangers", cursive;
  font-size: 26px;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, #fff, var(--arc), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mark-copy small {
  font-family: "Oswald", sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 4px;
}
.lanes {
  display: flex;
  gap: 22px;
  margin-left: auto;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 13px;
}
.lanes a {
  position: relative;
  color: var(--ice);
  opacity: 0.8;
}
.lanes a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cape), var(--arc));
  transition: width 0.25s ease;
}
.lanes a:hover { opacity: 1; }
.lanes a:hover::after { width: 100%; }
.x-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: rgba(10, 24, 52, 0.7);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow: 0 0 18px rgba(62, 203, 255, 0.12);
}
.x-chip:hover { border-color: var(--arc); }
.burger {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--line);
  position: relative;
}
.burger i {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--arc);
}
.burger i:nth-child(2) { top: 14px; }
.burger i:nth-child(3) { top: 20px; }
.burger i:nth-child(4) { top: 26px; }

.hero {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 24px 90px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 76px);
}
.hero-copy { position: relative; }
.signal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  border: 1px solid var(--line);
  background: rgba(8, 20, 48, 0.7);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--arc);
  animation: fadeup 0.7s ease both;
}
.signal img { border-radius: 50%; }
h1 {
  margin: 18px 0 8px;
  font-family: "Bangers", cursive;
  line-height: 0.9;
  letter-spacing: 0.04em;
}
h1 .line-a,
h1 .line-b {
  display: block;
  background: linear-gradient(180deg, #ffffff 8%, #bdefff 38%, #7af0ff 62%, #f5c518 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 28px rgba(62, 203, 255, 0.25);
  animation: titlein 0.8s ease both;
}
h1 .line-a { font-size: clamp(64px, 9vw, 108px); }
h1 .line-b {
  font-size: clamp(42px, 6vw, 72px);
  animation-delay: 0.12s;
  position: relative;
}
h1 .line-b::after {
  content: "";
  display: block;
  width: 72%;
  height: 6px;
  margin-top: 10px;
  background:
    linear-gradient(90deg, var(--cape) 0 18%, transparent 18% 22%, var(--arc) 22% 100%);
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
  animation: dash 1.6s ease-in-out infinite;
}
.ticker {
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  animation: fadeup 0.8s 0.15s ease both;
}
.credo {
  max-width: 520px;
  margin: 14px 0 22px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ice);
  animation: fadeup 0.8s 0.22s ease both;
}
.ca {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(100%, 560px);
  padding: 10px 10px 10px 12px;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(16, 34, 74, 0.8), rgba(8, 12, 28, 0.8));
  animation: fadeup 0.8s 0.28s ease both;
}
.ca span {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.16em;
  color: var(--gold);
}
.ca code {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--mute);
  font-size: 13px;
}
.ca em {
  font-style: normal;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: var(--cape);
  color: #fff;
}
.cta-row {
  display: flex;
  gap: 12px;
  margin: 22px 0 26px;
  animation: fadeup 0.8s 0.34s ease both;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 160px;
  padding: 13px 20px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.22) 46%, transparent 70%);
  transform: translateX(-120%);
  animation: sheen 3.2s ease-in-out infinite;
}
.btn.volt {
  background: linear-gradient(180deg, #6cefff, #1aaad4);
  color: #041018;
  box-shadow: 0 0 24px rgba(62, 203, 255, 0.35);
}
.btn.cape {
  background: linear-gradient(180deg, #ff3a40, #b10f16);
  color: #fff;
  box-shadow: 0 0 24px rgba(227, 27, 35, 0.28);
}
.btn.wide { min-width: 260px; margin-top: 8px; }
.btn:hover { transform: translateY(-2px); }
.rail {
  display: flex;
  gap: 12px;
  animation: fadeup 0.8s 0.4s ease both;
}
.rail a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(8, 16, 36, 0.72);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.rail a img { width: 26px; height: 26px; object-fit: contain; }
.rail a:hover {
  transform: translateY(-4px);
  border-color: var(--arc);
  box-shadow: 0 0 18px rgba(122, 240, 255, 0.28);
}

.flight {
  position: relative;
  height: min(70vw, 560px);
  display: grid;
  place-items: center;
}
.flyer {
  width: min(78%, 430px);
  filter: drop-shadow(0 0 28px rgba(62, 203, 255, 0.55));
  animation: soar 4.6s ease-in-out infinite;
  z-index: 3;
}
.halo {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 203, 255, 0.28), transparent 68%);
  animation: pulse 2.8s ease-in-out infinite;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(122, 240, 255, 0.28);
  border-radius: 50%;
  animation: spin 12s linear infinite;
}
.o1 { width: 78%; aspect-ratio: 1; border-style: dashed; }
.o2 { width: 92%; aspect-ratio: 1; animation-duration: 18s; animation-direction: reverse; border-color: rgba(227, 27, 35, 0.35); }
.o3 {
  width: 64%;
  aspect-ratio: 1;
  clip-path: polygon(50% 0, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  border-radius: 0;
  animation-duration: 9s;
}
.bolt {
  position: absolute;
  width: 140px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--arc), #fff, transparent);
  filter: blur(0.4px);
  z-index: 2;
}
.b1 { top: 22%; left: 4%; transform: rotate(-18deg); animation: flash 1.6s linear infinite; }
.b2 { bottom: 26%; right: 0; transform: rotate(16deg); animation: flash 1.9s 0.4s linear infinite; }
.b3 { top: 58%; left: -6%; width: 180px; transform: rotate(-8deg); animation: flash 2.2s 0.8s linear infinite; }

.kicker {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--arc);
  font-size: 12px;
  margin-bottom: 8px;
}
h2 {
  font-family: "Bangers", cursive;
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #fff, var(--arc));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  max-width: 680px;
  margin: 12px 0 28px;
  color: var(--mute);
  font-size: 17px;
  line-height: 1.6;
}

.about, .howtobuy, .chart, .joinus {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 24px;
}
.about {
  background: linear-gradient(180deg, transparent, rgba(16, 34, 74, 0.28), transparent);
}
.plates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.plate {
  padding: 26px 22px;
  background: var(--glass);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transform: skewX(-4deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plate::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--cape), var(--arc));
}
.plate:hover {
  transform: skewX(-4deg) translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28), 0 0 24px rgba(62, 203, 255, 0.16);
}
.plate > * { transform: skewX(4deg); }
.plate-num {
  font-family: "Bangers", cursive;
  font-size: 34px;
  color: var(--gold);
}
.plate h3 {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 8px 0 10px;
}
.plate p { color: var(--mute); line-height: 1.55; }

.seq {
  display: grid;
  gap: 16px;
  position: relative;
}
.seq::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--arc), var(--cape));
}
.seq > li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px;
  background: rgba(8, 16, 36, 0.55);
  border: 1px solid var(--line);
}
.seq-ico {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: #081226;
  border: 1px solid var(--line);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 18px rgba(122, 240, 255, 0.16);
}
.seq-ico img { width: 34px; height: 34px; object-fit: contain; }
.seq h3 {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.seq p { color: var(--mute); line-height: 1.55; }
.spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-top: 12px;
}
.spec li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0;
  background: none;
  border: 0;
}
.spec span {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--arc);
}
.spec b {
  font-weight: 600;
  color: var(--ice);
  word-break: break-all;
}
.text-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--arc);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
}

.chart-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 18px;
}
.chart-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  color: var(--mute);
  font-size: 13px;
}
.hud {
  position: relative;
  border: 1px solid var(--line);
  background: #050814;
  min-height: 560px;
  box-shadow: 0 0 0 8px rgba(8, 16, 36, 0.6), 0 0 40px rgba(62, 203, 255, 0.12);
}
.hud::before,
.hud::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--arc);
  z-index: 2;
  pointer-events: none;
}
.hud::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.hud::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.hud iframe {
  width: 100%;
  height: 560px;
  border: 0;
  display: block;
}

.joinus { text-align: center; }
.joinus .lead { margin-left: auto; margin-right: auto; }
.banner-frame {
  width: min(100%, 1080px);
  margin: 8px auto 24px;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 0 40px rgba(62, 203, 255, 0.16);
  position: relative;
}
.banner-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.08) 48%, transparent 66%);
  animation: sheen 4.5s ease-in-out infinite;
  pointer-events: none;
}
.banner-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.foot {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 28px 20px 40px;
  border-top: 1px solid var(--line);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--mute);
}
.foot a:hover { color: var(--arc); }

.rise {
  opacity: 0;
  transform: translateY(22px);
  animation: fadeup 0.8s ease forwards;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 36px; min-height: auto; }
  .flight { order: -1; height: 420px; }
  .plates { grid-template-columns: 1fr; }
  .plate, .plate:hover, .plate > * { transform: none; }
  .chart-head { flex-direction: column; align-items: flex-start; }
  .chart-meta { align-items: flex-start; }
  .burger { display: block; }
  .lanes, .x-chip { display: none; }
  .dock.open .lanes {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 18px 22px 22px;
    background: rgba(5, 8, 20, 0.96);
    border-bottom: 1px solid var(--line);
  }
  .dock.open .x-chip {
    display: inline-flex;
    position: absolute;
    top: calc(100% + 168px);
    right: 22px;
  }
}

@keyframes soar {
  0%, 100% { transform: translate(0, 0) rotate(-6deg); }
  50% { transform: translate(10px, -14px) rotate(-2deg); }
}
@keyframes pulse {
  0%, 100% { transform: scale(0.92); opacity: 0.55; }
  50% { transform: scale(1.08); opacity: 1; }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes flash {
  0%, 70%, 100% { opacity: 0.15; }
  78% { opacity: 1; }
}
@keyframes fadeup {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes titlein {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: none; }
}
@keyframes sheen {
  0%, 55% { transform: translateX(-120%); }
  80%, 100% { transform: translateX(120%); }
}
@keyframes nebula {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.08) translate(-2%, 2%); }
}
@keyframes gridshift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 54px 94px, -54px 94px; }
}
@keyframes streak {
  from { background-position: 0 0; }
  to { background-position: 120px 0; }
}
@keyframes dash {
  0%, 100% { width: 62%; }
  50% { width: 78%; }
}
@keyframes gempulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(122, 240, 255, 0.15); }
  50% { box-shadow: 0 0 18px 2px rgba(122, 240, 255, 0.35); }
}
