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

:root {
  --void: #0a0e13;
  --iron: #0d1218;
  --steel: #131a22;
  --plate: #1a222c;
  --navy: #0a0e13;
  --navy-2: #0d1218;
  --navy-3: #131a22;
  --gold: #38bdf8;
  --gold-2: #0ea5e9;
  --gold-soft: #7dd3fc;
  --bull: #22c55e;
  --bull-dim: #15803d;
  --bear: #ef4444;
  --bear-dim: #b91c1c;
  --neon: #22c55e;
  --neon-dim: #15803d;
  --crimson: #ef4444;
  --cream: #e8edf4;
  --muted: #7b8798;
  --line: rgba(255, 255, 255, 0.09);
  --grid-line: rgba(255, 255, 255, 0.04);
  --font-display: "IBM Plex Sans", system-ui, sans-serif;
  --font-head: "IBM Plex Sans", system-ui, sans-serif;
  --font-serif: "IBM Plex Sans", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --radius: 6px;
  --radius-lg: 10px;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.center { text-align: center; }
.muted { color: var(--muted); }
.gold-ink { color: var(--bull); }

/* ── Market background ── */
.market-grid,
.market-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.market-grid {
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 75%);
}

.market-overlay {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(34, 197, 94, 0.06), transparent 45%),
    radial-gradient(ellipse at 10% 100%, rgba(56, 189, 248, 0.05), transparent 40%);
}

.market-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--bear) 0%, var(--bear) 48%, var(--bull) 52%, var(--bull) 100%);
}

/* ── Header ── */
.masthead {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(10, 14, 19, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--steel);
}

.brand-copy strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.brand-copy em {
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--bull);
  font-family: var(--font-mono);
  font-weight: 600;
}

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

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

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

.nav-socials {
  display: flex;
  gap: 0.5rem;
}

.icon-btn {
  width: 36px;
  height: 36px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted) !important;
  background: var(--steel);
}

.icon-btn:hover {
  background: var(--plate);
  color: var(--cream) !important;
  border-color: rgba(255, 255, 255, 0.16);
}

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

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--cream);
}

/* ── Hero ── */
.stage {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  isolation: isolate;
}

.stage-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  z-index: -2;
  filter: contrast(1.04) saturate(1.05);
}

.stage-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(10, 14, 19, 0.97) 0%, rgba(10, 14, 19, 0.55) 38%, rgba(10, 14, 19, 0.2) 60%, rgba(10, 14, 19, 0.5) 100%),
    linear-gradient(90deg, rgba(10, 14, 19, 0.65) 0%, transparent 50%);
}

.stage-plate {
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  padding: 7.5rem 0 2.5rem;
}

.stage-copy {
  max-width: 44rem;
}

.stage-kicker {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.stage h1 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.95;
  font-size: clamp(2.6rem, 7.5vw, 5.8rem);
  letter-spacing: -0.02em;
}

.gold-type {
  display: block;
  color: var(--gold);
}

.steel-type {
  display: block;
  color: var(--cream);
  font-size: 0.96em;
}

.stage-ticker {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  letter-spacing: 0.06em;
  color: var(--bull);
  margin: 0.5rem 0 0.85rem;
}

.stage-line {
  max-width: 34rem;
  color: rgba(232, 237, 244, 0.82);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 1.4rem;
}

.stage-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.market-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.market-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 110px;
  padding: 0.65rem 0.9rem;
  background: rgba(10, 14, 19, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.market-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.market-value {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream);
}

.market-value.up { color: var(--bull); }
.market-value.down { color: var(--bear); }

.market-value.live {
  color: var(--bull);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.market-value.live::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bull);
  margin-right: 0.4rem;
  vertical-align: middle;
  box-shadow: 0 0 8px var(--bull);
  animation: pulse-live 2s ease-in-out infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.stage-mark {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--steel);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
}

.btn-gold {
  background: var(--bull);
  color: #041008;
}

.btn-gold:hover {
  background: #2dd46a;
  filter: none;
}

.btn-ghost {
  background: rgba(10, 14, 19, 0.6);
  color: var(--cream);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--steel);
}

.btn-lg { padding: 0.95rem 1.65rem; }

.btn-copy { flex-shrink: 0; }
.btn-copy.copied { background: var(--plate); color: var(--bull); }

/* ── Tape ── */
.ticker-tape {
  background: #060a0f;
  color: var(--cream);
  overflow: hidden;
  padding: 0.65rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tape {
  display: flex;
  gap: 1.2rem;
  white-space: nowrap;
  animation: tape 28s linear infinite;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  font-weight: 500;
}

.tape-bull { color: var(--bull); }
.tape-bear { color: var(--bear); }
.tape-sep { color: var(--muted); opacity: 0.5; }

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

/* ── Panels ── */
.panel {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.panel-head {
  max-width: 680px;
  margin-bottom: 2.2rem;
}

.embed-head {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-size: 0.72rem;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.panel-head p,
.lore-copy p {
  color: rgba(232, 237, 244, 0.75);
  font-size: 1.02rem;
}

/* ── Pull quote + embeds ── */
.signal {
  background:
    linear-gradient(180deg, var(--navy), var(--navy-2));
  border-top: 1px solid var(--line);
}

.pull-quote {
  max-width: 720px;
  margin: 0 auto 2.2rem;
  text-align: center;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--steel);
}

.pull-quote blockquote {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(1.3rem, 3.5vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--cream);
}

.pull-quote figcaption {
  margin-top: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 0.72rem;
}

.embed-stage {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 auto 2rem;
}

.embed-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.embed-glow { display: none; }

.embed-frame {
  position: relative;
  width: min(580px, 100%);
  background: var(--steel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.embed-pair .embed-frame {
  width: 100%;
  min-width: 0;
}

.embed-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
  background: var(--plate);
}

.embed-ribbon-left {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
}

.embed-ribbon a {
  color: var(--gold);
  text-decoration: none;
}

.embed-ribbon a:hover { color: var(--gold-soft); }

.community-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.7rem;
  padding: 1.6rem 1.2rem 1.4rem;
  flex: 1;
}

.community-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid var(--line);
  object-fit: cover;
  background: var(--plate);
}

.community-handle {
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  font-size: 0.95rem;
}

.community-body p:not(.community-handle) {
  color: rgba(232, 237, 244, 0.75);
  max-width: 22rem;
  font-size: 0.95rem;
}

.community-body .btn {
  margin-top: 0.3rem;
}

.embed-widget {
  display: flex;
  justify-content: center;
  padding: 1rem 0.85rem 1.15rem;
  min-height: 280px;
  background: var(--void);
}

.embed-widget.is-ready { min-height: 0; }

blockquote.twitter-tweet:not(.twitter-tweet-rendered) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.tweet-fallback {
  display: block;
  width: min(550px, 100%);
  margin: 0 auto;
  background: var(--steel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.2rem 1.05rem;
  color: var(--cream);
  text-decoration: none;
}

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

.tweet-fallback-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--plate);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 1rem;
}

.tweet-fallback strong {
  display: block;
  color: var(--cream);
  font-size: 0.95rem;
}

.tweet-fallback em {
  display: block;
  font-style: normal;
  color: var(--muted);
  font-size: 0.84rem;
}

.tweet-fallback p {
  font-size: 0.98rem;
  line-height: 1.5;
  margin-bottom: 0.9rem;
}

.tweet-fallback b {
  color: var(--gold-soft);
}

.tweet-fallback footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.78rem;
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
}

.embed-widget.is-ready .tweet-fallback,
.embed-widget:has(iframe) .tweet-fallback,
.embed-widget:has(twitter-widget) .tweet-fallback {
  display: none;
}

.embed-widget iframe,
.embed-widget twitter-widget {
  margin: 0 auto !important;
  max-width: 100% !important;
}

.ig-widget {
  flex: 1;
  flex-direction: column;
  align-items: stretch;
  padding: 0.75rem 0.7rem 0.85rem;
  min-height: 0;
}

.ig-shell {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--steel);
  border: 1px solid var(--line);
}

.ig-iframe {
  display: block;
  width: 100%;
  height: min(780px, 88vh);
  min-height: 640px;
  border: 0;
  background: var(--void);
}

.ig-fallback {
  display: none;
  margin-top: 0.75rem;
  background: var(--steel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.2rem 1.05rem;
  color: var(--cream);
  text-decoration: none;
}

.ig-widget.is-blocked .ig-shell { display: none; }
.ig-widget.is-blocked .ig-fallback { display: block; }

.ig-fallback header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}

.ig-fallback-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--plate);
}

.ig-fallback strong {
  display: block;
  color: var(--cream);
  font-size: 0.95rem;
}

.ig-fallback em {
  display: block;
  font-style: normal;
  color: var(--muted);
  font-size: 0.84rem;
}

.ig-fallback p {
  font-size: 0.98rem;
  line-height: 1.5;
  margin-bottom: 0.9rem;
}

.ig-fallback b { color: var(--gold-soft); }

.ig-fallback-cta {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.source-chips {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  list-style: none;
}

.source-chips a {
  display: block;
  min-width: 130px;
  padding: 0.7rem 1rem;
  text-decoration: none;
  color: inherit;
  background: var(--steel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}

.source-chips a:hover {
  border-color: rgba(34, 197, 94, 0.4);
  background: var(--plate);
}

.source-chips small {
  display: block;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.64rem;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.source-chips strong {
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  font-weight: 600;
  color: var(--cream);
}

/* ── Lore ── */
.lore {
  background: var(--navy-2);
  border-top: 1px solid var(--line);
}

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

.lore-visual { position: relative; }

.lore-frame {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  padding: 12px;
  background: var(--steel);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.lore-frame img {
  border-radius: var(--radius);
}

.lore-orbit {
  position: absolute;
  inset: -8%;
  border: 1px dashed rgba(34, 197, 94, 0.25);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.lore-orbit span {
  position: absolute;
  font-size: 0.78rem;
  color: var(--bull);
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.lore-orbit span:nth-child(1) { top: 6%; left: 44%; }
.lore-orbit span:nth-child(2) { bottom: 8%; right: 6%; }
.lore-orbit span:nth-child(3) { top: 40%; left: -2%; }

.lore-copy p { margin-bottom: 1rem; }
.lore-copy strong { color: var(--cream); }
.lore-copy em { font-style: normal; color: var(--bull); font-family: var(--font-mono); }

.lore-stats {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  margin-top: 1.6rem;
}

.lore-stats li {
  border-top: 2px solid var(--bull);
  padding-top: 0.65rem;
  min-width: 100px;
  flex: 1;
}

.lore-stats b {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(0.95rem, 2.4vw, 1.2rem);
  letter-spacing: 0.02em;
  color: var(--cream);
}

.lore-stats span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-mono);
}

/* ── CA / chart / buy ── */
.ca {
  background: var(--navy);
  border-top: 1px solid var(--line);
}

.ca-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 760px;
  margin: 1.4rem auto 0;
  padding: 0.9rem 1rem;
  background: var(--steel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.ca-address {
  flex: 1;
  font-family: var(--font-mono);
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  letter-spacing: 0.04em;
  word-break: break-all;
  color: var(--gold-soft);
}

.copy-toast {
  text-align: center;
  min-height: 1.25rem;
  margin-top: 0.7rem;
  color: var(--bull);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  opacity: 0;
  transition: opacity 0.3s;
}

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

.chart-panel {
  background: var(--navy-2);
  border-top: 1px solid var(--line);
}

.chart-terminal {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--steel);
}

.chart-terminal-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  background: var(--plate);
  border-bottom: 1px solid var(--line);
}

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.35;
}

.terminal-dot:nth-child(1) { background: var(--bear); opacity: 0.7; }
.terminal-dot:nth-child(2) { background: #eab308; opacity: 0.7; }
.terminal-dot:nth-child(3) { background: var(--bull); opacity: 0.7; }

.terminal-title {
  margin-left: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}

.terminal-live {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--bull);
  font-weight: 600;
}

.chart-frame {
  position: relative;
  width: 100%;
  padding-bottom: 125%;
  overflow: hidden;
  background: #000;
  min-height: 0;
}

.dexscreener-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

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

.chart-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  padding: 2rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

@media (min-width: 1100px) {
  .chart-frame { padding-bottom: 72%; }
}

.chart-link {
  display: block;
  text-align: center;
  margin-top: 1rem;
  color: var(--gold);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.buy {
  background: var(--navy);
  border-top: 1px solid var(--line);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  list-style: none;
  margin: 2.2rem 0 2.2rem;
}

.timeline li {
  background: var(--steel);
  border: 1px solid var(--line);
  padding: 1.35rem 1rem;
  border-radius: var(--radius-lg);
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--bull);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.timeline span {
  font-family: var(--font-mono);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.timeline h3 {
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  font-weight: 600;
  margin: 0.35rem 0 0.35rem;
  font-size: 0.95rem;
}

.timeline p {
  color: var(--muted);
  font-size: 0.88rem;
}

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

/* ── Footer ── */
.site-foot {
  background: #060a0f;
  border-top: 1px solid var(--line);
}

.foot-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  text-align: center;
  padding: 2.2rem 0 1.8rem;
}

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

.foot-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  object-fit: cover;
  background: var(--steel);
}

.foot-brand strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.foot-brand span {
  color: var(--muted);
  font-size: 0.82rem;
  font-family: var(--font-mono);
}

.foot-links {
  display: flex;
  gap: 1.3rem;
}

.foot-links a {
  color: var(--muted);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.foot-links a:hover { color: var(--cream); }

.disclaimer {
  max-width: 640px;
  font-size: 0.72rem;
  color: #5c6675;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .stage-plate,
  .lore-split,
  .timeline,
  .embed-pair {
    grid-template-columns: 1fr;
  }

  .stage-mark { display: none; }

  .stage-banner { object-position: center 38%; }

  .lore-visual { max-width: 280px; margin: 0 auto; }

  .ig-iframe {
    height: 680px;
    min-height: 560px;
  }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 14, 19, 0.98);
    flex-direction: column;
    padding: 1.4rem;
    gap: 1rem;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: 0.28s;
    border-bottom: 1px solid var(--line);
  }

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

  .ca-box { flex-direction: column; }
  .btn-copy { justify-content: center; width: 100%; }

  .embed-ribbon {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .source-chips a { min-width: 100px; }

  .market-strip { gap: 0.5rem; }
  .market-stat { min-width: calc(50% - 0.25rem); flex: 1; }
}

@media (max-width: 520px) {
  .stage-kicker { letter-spacing: 0.12em; }
  .embed-widget { padding: 0.7rem 0.5rem 0.85rem; }
  .market-stat { min-width: 100%; }
}
