:root {
  --bg: #080c10;
  --surface: rgba(13, 17, 23, 0.78);
  --surface-strong: #0d1117;
  --border: #1c2433;
  --text: #eef3fb;
  --muted: #9aa6b8;
  --muted-2: #6f7c91;
  --red: #ff003d;
  --red-2: #ff3358;
  --white: #ffffff;
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.42);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 5%, rgba(255, 0, 61, 0.2), transparent 28rem),
    radial-gradient(circle at 83% 9%, rgba(78, 111, 155, 0.28), transparent 30rem),
    linear-gradient(180deg, #070a0e 0%, #080c10 40%, #05070a 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

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

.orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.23;
  z-index: 0;
  pointer-events: none;
}
.orb-one { width: 360px; height: 360px; background: var(--red); top: 12%; left: -12%; }
.orb-two { width: 420px; height: 420px; background: #4f6d98; right: -12%; top: 32%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: var(--max);
  width: calc(100% - 32px);
  margin: 18px auto 0;
  padding: 12px 14px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 16, 0.74);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.brand img { width: 42px; height: 42px; border-radius: 14px; }
.nav { display: flex; gap: 24px; color: var(--muted); font-size: 0.94rem; }
.nav a { transition: color 0.18s ease; }
.nav a:hover { color: var(--text); }
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(255, 0, 61, 0.25);
}

main, .site-footer { position: relative; z-index: 1; }
.section-pad { padding: 104px 20px; }
.hero {
  max-width: var(--max);
  margin: 0 auto;
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: 54px;
  align-items: center;
  padding-top: 70px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 850;
  font-size: 0.75rem;
  margin-bottom: 18px;
}
.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 24px rgba(255, 0, 61, 0.95);
}
.hero h1, .section-title h2, .token-copy h2, .final-cta h2 {
  margin: 0;
  color: var(--white);
  line-height: 0.92;
  letter-spacing: -0.075em;
}
.hero h1 { font-size: clamp(4.1rem, 10.2vw, 8.8rem); }
.hero h1 em {
  display: inline-block;
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(255, 255, 255, 0.86);
  text-shadow: 0 0 45px rgba(255, 0, 61, 0.18);
}
.hero-lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: #c2cad7;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}
.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.cta-row.center { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary {
  background: linear-gradient(135deg, var(--red), var(--red-2));
  box-shadow: 0 20px 48px rgba(255, 0, 61, 0.26);
}
.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.05);
  color: #dce5f2;
}
.btn.secondary:hover { border-color: rgba(255, 255, 255, 0.22); background: rgba(255, 255, 255, 0.08); }

.contract-card {
  max-width: 620px;
  margin-top: 24px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px 10px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 17, 23, 0.62);
  border-radius: 18px;
}
.contract-card span { color: var(--muted-2); font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.contract-card code { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #dfe7f4; font-size: 0.88rem; }
.contract-card button {
  border: 0;
  border-radius: 13px;
  padding: 10px 13px;
  color: white;
  background: #1c2433;
  cursor: pointer;
  font-weight: 850;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 18px;
}
.mini-stats div {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 16px;
}
.mini-stats strong { display: block; font-size: 2rem; line-height: 1; color: white; }
.mini-stats span { display: block; margin-top: 8px; color: var(--muted); font-size: 0.88rem; }

.hero-art { position: relative; }
.poster-wrap {
  position: relative;
  padding: 10px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.02));
  box-shadow: var(--shadow), 0 0 80px rgba(255, 0, 61, 0.11);
  transform: rotate(1.5deg);
}
.poster {
  border-radius: 26px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.08);
}
.supply-hud {
  position: absolute;
  left: 26px;
  bottom: 26px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(8, 12, 16, 0.76);
  backdrop-filter: blur(12px);
}
.supply-hud span { display: block; color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.13em; font-weight: 850; }
.supply-hud strong { display: block; margin-top: 5px; font-size: 1.34rem; text-transform: uppercase; color: var(--red-2); }

.section-title {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-title.align-left { text-align: left; margin-left: 0; }
.section-title p {
  margin: 0 0 12px;
  color: var(--red-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 900;
  font-size: 0.76rem;
}
.section-title h2, .token-copy h2, .final-cta h2 { font-size: clamp(2.7rem, 6.1vw, 5.4rem); }
.story, .memes, .roadmap, .raid, .final-cta { max-width: var(--max); margin: 0 auto; }
.story-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.glass-card, .meme-card, .timeline-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
}
.card-number, .meme-card span, .timeline-item span {
  display: inline-flex;
  color: var(--red-2);
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.glass-card h3, .meme-card h3, .timeline-item h3 { margin: 18px 0 12px; font-size: 1.55rem; letter-spacing: -0.03em; }
.glass-card p, .meme-card p, .timeline-item p, .token-copy p, .raid-copy p, .final-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.glass-card strong { color: white; }

.tokenomics { max-width: var(--max); margin: 0 auto; }
.token-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 15%, rgba(255, 0, 61, 0.14), transparent 22rem),
    rgba(13, 17, 23, 0.62);
  box-shadow: var(--shadow);
}
.token-copy p { margin-top: 22px; max-width: 620px; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.check-list li { color: #d8e0ed; display: flex; align-items: center; gap: 12px; }
.check-list li::before { content: ""; width: 10px; height: 10px; border-radius: 999px; background: var(--red); box-shadow: 0 0 18px rgba(255, 0, 61, 0.8); flex: 0 0 auto; }
.supply-meter { display: grid; place-items: center; gap: 20px; }
.ring {
  width: min(355px, 75vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--red) 0 96%, rgba(255,255,255,0.18) 96% 100%);
  box-shadow: 0 0 90px rgba(255, 0, 61, 0.22);
  position: relative;
}
.ring::after { content: ""; position: absolute; inset: 22px; border-radius: inherit; background: #080c10; border: 1px solid rgba(255,255,255,0.08); }
.ring-core { position: relative; z-index: 1; text-align: center; }
.ring-core span { display: block; color: white; font-size: 5rem; font-weight: 1000; letter-spacing: -0.08em; }
.ring-core small { color: var(--muted); text-transform: uppercase; letter-spacing: 0.25em; font-weight: 900; }
.meter-labels { display: flex; gap: 18px; color: var(--muted); font-weight: 800; }
.meter-labels div { display: inline-flex; align-items: center; gap: 8px; }
.meter-labels b { width: 10px; height: 10px; border-radius: 50%; display: inline-block; background: var(--red); }
.meter-labels div:nth-child(2) b { background: rgba(255,255,255,0.45); }

.meme-board { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.meme-card { min-height: 230px; display: flex; flex-direction: column; justify-content: space-between; }
.meme-card.big { grid-column: span 2; grid-row: span 2; min-height: 478px; background: radial-gradient(circle at 70% 10%, rgba(255, 0, 61, 0.2), transparent 20rem), linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)); }
.meme-card.wide { grid-column: span 2; }
.meme-card.big h3 { font-size: clamp(2.4rem, 5vw, 4.8rem); line-height: 0.95; }
.meme-card p { font-size: 1.05rem; }
.meme-card strong { color: white; }

.raid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  align-items: start;
}
.raid-list { display: grid; gap: 12px; }
.raid-list button {
  width: 100%;
  text-align: left;
  cursor: pointer;
  color: #f1f5fa;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.045);
  border-radius: 18px;
  padding: 18px 20px;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.raid-list button:hover { transform: translateX(4px); background: rgba(255,255,255,0.075); border-color: rgba(255,255,255,0.18); }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.timeline-item { position: relative; overflow: hidden; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: 26px;
  top: -20px;
  width: 1px;
  height: 72px;
  background: linear-gradient(var(--red), transparent);
}

.final-cta {
  text-align: center;
  padding-top: 76px;
}
.final-cta img { width: 120px; margin: 0 auto 24px; border-radius: 30px; }
.final-cta p { margin-top: 18px; font-size: 1.1rem; }

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 20px 54px;
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 24px;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.site-footer strong { color: white; font-size: 1.2rem; }
.site-footer p { margin: 8px 0 0; line-height: 1.6; }
.disclaimer { font-size: 0.9rem; }

#toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 18px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  padding: 12px 16px;
  border-radius: 999px;
  background: white;
  color: #080c10;
  font-weight: 900;
  box-shadow: var(--shadow);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
#toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 980px) {
  .nav { display: none; }
  .hero, .token-panel, .raid { grid-template-columns: 1fr; }
  .hero { padding-top: 56px; }
  .hero-art { max-width: 620px; margin: 0 auto; }
  .story-grid, .timeline { grid-template-columns: repeat(2, 1fr); }
  .meme-board { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .site-header { width: calc(100% - 22px); margin-top: 11px; }
  .header-cta { display: none; }
  .section-pad { padding: 72px 16px; }
  .hero { gap: 34px; min-height: auto; }
  .hero h1 { font-size: 4rem; }
  .contract-card { grid-template-columns: 1fr auto; }
  .contract-card span { grid-column: 1 / -1; }
  .mini-stats, .story-grid, .timeline, .meme-board { grid-template-columns: 1fr; }
  .meme-card.big, .meme-card.wide { grid-column: auto; grid-row: auto; min-height: 230px; }
  .token-panel { padding: 22px; }
  .ring-core span { font-size: 4rem; }
  .site-footer { grid-template-columns: 1fr; }
}
