:root {
  --bg: #060d14;
  --bg-elev: #0b1722;
  --ink: #f3f7fb;
  --muted: #93a7bb;
  --cyan: #3de7ff;
  --magenta: #e23a86;
  --lime: #d0ff4a;
  --purple: #9b5cff;
  --stroke: rgba(61, 231, 255, 0.16);
  --panel: rgba(11, 23, 34, 0.78);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  --display: "Bangers", system-ui, sans-serif;
  --body: "Sora", system-ui, sans-serif;
  --wrap: 1120px;
  --r: 20px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(226, 58, 134, 0.22), transparent 55%),
    radial-gradient(800px 480px at 10% 15%, rgba(61, 231, 255, 0.14), transparent 50%),
    radial-gradient(700px 420px at 60% 90%, rgba(155, 92, 255, 0.12), transparent 55%),
    linear-gradient(180deg, #04090f, var(--bg) 30%, #08131c);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.04;
  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.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cursor-glow {
  pointer-events: none;
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 231, 255, 0.12), transparent 65%);
  transform: translate(-50%, -50%);
  z-index: 0;
}

.wrap { width: min(var(--wrap), calc(100% - 2rem)); margin-inline: auto; }
.wrap.narrow { width: min(820px, calc(100% - 2rem)); }

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1.4rem;
  backdrop-filter: blur(16px);
  background: rgba(4, 9, 15, 0.62);
  border-bottom: 1px solid var(--stroke);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--cyan);
}
.brand img { width: 34px; height: 34px; object-fit: contain; }
.nav { display: flex; gap: 1.15rem; font-size: 0.84rem; font-weight: 600; color: var(--muted); }
.nav a:hover { color: var(--cyan); }
.top-actions { display: flex; align-items: center; gap: 0.55rem; }
.btn-x {
  padding: 0.5rem 0.95rem;
  font-size: 0.78rem;
  background: #111;
  border: 1px solid rgba(243, 247, 251, 0.22);
  color: #fff;
}
.btn-x:hover { border-color: var(--cyan); color: var(--cyan); }
.socials { margin-top: 0.45rem !important; }
.socials a { color: var(--cyan); font-weight: 700; }
.socials a:hover { text-decoration: underline; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm {
  padding: 0.5rem 0.95rem;
  font-size: 0.78rem;
  background: linear-gradient(135deg, var(--magenta), #8a184f);
  box-shadow: 0 10px 24px rgba(226, 58, 134, 0.28);
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), #1898b0);
  color: #041018;
  box-shadow: 0 12px 28px rgba(61, 231, 255, 0.25);
}
.btn-ghost {
  border-color: rgba(243, 247, 251, 0.25);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 0 2.5rem;
  isolation: isolate;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.9s ease, transform 3s ease;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.1);
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(4, 9, 15, 0.88) 0%, rgba(4, 9, 15, 0.45) 45%, rgba(4, 9, 15, 0.25) 100%),
    linear-gradient(180deg, rgba(4, 9, 15, 0.2) 0%, transparent 40%, rgba(4, 9, 15, 0.82) 100%);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 2rem));
  margin: 0 auto 0 max(1rem, calc((100% - 1180px) / 2 + 1rem));
  padding-bottom: 1rem;
}
.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
}
.hero-copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5.2rem, 15vw, 9.5rem);
  line-height: 0.86;
  letter-spacing: 0.045em;
  color: #fff;
  text-shadow:
    0 0 48px rgba(61, 231, 255, 0.35),
    0 12px 40px rgba(0, 0, 0, 0.45);
  animation: pop 0.9s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}
.tagline {
  margin: 1.15rem 0 1.6rem;
  max-width: 30ch;
  color: rgba(243, 247, 251, 0.82);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.45;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-foot {
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.hero-foot strong {
  color: var(--cyan);
  font-family: var(--display);
  letter-spacing: 0.04em;
  font-size: 1.15em;
  font-weight: 400;
}
.hero-dots {
  position: absolute;
  right: 1.25rem;
  bottom: 1.4rem;
  z-index: 3;
  display: flex;
  gap: 0.45rem;
}
.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(243, 247, 251, 0.35);
  cursor: pointer;
}
.hero-dots button.is-active {
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(61, 231, 255, 0.6);
}

.marquee {
  border-block: 1px solid var(--stroke);
  background: rgba(226, 58, 134, 0.1);
  overflow: hidden;
  padding: 0.8rem 0;
}
.marquee-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  animation: marquee 24s linear infinite;
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.08em;
  color: var(--magenta);
}

.section { position: relative; z-index: 1; padding: 5.5rem 0; }
.section-alt {
  background: linear-gradient(180deg, transparent, rgba(11, 23, 34, 0.55), transparent);
}
.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.kicker {
  margin: 0 0 0.5rem;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
}
.section-head h2, .kol-feature h3, .timer-banner h3, .launch-panel h2, .road-copy h3, .story-block h3 {
  font-family: var(--display);
  letter-spacing: 0.03em;
  line-height: 1.05;
}
.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.3rem, 5.5vw, 3.6rem);
}
.lede { margin: 0; color: var(--muted); }

/* STORY */
.story-grid { display: grid; gap: 1.25rem; }
.story-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.1rem;
  border-radius: var(--r);
  border: 1px solid var(--stroke);
  background: var(--panel);
  backdrop-filter: blur(10px);
}
.story-block.flip { grid-template-columns: 1fr 280px; }
.story-block.flip img { order: 2; }
.story-block img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  background: #000;
}
.story-block h3 {
  margin: 0 0 0.6rem;
  font-size: 1.7rem;
  color: var(--lime);
}
.story-block p { margin: 0; color: var(--muted); }
.big-q {
  font-size: 1.25rem !important;
  color: var(--ink) !important;
  margin-bottom: 0.6rem !important;
}
.big-q span:first-child { text-decoration: line-through; color: var(--muted); }
.big-q span:last-child { color: var(--cyan); font-family: var(--display); letter-spacing: 0.04em; }

/* CAST */
.cast-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.cast {
  padding: 1.1rem;
  border-radius: var(--r);
  border: 1px solid var(--stroke);
  background: var(--panel);
  transition: transform 0.25s ease;
}
.cast:hover { transform: translateY(-6px); }
.cast img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 0.9rem;
  background: #0a121a;
}
.cast:last-child img { object-fit: contain; background: #000; padding: 1.4rem; }
.cast h3 { margin: 0; font-family: var(--display); font-size: 1.7rem; letter-spacing: 0.04em; }
.role {
  margin: 0.2rem 0 0.6rem;
  color: var(--magenta);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cast p:last-child { margin: 0; color: var(--muted); font-size: 0.92rem; }
.cast a { color: var(--cyan); font-weight: 700; }
.tok-list a { color: var(--cyan); font-weight: 700; }
.copy a { color: var(--cyan); }

/* ROADMAP */
.road { display: grid; gap: 1rem; }
.road-step {
  display: grid;
  grid-template-columns: 64px 220px 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1rem;
  border-radius: var(--r);
  border: 1px solid var(--stroke);
  background: var(--panel);
}
.road-finale {
  border-color: rgba(208, 255, 74, 0.35);
  background: linear-gradient(120deg, rgba(208, 255, 74, 0.08), rgba(61, 231, 255, 0.06));
}
.road-num {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--magenta);
  text-align: center;
  letter-spacing: 0.04em;
}
.road-step img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  background: #000;
}
.road-copy h3 { margin: 0 0 0.45rem; font-size: 1.55rem; }
.road-copy p { margin: 0; color: var(--muted); }

/* KOLS */
.kol-feature {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: var(--r);
  border: 1px solid var(--stroke);
  background: var(--panel);
}
.kol-feature img { border-radius: 14px; }
.kol-feature h3 { margin: 0 0 0.7rem; font-size: 2.2rem; }
.kol-feature p { color: var(--muted); margin: 0 0 0.7rem; }
.note { color: var(--lime) !important; font-size: 0.85rem; font-weight: 600; }

.kol-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.kol-card {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: var(--bg-elev);
  transition: transform 0.25s ease;
}
.kol-card:hover { transform: translateY(-5px) rotate(-0.4deg); }
.kol-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.kol-card figcaption { padding: 0.85rem; }
.kol-card strong { display: block; font-family: var(--display); letter-spacing: 0.04em; font-size: 1.15rem; color: var(--cyan); margin-bottom: 0.25rem; }
.kol-card span { color: var(--muted); font-size: 0.85rem; }

.timer-banner {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: 24px;
  border: 1px solid rgba(155, 92, 255, 0.35);
  background:
    radial-gradient(500px 180px at 50% 0%, rgba(155, 92, 255, 0.2), transparent 70%),
    linear-gradient(135deg, #070b14, #12182a);
}
.timer-banner h3 { margin: 0.4rem 0 1.2rem; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.timer {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.timer div {
  min-width: 84px;
  padding: 0.85rem 0.6rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--stroke);
}
.timer span {
  display: block;
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--lime);
  letter-spacing: 0.04em;
}
.timer small { color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.68rem; }
.timer-sub { margin: 1rem 0 0; color: var(--muted); font-size: 0.88rem; }

/* MEMES */
.meme-wall {
  columns: 3 240px;
  column-gap: 1rem;
}
.meme {
  break-inside: avoid;
  margin: 0 0 1rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: var(--panel);
  transition: transform 0.25s ease;
}
.meme:hover { transform: scale(1.015); }
.meme img { width: 100%; }
.meme figcaption {
  padding: 0.65rem 0.8rem 0.85rem;
  font-family: var(--display);
  letter-spacing: 0.05em;
  color: var(--cyan);
}

/* TOKEN */
.tok-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.tok {
  text-align: center;
  padding: 1.3rem 0.8rem;
  border-radius: var(--r);
  border: 1px solid var(--stroke);
  background: linear-gradient(160deg, rgba(61, 231, 255, 0.07), rgba(226, 58, 134, 0.07));
}
.tok-num, .tok-suf { font-family: var(--display); color: var(--lime); letter-spacing: 0.03em; }
.tok-num { font-size: 2.8rem; }
.tok-suf { font-size: 1.7rem; }
.tok p { margin: 0.3rem 0 0; color: var(--muted); font-size: 0.86rem; }
.tok-list { list-style: none; padding: 0; margin: 0; }
.tok-list li {
  padding: 0.8rem 0;
  border-bottom: 1px dashed rgba(147, 167, 187, 0.25);
  color: var(--muted);
}
.tok-list strong { color: var(--ink); }
.inline-ca {
  font-size: 0.78rem;
  word-break: break-all;
  color: var(--cyan);
}

/* CONTRACT / LIVE PRICE */
.contract-panel {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.contract-main {
  padding: 1.4rem;
  border-radius: var(--r);
  border: 1px solid var(--stroke);
  background: var(--panel);
}
.contract-label {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 700;
}
.ca-row {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.ca-row code {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--stroke);
  font-size: 0.78rem;
  word-break: break-all;
  color: var(--cyan);
}
.contract-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.live-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3dff8a;
  box-shadow: 0 0 10px rgba(61, 255, 138, 0.8);
  animation: blink 1.4s ease-in-out infinite;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.price-card {
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(8, 20, 32, 0.75);
}
.price-card p {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.price-card strong {
  display: block;
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  color: #fff;
  font-weight: 400;
}
.price-hero {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(61, 231, 255, 0.12), rgba(226, 58, 134, 0.12));
  border-color: rgba(61, 231, 255, 0.28);
}
.price-hero strong {
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--lime);
}
.chg {
  display: inline-block;
  margin-top: 0.35rem;
  font-weight: 800;
  font-size: 0.95rem;
}
.chg.up { color: #3dff8a; }
.chg.down { color: #ff5d7a; }
.chg.flat { color: var(--muted); }
.chart-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: #0b1220;
  min-height: 420px;
}
.chart-wrap iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
}

/* LAUNCH */
.launch-panel {
  display: grid;
  grid-template-columns: 140px 1fr 90px;
  gap: 1.4rem;
  align-items: center;
  padding: 1.8rem;
  border-radius: 24px;
  border: 1px solid rgba(155, 92, 255, 0.35);
  background:
    radial-gradient(520px 220px at 15% 50%, rgba(155, 92, 255, 0.2), transparent 60%),
    linear-gradient(135deg, #05080f, #141b2e);
  box-shadow: var(--shadow);
}
.launch-panel > img:first-child {
  width: 130px;
  height: 130px;
  object-fit: contain;
  border-radius: 50%;
  background: #000;
}
.launch-panel h2 { margin: 0.35rem 0 0.7rem; font-size: clamp(2rem, 4vw, 3rem); }
.launch-panel p { color: var(--muted); margin: 0 0 1rem; }
.arc-mark { width: 84px; justify-self: end; opacity: 0.9; }
.fine { color: var(--lime) !important; font-weight: 700; }

.footer { padding: 3rem 0 4rem; border-top: 1px solid var(--stroke); }
.footer-inner { display: grid; gap: 1rem; }
.footer-brand { display: flex; gap: 0.8rem; align-items: center; }
.footer-brand img { width: 52px; }
.footer-brand strong { font-family: var(--display); font-size: 1.4rem; color: var(--cyan); letter-spacing: 0.04em; }
.footer-brand p, .disclaimer, .copy { margin: 0.2rem 0 0; color: var(--muted); font-size: 0.86rem; }

.back-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  background: rgba(6, 13, 20, 0.9);
  color: var(--cyan);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.back-top.show { opacity: 1; pointer-events: auto; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: none; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes ken { from { transform: scale(1.04); } to { transform: scale(1.12) translateY(-1.5%); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pop { from { opacity: 0; transform: translateY(22px) scale(0.96); } to { opacity: 1; transform: none; } }
@keyframes blink {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(155, 92, 255, 0.2)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 18px rgba(155, 92, 255, 0.55)); }
}
.pulse { animation: pulse 2.8s ease-in-out infinite; }

@media (max-width: 960px) {
  .nav { display: none; }
  .hero-copy {
    margin-left: 1rem;
    margin-right: 1rem;
    width: calc(100% - 2rem);
  }
  .contract-panel, .story-block, .story-block.flip, .kol-feature, .launch-panel, .road-step, .cast-row, .tok-grid, .kol-grid {
    grid-template-columns: 1fr;
  }
  .story-block.flip img { order: 0; }
  .arc-mark { justify-self: start; }
  .road-step { grid-template-columns: 48px 1fr; }
  .road-step img { grid-column: 1 / -1; max-width: 280px; }
  .meme-wall { columns: 2 160px; }
}
@media (max-width: 560px) {
  .meme-wall { columns: 1; }
  .kol-grid { grid-template-columns: 1fr 1fr; }
  .hero-copy h1 { font-size: clamp(4.2rem, 22vw, 5.5rem); }
}
