:root {
  --bnb: #F0B90B;
  --bnb-bright: #FFD44A;
  --bnb-deep: #C49209;
  --gold: #D4AF37;
  --gold-dim: #8A7019;
  --black: #070707;
  --black-2: #0B0B0B;
  --charcoal: #111111;
  --panel: rgba(16, 16, 16, 0.72);
  --panel-solid: #141414;
  --white: #F4F4F4;
  --muted: #9A9A9A;
  --line: rgba(240, 185, 11, 0.22);
  --line-soft: rgba(255, 255, 255, 0.08);
  --glow: 0 0 40px rgba(240, 185, 11, 0.28);
  --font-display: "Bebas Neue", "Arial Black", Impact, sans-serif;
  --font-body: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  --font-mono: "Share Tech Mono", ui-monospace, "Cascadia Mono", Consolas, monospace;
  --header-h: 76px;
  --wrap: 1180px;
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  background: var(--black);
}

html,
body {
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--white);
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(240, 185, 11, 0.12), transparent 55%),
    radial-gradient(900px 500px at 0% 20%, rgba(240, 185, 11, 0.05), transparent 50%),
    var(--black);
  line-height: 1.6;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--bnb);
  outline-offset: 3px;
}

::selection {
  background: var(--bnb);
  color: #111;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 4000;
  background: var(--bnb);
  color: #111;
  padding: 8px 14px;
  font-weight: 700;
  border-radius: 6px;
}

.skip-link:focus {
  top: 12px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.wrap {
  width: min(var(--wrap), calc(100% - 40px));
  margin-inline: auto;
}

.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.38;
}

.noise,
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.noise {
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.scanlines {
  opacity: 0.035;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 2px,
    rgba(0, 0, 0, 0.55) 2px 3px
  );
}

.cursor-aura {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 280px;
  margin: -140px 0 0 -140px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 900;
  background: radial-gradient(circle, rgba(240, 185, 11, 0.16) 0%, rgba(240, 185, 11, 0.05) 38%, transparent 70%);
  mix-blend-mode: screen;
  transform: translate3d(-100vw, -100vh, 0);
  will-change: transform;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.2), rgba(7, 7, 7, 0));
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(8, 8, 8, 0.78);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px) saturate(1.2);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: 0 0 18px rgba(240, 185, 11, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.brand-ticker {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--bnb);
  letter-spacing: 0.14em;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-desktop a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a:focus-visible {
  color: var(--white);
  background: rgba(240, 185, 11, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 16px;
  font-size: 0.78rem;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transform: translate3d(var(--mx, 0px), var(--my, 0px), 0);
  min-height: 44px;
  touch-action: manipulation;
}

.btn-buy {
  background: linear-gradient(180deg, var(--bnb-bright), var(--bnb) 55%, var(--bnb-deep));
  color: #111;
  box-shadow: var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-buy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.45) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: shine 3.6s ease infinite;
}

.btn-buy:hover,
.btn-buy:focus-visible {
  box-shadow: 0 0 28px rgba(240, 185, 11, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--bnb);
  background: rgba(240, 185, 11, 0.08);
}

.btn-x {
  background: #0a0a0a;
  border-color: var(--line-soft);
  color: var(--white);
  min-width: 44px;
}

.btn-x:hover,
.btn-x:focus-visible {
  border-color: var(--bnb);
  color: var(--bnb);
}

.btn-lg {
  padding: 14px 22px;
  font-size: 0.84rem;
}

.btn-xl {
  padding: 18px 28px;
  font-size: 0.95rem;
}

.btn-block {
  width: 100%;
}

.buy-short {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(10, 10, 10, 0.55);
  flex-shrink: 0;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  position: relative;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

body.nav-open .nav-toggle-bars { background: transparent; }
body.nav-open .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle-bars::after { top: 0; transform: rotate(-45deg); }

.scroll-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--bnb-deep), var(--bnb-bright));
  box-shadow: 0 0 12px var(--bnb);
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1100;
  width: min(360px, 100%);
  height: 100dvh;
  background: rgba(8, 8, 8, 0.94);
  border-left: 1px solid var(--line);
  backdrop-filter: blur(22px);
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.4s var(--ease), visibility 0.4s;
  padding: calc(var(--header-h) + 20px) 28px 32px;
  overscroll-behavior: contain;
}

body.nav-open .nav-drawer {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.4s var(--ease), visibility 0s;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

body.nav-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 18px 0 28px;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--white);
  border-bottom: 1px solid var(--line-soft);
  padding: 8px 0;
}

.nav-mobile a:hover,
.nav-mobile a:focus-visible {
  color: var(--bnb);
}

.nav-drawer-ctas {
  display: grid;
  gap: 10px;
}

.hud-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--bnb);
  text-transform: uppercase;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-h) + 28px) 0 84px;
  display: flex;
  align-items: center;
  overflow: clip;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 185, 11, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 185, 11, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 70% 40%, black 20%, transparent 75%);
  animation: grid-shift 28s linear infinite;
  pointer-events: none;
}

.hero-chart-svg {
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 8%;
  height: 48%;
  pointer-events: none;
  opacity: 0.55;
  transform: translate3d(var(--chart-x, 0px), var(--chart-y, 0px), 0);
}

.hero-chart-svg svg {
  width: 100%;
  height: 100%;
}

.chart-stroke {
  fill: none;
  stroke: var(--bnb);
  stroke-width: 2.4;
  filter: drop-shadow(0 0 8px rgba(240, 185, 11, 0.65));
  stroke-dasharray: 1800;
  stroke-dashoffset: 1800;
  animation: draw-line 2.8s var(--ease) 0.3s forwards;
}

.chart-area {
  fill: url(#chartFill);
  opacity: 0;
  animation: fade-in 1.4s ease 1.2s forwards;
}

.hero-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 1.4vw, 0.82rem);
  letter-spacing: 0.18em;
  color: var(--bnb);
  margin-bottom: 18px;
}

.eyebrow svg {
  color: var(--bnb);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 8.4vw, 8.2rem);
  line-height: 0.86;
  letter-spacing: 0.02em;
  font-weight: 400;
  text-wrap: balance;
}

.hero-sub {
  margin-top: 18px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #d8d8d8;
  max-width: 28ch;
}

.ticker-chip {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.12em;
  padding: 8px 16px 6px;
  border: 1px solid var(--line);
  background: rgba(240, 185, 11, 0.06);
  color: var(--bnb-bright);
  border-radius: 999px;
  width: fit-content;
  cursor: default;
}

.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bnb);
  box-shadow: 0 0 12px var(--bnb);
  animation: pulse 1.8s ease-in-out infinite;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-hud {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
  max-width: 520px;
}

.hero-hud li {
  border: 1px solid var(--line-soft);
  background: rgba(10, 10, 10, 0.55);
  padding: 10px 12px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-hud span {
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  transform: translate3d(var(--px, 0px), var(--py, 0px), 0);
  will-change: transform;
}

.bnb-halo {
  position: absolute;
  width: min(92%, 540px);
  aspect-ratio: 1;
  color: var(--bnb);
  opacity: 0.18;
  filter: drop-shadow(0 0 24px rgba(240, 185, 11, 0.55));
  animation: halo-breathe 5.5s ease-in-out infinite;
  z-index: 0;
}

.bnb-halo svg {
  width: 100%;
  height: 100%;
}

.hero-glow {
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 185, 11, 0.38) 0%, rgba(240, 185, 11, 0.08) 42%, transparent 70%);
  filter: blur(8px);
  animation: glow-breathe 4.5s ease-in-out infinite;
  z-index: 1;
}

.hero-portrait {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  animation: float-y 5.8s ease-in-out infinite;
}

.hero-portrait img {
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(240, 185, 11, 0.28);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(240, 185, 11, 0.18);
  mask-image: radial-gradient(ellipse at 50% 42%, #000 62%, transparent 92%);
}

.float-chip {
  position: absolute;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--bnb);
  border: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.72);
  padding: 7px 10px;
  backdrop-filter: blur(8px);
  animation: float-chip 6s ease-in-out infinite;
}

.chip-a { top: 12%; left: 2%; animation-delay: 0s; }
.chip-b { top: 22%; right: 0; animation-delay: 1s; }
.chip-c { bottom: 22%; left: 4%; animation-delay: 1.6s; }
.chip-d { bottom: 14%; right: 6%; animation-delay: 0.7s; }

.boss-tag {
  position: absolute;
  z-index: 3;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--line-soft);
  padding: 6px 10px;
}

.scroll-ind {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--muted);
}

.scroll-ind-bar {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, var(--bnb), transparent);
  animation: scroll-bar 1.8s ease-in-out infinite;
}

.ticker {
  position: relative;
  z-index: 6;
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(240, 185, 11, 0.08), rgba(12, 12, 12, 0.9));
  overflow: hidden;
  height: 52px;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}

.ticker-group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bnb);
  white-space: nowrap;
}

.tick-sep {
  color: var(--gold-dim);
}

.section {
  position: relative;
  padding: 108px 0;
}

.section-kicker {
  font-family: var(--font-mono);
  color: var(--bnb);
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  max-width: 42ch;
  color: #e7e7e7;
}

.lead.mute,
.mute {
  color: var(--muted);
}

.about-lead {
  display: grid;
  gap: 10px;
  margin-bottom: 42px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hud-panel {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  transition: transform 0.18s ease, border-color 0.2s, box-shadow 0.2s;
}

.hud-panel::before,
.hud-panel::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
}

.hud-panel::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--bnb);
  border-left: 2px solid var(--bnb);
}

.hud-panel::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--bnb);
  border-bottom: 2px solid var(--bnb);
}

.principle-card {
  padding: 28px 24px 22px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
}

.principle-card:hover {
  border-color: rgba(240, 185, 11, 0.55);
  box-shadow: var(--glow);
}

.card-index {
  font-family: var(--font-mono);
  color: var(--gold-dim);
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  margin-bottom: 18px;
}

.principle-card h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 0.95;
  margin-bottom: 10px;
}

.principle-card p {
  color: #cfcfcf;
  max-width: 22ch;
}

.card-foot {
  margin-top: auto;
  padding-top: 22px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--bnb);
}

.lore {
  background:
    linear-gradient(180deg, transparent, rgba(240, 185, 11, 0.035), transparent);
}

.lore-note {
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 56px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 28px;
  padding: 10px 0 20px;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(240, 185, 11, 0.14);
}

.timeline-progress {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--bnb-bright), var(--bnb));
  transform: scaleY(0);
  transform-origin: top;
  box-shadow: 0 0 16px var(--bnb);
  will-change: transform;
}

.lore-item {
  position: relative;
  width: min(46%, 500px);
  display: grid;
}

.lore-left { justify-self: start; }
.lore-right { justify-self: end; }

.lore-node {
  position: absolute;
  top: 28px;
  width: 14px;
  height: 14px;
  background: var(--black);
  border: 2px solid var(--bnb);
  transform: rotate(45deg);
  box-shadow: 0 0 12px var(--bnb);
  z-index: 2;
}

.lore-left .lore-node { right: -29px; }
.lore-right .lore-node { left: -29px; }

.lore-card {
  padding: 24px 24px 22px;
}

.lore-year {
  font-family: var(--font-mono);
  color: var(--bnb);
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  margin-bottom: 8px;
}

.lore-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 0.95;
  margin-bottom: 10px;
}

.lore-card p {
  color: #c8c8c8;
}

.lore-item.is-active .lore-card {
  border-color: rgba(240, 185, 11, 0.55);
}

.paws {
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: clip;
  background: radial-gradient(700px 420px at 50% 45%, rgba(240, 185, 11, 0.12), transparent 60%);
}

.paws-chart,
.paw-constellation {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.paws-chart svg {
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.paws-line {
  fill: none;
  stroke: var(--bnb);
  stroke-width: 1.6;
  filter: drop-shadow(0 0 6px rgba(240, 185, 11, 0.5));
  stroke-dasharray: 8 10;
  animation: dash-move 18s linear infinite;
}

.paws-line.delayed {
  opacity: 0.45;
  animation-duration: 26s;
  animation-direction: reverse;
}

.paws-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
}

.paws-title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 12vw, 9.5rem);
  line-height: 0.82;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #fff6cc 0%, #F0B90B 38%, #7d5e08 52%, #ffe08a 78%, #F0B90B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(240, 185, 11, 0.28));
}

.paws-copy {
  margin: 28px auto 0;
  display: grid;
  gap: 8px;
}

.paws-copy p {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: #dedede;
}

.paws-badge {
  margin: 28px auto 0;
  display: inline-block;
  font-family: var(--font-mono);
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--bnb);
  border: 1px solid var(--line);
  padding: 10px 16px;
  cursor: default;
}

.paw-constellation .diam {
  position: absolute;
  width: 28px;
  height: 28px;
  background: var(--bnb);
  transform: rotate(45deg);
  box-shadow: 0 0 22px var(--bnb);
  opacity: 0.55;
  animation: diamond-pulse 4s ease-in-out infinite;
}

.d1 { left: 50%; top: 18%; width: 36px; height: 36px; margin-left: -18px; }
.d2 { left: 42%; top: 28%; }
.d3 { left: 56%; top: 27%; }
.d4 { left: 47%; top: 34%; }
.d5 { left: 52%; top: 36%; width: 18px; height: 18px; }

.contract-panel {
  margin-top: 12px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(240, 185, 11, 0.07), rgba(12, 12, 12, 0.8));
}

.contract-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-bottom: 18px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bnb);
  box-shadow: 0 0 10px var(--bnb);
  animation: pulse 1.6s ease-in-out infinite;
}

.contract-chain {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.contract-address {
  font-family: var(--font-mono);
  font-size: clamp(0.82rem, 2.6vw, 1.35rem);
  letter-spacing: 0.04em;
  color: var(--bnb-bright);
  overflow-wrap: anywhere;
  word-break: break-all;
  line-height: 1.45;
  margin-bottom: 22px;
  text-shadow: 0 0 18px rgba(240, 185, 11, 0.25);
}

.contract-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.buy-cta {
  text-align: center;
  background:
    radial-gradient(800px 300px at 50% 100%, rgba(240, 185, 11, 0.16), transparent 60%),
    linear-gradient(180deg, transparent, rgba(240, 185, 11, 0.04), transparent);
}

.buy-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.buy-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7.5rem);
  line-height: 0.86;
  margin-bottom: 16px;
}

.buy-cta .hero-ctas {
  justify-content: center;
}

.gallery-layout {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1.7fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.gallery-feature,
.gallery-side {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  text-align: left;
  width: 100%;
  cursor: zoom-in;
}

.gallery-feature img,
.gallery-side img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.6s var(--ease);
}

.gallery-feature img {
  aspect-ratio: 2172 / 724;
}

.gallery-side img {
  aspect-ratio: 1;
}

@media (min-width: 1101px) {
  .gallery-side {
    min-height: 100%;
  }

  .gallery-side img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 50% 22%;
  }
}

.gallery-feature:hover img,
.gallery-side:hover img,
.gallery-feature:focus-visible img,
.gallery-side:focus-visible img {
  transform: scale(1.06);
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 18px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.social {
  text-align: center;
}

.social-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social .section-title,
.social .lead {
  max-width: 18ch;
}

.x-mega {
  margin-top: 36px;
  position: relative;
  width: 168px;
  height: 168px;
  display: grid;
  place-items: center;
}

.x-mega-core {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0a0a0a;
  border: 1px solid var(--line);
  box-shadow: var(--glow);
  position: relative;
  z-index: 2;
  transition: transform 0.25s var(--ease), background 0.2s, color 0.2s;
}

.x-mega:hover .x-mega-core,
.x-mega:focus-visible .x-mega-core {
  transform: scale(1.08);
  background: var(--bnb);
  color: #111;
}

.x-mega-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(240, 185, 11, 0.35);
  animation: ring-pulse 2.4s ease-out infinite;
}

.x-mega-label {
  position: absolute;
  bottom: -36px;
  font-family: var(--font-mono);
  letter-spacing: 0.16em;
  color: var(--bnb);
  font-size: 0.85rem;
}

.site-footer {
  position: relative;
  z-index: 5;
  border-top: 1px solid var(--line);
  padding: 42px 0 28px;
  background: #080808;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid var(--line);
  object-fit: cover;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.footer-brand em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--bnb);
  letter-spacing: 0.14em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--bnb);
}

.disclaimer {
  margin-top: 22px;
  color: #777;
  font-size: 0.82rem;
  max-width: 72ch;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.9);
  display: grid;
  place-items: center;
  padding: 48px 64px;
}

.egg-toast[hidden],
.egg-tip[hidden],
.lightbox[hidden],
.cursor-aura[hidden] {
  display: none !important;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 82vh;
  object-fit: contain;
  border: 1px solid var(--line);
  box-shadow: var(--glow);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  color: var(--white);
  font-size: 2.4rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.6);
}

.lightbox-close { top: 18px; right: 18px; }
.lightbox-nav.prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 16px; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover,
.lightbox-nav:hover {
  color: var(--bnb);
  border-color: var(--bnb);
}

.egg-toast {
  position: fixed;
  left: 50%;
  top: 18%;
  transform: translateX(-50%) scale(0.92);
  z-index: 3000;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  letter-spacing: 0.06em;
  color: #111;
  background: linear-gradient(180deg, var(--bnb-bright), var(--bnb));
  padding: 16px 28px 12px;
  border-radius: 12px;
  box-shadow: var(--glow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease);
}

.egg-toast.is-on {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.egg-tip {
  position: fixed;
  z-index: 2500;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: #111;
  background: var(--bnb);
  padding: 8px 10px;
  border-radius: 6px;
  pointer-events: none;
  transform: translate(-50%, -140%);
  white-space: nowrap;
}

.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.scale-in {
  opacity: 1;
  transform: none;
}

html.js .reveal,
html.js .reveal-up,
html.js .reveal-left,
html.js .reveal-right,
html.js .scale-in {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0s);
}

html.js .reveal-left { transform: translate3d(-36px, 0, 0); }
html.js .reveal-right { transform: translate3d(36px, 0, 0); }
html.js .scale-in { transform: scale(0.96); }

html.js .is-inview {
  opacity: 1;
  transform: none;
}

.hero .reveal-up {
  opacity: 0;
  animation: hero-in 0.9s var(--ease) both;
  animation-delay: var(--d, 0s);
}

body.nav-open {
  overflow: hidden;
}

@keyframes shine {
  0%, 55% { transform: translateX(-120%); }
  75% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes float-chip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes halo-breathe {
  0%, 100% { transform: scale(1); opacity: 0.14; }
  50% { transform: scale(1.06); opacity: 0.26; }
}

@keyframes glow-breathe {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes diamond-pulse {
  0%, 100% { transform: rotate(45deg) scale(1); opacity: 0.45; }
  50% { transform: rotate(45deg) scale(1.12); opacity: 0.85; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.7); }
}

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

@keyframes hero-in {
  from { opacity: 0; transform: translate3d(0, 22px, 0); }
  to { opacity: 1; transform: none; }
}

@keyframes grid-shift {
  from { background-position: 0 0; }
  to { background-position: 56px 56px; }
}

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

@keyframes scroll-bar {
  0% { transform: scaleY(0.3); transform-origin: top; opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.3); transform-origin: bottom; opacity: 0.3; }
}

@keyframes dash-move {
  to { stroke-dashoffset: -400; }
}

@keyframes ring-pulse {
  0% { transform: scale(0.72); opacity: 0.7; }
  100% { transform: scale(1.08); opacity: 0; }
}

@media (max-width: 1100px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 96px;
  }

  .hero-visual {
    min-height: 0;
    order: -1;
    max-width: 340px;
    margin: 0 auto;
  }

  .hero-portrait {
    width: min(100%, 300px);
  }

  .hero-title {
    font-size: clamp(3rem, 12vw, 6.2rem);
  }

  .hero-hud {
    max-width: none;
  }

  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .principles {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .header-actions .btn-x {
    display: none;
  }

  .lore-item {
    width: 100%;
    padding-left: 28px;
  }

  .lore-left,
  .lore-right {
    justify-self: stretch;
  }

  .timeline-line {
    left: 6px;
    transform: none;
  }

  .lore-left .lore-node,
  .lore-right .lore-node {
    left: -1px;
    right: auto;
  }

  .hero-hud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .float-chip {
    display: none;
  }

  .boss-tag {
    display: none;
  }
}

@media (max-width: 640px) {
  :root { --header-h: 68px; }

  .wrap {
    width: min(100% - 28px, var(--wrap));
  }

  .header-inner {
    width: calc(100% - 20px);
  }

  .brand-text {
    display: none;
  }

  .btn-header-buy .buy-long {
    display: none;
  }

  .btn-header-buy .buy-short {
    display: inline;
  }

  .header-actions {
    gap: 8px;
  }

  .hero {
    padding-top: calc(var(--header-h) + 16px);
  }

  .hero-visual {
    min-height: 0;
    max-width: 220px;
  }

  .hero-portrait {
    width: min(100%, 200px);
  }

  .section {
    padding: 78px 0;
  }

  .hero-ctas .btn-lg,
  .hero-ctas .btn-xl {
    width: 100%;
  }

  .hero-ctas .btn-x.btn-lg {
    width: 56px;
  }

  .contract-panel {
    padding: 20px 16px;
  }

  .contract-chain {
    margin-left: 0;
  }

  .lightbox {
    padding: 64px 16px 16px;
  }

  .lightbox-nav {
    display: none;
  }
}

@media (max-width: 430px) {
  .hero-title {
    font-size: clamp(2.6rem, 13vw, 3.6rem);
  }

  .btn-buy {
    padding-inline: 14px;
    font-size: 0.72rem;
  }

  .paws-title {
    font-size: clamp(2.8rem, 16vw, 4.2rem);
  }

  .ticker-group {
    font-size: 0.74rem;
  }

  .btn-header-buy .buy-long {
    display: none;
  }

  .btn-header-buy .buy-short {
    display: inline;
  }
}

@media (max-width: 375px) {
  .hero-hud li {
    padding: 8px;
    font-size: 0.7rem;
  }

  .principle-card h3 {
    font-size: 2.1rem;
  }
}

@media (max-width: 320px) {
  .wrap {
    width: calc(100% - 20px);
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .header-actions .btn-buy {
    font-size: 0.64rem;
    padding: 8px 10px;
  }
}

@media (min-width: 1600px) {
  :root { --wrap: 1320px; }

  .hero-visual {
    min-height: 620px;
  }
}

@media (min-width: 2000px) {
  :root { --wrap: 1480px; }

  .hero-title {
    font-size: 9rem;
  }
}

body.lightbox-open {
  overflow: hidden;
}

body.tab-hidden .ticker-track,
body.tab-hidden .hero-portrait,
body.tab-hidden .bnb-halo,
body.tab-hidden .hero-glow,
body.tab-hidden .float-chip,
body.tab-hidden .chart-stroke,
body.tab-hidden .hero-grid,
body.tab-hidden .paws-line,
body.tab-hidden .x-mega-ring,
body.tab-hidden .btn-buy::after,
body.tab-hidden .scroll-ind-bar {
  animation-play-state: paused !important;
}

@media (hover: none), (pointer: coarse) {
  .cursor-aura {
    display: none !important;
  }

  .hud-panel,
  .btn {
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-up,
  .reveal-left,
  .reveal-right,
  .scale-in {
    opacity: 1;
    transform: none;
  }

  .hero-portrait,
  .bnb-halo,
  .hero-glow,
  .float-chip,
  .ticker-track,
  .chart-stroke,
  .hero .reveal-up {
    animation: none !important;
  }

  html.js .reveal,
  html.js .reveal-up,
  html.js .reveal-left,
  html.js .reveal-right,
  html.js .scale-in,
  html.js .hero .reveal-up {
    opacity: 1 !important;
    transform: none !important;
  }

  .chart-stroke {
    stroke-dashoffset: 0;
  }

  .cursor-aura {
    display: none !important;
  }
}
