:root {
  /* Black-cat / yellow-eye — warm ink + amber */
  --bg: #0a0806;
  --bg-elev: #15120f;
  --panel: rgba(24, 20, 16, 0.9);
  --border: rgba(245, 180, 50, 0.22);
  --border-strong: rgba(245, 180, 50, 0.48);
  --text: #f5efe6;
  --muted: #a89b94;
  --accent: #f5b432;
  --accent-hot: #fcd34d;
  --cream: #f3e6c8;
  --ember: #c45c26;
  --warn: #f0a070;
  --danger: #e8887a;
  /* legacy aliases → new identity */
  --violet: var(--accent);
  --violet-hot: var(--accent-hot);
  --cyan: var(--cream);
  --radius: 18px;
  --font: "Space Grotesk", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --max: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hot); }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  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='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.glow {
  pointer-events: none;
  position: fixed;
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.28;
  z-index: 0;
}
.glow-a { top: -10%; right: -8%; background: #c45c26; }
.glow-b { bottom: 5%; left: -12%; background: #f5b432; opacity: 0.14; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px clamp(16px, 4vw, 32px);
  border-bottom: 1px solid var(--border);
  background: rgba(10, 8, 6, 0.82);
  backdrop-filter: blur(14px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 28%;
  border: 1.5px solid var(--border-strong);
  box-shadow: 0 0 16px rgba(245, 180, 50, 0.35);
}
.logo-text { font-family: var(--mono); font-size: 15px; }

.nav {
  display: flex;
  gap: 16px;
  margin-left: 8px;
}
.nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav a:hover { color: var(--violet-hot); }

.top-actions {
  margin-left: auto;
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(28, 22, 16, 0.9);
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.btn:hover {
  border-color: var(--border-strong);
  transform: translateY(-1px);
}
.btn.primary {
  background: linear-gradient(135deg, #d97706, #f5b432);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(245, 180, 50, 0.35);
}
.btn.primary:hover { box-shadow: 0 10px 28px rgba(252, 211, 77, 0.4); }
.btn.ghost { background: transparent; }
.btn.lg { padding: 12px 18px; font-size: 14px; }
a.btn { color: var(--text); }
a.btn[aria-disabled="true"] { opacity: 0.72; cursor: default; }

main { position: relative; z-index: 1; }

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(28px, 6vw, 64px) clamp(16px, 4vw, 32px) 36px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  line-height: 1.05;
}
.ticker-glow {
  font-size: clamp(48px, 9vw, 84px);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, #fff8e7, var(--accent-hot) 40%, var(--accent) 75%, var(--cream));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(245, 180, 50, 0.28);
}
.subhead {
  font-size: clamp(22px, 3.4vw, 32px);
  font-weight: 600;
  color: var(--violet-hot);
}

.lede {
  margin: 0 0 22px;
  color: #e8dfd0;
  font-size: clamp(16px, 2vw, 18px);
  max-width: 38ch;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }

.pill-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 16px;
}
.pill-row li {
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(245, 180, 50, 0.08);
  color: var(--violet-hot);
  font-size: 12px;
  font-family: var(--mono);
}

.warn-line {
  margin: 0;
  padding: 10px 12px;
  border-left: 3px solid var(--warn);
  background: rgba(251, 191, 36, 0.08);
  color: #fde68a;
  font-size: 13px;
  border-radius: 0 10px 10px 0;
}

.hero-photo {
  margin: 0;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(245, 180, 50, 0.1),
    0 0 60px rgba(196, 92, 38, 0.22);
  background: #111;
  aspect-ratio: 5 / 4;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}
.hero-photo figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(10, 8, 6, 0.72);
  backdrop-filter: blur(8px);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cream);
}

.ticker-strip {
  border-block: 1px solid var(--border);
  background: rgba(18, 14, 10, 0.9);
  overflow: hidden;
  padding: 10px 0;
}
.marquee {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 28s linear infinite;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 72px) clamp(16px, 4vw, 32px);
}

.section-head { margin-bottom: 24px; max-width: 52ch; }
.section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
}
.muted { color: var(--muted); margin: 0; }

.lore-layout {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: 22px;
  align-items: stretch;
}
.lore-shot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  background: #0a0a0c;
  min-height: 280px;
}
.lore-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}
.lore-card {
  padding: clamp(18px, 3vw, 28px);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(10px);
}
.lore-card p { margin: 0 0 14px; color: #e5dcc8; }
.lore-card .pull {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(245, 180, 50, 0.35);
  background: rgba(245, 180, 50, 0.1);
  color: var(--accent-hot);
  font-size: 18px;
  font-weight: 600;
}

.meme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.meme-card {
  appearance: none;
  text-align: left;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-elev);
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.meme-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}
.meme-card .thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #111;
}
.meme-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  filter: contrast(1.05) saturate(1.05);
}
.meme-card .body {
  padding: 12px 14px 14px;
}
.meme-card .label {
  display: inline-block;
  margin-bottom: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet);
}
.meme-card .caption {
  margin: 0;
  font-size: 14px;
  color: #ebe3d4;
  line-height: 1.4;
}
.meme-card .hint {
  margin-top: 8px;
  font-size: 11px;
  color: var(--muted);
  font-family: var(--mono);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.trust-card {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(24, 20, 16, 0.75);
}
.trust-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--violet-hot);
}
.trust-card p { margin: 0; color: var(--muted); font-size: 14px; }
.ca-box {
  display: block;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #080604;
  border: 1px dashed rgba(251, 113, 133, 0.45);
  color: #fda4af;
  font-family: var(--mono);
  font-size: 12px;
  overflow-wrap: anywhere;
}
.check {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}
.check li { margin-bottom: 8px; }
.soon { color: #6b7280; font-size: 12px; }

.cta-card {
  position: relative;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 24px;
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(600px 220px at 90% 0%, rgba(196, 92, 38, 0.28), transparent 60%),
    radial-gradient(500px 200px at 10% 100%, rgba(245, 180, 50, 0.16), transparent 55%),
    var(--panel);
  text-align: center;
}
.cta-face {
  width: 88px;
  height: 88px;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-strong);
  box-shadow: 0 0 28px rgba(245, 180, 50, 0.4);
}
.cta-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
}
.cta-card h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 4vw, 36px);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 20px 0 16px;
}
.socials {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 14px;
}
.social {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px dashed transparent;
}
.social:hover { color: var(--accent); border-bottom-color: var(--accent); }
.fine {
  margin: 0;
  color: #7a7068;
  font-size: 12px;
}

.site-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  padding: 22px clamp(16px, 4vw, 32px) 40px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  position: relative;
  z-index: 1;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  z-index: 60;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(16, 12, 8, 0.95);
  border: 1px solid var(--border-strong);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 900px) {
  .nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .lore-layout { grid-template-columns: 1fr; }
  .lore-shot { max-height: 320px; }
  .trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .top-actions .btn.primary { display: none; }
  .hero-cta .btn { width: 100%; }
}

/* layout patches */

.hero-copy { max-width: 34rem; }
.hero-visual { display:flex; justify-content:center; }
.top-actions { display:flex; gap:10px; align-items:center; }


/* --- bridges for BNB relaunch markup --- */
.hero-copy { max-width: 36rem; }
.hero-visual { display: flex; justify-content: center; align-items: flex-start; }
.top-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.trust-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.trust-card { padding: 18px; border-radius: 16px; border: 1px solid var(--border); background: rgba(24, 20, 16, 0.75); }
.trust-card h3 { margin: 0 0 8px; font-size: 16px; color: var(--accent-hot, #fcd34d); }
.ca-box { display: block; margin-top: 10px; padding: 10px 12px; border-radius: 10px; background: #100c08; font-family: var(--mono); font-size: 12px; color: var(--cream, #f3e6c8); overflow-wrap: anywhere; }
.cta-card { text-align: center; padding: 36px 22px; border-radius: 22px; border: 1px solid var(--border); background: linear-gradient(180deg, rgba(60, 36, 12, 0.55), rgba(10, 8, 6, 0.92)); }
.cta-face { width: 120px; height: 120px; margin: 0 auto 16px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(245, 180, 50, 0.5); }
.cta-face img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 18px 0 14px; }
.site-foot { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; padding: 22px 20px 40px; color: var(--muted); font-size: 12px; font-family: var(--mono); border-top: 1px solid var(--border); }
.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%) translateY(20px); opacity: 0; pointer-events: none; z-index: 80; padding: 10px 16px; border-radius: 999px; background: #1c1610; border: 1px solid rgba(245,180,50,.4); color: #f5efe6; font-size: 13px; transition: .2s ease; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.lore-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 22px; align-items: start; }
.lore-shot { margin: 0; border-radius: 18px; overflow: hidden; border: 1px solid var(--border); }
.lore-shot img { display: block; width: 100%; height: auto; }
.lore-card { padding: 8px 4px; }
.section.memes .muted, .section-head .muted { color: var(--muted); margin: 8px 0 0; }
@media (max-width: 860px) {
  .trust-grid, .lore-layout { grid-template-columns: 1fr; }
}
