:root {
  --bg: #04150c;
  --bg-2: #072014;
  --ink: #eef8ee;
  --muted: #9dbaa4;
  --neon: #7dff8a;
  --neon-2: #b8ff9c;
  --line: rgba(125, 255, 138, 0.18);
  --glass: rgba(4, 24, 14, 0.72);
  --font: "Outfit", system-ui, sans-serif;
  --display: "Bungee", Impact, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  overflow-x: hidden;
  max-width: 100vw;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.07;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.fireflies { position: fixed; inset: 0; pointer-events: none; z-index: 2; overflow: hidden; }
.fireflies span {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon);
  animation: drift 16s linear infinite;
  opacity: 0.7;
}
.fireflies span:nth-child(1) { left: 8%; top: 20%; animation-duration: 18s; }
.fireflies span:nth-child(2) { left: 22%; top: 70%; animation-duration: 22s; }
.fireflies span:nth-child(3) { left: 40%; top: 12%; animation-duration: 14s; }
.fireflies span:nth-child(4) { left: 55%; top: 80%; animation-duration: 20s; }
.fireflies span:nth-child(5) { left: 70%; top: 30%; animation-duration: 17s; }
.fireflies span:nth-child(6) { left: 84%; top: 62%; animation-duration: 24s; }
.fireflies span:nth-child(7) { left: 12%; top: 88%; animation-duration: 19s; }
.fireflies span:nth-child(8) { left: 92%; top: 18%; animation-duration: 15s; }
.fireflies span:nth-child(9) { left: 33%; top: 48%; animation-duration: 21s; }
.fireflies span:nth-child(10) { left: 63%; top: 8%; animation-duration: 13s; }
.fireflies span:nth-child(11) { left: 48%; top: 92%; animation-duration: 25s; }
.fireflies span:nth-child(12) { left: 78%; top: 44%; animation-duration: 16s; }
@keyframes drift {
  0%, 100% { transform: translate(0, 0); opacity: 0.2; }
  50% { transform: translate(20px, -30px); opacity: 0.9; }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  background: linear-gradient(to bottom, rgba(4, 21, 12, 0.92), rgba(4, 21, 12, 0.55) 70%, transparent);
  backdrop-filter: blur(10px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  letter-spacing: 0.04em;
  font-size: 15px;
}
.brand img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--neon);
  box-shadow: 0 0 18px rgba(125, 255, 138, 0.35);
}
.nav-links {
  display: none;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.nav-links a:hover { color: var(--neon); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--glass);
}
.icon-btn:hover { border-color: var(--neon); color: var(--neon); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}
.btn-primary, .btn-buy {
  background: var(--neon);
  color: #05210f;
  box-shadow: 0 0 24px rgba(125, 255, 138, 0.35);
}
.btn-primary:hover, .btn-buy:hover { filter: brightness(1.08); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--neon); color: var(--neon); }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 40px 20px 80px;
  overflow: hidden;
}
.hero-banner {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 21, 12, 0.88) 0%, rgba(4, 21, 12, 0.45) 55%, rgba(4, 21, 12, 0.7) 100%),
    linear-gradient(to top, #04150c 0%, transparent 28%);
}
.hero-inner {
  position: relative;
  z-index: 3;
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 32px;
  align-items: center;
}
.kicker {
  margin: 0 0 8px;
  color: var(--neon);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(42px, 10vw, 96px);
  line-height: 0.9;
  margin: 0 0 16px;
  text-shadow: 0 0 40px rgba(125, 255, 138, 0.35);
}
.hero h1 .dollar { color: var(--neon); }
.tagline {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(16px, 2.4vw, 22px);
  font-weight: 400;
  max-width: 28ch;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.ca {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--muted);
  word-break: break-all;
}
.hero-art {
  justify-self: center;
  width: min(420px, 86vw);
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.55));
}
.hero-art img {
  width: 100%;
  border-radius: 32px;
  border: 1px solid var(--line);
  box-shadow: 0 0 80px rgba(125, 255, 138, 0.18);
}
.scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: #061b10;
}
.ticker-track {
  display: flex;
  gap: 36px;
  width: max-content;
  padding: 14px 0;
  animation: marquee 28s linear infinite;
  font-family: var(--display);
  letter-spacing: 0.12em;
  color: var(--neon);
  font-size: 14px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

section { padding: 80px 20px; }
.section-head {
  width: min(1120px, 100%);
  margin: 0 auto 36px;
}
.section-head h2, .about-copy h2, .hero h1 {
  letter-spacing: 0.02em;
}
.section-head h2, .about-copy h2 {
  font-family: var(--display);
  font-size: clamp(28px, 5vw, 48px);
  margin: 0;
}

.about-grid, .tok-grid, .gallery-grid, .steps, .buy-box {
  width: min(1120px, 100%);
  margin: 0 auto;
}
.about-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}
.about-visual img {
  width: 100%;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 0 60px rgba(125, 255, 138, 0.12);
}
.about-copy p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}
.traits {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.traits li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(125, 255, 138, 0.04);
}

.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #000;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid .wide { min-height: 180px; }
.gallery-grid .wide img { max-height: 280px; object-position: center; }

.tok-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
.tok-grid article {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.tok-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.tok-grid h3 {
  margin: 16px 16px 4px;
  font-family: var(--display);
  color: var(--neon);
}
.tok-grid p {
  margin: 0 16px 18px;
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0 auto 32px;
}
.steps li {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  background: rgba(7, 32, 20, 0.7);
}
.num {
  display: block;
  color: var(--neon);
  font-family: var(--display);
  margin-bottom: 8px;
}
.steps h3 { margin: 0 0 8px; }
.steps p { margin: 0; color: var(--muted); }

.buy-box {
  display: grid;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(125, 255, 138, 0.08), transparent);
}
.buy-box img {
  width: 100%;
  border-radius: 20px;
  max-height: 280px;
  object-fit: cover;
}
.ca-big {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: clamp(13px, 2.4vw, 18px);
  margin: 8px 0 16px;
  word-break: break-all;
  color: var(--neon);
  line-height: 1.45;
}

.foot {
  padding: 40px 20px 64px;
  border-top: 1px solid var(--line);
  width: min(1120px, 100%);
  margin: 0 auto;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.foot-brand img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--neon);
}
.foot-brand strong { display: block; font-family: var(--display); }
.foot-brand span { color: var(--muted); font-size: 13px; }
.disclaimer, .copy { color: var(--muted); font-size: 13px; line-height: 1.6; }
.copy { margin-top: 18px; }

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  background: var(--neon);
  color: #05210f;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
}

@media (min-width: 720px) {
  .nav-links { display: flex; }
  .hero-inner { grid-template-columns: 1.05fr 0.95fr; }
  .about-grid { grid-template-columns: 1.1fr 0.9fr; }
  .gallery-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .gallery-grid .wide { grid-column: 1 / -1; min-height: 240px; }
  .gallery-grid .wide img { max-height: 360px; }
  .tok-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .buy-box { grid-template-columns: 0.9fr 1.1fr; padding: 22px; }
}

@media (min-width: 1080px) {
  .tok-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}
