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

:root {
  --void: #03060f;
  --iron: #050d1a;
  --steel: #0a1628;
  --plate: #0f1d32;
  --navy: #03060f;
  --navy-2: #050d1a;
  --navy-3: #0c1a2e;
  --periwinkle: #7b94d4;
  --diamond: #e8f4ff;
  --crystal: #c5dcff;
  --gold: #6eb3ff;
  --gold-2: #3d7fd9;
  --gold-soft: #b8d4ff;
  --neon: #9ecaff;
  --neon-dim: #2a5080;
  --camo-1: #1a3a5c;
  --camo-2: #2a5080;
  --camo-3: #4a7ab8;
  --crimson: #1e4a8a;
  --pepe-outline: #1a2f4a;
  --cream: #eef6ff;
  --muted: #7a92b0;
  --line: rgba(158, 202, 255, 0.32);
  --font-display: "Exo 2", sans-serif;
  --font-pepe: "Bangers", "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);
  --facet: polygon(16px 0, calc(100% - 16px) 0, 100% 16px, 100% calc(100% - 16px), calc(100% - 16px) 100%, 16px 100%, 0 calc(100% - 16px), 0 16px);
  --diamond-shape: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  --crystal-gradient: linear-gradient(135deg, #ffffff 0%, #c5dcff 28%, #6eb3ff 55%, #3d7fd9 78%, #1e4a8a 100%);
  --camo-pattern:
    linear-gradient(135deg, var(--camo-1) 0 18%, transparent 18% 36%),
    linear-gradient(225deg, var(--camo-2) 0 22%, transparent 22% 44%),
    linear-gradient(315deg, var(--camo-3) 0 16%, transparent 16% 32%),
    linear-gradient(45deg, var(--camo-1) 0 20%, transparent 20% 40%),
    #0a1628;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background:
    var(--camo-pattern),
    radial-gradient(ellipse at 50% 0%, rgba(123, 148, 212, 0.12), transparent 55%),
    var(--void);
  background-size: 120px 120px, 100% 100%, 100% 100%;
  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(--crystal);
  text-shadow: 0 0 20px rgba(197, 220, 255, 0.4);
}

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

.stars {
  background-image:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(255, 255, 255, 0.9) 50%, transparent 51%),
    radial-gradient(1px 1px at 78% 22%, rgba(197, 220, 255, 0.75) 50%, transparent 51%),
    radial-gradient(2px 2px at 64% 70%, rgba(110, 179, 255, 0.65) 50%, transparent 51%),
    radial-gradient(1px 1px at 34% 82%, rgba(255, 255, 255, 0.55) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 88% 58%, rgba(184, 212, 255, 0.6) 50%, transparent 51%);
  opacity: 0.7;
  animation: twinkle 4s ease-in-out infinite alternate;
}

.diamond-sparkles {
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.95), transparent),
    radial-gradient(3px 3px at 70% 15%, rgba(197, 220, 255, 0.8), transparent),
    radial-gradient(2px 2px at 45% 65%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1.5px 1.5px at 92% 72%, rgba(110, 179, 255, 0.85), transparent),
    radial-gradient(2.5px 2.5px at 8% 88%, rgba(255, 255, 255, 0.6), transparent);
  opacity: 0.45;
  animation: sparkle-drift 8s ease-in-out infinite;
}

.crystal-floor {
  top: auto;
  height: 38vh;
  background:
    linear-gradient(to top, rgba(3, 6, 15, 0.95), transparent),
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 28px,
      rgba(110, 179, 255, 0.04) 28px,
      rgba(110, 179, 255, 0.04) 29px
    ),
    repeating-linear-gradient(
      -60deg,
      transparent,
      transparent 28px,
      rgba(197, 220, 255, 0.03) 28px,
      rgba(197, 220, 255, 0.03) 29px
    );
}

.flag-glow {
  background:
    radial-gradient(ellipse at 12% 0%, rgba(123, 148, 212, 0.18), transparent 42%),
    radial-gradient(ellipse at 88% 8%, rgba(61, 127, 217, 0.16), transparent 44%),
    radial-gradient(ellipse at 50% 100%, rgba(110, 179, 255, 0.08), transparent 50%);
}

@keyframes twinkle {
  from { opacity: 0.45; }
  to { opacity: 0.85; }
}

@keyframes sparkle-drift {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50% { transform: translateY(-6px); opacity: 0.55; }
}

@keyframes crystal-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes diamond-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(110, 179, 255, 0.35), 0 0 40px rgba(197, 220, 255, 0.15); }
  50% { box-shadow: 0 0 32px rgba(197, 220, 255, 0.55), 0 0 60px rgba(110, 179, 255, 0.25); }
}

.flag-bar {
  height: 6px;
  background:
    var(--camo-pattern),
    linear-gradient(90deg, var(--crystal) 0%, var(--gold) 35%, var(--gold-2) 65%, var(--camo-3) 100%);
  background-size: 80px 80px, 100% 100%;
}

/* ── Header ── */
.masthead {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(3, 6, 15, 0.9);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.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(--crystal);
  box-shadow:
    0 0 0 3px rgba(110, 179, 255, 0.25),
    0 0 22px rgba(197, 220, 255, 0.45);
  background: var(--periwinkle);
  animation: diamond-pulse 3s ease-in-out infinite;
}

.brand-copy strong {
  display: block;
  font-family: var(--font-pepe);
  font-style: normal;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 var(--pepe-outline);
}

.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(--crystal) !important;
  clip-path: var(--diamond-shape);
  background: var(--steel);
}

.icon-btn:hover {
  background: var(--crystal-gradient);
  color: var(--void) !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 42%;
  z-index: -2;
  filter: contrast(1.08) saturate(1.18) brightness(0.92);
}

.stage-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(3, 6, 15, 0.97) 0%, rgba(3, 6, 15, 0.55) 38%, rgba(3, 6, 15, 0.12) 60%, rgba(3, 6, 15, 0.45) 100%),
    linear-gradient(90deg, rgba(3, 6, 15, 0.62) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(123, 148, 212, 0.15), 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.6rem;
}

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

.stage-kicker {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.28em;
  font-size: 0.76rem;
  color: var(--crystal);
  margin-bottom: 0.55rem;
  padding: 0.35rem 0.75rem;
  display: inline-block;
  background: rgba(26, 58, 92, 0.55);
  border: 1px solid rgba(197, 220, 255, 0.25);
  clip-path: var(--facet);
}

.stage h1 {
  font-family: var(--font-pepe);
  font-weight: 400;
  font-style: normal;
  line-height: 0.92;
  text-transform: uppercase;
  font-size: clamp(3rem, 9vw, 7rem);
  letter-spacing: 0.04em;
}

.gold-type {
  display: block;
  background: var(--crystal-gradient);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 0 var(--pepe-outline)) drop-shadow(0 0 24px rgba(197, 220, 255, 0.4));
  animation: crystal-shimmer 6s linear infinite;
}

.steel-type {
  display: block;
  color: var(--diamond);
  font-size: 0.88em;
  letter-spacing: 0.1em;
  text-shadow:
    3px 3px 0 var(--pepe-outline),
    0 0 30px rgba(110, 179, 255, 0.35);
}

.stage-ticker {
  font-family: var(--font-pepe);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  letter-spacing: 0.08em;
  color: var(--crystal);
  margin: 0.45rem 0 0.85rem;
  text-shadow: 2px 2px 0 var(--pepe-outline), 0 0 32px rgba(197, 220, 255, 0.5);
}

.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: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--crystal);
  box-shadow:
    0 0 0 4px rgba(110, 179, 255, 0.2),
    0 0 40px rgba(197, 220, 255, 0.5),
    0 20px 48px rgba(0, 0, 0, 0.65);
  background: var(--periwinkle);
  animation: diamond-pulse 3.5s ease-in-out infinite;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--font-pepe);
  font-style: normal;
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  clip-path: var(--facet);
  border-radius: 0;
  transition: transform 0.2s, filter 0.2s;
}

.btn-gold {
  background: var(--crystal-gradient);
  background-size: 200% auto;
  color: var(--void);
  box-shadow:
    0 8px 0 var(--pepe-outline),
    0 14px 36px rgba(61, 127, 217, 0.45);
  animation: crystal-shimmer 5s linear infinite;
}

.btn-gold:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(10, 22, 40, 0.7);
  color: var(--crystal);
  border: 2px solid rgba(197, 220, 255, 0.35);
  box-shadow: 0 4px 0 var(--pepe-outline);
}

.btn-ghost:hover {
  border-color: var(--crystal);
  color: var(--diamond);
  background: rgba(26, 58, 92, 0.6);
}

.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:
    var(--camo-pattern),
    linear-gradient(90deg, rgba(10, 22, 40, 0.95), rgba(15, 29, 50, 0.95));
  background-size: 60px 60px, 100% 100%;
  color: var(--crystal);
  overflow: hidden;
  padding: 0.72rem 0;
  border-top: 2px solid var(--crystal);
  border-bottom: 2px solid var(--gold-2);
  box-shadow: 0 0 30px rgba(110, 179, 255, 0.15);
}

.tape {
  display: flex;
  gap: 1.6rem;
  white-space: nowrap;
  animation: tape 24s linear infinite;
  font-family: var(--font-pepe);
  letter-spacing: 0.12em;
  font-size: 1.2rem;
  text-shadow: 1px 1px 0 var(--pepe-outline);
}

@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-pepe);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 400;
  font-style: normal;
  line-height: 0.98;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
  text-shadow: 2px 2px 0 var(--pepe-outline);
}

.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(123, 148, 212, 0.16), transparent 46%),
    repeating-linear-gradient(
      120deg,
      transparent,
      transparent 40px,
      rgba(110, 179, 255, 0.03) 40px,
      rgba(110, 179, 255, 0.03) 41px
    ),
    linear-gradient(180deg, var(--navy), var(--navy-2));
}

.pull-quote {
  max-width: 720px;
  margin: 0 auto 2.4rem;
  text-align: center;
  padding: 1.8rem 1.5rem;
  background: rgba(10, 22, 40, 0.55);
  border: 1px solid rgba(197, 220, 255, 0.2);
  clip-path: var(--facet);
  box-shadow: inset 0 0 40px rgba(110, 179, 255, 0.08);
}

.pull-quote blockquote {
  font-family: var(--font-pepe);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.8rem, 4.8vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--crystal-gradient);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: crystal-shimmer 7s linear infinite;
  text-shadow: none;
  filter: drop-shadow(0 3px 0 var(--pepe-outline));
}

.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(91, 156, 255, 0.22), rgba(30, 74, 138, 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(197, 220, 255, 0.1), rgba(6, 16, 24, 0.94) 20%),
    var(--camo-pattern);
  background-size: 100% 100%, 80px 80px;
  border: 1px solid rgba(197, 220, 255, 0.22);
  border-radius: 4px;
  clip-path: var(--facet);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(110, 179, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  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(91, 156, 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, #7eb8ff, #3d7fd9);
  color: #040810;
  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(--camo-pattern),
    var(--navy-3);
  background-size: 40px 40px, 100% 100%;
  border: 1px solid rgba(197, 220, 255, 0.22);
  clip-path: var(--diamond-shape);
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.source-chips a:hover {
  border-color: var(--crystal);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(110, 179, 255, 0.2);
}

.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:
    radial-gradient(ellipse at 20% 50%, rgba(123, 148, 212, 0.1), transparent 50%),
    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: 3px solid var(--crystal);
  padding: 16px;
  background: var(--periwinkle);
  box-shadow:
    0 0 0 4px rgba(110, 179, 255, 0.2),
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 50px rgba(197, 220, 255, 0.25);
  border-radius: 50%;
  animation: diamond-pulse 4s ease-in-out infinite;
}

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

.lore-orbit {
  position: absolute;
  inset: -14%;
  border: 2px dashed rgba(197, 220, 255, 0.35);
  border-radius: 50%;
  z-index: 0;
}

.lore-orbit span {
  position: absolute;
  font-size: 1rem;
  color: var(--crystal);
  font-family: var(--font-pepe);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-shadow: 1px 1px 0 var(--pepe-outline);
}

.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: 3px solid transparent;
  border-image: var(--crystal-gradient) 1;
  padding-top: 0.7rem;
  min-width: 110px;
}

.lore-stats b {
  display: block;
  font-family: var(--font-pepe);
  font-style: normal;
  font-size: clamp(1.1rem, 2.8vw, 1.55rem);
  letter-spacing: 0.04em;
  color: var(--crystal);
  text-shadow: 1px 1px 0 var(--pepe-outline);
}

.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(--camo-pattern),
    var(--steel);
  background-size: 60px 60px, 100% 100%;
  border: 1px solid rgba(197, 220, 255, 0.25);
  clip-path: var(--facet);
  box-shadow: inset 0 0 30px rgba(110, 179, 255, 0.06);
}

.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: 2px solid rgba(197, 220, 255, 0.25);
  clip-path: var(--facet);
  background: #000;
  min-height: 0;
  box-shadow: 0 0 40px rgba(110, 179, 255, 0.1);
}

.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:
    linear-gradient(180deg, rgba(15, 29, 50, 0.9), rgba(10, 22, 40, 0.95)),
    var(--camo-pattern);
  background-size: 100% 100%, 50px 50px;
  border: 1px solid rgba(197, 220, 255, 0.2);
  padding: 1.5rem 1.15rem;
  clip-path: var(--facet);
  position: relative;
}

.timeline li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--crystal-gradient);
}

.timeline span {
  font-family: var(--font-pepe);
  color: var(--crystal);
  font-size: 1.6rem;
  text-shadow: 1px 1px 0 var(--pepe-outline);
}

.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(--crystal);
  object-fit: cover;
  background: var(--periwinkle);
  box-shadow: 0 0 20px rgba(197, 220, 255, 0.35);
}

.foot-brand strong {
  display: block;
  font-family: var(--font-pepe);
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 1px 1px 0 var(--pepe-outline);
}

.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 (prefers-reduced-motion: reduce) {
  .stars,
  .diamond-sparkles,
  .gold-type,
  .pull-quote blockquote,
  .btn-gold,
  .brand-mark,
  .stage-mark,
  .lore-frame {
    animation: none;
  }
}

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

  .stage-mark { display: none; }

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

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