@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=IBM+Plex+Mono:wght@400;600&display=swap');

:root {
  --bg: #0a0a0a;
  --panel: #111;
  --line: #252525;
  --text: #f4f4ef;
  --muted: #a7a7a0;
  --acid: #b7ff2a;
  --acid-2: #e5ff9d;
  --danger: #ff5b5b;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 70% 15%, rgba(183,255,42,.07), transparent 25%),
    var(--bg);
  color: var(--text);
  font-family: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(183,255,42,.06);
  filter: blur(40px);
  transform: translate(-50%,-50%);
  pointer-events: none;
  z-index: -1;
}

.ticker-strip {
  height: 32px;
  background: var(--acid);
  color: #050505;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: marquee 24s linear infinite;
  white-space: nowrap;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 78px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,.82);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
}

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

.brand-face {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 2px solid var(--acid);
}

.brand-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  transform: scale(1.25);
}

.brand strong {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  letter-spacing: -.03em;
  font-size: 17px;
}

.brand small {
  color: var(--muted);
  font-size: 9px;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  font-size: 12px;
}

.desktop-nav a {
  color: #cfcfc7;
  transition: color .2s ease;
}
.desktop-nav a:hover { color: var(--acid); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  background: var(--acid);
  color: #070707;
  border: 1px solid var(--acid);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .03em;
  box-shadow: 4px 4px 0 #394d0f;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn:hover {
  transform: translate(2px,2px);
  box-shadow: 2px 2px 0 #394d0f;
  background: var(--acid-2);
}

.btn-small { min-height: 38px; padding: 0 14px; }
.btn-wide { width: 100%; margin-top: 8px; }
.btn-ghost {
  color: var(--text);
  background: transparent;
  border-color: #555;
  box-shadow: 4px 4px 0 #222;
}
.btn-ghost:hover { background: #161616; }

.section-shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.hero {
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 30px;
  padding-top: 62px;
  padding-bottom: 72px;
}

.eyebrow, .section-number {
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 18px;
}

.dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 16px var(--acid);
}

h1, h2, h3 {
  font-family: 'Archivo Black', Impact, sans-serif;
  margin: 0;
  line-height: .9;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(64px, 9vw, 132px);
  letter-spacing: -.07em;
  max-width: 760px;
}

.outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--acid);
  text-shadow: 0 0 30px rgba(183,255,42,.1);
}

.hero-sub {
  max-width: 620px;
  font-size: clamp(15px, 2vw, 19px);
  color: #c7c7c0;
  line-height: 1.6;
  margin: 30px 0 26px;
}

.hero-sub strong { color: var(--acid); }

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

.contract-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 570px;
  margin-top: 30px;
  padding: 14px 14px 14px 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}

.contract-pill small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  margin-bottom: 6px;
}

.contract-pill span {
  font-size: 11px;
  word-break: break-all;
}

.contract-pill button {
  flex: 0 0 auto;
  background: #1c1c1c;
  color: var(--acid);
  border: 1px solid #333;
  padding: 10px 12px;
  font: inherit;
  font-size: 10px;
  cursor: pointer;
}

.hero-art-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.portrait-card {
  width: min(430px, 85vw);
  aspect-ratio: 4 / 5;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #fff;
  border: 1px solid #3a3a3a;
  transform: rotate(2deg);
  box-shadow: 18px 18px 0 rgba(183,255,42,.85);
}

.portrait-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(transparent 75%, rgba(0,0,0,.8)),
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(0,0,0,.03) 4px);
  pointer-events: none;
}

.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-caption {
  position: absolute;
  z-index: 4;
  left: 14px;
  right: 14px;
  bottom: 12px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.scanline {
  position: absolute;
  z-index: 3;
  left: 0; right: 0;
  height: 2px;
  background: rgba(183,255,42,.85);
  box-shadow: 0 0 12px var(--acid);
  animation: scan 4.5s linear infinite;
}

@keyframes scan {
  from { top: -2px; }
  to { top: 100%; }
}

.gpu-label {
  position: absolute;
  z-index: 5;
  padding: 10px 12px;
  background: #0d0d0d;
  border: 1px solid #343434;
  font-size: 9px;
  line-height: 1.4;
  box-shadow: 4px 4px 0 #1d1d1d;
}
.gpu-label strong { color: var(--acid); font-size: 12px; }
.label-1 { left: 3%; top: 14%; transform: rotate(-4deg); }
.label-2 { right: 0; bottom: 17%; transform: rotate(3deg); }

.orbit {
  position: absolute;
  border: 1px dashed rgba(183,255,42,.24);
  border-radius: 50%;
}
.orbit-a { width: 520px; height: 520px; animation: spin 18s linear infinite; }
.orbit-b { width: 380px; height: 380px; animation: spin 12s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

.stats-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  margin-bottom: 120px;
}

.stat {
  padding: 22px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat span {
  display: block;
  color: var(--muted);
  font-size: 9px;
  margin-bottom: 8px;
}
.stat strong {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(13px, 1.5vw, 18px);
}

.split-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 55px;
}

h2 {
  font-size: clamp(58px, 8vw, 112px);
  letter-spacing: -.06em;
}

.lore-card {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  font-size: 16px;
  color: #c5c5bd;
  line-height: 1.75;
}

.lore-card p { max-width: 680px; }

.quote {
  margin-top: 36px;
  padding: 26px;
  border: 1px solid #343434;
  background: #111;
  color: var(--acid);
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(20px, 3vw, 36px);
  line-height: 1.05;
  transform: rotate(-1deg);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-bottom: 130px;
}

.feature-card {
  min-height: 340px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  background: #101010;
}

.feature-card.inverted {
  background: var(--acid);
  color: #090909;
  border-color: var(--acid);
}

.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  font-size: 10px;
}

.feature-card h3 {
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -.05em;
}

.feature-card p {
  color: var(--muted);
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.feature-card.inverted p { color: #283510; }

.terminal-section { margin-bottom: 130px; }

.terminal {
  border: 1px solid #303030;
  background: #070707;
  box-shadow: 12px 12px 0 #141414;
}

.terminal-top {
  height: 44px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid #252525;
  color: #85857f;
  font-size: 10px;
}
.terminal-top > span:last-child { justify-self: end; }

.terminal-dots { display: flex; gap: 6px; }
.terminal-dots i {
  width: 9px; height: 9px; border-radius: 50%;
  background: #3b3b3b;
}

.terminal-body {
  min-height: 360px;
  padding: 28px;
  font-size: clamp(11px, 1.5vw, 15px);
  line-height: 1.7;
  color: #d6d6ce;
}

.green { color: var(--acid); }
.red { color: var(--danger); }
.terminal-live::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 1.1em;
  margin-left: 4px;
  vertical-align: text-bottom;
  background: var(--acid);
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.buy-section {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 130px;
}

.buy-copy p {
  color: var(--muted);
  max-width: 600px;
  line-height: 1.65;
}

.buy-panel {
  padding: 12px;
  border: 1px solid #2b2b2b;
  background: #0f0f0f;
}

.buy-row {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 18px 12px;
  border-bottom: 1px solid #292929;
}

.buy-row > span { color: var(--acid); font-size: 11px; }
.buy-row strong { display: block; margin-bottom: 5px; }
.buy-row small { color: var(--muted); line-height: 1.4; }

.text-link {
  display: block;
  text-align: center;
  padding: 16px 0 6px;
  color: var(--muted);
  font-size: 10px;
}
.text-link:hover { color: var(--acid); }

.giant-word {
  overflow: visible;
  color: var(--acid);
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(64px, 15vw, 210px);
  line-height: .82;
  letter-spacing: -.065em;
  white-space: nowrap;
  margin-bottom: 130px;
  transform: none;
}

.socials-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: end;
  padding-bottom: 120px;
}

.social-links { border-top: 1px solid var(--line); }

.social-links a {
  min-height: 72px;
  padding: 0 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  transition: padding .2s ease, color .2s ease;
}

.social-links a:hover {
  padding-left: 16px;
  color: var(--acid);
}

.footer {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 150px;
  padding: 30px 24px 40px;
  display: grid;
  grid-template-columns: .6fr 1.4fr auto;
  gap: 30px;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  line-height: 1.6;
}
.footer-brand strong { color: var(--text); }

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 200;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  padding: 12px 16px;
  color: #080808;
  background: var(--acid);
  border: 1px solid #cfff6d;
  font-size: 10px;
  font-weight: 800;
  transition: opacity .2s ease, transform .2s ease;
}
.toast.show { opacity: 1; transform: translate(-50%,0); }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 52px;
  }
  .hero-art-wrap { order: -1; min-height: 430px; }
  .portrait-card { width: min(340px, 78vw); }
  .orbit-a { width: 410px; height: 410px; }
  .orbit-b { width: 310px; height: 310px; }
  .stats-wrap { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split-section, .buy-section, .socials-section { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 260px; }
  .footer { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .section-shell { width: min(calc(100% - 28px), var(--max)); }
  .topbar { height: 68px; padding: 0 14px; }
  .brand-face { width: 36px; height: 36px; }
  .brand strong { font-size: 14px; }
  .brand small { display: none; }
  .btn-small { font-size: 10px; padding-inline: 10px; }
  h1 { font-size: clamp(56px, 19vw, 82px); }
  .hero { padding-bottom: 55px; }
  .hero-art-wrap { min-height: 360px; }
  .portrait-card { width: min(285px, 78vw); }
  .orbit-a { width: 340px; height: 340px; }
  .orbit-b { width: 260px; height: 260px; }
  .label-1 { left: -2%; top: 9%; }
  .label-2 { right: -2%; bottom: 13%; }
  .hero-actions .btn { flex: 1 1 100%; }
  .contract-pill {
    align-items: flex-start;
    gap: 10px;
  }
  .stats-wrap { margin-bottom: 90px; }
  .stat { padding: 16px; }
  .split-section, .cards-grid, .terminal-section, .buy-section, .giant-word {
    margin-bottom: 90px;
  }
  .terminal-body { min-height: 310px; padding: 20px 14px; overflow-x: auto; }
  .socials-section { padding-bottom: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  .cursor-glow { display: none; }
}
