:root {
  --bg: #050508;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-2: rgba(255, 255, 255, 0.11);
  --text: #f6f7fb;
  --muted: #a8a8bd;
  --cyan: #15f4cf;
  --blue: #4e8cff;
  --purple: #9a3dff;
  --pink: #f048ff;
  --danger: #ff4d7d;
  --radius: 28px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(21, 244, 207, 0.19), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(154, 61, 255, 0.24), transparent 34%),
    radial-gradient(circle at 45% 80%, rgba(78, 140, 255, 0.16), transparent 32%),
    var(--bg);
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle, black, transparent 80%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5vw;
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 8, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 0 22px rgba(154, 61, 255, 0.42);
}

nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

nav a:hover {
  color: var(--text);
}

main {
  position: relative;
  z-index: 2;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: center;
  padding: 80px 5vw 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 900;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 920px;
  font-size: clamp(58px, 9vw, 132px);
  line-height: 0.86;
  letter-spacing: -0.085em;
}

h1 span,
h2 span {
  background: linear-gradient(100deg, var(--cyan), var(--blue), var(--purple), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sub {
  max-width: 650px;
  color: #d7d7e6;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 22px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: #030305;
  background: linear-gradient(100deg, var(--cyan), var(--blue), var(--purple));
  box-shadow: 0 18px 48px rgba(21, 244, 207, 0.16), 0 18px 48px rgba(154, 61, 255, 0.18);
}

.btn.secondary {
  background: rgba(255,255,255,0.08);
}

.contract-box {
  display: inline-flex;
  max-width: 100%;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
}

.contract-box span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.contract-box button {
  max-width: 100%;
  color: var(--text);
  border: 0;
  border-radius: 14px;
  padding: 13px 14px;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  background: rgba(0,0,0,0.42);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

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

.hero-card .glow {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--cyan), var(--blue), var(--purple), var(--cyan));
  filter: blur(56px);
  opacity: 0.36;
  animation: pulse 4s ease-in-out infinite;
}

.hero-card img {
  position: relative;
  width: min(92%, 560px);
  border-radius: 42px;
  filter: drop-shadow(0 36px 70px rgba(0, 0, 0, 0.7));
  animation: float 5s ease-in-out infinite;
}

.ticker-strip {
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
}

.ticker-strip div {
  display: flex;
  gap: 46px;
  width: max-content;
  padding: 18px 0;
  animation: marquee 24s linear infinite;
}

.ticker-strip span {
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.82);
  font-size: 22px;
  white-space: nowrap;
}

.section {
  padding: 110px 5vw;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

h2 {
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.story-card,
.meme-cards article,
.supply-card,
.allocation,
.timeline article,
.cta {
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.105), rgba(255,255,255,0.045));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-card {
  padding: clamp(26px, 4vw, 48px);
  color: #d9d9e8;
  font-size: 21px;
  line-height: 1.6;
}

.story-card strong {
  color: white;
}

.meme-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-top: 30px;
}

.meme-cards article {
  padding: 30px;
}

.meme-cards span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--cyan);
  font-weight: 1000;
}

.meme-cards h3,
.timeline h3 {
  margin-bottom: 12px;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.meme-cards p,
.timeline p,
.section-head p,
.supply-card p,
.cta p,
.disclaimer p {
  color: var(--muted);
  line-height: 1.6;
}

.section-head {
  max-width: 820px;
  margin-bottom: 36px;
}

.token-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 22px;
}

.supply-card {
  padding: 32px;
}

.supply-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.supply-card strong {
  display: block;
  margin: 20px 0 12px;
  font-size: clamp(72px, 10vw, 140px);
  line-height: 0.85;
  letter-spacing: -0.1em;
  background: linear-gradient(100deg, var(--cyan), var(--blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.allocation {
  padding: 30px;
}

.bar-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bar-row:last-child {
  border-bottom: 0;
}

.bar-row span {
  font-weight: 800;
}

.bar-row b {
  color: var(--cyan);
}

.bar {
  grid-column: 1 / -1;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

.bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--purple));
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.trust-row span {
  padding: 12px 15px;
  border: 1px solid rgba(21,244,207,0.25);
  border-radius: 999px;
  background: rgba(21,244,207,0.075);
  color: #dffef9;
  font-weight: 900;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline article {
  padding: 26px;
}

.timeline span {
  color: var(--cyan);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 1000;
}

.cta {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(38px, 8vw, 82px);
  background:
    radial-gradient(circle at 20% 0%, rgba(21,244,207,0.20), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(154,61,255,0.25), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.045));
}

.cta h2 {
  margin-bottom: 16px;
}

.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.socials a {
  padding: 13px 18px;
  border-radius: 999px;
  color: white;
  font-weight: 900;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
}

.disclaimer {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 5vw 80px;
  text-align: center;
}

.disclaimer p {
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  background: rgba(0,0,0,0.22);
  font-size: 13px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 5vw;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.08);
}

@keyframes pulse {
  0%, 100% { transform: scale(0.98); opacity: 0.28; }
  50% { transform: scale(1.08); opacity: 0.48; }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-18px) rotate(1deg); }
}

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

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .hero,
  .story-grid,
  .token-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-card {
    min-height: auto;
  }

  .meme-cards,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand span {
    font-size: 15px;
  }

  .hero,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: clamp(52px, 17vw, 78px);
  }

  .meme-cards,
  .timeline {
    grid-template-columns: 1fr;
  }

  .contract-box {
    width: 100%;
  }

  .contract-box button {
    font-size: 12px;
  }
}
