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

:root {
  --bg: #030805;
  --panel: #07140a;
  --line: rgba(57, 255, 20, 0.22);
  --neon: #39ff14;
  --neon-deep: #12c448;
  --cyan: #00d4ff;
  --ink: #e9ffe9;
  --muted: #8fb89a;
  --serif: "Orbitron", "Rajdhani", system-ui, sans-serif;
  --sans: "Rajdhani", system-ui, sans-serif;
  --mono: "Share Tech Mono", ui-monospace, monospace;
  --radius: 18px;
  --gap: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(57, 255, 20, 0.08), transparent 55%),
    var(--bg);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

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

.shell {
  width: min(1080px, calc(100% - 40px));
  margin-inline: auto;
}

.nav {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  padding: 18px 0;
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  justify-self: start;
}

.menu {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 0 16px rgba(57, 255, 20, 0.45);
}

.menu {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu a {
  text-decoration: none;
  color: rgba(233, 255, 233, 0.72);
}

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

.nav-end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.nav-end > a {
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--line);
}

.nav-end > a.is-solid {
  background: var(--neon);
  color: #031006;
  border-color: var(--neon);
  box-shadow: 0 0 18px rgba(57, 255, 20, 0.35);
}

.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(var(--ink), var(--ink)) 10px 13px / 20px 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 10px 19px / 20px 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 10px 25px / 20px 2px no-repeat,
    rgba(3, 8, 5, 0.45);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: stretch;
  color: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 8, 5, 0.58) 0%, rgba(3, 8, 5, 0.08) 22%, transparent 42%, rgba(3, 8, 5, 0.22) 72%, rgba(3, 8, 5, 0.82) 100%);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: center;
  min-height: 100svh;
  padding: 96px 0 56px;
  text-align: center;
}

.hero-copy {
  width: min(720px, 100%);
}

.hero h1:not(.visually-hidden) {
  font-size: clamp(2.6rem, 7vw, 5rem);
  text-shadow: 0 0 28px rgba(57, 255, 20, 0.35);
}

.hero h1 em {
  display: block;
  font-style: normal;
  font-weight: 800;
  color: var(--neon);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 12px;
  text-shadow: 0 0 12px rgba(57, 255, 20, 0.45);
}

.hero h1,
.panel h2 {
  font-family: var(--serif);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.lede,
.body {
  color: var(--muted);
  max-width: 34em;
}

.lede {
  margin: 16px auto 24px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--neon);
  color: #031006;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  box-shadow: 0 0 16px rgba(57, 255, 20, 0.28);
}

.tag.is-ghost,
.btn.is-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  background: var(--neon);
  color: #031006;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(57, 255, 20, 0.3);
}

.btn:hover { filter: brightness(1.08); }
.btn.is-ghost:hover { background: rgba(57, 255, 20, 0.08); }

.panel {
  padding: 88px 0;
  border-top: 1px solid var(--line);
}

.head { margin-bottom: 28px; }

.panel h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.truth-card {
  margin: 0;
  padding: 20px 20px 18px;
  background: #0b1016;
  border: 1px solid rgba(90, 168, 255, 0.28);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 32px rgba(57, 255, 20, 0.08);
  color: #e8eef6;
}

.truth-head {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.truth-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #1a2330;
}

.truth-head b {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.truth-head span {
  color: #8ea0b5;
  font-size: 0.88rem;
}

.truth-badge {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7ec4ff;
  padding: 6px 10px;
  border: 1px solid rgba(126, 196, 255, 0.35);
  border-radius: 999px;
}

.truth-text {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #f3f6fa;
}

.truth-poll {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
}

.truth-poll li {
  padding: 11px 14px;
  border: 1px solid rgba(126, 196, 255, 0.28);
  border-radius: 12px;
  font-weight: 700;
  color: #d7ecff;
  background: rgba(90, 168, 255, 0.06);
}

.truth-open {
  display: inline-flex;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7ec4ff;
  text-decoration: none;
}

.truth-open:hover { color: var(--neon); }

blockquote {
  margin: 28px 0 20px;
  padding-left: 16px;
  border-left: 2px solid var(--neon);
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 600;
  font-style: normal;
  line-height: 1.35;
  color: var(--ink);
}

blockquote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0.08em;
  color: var(--neon);
}

.frame {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.12);
}

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

.meme-wall {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px 18px;
  align-items: start;
}

.print {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px 10px 38px;
  border: 1px solid var(--line);
  background: #0a1a0e;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45), 0 0 24px rgba(57, 255, 20, 0.08);
  cursor: zoom-in;
  transform-origin: center center;
  transition: transform 0.2s ease, z-index 0s;
}

.print::after {
  content: attr(data-cap);
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neon);
  text-align: left;
}

.print img {
  width: 100%;
  display: block;
  background: #031006;
}

.print.sq img { aspect-ratio: 1; object-fit: cover; }
.print.land img { aspect-ratio: 16 / 9; object-fit: cover; }
.print.contain img { object-fit: contain; background: #0a1a0e; }

.span-12 { grid-column: 1 / -1; }
.span-8 { grid-column: span 8; }
.span-6 { grid-column: span 6; }
.span-4 { grid-column: span 4; }
.span-3 { grid-column: span 3; }

.tilt-a { transform: rotate(-1.1deg); }
.tilt-b { transform: rotate(1.6deg); }
.tilt-c { transform: rotate(-1.6deg); }
.tilt-d { transform: rotate(1.2deg); }
.tilt-e { transform: rotate(-0.9deg); }
.tilt-f { transform: rotate(1.8deg); }
.tilt-g { transform: rotate(-0.6deg); }
.tilt-h { transform: rotate(1.4deg); }

.print:hover {
  z-index: 2;
  transform: rotate(0deg) translateY(-6px);
}

.market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  margin-bottom: var(--gap);
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
}

.card h2 { margin-bottom: 12px; }

.token-bio {
  max-width: 28em;
  margin-bottom: 18px;
  color: var(--muted);
}

.ca {
  display: block;
  margin-bottom: 18px;
  font-family: var(--mono);
  word-break: break-all;
  color: var(--neon);
}

.ca.is-tba {
  font-family: var(--serif);
  font-size: 2.8rem;
  letter-spacing: 0.14em;
}

.toast {
  min-height: 1.2rem;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--neon);
  opacity: 0;
}

.toast.show { opacity: 1; }

.steps {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: center;
  color: var(--muted);
}

.steps b {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--neon);
}

.chart-card { padding: 28px; }

.chart-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 18px;
}

.chart-head h2 { margin: 0; }

.text-link {
  color: var(--neon);
  font-family: var(--mono);
  font-size: 0.78rem;
  text-decoration: none;
  white-space: nowrap;
}

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

.chart-frame iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
}

.chart-frame.is-tba {
  min-height: 220px;
  display: grid;
  place-items: center;
}

.chart-tba { text-align: center; }
.chart-tba span {
  display: block;
  font-family: var(--mono);
  letter-spacing: 0.14em;
  color: var(--neon);
  font-size: 0.72rem;
}
.chart-tba strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
}

.foot {
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
}

.foot-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px 24px;
  align-items: center;
}

.foot p {
  color: var(--muted);
  font-size: 0.85rem;
}

.foot nav { display: flex; gap: 16px; }
.foot nav a {
  font-weight: 700;
  text-decoration: none;
  color: var(--neon);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lightbox {
  position: relative;
  width: min(92vw, 920px);
  border: 0;
  padding: 0;
  background: transparent;
}

.lightbox::backdrop { background: rgba(2, 8, 4, 0.88); }

.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.2);
}

.lightbox-close {
  position: absolute;
  top: -2.2rem;
  right: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neon);
}

.social-official {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  margin-bottom: 18px;
}

.soc-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-decoration: none;
}

.soc-card img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.35);
}

.soc-card b { display: block; }
.soc-card span { color: var(--muted); font-size: 0.85rem; }
.soc-card em {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #031006;
  background: var(--neon);
  padding: 6px 12px;
  border-radius: 999px;
}

.embed-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--gap);
  align-items: start;
}

.embed-stage {
  min-width: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
}

.embed-bar {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--neon);
}

.embed-bar a { color: var(--muted); text-decoration: none; }

.post-card {
  background: #041208;
  border-radius: 12px;
  padding: 16px;
  text-align: left;
}

.post-card header { margin-bottom: 8px; }
.post-card header span { color: var(--muted); font-size: 0.85rem; margin-left: 6px; }
.post-card p { margin-bottom: 12px; color: var(--ink); }
.post-card a {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--neon);
  text-decoration: none;
}

.market .actions { justify-content: flex-start; }

@media (prefers-reduced-motion: reduce) {
  .print { transform: none; transition: none; }
}

@media (max-width: 900px) {
  .nav-inner { grid-template-columns: 1fr auto; }
  .menu-btn { display: block; }
  .menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    background: #06140a;
    border: 1px solid var(--line);
    border-radius: 16px;
  }
  .menu.open { display: flex; }
  .menu a { padding: 12px 16px; }
  .nav-end > a { display: none; }
  .hero-grid {
    padding: 88px 0 40px;
  }
  .split,
  .market-grid,
  .foot-inner,
  .chart-head,
  .social-official,
  .embed-grid {
    grid-template-columns: 1fr;
  }
  .meme-wall { grid-template-columns: 1fr 1fr; gap: 16px; }
  .span-12,
  .span-8,
  .span-6,
  .span-4,
  .span-3 { grid-column: span 1; }
  .print.land { grid-column: 1 / -1; }
  .print { transform: none; }
  .panel { padding: 64px 0; }
}

@media (max-width: 560px) {
  .meme-wall { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.6rem; }
  .lede { font-size: 1.02rem; }
}
