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

:root {
  --navy: #070d18;
  --navy-deep: #04070e;
  --navy-mid: #10192b;
  --nyse: #1a3dff;
  --nyse-soft: #6d8cff;
  --marble: #f3ede2;
  --cream: #efe4cf;
  --paper: #faf6ee;
  --gold: #d4b056;
  --gold-bright: #f0d36a;
  --pink: #ff3d8f;
  --pink-hot: #ff2b7a;
  --pink-soft: #ff7ab3;
  --green: #14e38a;
  --green-dim: #0b8f56;
  --red: #ff3d5a;
  --ink: #f6f1e6;
  --ink-soft: #b7b0a0;
  --wood: #8a6a3e;
  --line: rgba(243, 237, 226, 0.12);
  --line-strong: rgba(243, 237, 226, 0.22);
  --nav-h: 76px;
  --tape-h: 36px;
  --font-display: "Instrument Serif", "Times New Roman", serif;
  --font-cond: "Oswald", "Outfit", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

html { scroll-behavior: smooth; }

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

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

.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(--pink);
  filter: drop-shadow(0 0 8px rgba(255, 61, 143, 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(255, 61, 143, 0.7);
  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,
  .grain { display: none; }
  .tape-track { animation: none; }
}

/* Exchange tape */
.tape {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  height: var(--tape-h);
  overflow: hidden;
  background: #0a1220;
  border-bottom: 1px solid rgba(255, 61, 143, 0.28);
}

.tape-track {
  display: flex;
  gap: 1.8rem;
  width: max-content;
  height: 100%;
  align-items: center;
  padding: 0 1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--cream);
  animation: marquee 28s linear infinite;
}

.tape-track .up { color: var(--green); }

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

/* Top nav */
.nav {
  position: sticky;
  top: var(--tape-h);
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: var(--nav-h);
  padding: 0.7rem 1.4rem;
  background: rgba(4, 7, 14, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--marble);
  min-width: 0;
}

.nav-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink);
  box-shadow: 0 0 18px rgba(255, 61, 143, 0.35);
  background: #120818;
}

.nav-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.nav-wordmark strong {
  font-family: var(--font-cond);
  font-size: 1.15rem;
  letter-spacing: 0.14em;
}

.nav-wordmark em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--pink-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-socials { display: flex; }

.nav-social {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #120818;
  color: var(--pink) !important;
  border: 1px solid rgba(255, 61, 143, 0.45);
}

.nav-social:hover {
  background: var(--pink);
  color: #14010a !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(--pink);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--tape-h) - var(--nav-h));
  min-height: calc(100dvh - var(--tape-h) - var(--nav-h));
  display: grid;
  place-items: end start;
}

.hero-billboard {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background: #000;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
  display: block;
  animation: billboardIn 1.15s ease-out both;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 7, 14, 0.18) 0%, rgba(4, 7, 14, 0.08) 32%, rgba(4, 7, 14, 0.72) 100%),
    linear-gradient(90deg, rgba(4, 7, 14, 0.72) 0%, rgba(4, 7, 14, 0.18) 48%, rgba(4, 7, 14, 0.45) 100%);
}

.hero-scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 3px,
    rgba(0, 0, 0, 0.08) 3px 4px
  );
  pointer-events: none;
}

.hero-desk {
  position: relative;
  z-index: 2;
  width: min(560px, calc(100% - 2rem));
  margin: 2rem 1.4rem 2.2rem;
}

.hero-ticket {
  padding: 1.6rem 1.55rem 1.5rem;
  background: linear-gradient(180deg, rgba(10, 16, 28, 0.72), rgba(4, 7, 14, 0.82));
  border: 1px solid rgba(243, 237, 226, 0.18);
  border-radius: 28px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 61, 143, 0.08);
  backdrop-filter: blur(16px);
}

.ticket-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--gold-bright);
}

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

.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; }
}

.hero-kicker {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--pink-soft);
  margin-bottom: 0.55rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 5.6rem);
  line-height: 0.86;
  letter-spacing: -0.02em;
  color: var(--marble);
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.hero-ticker {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  letter-spacing: 0.2em;
  color: var(--pink);
  margin: 0.55rem 0 0.95rem;
  text-shadow: 0 0 18px rgba(255, 61, 143, 0.4);
}

.hero-bio {
  color: var(--ink-soft);
  font-weight: 500;
  max-width: 34em;
  margin-bottom: 1.25rem;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.quote-grid div {
  padding: 0.65rem 0.6rem;
  border: 1px solid var(--line);
  background: rgba(4, 7, 14, 0.45);
}

.quote-grid dt {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.quote-grid dd {
  font-family: var(--font-cond);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--marble);
}

.quote-grid .up,
.board-cell .up,
.desk-stats .up { color: var(--green); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.82rem 1.2rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.9rem;
  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,
.btn-nav {
  background: linear-gradient(135deg, var(--pink-soft) 0%, var(--pink) 48%, #ff8a3d 100%);
  color: #14010a;
  border-color: rgba(255, 246, 232, 0.28);
  box-shadow: 0 8px 28px rgba(255, 61, 143, 0.38);
}

.btn-nav {
  padding: 0.62rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: #14010a !important;
}

.btn-ghost {
  background: rgba(243, 237, 226, 0.06);
  color: var(--marble);
  border-color: rgba(243, 237, 226, 0.28);
}

.btn-ghost:hover { background: rgba(243, 237, 226, 0.14); }

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

.btn-copy.copied {
  background: var(--green);
  color: #04140c;
}

/* Quote strip */
.board-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0a1220;
}

.board-cell {
  padding: 1rem 1.1rem;
  border-right: 1px solid var(--line);
}

.board-cell:last-child { border-right: 0; }

.board-cell span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.25rem;
}

.board-cell strong {
  font-family: var(--font-cond);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--marble);
}

.board-cell .pink { color: var(--pink); }

/* Content */
main {
  display: grid;
  gap: 1.1rem;
  padding: 1.1rem;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(255, 61, 143, 0.1), transparent 36%),
    radial-gradient(ellipse at 90% 10%, rgba(26, 61, 255, 0.12), transparent 34%),
    var(--navy-deep);
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--marble);
  margin-bottom: 0.85rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold-bright);
}

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

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

.section-head { margin-bottom: 1.1rem; }

.floor {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.4rem 2.2rem;
  background:
    linear-gradient(180deg, rgba(16, 25, 43, 0.88), rgba(7, 13, 24, 0.92)),
    var(--navy-mid);
  border: 1px solid var(--line);
  border-radius: 28px;
}

.floor-portrait {
  margin: 0;
  position: relative;
  display: grid;
  place-items: center;
}

.floor-portrait img {
  width: min(100%, 340px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--pink);
  box-shadow:
    0 0 0 12px rgba(255, 61, 143, 0.12),
    0 0 48px rgba(212, 176, 86, 0.22),
    var(--shadow);
  background: #120818;
}

.floor-portrait figcaption {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--gold-bright);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
}

.floor-quote {
  margin: 0.4rem 0 1.3rem;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.2;
  color: var(--gold-bright);
}

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

.chips li {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--pink-soft);
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255, 61, 143, 0.35);
  border-radius: 999px;
  background: rgba(255, 61, 143, 0.08);
}

.bell {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 1.4rem;
  align-items: center;
  padding: 1.3rem;
  background:
    radial-gradient(ellipse at 82% 18%, rgba(255, 61, 143, 0.12), transparent 46%),
    rgba(16, 25, 43, 0.72);
  border: 1px solid var(--line);
  border-radius: 28px;
}

.bell-copy { padding: 1.1rem 0.8rem 1.1rem 1.2rem; }

.story-link {
  display: inline-block;
  margin-top: 0.35rem;
  font-weight: 800;
  color: var(--pink);
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 61, 143, 0.35);
}

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

.embed-stage {
  min-width: 0;
  padding: 0.8rem;
  overflow: hidden;
  background: linear-gradient(180deg, #141c2e 0%, #0a1220 100%);
  border: 1px solid rgba(255, 61, 143, 0.28);
  border-radius: 22px;
  box-shadow: var(--shadow), 0 0 28px rgba(255, 61, 143, 0.08);
}

.embed-stage-bar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.2rem 0.5rem 0.75rem;
}

.embed-stage-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 4px rgba(255, 61, 143, 0.14);
}

.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(--pink);
  text-decoration: none;
}

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

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

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

.x-card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #202327;
}

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

.x-card-who strong {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-size: 0.96rem;
  font-weight: 800;
}

.x-verified { color: #1d9bf0; flex-shrink: 0; }

.x-card-who span { font-size: 0.86rem; color: #8b98a5; font-weight: 600; }

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

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

.x-mosaic {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  height: 280px;
  margin-bottom: 0.85rem;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid #2f3336;
  background: #000;
}

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

.x-mosaic img:first-child {
  grid-row: 1 / span 2;
}

.x-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: #8b98a5;
  font-weight: 600;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #2f3336;
  margin-bottom: 0.7rem;
}

.x-card-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  list-style: none;
  font-size: 0.84rem;
  font-weight: 700;
  color: #8b98a5;
  margin-bottom: 0.9rem;
}

.x-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;
}

.x-card-cta:hover { background: var(--pink); color: #14010a; }

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

.embed-stage.is-embedded .x-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; }

.thesis {
  padding: 0.5rem 0.2rem 0.2rem;
}

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

.thesis-card {
  padding: 1.4rem 1.2rem;
  min-height: 210px;
  background: rgba(16, 25, 43, 0.86);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: border-color 0.2s, transform 0.2s;
}

.thesis-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 61, 143, 0.4);
}

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

.thesis-card h3 {
  font-family: var(--font-cond);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--marble);
  margin-bottom: 0.45rem;
}

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

.listing {
  padding: 1.6rem 1.4rem 1.8rem;
  background: rgba(16, 25, 43, 0.55);
  border: 1px solid var(--line);
  border-radius: 28px;
}

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

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

.listing-note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}

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

.listing-stack {
  display: grid;
  grid-template-rows: 1.15fr 0.85fr;
  gap: 0.9rem;
  min-height: 0;
}

.listing-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(243, 237, 226, 0.16);
  background: #04070e;
  height: 100%;
}

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

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

.listing-featured img { object-position: 50% 70%; }

.listing-crop img { object-position: 70% 18%; }

.listing-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(4, 7, 14, 0.88));
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--cream);
}

.listing-card figcaption strong { color: var(--pink-soft); }

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

.ca-panel,
.buy-panel {
  padding: 2rem 1.7rem;
  background: rgba(16, 25, 43, 0.86);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.ca-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.6rem;
  padding: 1rem;
  background: #04070e;
  border: 1px solid rgba(255, 61, 143, 0.28);
  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(--pink);
}

.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(--pink);
  margin-right: 0.4rem;
}

.chart-dock {
  padding: 1.6rem;
  background: rgba(16, 25, 43, 0.86);
  border: 1px solid rgba(26, 61, 255, 0.28);
  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(26, 61, 255, 0.28);
  background: #04070e;
  min-height: 480px;
}

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

.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(--pink);
  margin-bottom: 0.5rem;
}

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

.chart-tba p { color: var(--ink-soft); font-weight: 600; }

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

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

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

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.6rem 1.4rem 2rem;
  border-top: 1px solid var(--line);
}

.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(--pink);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-cond);
  letter-spacing: 0.1em;
}

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

.footer-x {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--pink-soft);
  text-decoration: none;
}

.footer-x:hover { color: var(--marble); }

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

@media (max-width: 1100px) {
  .quote-grid { grid-template-columns: 1fr 1fr; }
  .board-strip { grid-template-columns: 1fr 1fr; }
  .board-cell:nth-child(odd) { border-right: 1px solid var(--line); }
  .thesis-grid { grid-template-columns: 1fr 1fr; }
  .floor {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.6rem;
    padding: 1.8rem 1.3rem;
  }
  .floor-quote { border-left: 0; padding-left: 0; }
  .chips { justify-content: center; }
  .floor .section-text { margin-inline: auto; }
  .listing-stage { grid-template-columns: 1fr; }
  .listing-featured { min-height: 380px; }
  .listing-stack { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
  .terminal-row { grid-template-columns: 1fr; }
  .bell { grid-template-columns: 1fr; }
  .bell-copy { padding: 0.4rem 0.4rem 0; }
  .footer { flex-direction: column; text-align: center; }
  .footer-disclaimer { text-align: center; }
}

@media (max-width: 820px) {
  .nav { padding: 0.55rem 0.9rem; }

  .nav-toggle { display: flex; }

  .nav nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(4, 7, 14, 0.97);
    padding: 0.4rem 0 1rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    display: block;
    padding: 0.85rem 1.4rem;
    font-size: 0.92rem;
  }

  .nav-socials { justify-content: center; padding: 0.4rem 1.4rem; }

  .nav-links .btn-nav { margin: 0.4rem 1.4rem 0; }

  .hero-desk { width: calc(100% - 1.6rem); margin: 1.2rem 0.8rem 1.3rem; }
  .hero-ticket { padding: 1.25rem 1.1rem; }
  .thesis-grid { grid-template-columns: 1fr; }
  .listing-stack { grid-template-columns: 1fr; }
  .listing-featured { min-height: 280px; }
  .listing-stack .listing-card { min-height: 220px; }
  .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; }
  .board-strip { grid-template-columns: 1fr; }
  .board-cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .x-mosaic { height: 220px; }
}
