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

:root {
  --void: #050508;
  --iron: #08080f;
  --steel: #101018;
  --plate: #16161f;
  --navy: #050508;
  --navy-2: #08080f;
  --navy-3: #12121c;
  --gold: #00e5ff;
  --gold-2: #9945ff;
  --gold-soft: #c4b5fd;
  --neon: #14f195;
  --neon-dim: #0a8f5c;
  --crimson: #dc1fff;
  --cream: #f0eef8;
  --muted: #8a8898;
  --line: rgba(0, 229, 255, 0.28);
  --font-display: "Exo 2", sans-serif;
  --font-head: "Rajdhani", sans-serif;
  --font-serif: "Rajdhani", sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --cut: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

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

.stars,
.flag-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.stars {
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(20, 241, 149, 0.32) 50%, transparent 51%),
    radial-gradient(1px 1px at 78% 22%, rgba(0, 229, 255, 0.28) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 64% 70%, rgba(220, 31, 255, 0.26) 50%, transparent 51%);
  opacity: 0.5;
}

.flag-glow {
  background:
    radial-gradient(ellipse at 12% 0%, rgba(0, 229, 255, 0.12), transparent 42%),
    radial-gradient(ellipse at 88% 8%, rgba(220, 31, 255, 0.14), transparent 44%);
}

.flag-bar {
  height: 5px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-2) 50%, var(--crimson) 100%);
}

/* ── Header ── */
.masthead {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(16px);
  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.7rem 0;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.45);
  background: #000;
}

.brand-copy strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-copy em {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 600;
}

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

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

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

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

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

.icon-btn:hover {
  background: var(--gold);
  color: var(--navy) !important;
}

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

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

/* ── 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 center;
  z-index: -2;
  filter: contrast(1.06) saturate(1.12);
}

.stage-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(5, 5, 8, 0.96) 0%, rgba(5, 5, 8, 0.52) 36%, rgba(5, 5, 8, 0.16) 58%, rgba(5, 5, 8, 0.48) 100%),
    linear-gradient(90deg, rgba(5, 5, 8, 0.58) 0%, transparent 48%);
}

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

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

.stage-kicker {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.32em;
  font-size: 0.78rem;
  color: var(--gold-soft);
  margin-bottom: 0.55rem;
}

.stage h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  line-height: 0.88;
  text-transform: uppercase;
  font-size: clamp(2.8rem, 8.5vw, 6.4rem);
}

.gold-type {
  display: block;
  background: linear-gradient(90deg, #00e5ff 0%, #14f195 42%, #9945ff 78%, #dc1fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 0 rgba(0, 0, 0, 0.55));
}

.steel-type {
  display: block;
  color: #e8e6df;
  font-size: 0.92em;
  letter-spacing: 0.08em;
  text-shadow: 0 4px 0 #000;
}

.stage-ticker {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.7rem);
  letter-spacing: 0.12em;
  color: var(--gold);
  margin: 0.45rem 0 0.85rem;
  text-shadow: 0 0 28px rgba(0, 229, 255, 0.55);
}

.stage-line {
  max-width: 34rem;
  color: rgba(244, 240, 228, 0.88);
  font-size: 1.08rem;
  font-weight: 500;
  margin-bottom: 1.45rem;
}

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

.stage-mark {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 36px rgba(0, 229, 255, 0.45), 0 16px 40px rgba(0, 0, 0, 0.65);
  background: #000;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  clip-path: var(--cut);
  border-radius: 0;
}

.btn-gold {
  background: linear-gradient(90deg, #00e5ff 0%, #14f195 40%, #9945ff 100%);
  color: #050508;
  box-shadow: 0 12px 32px rgba(153, 69, 255, 0.4);
}

.btn-gold:hover { filter: brightness(1.08); }

.btn-ghost {
  background: rgba(5, 5, 5, 0.55);
  color: var(--cream);
  border: 1px solid var(--line);
}

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

.btn-lg { padding: 1.05rem 1.8rem; }

.btn-copy { flex-shrink: 0; }
.btn-copy.copied { background: var(--navy-3); color: var(--gold); }

/* ── Tape ── */
.ticker-tape {
  background: #07070c;
  color: var(--gold);
  overflow: hidden;
  padding: 0.72rem 0;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--crimson);
}

.tape {
  display: flex;
  gap: 1.6rem;
  white-space: nowrap;
  animation: tape 24s linear infinite;
  font-family: var(--font-head);
  letter-spacing: 0.18em;
  font-size: 1.05rem;
}

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

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

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

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

.eyebrow {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold);
  font-size: 0.76rem;
  margin-bottom: 0.7rem;
}

.panel h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.6vw, 3.8rem);
  font-weight: 800;
  font-style: italic;
  line-height: 0.98;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.panel-head p,
.lore-copy p {
  color: rgba(244, 240, 228, 0.78);
  font-size: 1.05rem;
}

/* ── Pull quote + X embed ── */
.signal {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(153, 69, 255, 0.12), transparent 46%),
    linear-gradient(180deg, var(--navy), var(--navy-2));
}

.pull-quote {
  max-width: 720px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.pull-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(1.7rem, 4.4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #00e5ff 0%, #14f195 40%, #9945ff 78%, #dc1fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pull-quote figcaption {
  margin-top: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.82rem;
}

.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: 1.35rem;
  align-items: stretch;
}

.embed-glow {
  position: absolute;
  inset: 8% 18%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.22), rgba(220, 31, 255, 0.12) 46%, transparent 72%);
  filter: blur(28px);
  pointer-events: none;
}

.embed-pair .embed-glow {
  inset: 4% 2%;
  grid-column: 1 / -1;
  grid-row: 1 / -1;
}

.embed-frame {
  position: relative;
  width: min(580px, 100%);
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.12), rgba(10, 8, 18, 0.92) 18%);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(220, 31, 255, 0.12);
  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.85rem 1.1rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-head);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

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

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

.community-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.8rem 1.3rem 1.6rem;
  flex: 1;
}

.community-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.4);
  object-fit: cover;
  background: #000;
}

.community-handle {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-size: 1.15rem;
}

.community-body p:not(.community-handle) {
  color: rgba(240, 238, 248, 0.78);
  max-width: 22rem;
}

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

.embed-widget {
  display: flex;
  justify-content: center;
  padding: 1rem 0.85rem 1.15rem;
  min-height: 280px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 30%),
    #000;
}

.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: #0a0a0a;
  border: 1px solid #2f3336;
  border-radius: 16px;
  padding: 1.15rem 1.2rem 1.05rem;
  color: #e7e9ea;
  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: linear-gradient(180deg, #00e5ff, #9945ff);
  color: #050508;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.tweet-fallback strong {
  display: block;
  color: #fff;
  font-size: 0.98rem;
}

.tweet-fallback em {
  display: block;
  font-style: normal;
  color: #8b98a5;
  font-size: 0.86rem;
}

.tweet-fallback p {
  font-size: 1.02rem;
  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: #8b98a5;
  font-size: 0.8rem;
  border-top: 1px solid #2f3336;
  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: 14px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid #2f3336;
}

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

.ig-fallback {
  display: none;
  margin-top: 0.75rem;
  background: #0a0a0a;
  border: 1px solid #2f3336;
  border-radius: 16px;
  padding: 1.15rem 1.2rem 1.05rem;
  color: #e7e9ea;
  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:
    radial-gradient(circle at 30% 30%, #fff 0 18%, transparent 19%),
    conic-gradient(from 210deg, #f9ce34, #ee2a7b, #6228d7, #f9ce34);
}

.ig-fallback strong {
  display: block;
  color: #fff;
  font-size: 0.98rem;
}

.ig-fallback em {
  display: block;
  font-style: normal;
  color: #8b98a5;
  font-size: 0.86rem;
}

.ig-fallback p {
  font-size: 1.02rem;
  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-head);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

.source-chips a {
  display: block;
  min-width: 140px;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: inherit;
  background: var(--navy-3);
  border: 1px solid var(--line);
  clip-path: var(--cut);
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.source-chips a:hover {
  border-color: var(--neon);
  transform: translateY(-2px);
}

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

.source-chips strong {
  font-family: var(--font-head);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* ── Lore ── */
.lore { background: var(--navy-2); }

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

.lore-visual { position: relative; }

.lore-frame {
  position: relative;
  z-index: 1;
  border: 1px solid var(--gold);
  padding: 14px;
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(0, 229, 255, 0.22);
  border-radius: 50%;
}

.lore-frame img {
  border-radius: 50%;
}

.lore-orbit {
  position: absolute;
  inset: -12%;
  border: 1px dashed rgba(220, 31, 255, 0.4);
  border-radius: 50%;
  z-index: 0;
}

.lore-orbit span {
  position: absolute;
  font-size: 0.95rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.lore-orbit span:nth-child(1) { top: 8%; left: 46%; }
.lore-orbit span:nth-child(2) { bottom: 10%; right: 8%; }
.lore-orbit span:nth-child(3) { top: 42%; left: 0; }

.lore-copy p { margin-bottom: 1rem; }
.lore-copy strong { color: var(--gold-soft); }
.lore-copy em { font-style: normal; color: var(--gold); }

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

.lore-stats li {
  border-top: 2px solid var(--gold);
  padding-top: 0.7rem;
  min-width: 110px;
}

.lore-stats b {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2.6vw, 1.45rem);
  letter-spacing: 0.04em;
  color: var(--cream);
}

.lore-stats span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

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

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

.ca-address {
  flex: 1;
  font-family: ui-monospace, monospace;
  font-size: clamp(0.78rem, 2.2vw, 1.05rem);
  letter-spacing: 0.08em;
  word-break: break-all;
  color: var(--gold-soft);
}

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

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

.chart-panel { background: var(--navy); }

.chart-frame {
  position: relative;
  width: 100%;
  padding-bottom: 125%;
  overflow: hidden;
  border: 1px solid var(--line);
  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;
}

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

.chart-link {
  display: block;
  text-align: center;
  margin-top: 1.1rem;
  color: var(--gold);
  text-decoration: none;
  font-family: var(--font-head);
  letter-spacing: 0.08em;
}

.buy { background: linear-gradient(180deg, var(--navy-2), var(--navy)); }

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

.timeline li {
  background: var(--navy-3);
  border: 1px solid var(--line);
  padding: 1.5rem 1.15rem;
  clip-path: var(--cut);
  position: relative;
}

.timeline li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--crimson));
}

.timeline span {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.5rem;
}

.timeline h3 {
  font-family: var(--font-head);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0.4rem 0 0.4rem;
}

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

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

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

.foot-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
  padding: 2.4rem 0 2rem;
}

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

.foot-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  background: #000;
}

.foot-brand strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

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

.foot-links a {
  color: var(--gold);
  text-decoration: none;
  font-family: var(--font-head);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.disclaimer {
  max-width: 640px;
  font-size: 0.75rem;
  color: #6d7588;
}

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

  .stage-mark { display: none; }

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

  .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(5, 5, 8, 0.98);
    flex-direction: column;
    padding: 1.4rem;
    gap: 1.1rem;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: 0.28s;
  }

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

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

@media (max-width: 520px) {
  .stage-kicker { letter-spacing: 0.18em; }
  .embed-widget { padding: 0.7rem 0.5rem 0.85rem; }
}
