:root {
  --ink: #7132f5;
  --violet: #9a69ff;
  --lilac: #d8c8ff;
  --paper: #f7f3ff;
  --muted: #aa9fc2;
  --night: #07040d;
  --panel: #10091d;
  --line: rgba(184, 153, 255, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 10%, rgba(113, 50, 245, 0.24), transparent 29rem),
    radial-gradient(circle at 8% 65%, rgba(113, 50, 245, 0.11), transparent 25rem),
    var(--night);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  min-width: 320px;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background-image:
    linear-gradient(rgba(183, 153, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183, 153, 255, .045) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 5;
}
.wordmark { color: #fff; font-size: 18px; font-weight: 900; letter-spacing: .17em; text-decoration: none; }
.wordmark span { color: var(--violet); }
.chain-tag { color: var(--lilac); font-size: 11px; letter-spacing: .18em; display: flex; align-items: center; gap: 10px; }
.chain-tag i { width: 7px; height: 7px; background: var(--ink); box-shadow: 0 0 14px var(--violet); }

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 54px;
  padding-block: 74px 90px;
  position: relative;
}
.hero-copy { position: relative; z-index: 3; }
.eyebrow { margin: 0 0 22px; color: var(--violet); font-size: 12px; font-weight: 800; letter-spacing: .2em; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 26px; font-size: clamp(48px, 5.6vw, 84px); line-height: .98; letter-spacing: -.075em; text-transform: uppercase; }
h1 em { color: var(--lilac); font-style: normal; }
.lede { max-width: 650px; color: var(--muted); font-family: Arial, Helvetica, sans-serif; font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 38px; }
button {
  border: 1px solid rgba(216, 200, 255, .55);
  padding: 17px 20px;
  background: linear-gradient(135deg, rgba(113, 50, 245, .28), rgba(113, 50, 245, .08));
  color: rgba(247, 243, 255, .54);
  font: 800 12px/1 ui-monospace, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: not-allowed;
}
button span { padding-left: 18px; }
.hero-actions > a { color: var(--paper); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; text-underline-offset: 5px; }
.launch-status { display: flex; align-items: center; gap: 10px; margin-top: 18px; color: #786f8a; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.launch-status span { width: 6px; height: 6px; border-radius: 50%; background: #786f8a; }

.forge-stack { position: relative; min-height: 510px; }
.aura { position: absolute; inset: 13% 3% 4% 8%; border-radius: 50%; background: rgba(113, 50, 245, .24); filter: blur(58px); }
.token { position: absolute; width: min(54%, 300px); margin: 0; padding: 8px 8px 13px; border: 1px solid rgba(184, 153, 255, .48); background: rgba(8, 4, 16, .94); box-shadow: 0 24px 55px rgba(0, 0, 0, .52); }
.token img { display: block; width: 100%; aspect-ratio: 1; image-rendering: pixelated; }
.token figcaption { display: flex; justify-content: space-between; padding: 12px 4px 0; font-size: 9px; letter-spacing: .12em; }
.token figcaption span { color: var(--muted); }
.token-a { left: 0; top: 126px; transform: rotate(-8deg); animation: drift-a 8s ease-in-out infinite; }
.token-b { left: 27%; top: 24px; z-index: 2; transform: rotate(2deg); animation: drift-b 7s ease-in-out infinite; }
.token-c { right: -2%; top: 152px; z-index: 3; transform: rotate(8deg); animation: drift-c 9s ease-in-out infinite; }

.stats { border-block: 1px solid var(--line); background: rgba(113, 50, 245, .045); }
.stats-grid { min-height: 140px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.stats-grid div { display: grid; gap: 6px; padding: 10px 30px; border-left: 1px solid var(--line); }
.stats-grid div:last-child { border-right: 1px solid var(--line); }
.stats strong { color: var(--lilac); font-size: 30px; }
.stats span { color: var(--muted); font-size: 10px; letter-spacing: .15em; }

.how { padding-block: 125px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 38px; }
.section-heading .eyebrow { margin: 0 60px 12px 0; white-space: nowrap; }
h2 { margin-bottom: 0; font-size: clamp(36px, 4.5vw, 64px); line-height: 1.05; letter-spacing: -.06em; text-transform: uppercase; }
h2 span { color: var(--lilac); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); }
.step { min-height: 310px; padding: 42px 42px 34px 0; border-bottom: 1px solid var(--line); }
.step + .step { border-left: 1px solid var(--line); padding-left: 42px; }
.step-number { color: var(--ink); font-weight: 900; font-size: 13px; }
.step h3 { margin: 52px 0 20px; font-size: 20px; text-transform: uppercase; letter-spacing: -.025em; }
.step p, .eraser p { color: var(--muted); font-family: Arial, Helvetica, sans-serif; line-height: 1.72; }

.eraser { display: grid; grid-template-columns: minmax(280px, 430px) 1fr; align-items: center; gap: 100px; padding-block: 20px 130px; }
.eraser img { width: 100%; border: 1px solid rgba(184, 153, 255, .4); box-shadow: 0 26px 80px rgba(65, 18, 158, .34); image-rendering: pixelated; }
.eraser h2 { margin-bottom: 26px; }
.eraser p:last-child { max-width: 590px; font-size: 17px; }

.final-cta { padding: 100px 32px; text-align: center; border: 1px solid var(--line); background: radial-gradient(circle at 50% 100%, rgba(113, 50, 245, .34), transparent 62%), var(--panel); }
.final-cta h2 { margin: 0 auto 38px; max-width: 820px; }
.final-cta button { margin-inline: auto; }

footer { min-height: 150px; display: flex; align-items: center; justify-content: space-between; color: #6f6680; font-size: 9px; letter-spacing: .13em; }
footer .wordmark { font-size: 13px; }
footer p { margin: 0; }

@keyframes drift-a { 50% { transform: rotate(-6deg) translateY(-10px); } }
@keyframes drift-b { 50% { transform: rotate(1deg) translateY(12px); } }
@keyframes drift-c { 50% { transform: rotate(6deg) translateY(-8px); } }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 65px; }
  .forge-stack { min-height: 480px; width: min(620px, 100%); margin-inline: auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid div:nth-child(3), .stats-grid div:nth-child(4) { border-top: 1px solid var(--line); }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 0; padding: 36px 0; }
  .step + .step { border-left: 0; padding-left: 0; }
  .step h3 { margin-top: 30px; }
  .eraser { grid-template-columns: minmax(240px, 380px) 1fr; gap: 50px; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 30px, 1180px); }
  .site-header { height: 75px; }
  .chain-tag { font-size: 9px; }
  .hero { min-height: auto; padding-block: 58px 65px; gap: 18px; }
  h1 { font-size: clamp(42px, 13vw, 64px); }
  .lede { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 20px; }
  .hero-actions button { width: 100%; }
  .hero-actions > a { text-align: center; }
  .forge-stack { min-height: 360px; }
  .token { width: 51%; padding: 5px 5px 10px; }
  .token-a { top: 93px; }
  .token-b { top: 30px; }
  .token-c { top: 118px; }
  .token figcaption { font-size: 7px; }
  .stats-grid { width: 100%; }
  .stats-grid div { min-height: 105px; padding: 20px; }
  .stats strong { font-size: 24px; }
  .section-heading { display: block; }
  .how { padding-block: 85px; }
  .eraser { grid-template-columns: 1fr; gap: 45px; padding-bottom: 90px; }
  .eraser img { width: min(100%, 390px); }
  .final-cta { padding: 72px 20px; }
  footer { min-height: 190px; flex-direction: column; justify-content: center; gap: 20px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .token { animation: none; }
}
