:root {
  --bg: #161c28;
  --panel: #1d2533;
  --line: #334056;
  --text: #f4f7fb;
  --muted: #a8b3c4;
  --on: #17c453;
  --on2: #6ef28a;
  --x: #19b6ff;
  --danger: #ef4444;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--bg); color: var(--text); }
body {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
body::before {
  content: "";
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(900px 480px at 50% 18%, rgba(23, 196, 83, 0.16), transparent 58%),
    radial-gradient(700px 380px at 90% 12%, rgba(25, 182, 255, 0.14), transparent 52%),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.025) 40px),
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.02) 40px);
}
.scene { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.chartLeft, .chartRight { position: absolute; width: min(34vw, 340px); opacity: 0.55; }
.chartLeft { left: -2vw; top: 18vh; }
.chartRight { right: -2vw; top: 22vh; }
.chartLeft .area { fill: rgba(23, 196, 83, 0.14); }
.chartLeft .line { stroke: #2ee36a; stroke-width: 2.6; fill: none; }
.chartLeft .draw { stroke-dasharray: 520; stroke-dashoffset: 520; animation: draw 3.2s ease forwards; }
.candles .up { stroke: #2ee36a; fill: rgba(46, 227, 106, 0.35); }
.candles .dn { stroke: #19b6ff; fill: rgba(25, 182, 255, 0.28); }
.chartRight .ring { stroke: rgba(25, 182, 255, 0.38); stroke-width: 1.5; transform-origin: 140px 120px; }
.chartRight .spin { animation: spin 18s linear infinite; }
.chartRight .spin-slow { animation: spin 32s linear infinite reverse; }
.chartRight .xmark { stroke: #19b6ff; stroke-width: 8; opacity: 0.32; }
.chartRight .coin { fill: none; stroke: #c5ced8; stroke-width: 2.4; }
.chartRight .coin.on { stroke: #17c453; }
.float { animation: float 5s ease-in-out infinite; }
.float2 { animation: float 6.4s ease-in-out infinite reverse; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 50% { transform: translateY(-8px); } }
@keyframes glow { 50% { box-shadow: 0 24px 70px rgba(23,196,83,0.22), inset 0 1px 0 rgba(255,255,255,0.1); } }
.hexes {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(25,182,255,0.08) 0 80px, transparent 81px),
    radial-gradient(circle at 78% 72%, rgba(23,196,83,0.08) 0 70px, transparent 71px);
}
h1, h2, h3 { margin: 0 0 0.45em; letter-spacing: -0.03em; font-weight: 700; }
h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 0.85em; }
a { color: var(--x); text-decoration: none; }
a:hover { color: #fff; }
.hidden, [hidden] { display: none !important; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 12px; background: var(--on); color: #04110a; padding: 8px; }

.top, main, .foot { position: relative; z-index: 1; }
.top {
  display: flex; align-items: center; gap: 28px;
  padding: 16px 6vw;
  border-bottom: 1px solid var(--line);
  background: rgba(22, 28, 40, 0.88);
  backdrop-filter: blur(16px);
  position: sticky; top: 0; z-index: 5;
}
.brand { display: flex; align-items: center; }
.logo { height: 42px; width: auto; display: block; }
.logo.sm { height: 28px; opacity: 0.9; }
.nav { display: flex; gap: 22px; flex: 1; }
.nav a { color: var(--muted); font-size: 14px; font-weight: 600; }
.nav a:hover { color: var(--text); }
.topEnd { display: flex; align-items: center; gap: 8px; }
.lang { display: flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.lang button {
  border: 0; background: transparent; color: var(--muted);
  padding: 6px 10px; font: inherit; font-size: 12px; font-weight: 700; cursor: pointer;
}
.lang button.on { background: #151a21; color: var(--on2); }
.menuBtn {
  display: none; border: 1px solid var(--line); background: var(--panel);
  color: var(--text); width: 38px; height: 38px; border-radius: 10px; cursor: pointer;
}

.btn, .ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 18px; font: inherit; font-size: 14px; font-weight: 700;
  border-radius: 999px; cursor: pointer; border: 1px solid transparent;
}
.btn { background: linear-gradient(180deg, #2be066, var(--on)); color: #04140a; }
.btn:hover { color: #04140a; filter: brightness(1.06); }
.btn.lg { padding: 14px 22px; }
.ghost { background: transparent; color: var(--text); border-color: var(--line); }
.ghost:hover { border-color: var(--x); color: var(--x); }
.textLink { color: var(--muted); font-size: 14px; font-weight: 600; border-bottom: 1px solid var(--line); }

.hero {
  min-height: calc(100vh - 80px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 36px 6vw 72px;
}
.ticker {
  width: min(860px, 94vw);
  overflow: hidden;
  margin-bottom: 22px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
}
.tickerTrack { display: flex; gap: 28px; width: max-content; animation: marquee 22s linear infinite; }
.ticker b { color: var(--on2); font-weight: 800; }
@keyframes marquee { to { transform: translateX(-50%); } }
.logoStage {
  width: min(860px, 94vw);
  aspect-ratio: 1983 / 793;
  padding: 0;
  margin-bottom: 8px;
  border-radius: 28px;
  border: 1px solid #445066;
  background:
    radial-gradient(circle at 42% 48%, rgba(23,196,83,0.28), transparent 42%),
    radial-gradient(circle at 72% 40%, rgba(25,182,255,0.24), transparent 38%),
    linear-gradient(180deg, #2a3344, #1a2230);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 24px 60px rgba(0,0,0,0.35),
    0 0 48px rgba(23,196,83,0.18),
    0 0 64px rgba(25,182,255,0.12),
    inset 0 1px 0 rgba(255,255,255,0.08);
  animation: glow 5s ease-in-out infinite;
}
.heroLogo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 27px;
}
.lead { color: var(--muted); max-width: 38rem; }
.hero .lead { margin: 8px auto 28px; font-size: 17px; }
.heroRow { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.pills { display: flex; gap: 8px; padding: 22px 0 0; margin: 0; list-style: none; flex-wrap: wrap; justify-content: center; }
.pills li {
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px;
  color: var(--muted); font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
}
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  width: min(720px, 94vw); margin-top: 28px;
}
.stats div {
  padding: 14px 12px; border-radius: 14px; border: 1px solid var(--line);
  background: rgba(16, 20, 28, 0.45);
}
.stats strong { display: block; color: var(--on2); letter-spacing: 0.08em; font-size: 13px; }
.stats span { color: var(--muted); font-size: 13px; }

.band { padding: 8px 6vw 56px; }
.secHead { margin-bottom: 18px; }
.idx { color: var(--on); font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.grid3, .grid2 { display: grid; gap: 14px; }
.grid3 { grid-template-columns: repeat(3, 1fr); }
.grid2 { grid-template-columns: 1fr 1fr; }
.tile, .plate, .split {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent 40%), var(--panel);
  border-radius: 18px;
}
.tile { padding: 22px; transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.tile:hover { transform: translateY(-3px); border-color: rgba(25, 182, 255, 0.45); }
.tile.on { border-color: rgba(23, 196, 83, 0.45); }
.tile.spot { position: relative; overflow: hidden; isolation: isolate; }
.tile.spot::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 0%), rgba(25,182,255,0.18), transparent 58%);
  opacity: 0; transition: opacity 0.2s ease;
}
.tile.spot.on::before {
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 0%), rgba(23,196,83,0.2), transparent 58%);
}
.tile.spot:hover::before { opacity: 1; }
.tile.spot > * { position: relative; z-index: 1; }
.price { font-size: 1.8rem; font-weight: 800; color: var(--on2); margin: 0 0 8px; }
.price small { font-size: 0.85rem; font-weight: 700; color: var(--muted); letter-spacing: 0.06em; }
.plans .plan { display: flex; flex-direction: column; min-height: 100%; }
.planList { margin: 0 0 18px; padding: 0; list-style: none; }
.planList li {
  padding: 9px 0 9px 18px; position: relative;
  color: var(--text); font-size: 14px; font-weight: 600;
  border-bottom: 1px solid rgba(51, 64, 86, 0.7);
}
.planList li::before {
  content: ""; position: absolute; left: 0; top: 16px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--on);
}
.plan .btn { align-self: stretch; margin-top: auto; }
.plan.muted { opacity: 0.88; }
.soon {
  margin-top: auto; text-align: center;
  color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  padding: 12px; border: 1px dashed var(--line); border-radius: 999px;
}

.split {
  margin: 0 6vw 40px; padding: 28px;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 28px; align-items: center;
}
.ticks { margin: 0; padding: 0; list-style: none; }
.ticks li { padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--text); font-weight: 600; }
.legal.plate { margin: 0 6vw 48px; padding: 22px 26px; }
.legal p { margin: 10px 0 0; color: var(--muted); line-height: 1.7; max-width: 70ch; }

.plateHead {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  margin-bottom: 10px; font-size: 12px; font-weight: 800; letter-spacing: 0.14em;
}
.dim { color: var(--muted); font-size: 11px; letter-spacing: 0.12em; font-weight: 700; }
.auth, .doc { max-width: 440px; margin: 56px auto; padding: 32px; box-shadow: 0 24px 56px rgba(0,0,0,0.28); }
.doc { max-width: 720px; }
.auth h1 { font-size: 1.7rem; margin: 0 0 8px; }
.auth .lead { margin-bottom: 4px; }
.doc p { color: var(--muted); line-height: 1.75; max-width: 62ch; }
.auth form { display: grid; gap: 14px; margin-top: 20px; }
.auth .btn { width: 100%; }
label { display: grid; gap: 6px; color: var(--muted); font-size: 13px; font-weight: 600; }
input {
  background: #0b0e13; border: 1px solid var(--line); color: var(--text);
  border-radius: 12px; padding: 13px 14px; font: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:hover { border-color: #4a5b75; }
input:focus {
  outline: none; border-color: var(--on);
  box-shadow: 0 0 0 3px rgba(23, 196, 83, 0.2);
}
.formErr { color: var(--danger); margin: 0; min-height: 1.2em; }
.fine { margin-top: 18px; color: var(--muted); text-align: center; }
.desk { padding: 40px 6vw 64px; }

.foot {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 22px 6vw 40px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px;
}
.footLinks { display: flex; gap: 16px; }

@media (max-width: 860px) {
  .menuBtn { display: inline-flex; align-items: center; justify-content: center; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; padding: 16px 6vw 20px; background: #0c1016;
    border-bottom: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .grid3, .grid2, .split { grid-template-columns: 1fr; }
  .split, .legal.plate { margin-left: 6vw; margin-right: 6vw; }
  .logo { height: 32px; }
  .chartLeft, .chartRight { opacity: 0.28; }
  .stats { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .draw, .spin, .spin-slow, .float, .float2, .tickerTrack, .logoStage { animation: none; }
  .tile.spot::before { display: none; }
}
