*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --void: #000;
  --ink: #050805;
  --panel: #081008;
  --line: #1c3a1c;
  --neon: #39ff14;
  --neon-2: #7cff4a;
  --neon-dim: rgba(57, 255, 20, 0.14);
  --fog: #8aa08a;
  --white: #e9f6e9;
  --display: "Bebas Neue", sans-serif;
  --body: "Outfit", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  background: var(--void);
  color: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.scanlines {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.045;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 2px,
    rgba(0, 0, 0, 0.55) 2px 3px
  );
}

.glow-orb {
  pointer-events: none;
  position: fixed;
  z-index: 0;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}

.glow-orb-a {
  top: -12vw;
  right: -8vw;
  background: #1db800;
}

.glow-orb-b {
  bottom: 10vh;
  left: -16vw;
  background: #0b5c12;
}

.wrap {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.center { text-align: center; }
.neon { color: var(--neon); }

.kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 0.7rem;
}

h1, h2, .display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.92;
  text-transform: uppercase;
}

/* ── Dock ── */
.dock {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 4vw;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.dock-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.iris {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: #000;
  box-shadow: 0 0 18px rgba(57, 255, 20, 0.35);
}

.iris img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.iris-lg {
  width: 112px;
  height: 112px;
}

.dock-name strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.dock-name em {
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--fog);
}

.dock-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.dock-nav a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fog);
}

.dock-nav a:hover {
  color: var(--neon);
}

.icon-link {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white) !important;
}

.icon-link:hover {
  border-color: var(--neon);
  color: var(--neon) !important;
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--neon);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--body);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
}

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

.btn-buy {
  padding: 0.72rem 1.15rem;
  background: var(--neon);
  color: #041204 !important;
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.28);
  font-size: 0.78rem;
}

.btn-ghost {
  padding: 0.72rem 1.15rem;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line);
  font-size: 0.78rem;
}

.btn-ghost:hover {
  border-color: var(--neon);
  color: var(--neon);
}

.btn-xl {
  padding: 1rem 1.6rem;
  font-size: 0.88rem;
}

/* ── Billboard ── */
.billboard {
  position: relative;
  z-index: 1;
  height: min(62vh, 720px);
  min-height: 280px;
  background: #000;
  overflow: visible;
}

.billboard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.billboard-shade {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to top, #000, transparent);
  pointer-events: none;
}

.billboard-seal {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 3;
}

/* ── Deck ── */
.deck {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2.5rem;
  align-items: end;
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 5.5rem 0 3.2rem;
}

.deck h1 {
  font-size: clamp(3.1rem, 8vw, 6.4rem);
  margin-bottom: 1rem;
}

.lede {
  max-width: 58ch;
  color: rgba(233, 246, 233, 0.78);
  font-size: 1.08rem;
}

.lede strong {
  color: var(--neon-2);
}

.deck-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

/* ── Ticker ── */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #061006;
  padding: 0.7rem 0;
}

.ticker-track {
  display: flex;
  gap: 1.6rem;
  white-space: nowrap;
  animation: tick 26s linear infinite;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.18em;
  color: var(--neon);
}

.ticker .dot { color: #2a5a2a; }

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

/* ── Signal ── */
.signal {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 4.5rem;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(57, 255, 20, 0.08), transparent 50%),
    var(--ink);
}

.signal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.signal h2,
.lore h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  margin-bottom: 1.15rem;
}

.signal p,
.lore-copy p,
.pair-card p {
  color: rgba(233, 246, 233, 0.78);
  margin-bottom: 0.9rem;
  font-size: 1.05rem;
}

.signal p strong,
.lore-copy p strong {
  color: var(--neon-2);
}

/* ── Tweet ── */
.tweet-card {
  display: block;
  text-decoration: none;
  background: #050505;
  border: 1px solid #222;
  border-radius: 18px;
  padding: 1.1rem 1.15rem 0.95rem;
  color: #e7e9ea;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-shadow: 0 0 0 1px rgba(57, 255, 20, 0.12), 0 24px 60px rgba(0, 0, 0, 0.45);
  transition: border-color 0.2s, transform 0.2s;
}

.tweet-card:hover {
  border-color: var(--neon);
  transform: translateY(-3px);
}

.tweet-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
  color: #71767b;
  font-size: 0.8rem;
  font-weight: 600;
}

.tweet-bar span { color: var(--neon); }

.tweet-reply {
  color: #71767b;
  font-size: 0.88rem;
  margin-bottom: 0.85rem;
}

.tweet-reply em {
  font-style: normal;
  color: #1d9bf0;
}

.tweet-user {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 0.7rem;
}

.tweet-user img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #202327;
}

.tweet-name {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.tweet-handle {
  color: #71767b;
  font-size: 0.88rem;
}

.tweet-text {
  font-size: 2.4rem;
  line-height: 1.15;
  margin: 0.35rem 0 0.9rem;
}

.tweet-meta {
  color: #71767b;
  font-size: 0.9rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #2f3336;
}

.tweet-meta strong { color: #e7e9ea; }

.tweet-stats {
  display: flex;
  gap: 1.1rem;
  list-style: none;
  padding-top: 0.8rem;
  color: #71767b;
  font-size: 0.88rem;
}

.tweet-stats strong {
  color: #e7e9ea;
  margin-right: 0.15rem;
}

/* ── Thesis ── */
.thesis {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  background: #000;
  border-top: 1px solid var(--line);
}

.display {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: 0.85rem;
}

.sub {
  color: var(--fog);
  margin: 0 auto 2.4rem;
  max-width: 58ch;
}

.pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.pair-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1.6rem 1.4rem;
}

.pair-card-hot {
  border-color: var(--neon);
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.08);
}

.pair-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fog);
  margin-bottom: 0.55rem;
}

.pair-card h3 {
  font-family: var(--display);
  font-size: 2.6rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.7rem;
}

.pair-card-hot h3 { color: var(--neon); }

.pair-card ul {
  list-style: none;
  margin-top: 1rem;
}

.pair-card li {
  padding: 0.45rem 0;
  border-top: 1px solid var(--line);
  color: var(--fog);
  font-size: 0.95rem;
}

.pair-join {
  display: grid;
  place-items: center;
  align-content: center;
  min-width: 88px;
  color: var(--fog);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pair-join strong {
  display: block;
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--neon);
  letter-spacing: 0.12em;
}

/* ── Lore ── */
.lore {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  background:
    linear-gradient(180deg, #000 0%, #071007 100%);
  border-top: 1px solid var(--line);
}

.lore-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.2rem;
  align-items: center;
}

.lore-visual {
  position: relative;
  border: 1px solid var(--line);
  background: #000;
  overflow: hidden;
}

.lore-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(57, 255, 20, 0.12);
}

.lore-visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.08);
}

.marks {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  margin-top: 1.8rem;
}

.marks li {
  min-width: 72px;
  border-top: 2px solid var(--neon);
  padding-top: 0.7rem;
}

.marks span {
  display: block;
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--white);
}

.marks small {
  color: var(--fog);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

/* ── Memes ── */
.memes {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  background: #000;
  border-top: 1px solid var(--line);
}

.meme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.meme {
  padding: 0;
  border: 1px solid var(--line);
  background: #000;
  cursor: pointer;
  overflow: hidden;
}

.meme:hover,
.meme:focus-visible {
  border-color: var(--neon);
  outline: none;
}

.meme img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1.25rem 1.25rem;
  background: rgba(0, 0, 0, 0.92);
  cursor: pointer;
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: min(920px, 94vw);
  max-height: 86vh;
  object-fit: contain;
  border: 1px solid var(--line);
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #0a100a;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

/* ── CA / Chart / Buy ── */
.ca,
.chart,
.buy {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0;
  border-top: 1px solid var(--line);
}

.ca { background: var(--ink); }
.chart { background: #000; }
.buy { background: linear-gradient(180deg, #000, #071007); }

.ca-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 780px;
  margin: 0 auto;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  background: #050805;
}

.ca-box code {
  flex: 1;
  font-family: var(--mono);
  font-size: clamp(0.72rem, 2.2vw, 0.95rem);
  word-break: break-all;
  letter-spacing: 0.04em;
  color: var(--neon-2);
}

.toast {
  text-align: center;
  min-height: 1.25rem;
  margin-top: 0.7rem;
  color: var(--neon);
  opacity: 0;
  transition: opacity 0.25s;
}

.toast.show { opacity: 1; }

.chart-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  min-height: 500px;
}

.dexscreener-embed {
  width: 100%;
  height: 560px;
  border: 0;
  display: block;
}

.dexscreener-embed.hidden,
.chart-placeholder.hidden {
  display: none;
}

.chart-placeholder {
  display: grid;
  place-items: center;
  min-height: 500px;
  color: var(--fog);
  font-family: var(--mono);
  text-align: center;
  padding: 2rem;
}

.chart-link {
  display: block;
  text-align: center;
  margin-top: 1.1rem;
  color: var(--neon);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin-bottom: 2.4rem;
}

.steps article {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 1.4rem 1.1rem;
}

.steps span {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  color: var(--neon);
  margin-bottom: 0.35rem;
}

.steps h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.steps p {
  color: var(--fog);
  font-size: 0.92rem;
}

.buy-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ── Footer ── */
.foot {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 2.4rem 0 2rem;
  background: #000;
}

.foot-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.foot-brand strong {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

.foot-brand span {
  color: var(--fog);
  font-size: 0.85rem;
}

.disclaimer {
  max-width: 62ch;
  color: #4d644d;
  font-size: 0.75rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .deck,
  .signal-grid,
  .lore-grid,
  .pair,
  .steps {
    grid-template-columns: 1fr;
  }

  .deck-actions,
  .pair-join {
    justify-content: flex-start;
  }

  .pair-join {
    min-height: auto;
    padding: 0.4rem 0;
  }

  .billboard {
    height: 42vh;
  }

  .iris-lg {
    width: 88px;
    height: 88px;
  }

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

@media (max-width: 760px) {
  .menu-btn { display: flex; }

  .dock-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 1.3rem 1.5rem;
    background: rgba(0, 0, 0, 0.96);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s;
  }

  .dock-nav.open {
    transform: none;
    opacity: 1;
    pointer-events: all;
  }

  .ca-box {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .meme-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .tweet-text {
    font-size: 1.8rem;
  }
}
