:root {
  --bg: #05070a;
  --bg-2: #0b1014;
  --ink: #f4f1ea;
  --mute: #8f8a80;
  --line: #1c2a22;
  --acid: #c8ff3a;
  --gold: #e4c15a;
  --font-d: "Archivo Black", "Oswald", sans-serif;
  --font-u: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-u);
  font-size: 13px;
  line-height: 1.5;
}
body.page-docs { background: #05070a; }

.space {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.space-nebula {
  position: absolute;
  width: 55vw;
  height: 55vw;
  max-width: 640px;
  max-height: 640px;
  left: -8%;
  top: 18%;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .28;
  background: radial-gradient(circle, rgba(140,220,50,.55), rgba(140,220,50,0) 70%);
  animation: nebulaDrift 26s ease-in-out infinite alternate;
}
.space-nebula.alt {
  width: 42vw;
  height: 42vw;
  max-width: 480px;
  max-height: 480px;
  right: 4%;
  top: auto;
  bottom: 8%;
  left: auto;
  opacity: .18;
  mix-blend-mode: normal;
  animation: nebulaDrift2 32s ease-in-out infinite alternate;
}
.space-dim { display: none; }
#space-fx {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
@keyframes nebulaDrift {
  from { transform: translate3d(4%, 8%, 0); }
  to { transform: translate3d(18%, 22%, 0); }
}
@keyframes nebulaDrift2 {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-12%, -10%, 0); }
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: linear-gradient(to bottom, rgba(5,7,10,.78), rgba(5,7,10,0));
}
.wordmark {
  font-family: var(--font-d);
  letter-spacing: .12em;
  font-size: 16px;
}
.nav-links { display: flex; align-items: center; gap: 18px; }
.nav-links a { color: #fff; letter-spacing: .08em; }
.nav-links a:hover { color: var(--acid); }
.x-link { width: 16px; height: 16px; display: grid; place-items: center; }
.x-link svg { width: 13px; height: 13px; fill: currentColor; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: end center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-mobile { display: none; }
html.phone .hero-desktop { display: none !important; }
html.phone .hero-mobile {
  display: block !important;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,7,10,.92) 0%, rgba(5,7,10,.35) 42%, rgba(5,7,10,.18) 100%);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 32px));
  padding: 0 0 48px;
  text-align: center;
}
.hero-copy h1 {
  font-family: var(--font-d);
  font-size: clamp(52px, 12vw, 96px);
  letter-spacing: .06em;
  line-height: .88;
  color: #fff;
}
.hero-copy h1.warp {
  display: flex;
  justify-content: center;
  gap: 0.02em;
  white-space: nowrap;
}
.hero-copy h1.warp span {
  display: inline-block;
  transform-origin: center center;
  will-change: transform, opacity;
}
.tick {
  color: var(--acid);
  letter-spacing: .32em;
  margin: 10px 0 12px;
  font-size: 13px;
}
.tagline {
  color: #fff;
  font-size: clamp(13px, 2vw, 16px);
  margin-bottom: 22px;
}

.ca-bar {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  background: #000;
  border: 1px solid #2a3a22;
  text-align: left;
}
.ca-bar code {
  flex: 1;
  padding: 12px 14px;
  color: #fff;
  font-size: 12px;
  overflow-wrap: anywhere;
  word-break: break-all;
}
.ca-bar button {
  border: 0;
  border-left: 1px solid #2a3a22;
  background: #10150e;
  color: #fff;
  padding: 0 16px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
.ca-bar button:hover { background: #1a2414; color: var(--acid); }

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.btn {
  border: 1px solid #2a3a22;
  background: #0d120e;
  color: #fff;
  padding: 8px 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 11px;
  cursor: pointer;
}
.btn.acid { background: var(--acid); color: #111; border-color: var(--acid); }
.btn.is-off { opacity: .4; pointer-events: none; }

.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  background: var(--acid);
  color: #111;
  position: relative;
  z-index: 1;
}
.marquee-track { display: inline-block; animation: slide 38s linear infinite; }
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

main, footer { position: relative; z-index: 1; }
section { padding: 72px 0; border-bottom: 1px solid var(--line); }
.wrap { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }
.kicker {
  color: var(--acid);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 8px;
}
h2 {
  font-family: var(--font-d);
  font-size: clamp(28px, 5vw, 44px);
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.lede { color: var(--mute); max-width: 58ch; }

.grid3, .grid4 {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.grid3 { grid-template-columns: repeat(3, 1fr); }
.grid4 { grid-template-columns: repeat(4, 1fr); }
.card, .cell {
  background: var(--bg-2);
  border: 1px solid var(--line);
  box-shadow: 0 0 28px rgba(80, 180, 40, .04);
  padding: 20px;
}
.card em, .lbl {
  color: var(--mute);
  font-style: normal;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: lowercase;
}
.card h3 {
  font-family: var(--font-d);
  margin: 8px 0;
  letter-spacing: .04em;
}
.card p { color: var(--mute); }
.num {
  font-family: var(--font-d);
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: -.03em;
  line-height: .95;
  margin-top: 8px;
}
.num.acid { color: var(--acid); }
.sub { color: var(--mute); margin-top: 8px; font-size: 11px; }

.div-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 12px;
}
.round-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 12px;
  margin: 16px 0 8px;
}
.proof {
  color: var(--ink);
  word-break: break-all;
  margin: 10px 0;
  font-size: 12px;
}
.table-card { margin-top: 12px; }
.table-wrap { overflow-x: auto; margin-top: 12px; }
table { width: 100%; border-collapse: collapse; }
th, td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
th { color: var(--mute); letter-spacing: .12em; text-transform: lowercase; font-weight: 500; }
.mute { color: var(--mute); }

.buy-row { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.community { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }

footer { padding: 28px 0 48px; color: var(--mute); font-size: 12px; }
.foot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

.docs { width: min(760px, calc(100% - 40px)); margin: 0 auto; padding: 96px 0 80px; position: relative; z-index: 1; }
.docs h1 { font-family: var(--font-d); font-size: 48px; margin: 8px 0 16px; }
.docs h2 { margin-top: 28px; font-size: 24px; }
.docs p, .docs li { color: #cfc8bc; margin: 8px 0; }
.docs ul { padding-left: 18px; }
.docs code { color: var(--acid); }
.warn {
  border-left: 3px solid var(--acid);
  padding: 12px 14px;
  color: var(--mute);
  margin: 18px 0;
  background: rgba(11, 16, 14, .8);
}

@media (max-width: 800px) {
  .grid3, .grid4, .buy-row, .div-grid { grid-template-columns: 1fr; }
  .nav {
    position: fixed;
    background: linear-gradient(to bottom, rgba(5,7,10,.8), rgba(5,7,10,0));
    padding: 14px 16px;
  }
  .hero {
    min-height: 100svh;
    height: 100svh;
    display: grid;
    place-items: end center;
    overflow: hidden;
  }
  .hero-desktop { display: none; }
  .hero-mobile {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    background: #05070a;
  }
  .hero-scrim {
    display: block;
    background: linear-gradient(to top, rgba(5,7,10,.92) 0%, rgba(5,7,10,.25) 38%, rgba(5,7,10,.2) 100%);
  }
  .hero-copy {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: min(920px, calc(100% - 28px));
    margin: 0 auto;
    padding: 0 0 28px;
  }
  .hero-copy h1 { font-size: clamp(36px, 13vw, 52px); }
}
