:root {
  --bg: #11121b;
  --bg-2: #171724;
  --panel: rgba(255,255,255,.055);
  --panel-strong: rgba(255,255,255,.085);
  --text: #f4f2ee;
  --muted: #b8b5bd;
  --line: rgba(255,255,255,.12);
  --gold: #d7a25f;
  --gold-2: #f0c584;
  --purple: #262152;
  --radius: 26px;
  --shadow: 0 28px 90px rgba(0,0,0,.36);
  --wrap: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.wrap { width: var(--wrap); margin-inline: auto; }

.page-noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 99; opacity: .035;
  background-image: radial-gradient(circle at 20% 20%, #fff 0 1px, transparent 1.5px);
  background-size: 8px 8px;
  mix-blend-mode: soft-light;
}

.site-header {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%); z-index: 50;
  width: min(1180px, calc(100vw - 28px)); height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 14px 0 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(15,16,26,.74);
  backdrop-filter: blur(18px) saturate(130%);
  box-shadow: 0 10px 40px rgba(0,0,0,.22);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 850; letter-spacing: -.03em; }
.brand img { border-radius: 11px; }
.brand span { font-size: 1.08rem; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a { padding: 10px 12px; border-radius: 10px; color: var(--muted); font-size: .92rem; }
.main-nav a:hover { color: var(--text); background: rgba(255,255,255,.06); }
.main-nav .nav-buy { background: var(--text); color: #11121b; font-weight: 850; padding-inline: 18px; }
.nav-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; color: white; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: currentColor; margin: 5px auto; transition: .2s; }

.hero { min-height: 790px; position: relative; display: grid; align-items: center; overflow: hidden; }
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,11,18,.08) 0%, rgba(10,11,18,.15) 35%, rgba(10,11,18,.70) 72%, rgba(10,11,18,.96) 100%); }
.hero-content { position: relative; z-index: 2; padding-top: 90px; }
.hero-content > * { max-width: 630px; margin-left: auto; }
.eyebrow { color: var(--gold-2); font-size: .76rem; letter-spacing: .22em; font-weight: 900; margin: 0 0 16px; }
h1, h2, h3 { margin: 0; line-height: .98; letter-spacing: -.055em; }
h1 { font-size: clamp(3.8rem, 7vw, 7rem); max-width: 690px; }
h1 span { color: var(--gold-2); }
h2 { font-size: clamp(2.5rem, 5vw, 5.2rem); }
h3 { font-size: 1.28rem; letter-spacing: -.03em; }
.hero-copy { margin-top: 22px; color: #d5d1d7; font-size: clamp(1rem, 1.6vw, 1.18rem); max-width: 570px; }
.hero-actions, .mini-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.button {
  min-height: 48px; border-radius: 13px; border: 1px solid transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 0 18px; font-weight: 900; letter-spacing: .02em; cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, opacity .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold-2); color: #15141a; box-shadow: 0 10px 30px rgba(215,162,95,.22); }
.button-secondary { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: var(--text); }
.button-secondary:hover { background: rgba(255,255,255,.12); }
.button-ghost { background: transparent; border-color: rgba(255,255,255,.16); color: var(--text); }
.platform-icon { width: 22px; height: 22px; object-fit: contain; flex: 0 0 auto; }
/* Intentionally no filter/invert/hue-rotate on Pump or FOMO icons. */
.dex-dot { width: 7px; height: 7px; border-radius: 50%; background: #777; box-shadow: 0 0 0 4px rgba(255,255,255,.04); }
.js-dex.is-ready .dex-dot { background: #8ed18a; }
.js-dex[aria-disabled="true"] { cursor: default; opacity: .62; }
.ca-row { margin-top: 20px; display: inline-flex; align-items: center; gap: 10px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.12); background: rgba(12,12,18,.48); border-radius: 12px; max-width: 100%; }
.ca-row > span { color: var(--gold-2); font-weight: 900; font-size: .78rem; }
.ca-row code { color: #d8d4dc; font-size: .8rem; max-width: min(430px, 50vw); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.copy-ca { border: 0; background: rgba(255,255,255,.08); color: white; border-radius: 8px; padding: 6px 8px; font-size: .72rem; font-weight: 850; cursor: pointer; }

.section { padding: 120px 0; border-top: 1px solid rgba(255,255,255,.07); }
.section:nth-of-type(even) { background: #14151f; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(46px, 7vw, 100px); align-items: center; }
.section-copy p:not(.eyebrow) { color: var(--muted); max-width: 600px; font-size: 1.04rem; }
.section-copy .muted { opacity: .78; }
.media-card, .wide-media { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--panel); border: 1px solid rgba(255,255,255,.09); box-shadow: var(--shadow); }
.media-card img { width: 100%; aspect-ratio: 7/5; object-fit: cover; }
.section-heading { max-width: 780px; margin-bottom: 54px; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 20px; }
.feature-card { min-height: 250px; padding: 26px; background: var(--panel); border: 1px solid var(--line); border-radius: 20px; }
.feature-card p { color: var(--muted); margin: 15px 0 0; }
.feature-index { color: var(--gold-2); font-size: .76rem; font-weight: 900; letter-spacing: .12em; margin-bottom: 55px; }
.wide-media img { width: 100%; aspect-ratio: 14/6; object-fit: cover; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--gold-2); font-weight: 850; }
.text-link span { transition: transform .18s ease; }
.text-link:hover span { transform: translate(3px,-3px); }
.status-card { margin-top: 28px; border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; background: var(--panel); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.status-label { color: var(--muted); font-size: .82rem; }
.js-dex-status { font-size: .9rem; text-align: right; }
.roadmap-list { margin-top: 32px; display: grid; gap: 12px; }
.roadmap-list > div { display: grid; grid-template-columns: 52px 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.roadmap-list span { color: var(--gold-2); font-weight: 900; }
.roadmap-list p { margin: 0 !important; }
.roadmap-list strong { color: var(--text); }

.final-cta { min-height: 620px; position: relative; display: grid; align-items: center; overflow: hidden; border-top: 1px solid var(--line); }
.final-cta-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.final-cta-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,11,18,.12), rgba(10,11,18,.62) 58%, rgba(10,11,18,.93)); }
.final-cta-content { position: relative; z-index: 2; }
.final-cta-content > * { max-width: 650px; margin-left: auto; }
.final-cta-content p:not(.eyebrow) { color: var(--muted); }

.site-footer { border-top: 1px solid var(--line); background: #0e0f16; padding: 28px 0; }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; }
.footer-grid p { margin: 0; text-align: center; color: #8f8c96; font-size: .84rem; }
.footer-grid > a:last-child { color: var(--gold-2); font-weight: 850; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  :root { --wrap: min(100% - 32px, 720px); }
  .main-nav { position: absolute; top: 70px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; padding: 10px; border: 1px solid var(--line); border-radius: 16px; background: rgba(15,16,26,.97); box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px; }
  .nav-toggle { display: block; }
  .split-grid { grid-template-columns: 1fr; gap: 38px; }
  .reverse-mobile .media-card { order: 2; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .feature-index { margin-bottom: 30px; }
  .section { padding: 88px 0; }
  .hero { min-height: 860px; align-items: end; }
  .hero-shade { background: linear-gradient(0deg, rgba(10,11,18,.98) 6%, rgba(10,11,18,.76) 42%, rgba(10,11,18,.18) 72%); }
  .hero-content { padding: 0 0 54px; }
  .hero-content > * { margin-left: 0; }
  h1 { font-size: clamp(3.4rem, 16vw, 5.3rem); }
  .media-card img { aspect-ratio: 1.2/1; }
  .final-cta { min-height: 700px; align-items: end; }
  .final-cta-shade { background: linear-gradient(0deg, rgba(10,11,18,.98), rgba(10,11,18,.75) 48%, rgba(10,11,18,.2)); }
  .final-cta-content { padding-bottom: 54px; }
  .final-cta-content > * { margin-left: 0; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

@media (max-width: 520px) {
  .site-header { top: 8px; width: calc(100vw - 16px); }
  .brand span { font-size: 1rem; }
  .hero-actions .button { flex: 1 1 calc(50% - 8px); }
  .ca-row { width: 100%; }
  .ca-row code { flex: 1; max-width: 100%; }
  .section { padding: 76px 0; }
  h2 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .status-card { align-items: flex-start; flex-direction: column; }
  .js-dex-status { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
