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

:root {
  --green: #1cff6a;
  --green-bright: #39ff14;
  --green-dim: #0d8f3d;
  --forest: #04140c;
  --forest-deep: #020805;
  --gold: #f5d76e;
  --gold-bright: #ffcc33;
  --orange: #ff9a1f;
  --cyan: #00d4ff;
  --ink: #e8ffe8;
  --ink-soft: #8fbf9a;
  --white: #f4fff6;
  --cream: #f5e6be;
  --surface: #0c1a12;
  --rail: 92px;
  --font-display: "Oswald", "Outfit", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-mono: "Share Tech Mono", ui-monospace, monospace;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #020805;
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

.paw-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 70;
  overflow: hidden;
}

.paw-stamp {
  position: absolute;
  width: var(--paw-size, 42px);
  height: var(--paw-size, 42px);
  margin: calc(var(--paw-size, 42px) / -2) 0 0 calc(var(--paw-size, 42px) / -2);
  color: var(--green-bright);
  filter: drop-shadow(0 0 8px rgba(28, 255, 106, 0.45));
  transform: translate(var(--x, 0), var(--y, 0)) rotate(var(--rot, 0deg)) scale(0.4);
  animation: paw-press var(--paw-life, 1.4s) ease-out forwards;
}

.paw-stamp.is-walk {
  color: rgba(28, 255, 106, 0.72);
  animation-name: paw-walk-fade;
}

.paw-stamp svg { width: 100%; height: 100%; display: block; }

@keyframes paw-press {
  0% { opacity: 0; transform: translate(var(--x, 0), var(--y, 0)) rotate(var(--rot, 0deg)) scale(0.35); }
  16% { opacity: 0.95; transform: translate(var(--x, 0), var(--y, 0)) rotate(var(--rot, 0deg)) scale(1.1); }
  42% { opacity: 0.82; transform: translate(var(--x, 0), var(--y, 0)) rotate(var(--rot, 0deg)) scale(1); }
  100% { opacity: 0; transform: translate(var(--x, 0), var(--y, 0)) rotate(calc(var(--rot, 0deg) + 8deg)) scale(0.88); }
}

@keyframes paw-walk-fade {
  0% { opacity: 0; transform: translate(var(--x, 0), var(--y, 0)) rotate(var(--rot, 0deg)) scale(0.5); }
  12% { opacity: 0.7; transform: translate(var(--x, 0), var(--y, 0)) rotate(var(--rot, 0deg)) scale(1); }
  70% { opacity: 0.45; transform: translate(var(--x, 0), var(--y, 0)) rotate(var(--rot, 0deg)) scale(1); }
  100% { opacity: 0; transform: translate(var(--x, 0), var(--y, 0)) rotate(var(--rot, 0deg)) scale(0.92); }
}

@media (prefers-reduced-motion: reduce) {
  .paw-layer { display: none; }
}

.accent { color: var(--gold-bright); }

/* Left market rail */
.rail {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--rail);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  padding: 1.1rem 0.6rem;
  background: #010604;
  border-right: 1px solid rgba(28, 255, 106, 0.22);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--cream);
}

.nav-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green);
  box-shadow: 0 0 16px rgba(28, 255, 106, 0.32);
  background: #021008;
}

.nav-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
  margin-top: auto;
  margin-bottom: auto;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--green-bright); }

.nav-socials {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  writing-mode: horizontal-tb;
  transform: none;
}

.nav-social {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #021008;
  color: var(--green) !important;
  border: 1px solid rgba(28, 255, 106, 0.4);
  writing-mode: horizontal-tb;
  transform: none !important;
}

.nav-social:hover {
  background: var(--green);
  color: var(--forest-deep) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.app {
  margin-left: var(--rail);
}

/* Hero stage: billboard + desk */
.stage {
  display: grid;
  grid-template-columns: 1.55fr 0.95fr;
  min-height: 100vh;
  min-height: 100dvh;
}

.billboard {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}

.billboard-img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  object-fit: cover;
  object-position: 42% center;
  display: block;
  animation: billboardIn 1.1s ease-out both;
}

@keyframes billboardIn {
  from { opacity: 0; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1); }
}

.billboard-scan {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0 3px,
      rgba(0, 0, 0, 0.12) 3px 4px
    ),
    linear-gradient(90deg, rgba(2, 8, 5, 0.28), transparent 18%, transparent 72%, rgba(2, 8, 5, 0.45));
  pointer-events: none;
}

.billboard-corners {
  position: absolute;
  inset: 14px;
  pointer-events: none;
  border: 1px solid rgba(28, 255, 106, 0.28);
  box-shadow: inset 0 0 80px rgba(0, 212, 255, 0.08);
}

.billboard-corners::before,
.billboard-corners::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border: 3px solid var(--green);
}

.billboard-corners::before {
  top: -2px;
  left: -2px;
  border-right: 0;
  border-bottom: 0;
}

.billboard-corners::after {
  right: -2px;
  bottom: -2px;
  border-left: 0;
  border-top: 0;
}

.billboard-meta {
  position: absolute;
  top: 28px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--green);
  text-shadow: 0 0 12px rgba(28, 255, 106, 0.6);
  z-index: 2;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  background: rgba(255, 40, 40, 0.85);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
}

.live-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.billboard-tape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background: rgba(1, 6, 4, 0.82);
  border-top: 1px solid rgba(28, 255, 106, 0.4);
  padding: 0.7rem 0;
  z-index: 2;
}

.tape-track {
  display: flex;
  gap: 1.6rem;
  width: max-content;
  font-family: var(--font-mono);
  letter-spacing: 0.14em;
  color: var(--green);
  animation: marquee 22s linear infinite;
}

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

.desk {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 2.4rem;
  background:
    linear-gradient(180deg, rgba(12, 26, 18, 0.55), rgba(2, 8, 5, 0.92)),
    #07140c;
  border-left: 1px solid rgba(28, 255, 106, 0.18);
}

.desk-kicker {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--green);
  margin-bottom: 0.7rem;
}

.desk-title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7vw, 5.6rem);
  line-height: 0.86;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 28px rgba(255, 204, 51, 0.28);
}

.desk-ticker {
  font-family: var(--font-mono);
  font-size: 1.55rem;
  letter-spacing: 0.18em;
  color: var(--green-bright);
  margin: 0.55rem 0 1.1rem;
  text-shadow: 0 0 16px rgba(28, 255, 106, 0.45);
}

.desk-bio {
  color: var(--ink-soft);
  font-weight: 600;
  max-width: 28em;
  margin-bottom: 1.5rem;
}

.desk-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.desk-stats div {
  padding: 0.7rem 0.75rem;
  border: 1px solid rgba(28, 255, 106, 0.22);
  background: rgba(2, 8, 5, 0.55);
}

.desk-stats dt {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.desk-stats dd {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--cream);
}

.desk-stats .up { color: var(--green-bright); }

.desk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #ffe27a 0%, var(--gold-bright) 42%, var(--orange) 100%);
  color: #0a1408;
  border-color: rgba(255, 246, 216, 0.45);
  box-shadow: 0 8px 28px rgba(255, 154, 31, 0.38);
}

.btn-ghost {
  background: rgba(28, 255, 106, 0.08);
  color: var(--white);
  border-color: rgba(28, 255, 106, 0.42);
}

.btn-ghost:hover { background: rgba(28, 255, 106, 0.2); }

.btn-copy {
  background: linear-gradient(135deg, var(--gold-bright), var(--orange));
  color: #0a1408;
  flex-shrink: 0;
}

.btn-copy.copied {
  background: var(--green);
  color: var(--forest-deep);
}

/* Content */
main {
  display: grid;
  gap: 1.1rem;
  padding: 1.1rem;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(0, 212, 255, 0.08), transparent 40%),
    #020805;
}

.section-label {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: var(--green);
  margin-bottom: 0.55rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.85rem;
}

.section-text {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin-bottom: 0.85rem;
  max-width: 38em;
}

.section-text strong { color: var(--gold-bright); }

.about {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.4rem 2.2rem;
  background: rgba(12, 26, 18, 0.55);
  border: 1px solid rgba(28, 255, 106, 0.16);
  border-radius: 28px;
}

.about-portrait {
  margin: 0;
  display: grid;
  place-items: center;
}

.about-portrait img {
  width: min(100%, 320px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--green);
  box-shadow:
    0 0 0 12px rgba(28, 255, 106, 0.12),
    0 0 48px rgba(0, 212, 255, 0.22),
    var(--shadow);
  background: #021008;
}

.about-copy .section-title {
  margin-bottom: 1.1rem;
}

.about-quote {
  margin: 0.4rem 0 1.3rem;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: var(--gold);
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
}

.about-chips li {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--green);
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(28, 255, 106, 0.35);
  border-radius: 999px;
  background: rgba(28, 255, 106, 0.06);
}

.call {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.4rem;
  align-items: center;
  padding: 1.2rem;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(0, 212, 255, 0.1), transparent 46%),
    rgba(12, 26, 18, 0.72);
  border: 1px solid rgba(28, 255, 106, 0.18);
  border-radius: 22px;
}

.call-copy { padding: 1.2rem 1rem 1.2rem 1.3rem; }

.story-link {
  display: inline-block;
  margin-top: 0.35rem;
  font-weight: 800;
  color: var(--green);
  text-decoration: none;
  border-bottom: 2px solid var(--green-dim);
}

.story-link:hover { color: var(--cream); }

.embed-stage {
  min-width: 0;
  padding: 0.75rem;
  overflow: hidden;
  background: linear-gradient(180deg, #0c1a12 0%, #07140c 100%);
  border: 1px solid rgba(28, 255, 106, 0.35);
  border-radius: 20px;
  box-shadow: var(--shadow), 0 0 28px rgba(28, 255, 106, 0.08);
}

.embed-stage-bar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.25rem 0.55rem 0.8rem;
}

.embed-stage-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 0 4px rgba(255, 246, 216, 0.12);
}

.embed-stage-label {
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.embed-stage-link {
  margin-left: auto;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--green);
  text-decoration: none;
}

.embed-stage-link:hover { color: var(--cream); }

.social-card {
  background: #0f1419;
  border: 1px solid #2f3336;
  border-radius: 16px;
  padding: 1.15rem 1.2rem 1.1rem;
  color: #e7e9ea;
  text-align: left;
}

.social-card-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.social-card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-bright), var(--orange));
  color: #0a1408;
}

.social-card-who {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.25;
}

.social-card-who strong { font-size: 0.96rem; font-weight: 800; }
.social-card-who span { font-size: 0.86rem; color: #8b98a5; font-weight: 600; }

.social-card-logo {
  margin-left: auto;
  color: #e7e9ea;
  flex-shrink: 0;
}

.social-card-body {
  font-size: 1.35rem;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.social-card-media {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #2f3336;
  margin-bottom: 0.85rem;
  background: #000;
}

.social-card-meta {
  font-size: 0.88rem;
  color: #8b98a5;
  font-weight: 600;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid #2f3336;
  margin-bottom: 0.8rem;
}

.social-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.7rem;
  border-radius: 999px;
  background: #e7e9ea;
  color: #0f1419;
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
}

.social-card-cta:hover { background: var(--gold-bright); }

.embed-frame {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  border-radius: 16px;
}

.embed-stage.is-embedded .social-card { display: none; }

.embed-stage.is-embedded .embed-frame {
  height: auto;
  min-height: 0;
  overflow: visible;
  visibility: visible;
}

.embed-frame .twitter-tweet,
.embed-frame iframe,
.embed-frame twitter-widget {
  margin: 0 auto !important;
}

blockquote.twitter-tweet { display: none; }

.board {
  padding: 0.4rem 0.2rem 0.2rem;
}

.board-head { margin-bottom: 1rem; }

.board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.board-card {
  padding: 1.35rem 1.2rem;
  background: rgba(12, 26, 18, 0.86);
  border: 1px solid rgba(28, 255, 106, 0.18);
  border-radius: 18px;
  min-height: 190px;
}

.board-card span {
  font-family: var(--font-mono);
  color: var(--green);
  display: block;
  margin-bottom: 0.55rem;
}

.board-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.board-card p { color: var(--ink-soft); font-size: 0.95rem; }

.memes {
  padding: 1.6rem 1.4rem 1.8rem;
  background: rgba(12, 26, 18, 0.45);
  border: 1px solid rgba(28, 255, 106, 0.16);
  border-radius: 28px;
}

.memes-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 1.2rem;
}

.memes-head .section-title { margin-bottom: 0; }

.meme-stage {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 0.9rem;
  align-items: stretch;
}

.meme-stack {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 0.9rem;
  min-height: 0;
}

.meme-card {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(28, 255, 106, 0.22);
  background: #010604;
  height: 100%;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.meme-card:hover {
  transform: translateY(-3px);
  border-color: rgba(28, 255, 106, 0.55);
  box-shadow: 0 0 28px rgba(28, 255, 106, 0.18);
}

.meme-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meme-featured {
  min-height: 560px;
}

.meme-featured img {
  object-position: 45% center;
}

.archive {
  padding: 1.8rem 1.3rem 2rem;
  background: rgba(12, 26, 18, 0.45);
  border: 1px solid rgba(28, 255, 106, 0.16);
  border-radius: 28px;
}

.archive-head {
  text-align: center;
  margin-bottom: 1.4rem;
}

.archive-head .section-title em {
  font-style: italic;
  color: var(--gold);
  text-transform: none;
  font-family: var(--font-display);
}

.archive-sub {
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 0.35rem;
}

.archive-wall {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  position: relative;
}

.archive-wall::after {
  content: "";
  position: absolute;
  inset: -8%;
  pointer-events: none;
  background: radial-gradient(circle at 50% 48%, transparent 18%, rgba(2, 8, 5, 0.55) 72%);
  z-index: 1;
}

.archive-tile {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(28, 255, 106, 0.12);
  background: #010604;
  filter: grayscale(0.35) brightness(0.72);
  transition: transform 0.2s, filter 0.2s, border-color 0.2s;
}

.archive-tile img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.archive-tile:hover {
  filter: none;
  transform: scale(1.04);
  border-color: rgba(28, 255, 106, 0.4);
  z-index: 2;
}

.archive-hero {
  grid-column: 3 / span 4;
  grid-row: 2 / span 3;
  margin: 0;
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: 0.55rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 40%, rgba(28, 255, 106, 0.22), transparent 62%),
    #020805;
  border: 3px solid var(--green);
  box-shadow:
    0 0 0 10px rgba(28, 255, 106, 0.12),
    0 0 60px rgba(255, 204, 51, 0.28),
    0 24px 60px rgba(0, 0, 0, 0.55);
}

.archive-hero img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--gold-bright);
  box-shadow: 0 0 40px rgba(255, 204, 51, 0.35);
}

.archive-hero figcaption {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  letter-spacing: 0.22em;
  font-size: clamp(0.9rem, 2vw, 1.35rem);
  color: var(--gold);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}

.terminal-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.1rem;
}

.ca-panel,
.buy-panel {
  padding: 2rem 1.7rem;
  background: rgba(12, 26, 18, 0.86);
  border: 1px solid rgba(28, 255, 106, 0.18);
  border-radius: 22px;
}

.ca-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.6rem;
  padding: 1rem;
  background: #020805;
  border: 1px solid rgba(28, 255, 106, 0.32);
  border-radius: 14px;
}

.ca-address {
  flex: 1;
  font-size: clamp(0.72rem, 2vw, 0.95rem);
  word-break: break-all;
  color: var(--cream);
  font-weight: 700;
}

.ca-address.is-tba {
  font-family: var(--font-mono);
  font-size: clamp(1.4rem, 3.4vw, 2rem);
  letter-spacing: 0.18em;
  text-align: center;
  color: var(--green);
}

.copy-toast {
  min-height: 1.4rem;
  margin-top: 0.7rem;
  font-weight: 700;
  color: var(--green);
  opacity: 0;
  transition: opacity 0.25s;
}

.copy-toast.show { opacity: 1; }

.buy-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin: 0.4rem 0 1.3rem;
  color: var(--ink-soft);
}

.buy-list strong {
  font-family: var(--font-mono);
  color: var(--green);
  margin-right: 0.4rem;
}

.chart-dock {
  padding: 1.6rem;
  background: rgba(12, 26, 18, 0.86);
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 22px;
}

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

.chart-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.28);
  background: #020805;
  min-height: 480px;
}

.chart-wrapper.is-tba {
  min-height: 260px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(28, 255, 106, 0.16), transparent 58%),
    #020805;
}

.chart-tba { text-align: center; color: var(--cream); padding: 3rem 1.5rem; }

.chart-tba-kicker {
  display: block;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.chart-tba strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  letter-spacing: 0.16em;
  color: var(--green);
}

.chart-tba p { color: rgba(232, 255, 232, 0.75); font-weight: 600; }

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

.chart-link {
  font-weight: 800;
  color: var(--cyan);
  text-decoration: none;
  white-space: nowrap;
}

.chart-link:hover { color: var(--cream); }

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.6rem 1.4rem 2rem;
  border-top: 1px solid rgba(28, 255, 106, 0.18);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand span {
  font-size: 0.82rem;
  font-family: var(--font-mono);
  opacity: 0.8;
}

.footer-disclaimer {
  max-width: 38em;
  font-size: 0.78rem;
  opacity: 0.7;
  text-align: right;
}

@media (max-width: 1100px) {
  .stage { grid-template-columns: 1fr; }
  .billboard-img { min-height: 62vh; }
  .board-grid { grid-template-columns: 1fr 1fr; }
  .about {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.6rem;
    padding: 1.8rem 1.3rem;
  }
  .about-quote { border-left: 0; padding-left: 0; }
  .about-chips { justify-content: center; }
  .about .section-text { margin-inline: auto; }
  .meme-stage { grid-template-columns: 1fr; }
  .meme-featured { min-height: 380px; }
  .meme-stack { grid-template-rows: none; grid-template-columns: repeat(3, 1fr); }
  .archive-wall { grid-template-columns: repeat(6, 1fr); }
  .archive-hero {
    grid-column: 2 / span 4;
    grid-row: 2 / span 3;
  }
  .terminal-row { grid-template-columns: 1fr; }
  .call { grid-template-columns: 1fr; }
  .call-copy { padding: 0.4rem 0.4rem 0; }
  .footer { flex-direction: column; text-align: center; }
  .footer-disclaimer { text-align: center; }
}

@media (max-width: 820px) {
  :root { --rail: 0px; }

  .rail {
    width: 100%;
    height: 68px;
    bottom: auto;
    flex-direction: row;
    justify-content: space-between;
    padding: 0.55rem 0.9rem;
    border-right: 0;
    border-bottom: 1px solid rgba(28, 255, 106, 0.22);
  }

  .nav-brand { flex-direction: row; }
  .nav-title { writing-mode: horizontal-tb; transform: none; font-size: 1.15rem; }
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: auto;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(2, 8, 5, 0.97);
    padding: 0.4rem 0 1rem;
    border-bottom: 1px solid rgba(28, 255, 106, 0.22);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    writing-mode: horizontal-tb;
    transform: none;
    display: block;
    padding: 0.85rem 1.4rem;
    font-size: 0.92rem;
  }

  .nav-socials {
    flex-direction: row;
    justify-content: center;
    padding: 0.75rem;
  }

  .app { margin-left: 0; padding-top: 68px; }
  .desk { padding: 2rem 1.3rem 2.4rem; }
  .board-grid { grid-template-columns: 1fr; }
  .meme-stack { grid-template-columns: 1fr; }
  .meme-stack .meme-card { min-height: 220px; }
  .meme-featured { min-height: 280px; }
  .archive-wall { grid-template-columns: repeat(3, 1fr); }
  .archive-hero {
    grid-column: 1 / span 3;
    grid-row: 2 / span 2;
  }
  .desk-stats { grid-template-columns: 1fr; }
  .ca-box { flex-direction: column; }
  .chart-head { flex-direction: column; align-items: start; }
  .dexscreener-embed,
  .chart-wrapper { min-height: 420px; height: 420px; }
  .dexscreener-embed { height: 420px; }
}
