:root {
  --void: #060806;
  --ink: #0b100c;
  --panel: #101610;
  --panel-2: #161d16;
  --line: rgba(124, 255, 58, 0.16);
  --line-strong: rgba(124, 255, 58, 0.42);
  --acid: #7cff3a;
  --acid-2: #4fd41c;
  --acid-dim: rgba(124, 255, 58, 0.08);
  --chrome: #d7e4d4;
  --steel: #8d9c88;
  --muted: #6a7766;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  --font-display: "Cinzel Decorative", "Cinzel", serif;
  --font-serif: "Cinzel", serif;
  --font-ui: "Rajdhani", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--void);
  color: var(--chrome);
  font-family: var(--font-ui);
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.bg-void,
.bg-blinds,
.bg-vignette,
.bg-grain,
#field {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.bg-void {
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(124, 255, 58, 0.08), transparent 55%),
    radial-gradient(circle at 12% 80%, rgba(124, 255, 58, 0.04), transparent 28%),
    linear-gradient(180deg, #070a07 0%, #050705 48%, #080c08 100%);
}

.bg-blinds {
  z-index: 1;
  opacity: 0.22;
  background: repeating-linear-gradient(
    180deg,
    transparent 0 18px,
    rgba(124, 255, 58, 0.035) 18px 20px
  );
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 70%);
  animation: blinds-drift 18s linear infinite;
}

.bg-vignette {
  z-index: 2;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.72) 100%);
}

.bg-grain {
  z-index: 3;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

#field {
  z-index: 4;
}

.strings {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px;
  z-index: 5;
  pointer-events: none;
}

.string {
  fill: none;
  stroke: rgba(124, 255, 58, 0.28);
  stroke-width: 1.1;
  filter: drop-shadow(0 0 6px rgba(124, 255, 58, 0.35));
}

.s1 { animation: string-sway 7s ease-in-out infinite; }
.s2 { animation: string-sway 8.4s ease-in-out infinite reverse; }
.s3 { animation: string-sway 6.2s ease-in-out infinite; }
.s4 { animation: string-sway 9s ease-in-out infinite reverse; }
.s5 { animation: string-sway 7.6s ease-in-out infinite; }

header,
.ledger,
main,
footer {
  position: relative;
  z-index: 6;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 6vw;
  background: rgba(6, 8, 6, 0.62);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: padding 0.35s ease, background 0.35s ease;
}

.nav.scrolled {
  padding: 8px 6vw;
  background: rgba(6, 8, 6, 0.88);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 0 18px rgba(124, 255, 58, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: 0.08em;
}

.brand-ticker {
  color: var(--acid);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--acid);
}

.nav-buy {
  padding: 8px 16px;
  border: 1px solid var(--acid);
  color: #061006 !important;
  background: var(--acid);
  box-shadow: 0 0 18px rgba(124, 255, 58, 0.25);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1px;
  background: var(--acid);
  transition: 0.25s ease;
}

.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }

.nav-toggle.active span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

.ledger {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 16, 10, 0.7);
}

.ledger-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  padding: 8px 0;
  font-family: var(--font-serif);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--steel);
  animation: ledger-move 38s linear infinite;
}

.ledger .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 10px var(--acid);
}

.hero {
  min-height: calc(100vh - 110px);
  padding: 48px 6vw 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-orbit {
  position: absolute;
  width: 520px;
  height: 520px;
  left: 8%;
  top: 12%;
  border: 1px dashed rgba(124, 255, 58, 0.16);
  border-radius: 50%;
  animation: orbit 28s linear infinite;
}

.hero-orbit::after {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(124, 255, 58, 0.08);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 64px;
  align-items: center;
}

.portrait {
  position: relative;
}

.portrait-halo {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(124, 255, 58, 0.2), transparent 62%);
  filter: blur(8px);
  animation: pulse-core 3.6s ease-in-out infinite;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #050705;
  clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px), 0 18px);
  box-shadow: var(--shadow), 0 0 40px rgba(124, 255, 58, 0.12);
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(1.05) contrast(1.05);
}

.portrait-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(124, 255, 58, 0.12), transparent);
  background-size: 100% 40%;
  animation: scan 4.8s linear infinite;
  mix-blend-mode: screen;
  pointer-events: none;
}

.portrait-corners i {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--acid);
}

.portrait-corners i:nth-child(1) { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.portrait-corners i:nth-child(2) { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.portrait-corners i:nth-child(3) { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.portrait-corners i:nth-child(4) { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

.portrait-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.live {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--acid);
}

.live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 10px var(--acid);
  animation: pulse-core 1.6s ease-in-out infinite;
}

.crest {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--acid);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
}

.crest svg {
  width: 72px;
  height: 24px;
  stroke: var(--acid);
  fill: rgba(124, 255, 58, 0.18);
  stroke-width: 1.2;
}

h1 {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.92;
}

.title-the {
  display: block;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: 0.42em;
  color: var(--steel);
}

.title-main {
  display: block;
  font-size: clamp(42px, 7vw, 84px);
  background: linear-gradient(180deg, #e8ffe0 0%, #7cff3a 55%, #3f9a1c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(124, 255, 58, 0.25));
}

.symbol {
  margin: 12px 0 0;
  color: var(--acid);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  font-size: 18px;
}

.tagline {
  margin: 18px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 28px);
  color: var(--chrome);
}

.lede {
  max-width: 560px;
  color: var(--steel);
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(1.2);
}

.btn-acid {
  background: var(--acid);
  color: #061006;
  border-color: var(--acid);
  box-shadow: 0 0 22px rgba(124, 255, 58, 0.22);
}

.btn-acid img[src*="x.svg"] {
  filter: brightness(0) saturate(100%);
}

.btn-ghost {
  background: rgba(124, 255, 58, 0.04);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(124, 255, 58, 0.32);
}

.ca-bar {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 560px;
  padding: 10px 12px;
  background: var(--acid-dim);
  border: 1px solid var(--line);
}

.ca-label {
  color: var(--acid);
  letter-spacing: 0.2em;
  font-size: 12px;
}

#contract-display {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--chrome);
}

#copy-ca {
  border: 1px solid var(--line-strong);
  background: transparent;
  padding: 6px 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
}

#copy-ca.copied {
  color: var(--acid);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-stats li {
  padding: 14px 12px;
  border: 1px solid var(--line);
  background: rgba(16, 22, 16, 0.7);
}

.hero-stats strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 18px;
}

.hero-stats span {
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
}

.scroll-cue {
  align-self: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--steel);
}

.scroll-cue i {
  width: 1px;
  height: 38px;
  background: linear-gradient(var(--acid), transparent);
  animation: drop 1.8s ease-in-out infinite;
}

section {
  padding: 96px 6vw;
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--acid);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 12px;
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.section-sub {
  color: var(--steel);
  font-size: 18px;
}

.about {
  background:
    linear-gradient(180deg, rgba(124, 255, 58, 0.03), transparent 20%),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(124, 255, 58, 0.03) 38px 39px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
}

.dossier,
.creed,
.step,
.chart-frame,
.join-card {
  background: linear-gradient(180deg, rgba(22, 29, 22, 0.92), rgba(10, 14, 10, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.dossier {
  padding: 32px;
}

.file-tag {
  color: var(--acid);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
}

.dossier h3,
.step h3 {
  margin: 8px 0 16px;
  font-family: var(--font-serif);
  font-size: 28px;
}

.dossier p {
  color: var(--steel);
  line-height: 1.7;
  font-size: 17px;
}

.laws {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.law {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--acid-dim);
}

.law em {
  font-family: var(--font-serif);
  font-style: normal;
  color: var(--acid);
}

.law strong {
  display: block;
  font-family: var(--font-serif);
}

.law span {
  color: var(--steel);
}

.creed {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.creed-plate {
  overflow: hidden;
  border: 1px solid var(--line-strong);
}

.creed-plate img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 18%;
  animation: ken 18s ease-in-out infinite alternate;
}

.creed blockquote {
  margin: 22px 0 8px;
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.25;
}

.creed p {
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--acid), transparent);
  opacity: 0.35;
}

.step {
  padding: 24px 20px 28px;
  position: relative;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.step:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
}

.step-num {
  font-family: var(--font-serif);
  color: var(--acid);
  letter-spacing: 0.16em;
}

.step-icon {
  width: 48px;
  height: 48px;
  margin: 16px 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #0a0e0a;
}

.step-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.step p {
  color: var(--steel);
  line-height: 1.55;
}

.buy-row {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.btn-wide {
  min-width: min(520px, 100%);
  justify-content: center;
}

.chart {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(ellipse at top, rgba(124, 255, 58, 0.05), transparent 50%);
}

.chart-frame {
  overflow: hidden;
}

.chart-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: #0c120c;
}

.chart-chrome span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2a3828;
}

.chart-chrome span:nth-child(3) {
  background: var(--acid);
  box-shadow: 0 0 10px var(--acid);
}

.chart-chrome p {
  margin: 0 0 0 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

.chart-stage {
  position: relative;
  height: 640px;
  background: #050705;
}

.chart-stage iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: none;
}

.chart-stage.live iframe {
  display: block;
}

.chart-wait {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 16px;
  color: var(--steel);
}

.chart-wait img {
  width: 42px;
  opacity: 0.8;
}

.chart-stage.live .chart-wait {
  display: none;
}

.chart-open {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--acid);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chart-open img {
  width: 18px;
}

.join-banner {
  margin: 0 0 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow), 0 0 50px rgba(124, 255, 58, 0.08);
}

.join-banner img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(1.08);
}

.join-banner figcaption {
  position: absolute;
  left: 20px;
  bottom: 16px;
  font-family: var(--font-serif);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  color: #e8ffe0;
  text-shadow: 0 2px 12px #000;
}

.join-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.join-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.join-card:hover {
  transform: translateY(-6px);
  border-color: var(--acid);
}

.join-card img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.join-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 20px;
}

.join-card span {
  color: var(--steel);
}

.footer {
  padding: 48px 6vw 36px;
  border-top: 1px solid var(--line);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 1px solid var(--line-strong);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-serif);
}

.footer-brand span,
.footer-copy {
  color: var(--muted);
}

.footer-line {
  font-family: var(--font-serif);
  font-size: 20px;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}

.footer-links img {
  width: 18px;
  height: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes blinds-drift {
  from { background-position: 0 0; }
  to { background-position: 0 80px; }
}

@keyframes string-sway {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

@keyframes ledger-move {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes pulse-core {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes scan {
  0% { background-position: 0 -40%; }
  100% { background-position: 0 140%; }
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

@keyframes drop {
  0%, 100% { transform: scaleY(0.4); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes ken {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@media (max-width: 980px) {
  .hero-grid,
  .about-layout,
  .steps,
  .join-grid {
    grid-template-columns: 1fr;
  }

  .hero-orbit,
  .steps::before {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 18px 6vw 24px;
    background: rgba(6, 8, 6, 0.96);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .chart-stage {
    height: 460px;
  }
}

.cursor-glow {
  position: fixed;
  width: 220px;
  height: 220px;
  margin: -110px 0 0 -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 255, 58, 0.12), transparent 68%);
  pointer-events: none;
  z-index: 5;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 640px), (hover: none) {
  .cursor-glow {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-actions,
  .ca-bar,
  .hero-stats {
    flex-direction: column;
  }

  .hero-stats {
    display: grid;
  }

  .ca-bar {
    align-items: stretch;
  }
}
