:root {
  --bg: #030106;
  --bg-2: #100418;
  --magenta: #ff2ee6;
  --pink: #ff5ae0;
  --violet: #a855f7;
  --violet-deep: #6d28d9;
  --silver: #f6f2ff;
  --muted: #b7adc8;
  --line: rgba(255, 46, 230, 0.35);
  --card: rgba(16, 4, 24, 0.72);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav: 78px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--silver);
  font-family: Outfit, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
h1, h2, h3, p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
::selection { background: rgba(255, 46, 230, 0.35); color: white; }

.skip {
  position: absolute;
  left: 16px;
  top: -40px;
  z-index: 80;
  background: var(--magenta);
  color: #1a0414;
  padding: 8px 12px;
  border-radius: 8px;
}
.skip:focus { top: 12px; }

.sprite { position: absolute; width: 0; height: 0; }

#fx {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.grain {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  opacity: 0.09;
  mix-blend-mode: overlay;
  background-image: radial-gradient(rgba(255, 255, 255, 0.55) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
}
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 80;
  background: linear-gradient(90deg, var(--violet), var(--magenta));
  box-shadow: 0 0 12px var(--magenta);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--nav);
  padding: 0 28px;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5, 1, 10, 0.78);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(255, 46, 230, 0.18);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Exo 2", sans-serif;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 1.35rem;
  text-transform: uppercase;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255, 46, 230, 0.45);
}
.nav-links {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a { position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--magenta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a:focus-visible { color: white; }
.nav-links a:hover::after,
.nav-links a:focus-visible::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 46, 230, 0.4);
  background: rgba(0, 0, 0, 0.35);
  color: white;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease);
}
.icon-btn svg { width: 16px; height: 16px; }
.icon-btn:hover,
.icon-btn:focus-visible {
  border-color: var(--magenta);
  box-shadow: 0 0 16px rgba(255, 46, 230, 0.45);
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-buy {
  position: relative;
  overflow: hidden;
  color: white;
  background: linear-gradient(100deg, #6d28d9 0%, #c026d3 48%, #ff2ee6 100%);
  box-shadow: 0 0 24px rgba(255, 46, 230, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.btn-buy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 32%, rgba(255, 255, 255, 0.38) 50%, transparent 68%);
  transform: translateX(-130%);
  animation: shine 3.6s ease-in-out infinite;
}
.btn-buy span,
.btn-buy svg { position: relative; z-index: 1; }
.btn-buy:hover,
.btn-buy:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(255, 46, 230, 0.62);
}
.btn-ghost {
  background: rgba(0, 0, 0, 0.38);
  border-color: rgba(255, 46, 230, 0.5);
  color: white;
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  transform: translateY(-2px);
  border-color: var(--pink);
  box-shadow: 0 0 18px rgba(255, 46, 230, 0.28);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 46, 230, 0.4);
  background: rgba(0, 0, 0, 0.35);
  color: white;
  cursor: pointer;
}
.menu-btn svg { width: 18px; height: 18px; }
.menu-btn .icon-close { display: none; }
.menu-btn[aria-expanded="true"] .icon-menu { display: none; }
.menu-btn[aria-expanded="true"] .icon-close { display: block; }
.menu {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(5, 1, 12, 0.96);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 100px 32px 40px;
  font-family: "Exo 2", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}
.menu[hidden] { display: none; }
.menu a:hover { color: var(--pink); }

main, .footer { position: relative; z-index: 1; }

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 1, 6, 0.45) 0%, rgba(3, 1, 6, 0.28) 42%, rgba(3, 1, 6, 0.82) 78%, #030106 100%),
    linear-gradient(90deg, rgba(3, 1, 6, 0.78) 0%, rgba(3, 1, 6, 0.28) 48%, rgba(3, 1, 6, 0.62) 100%),
    url("banner.png") center 30% / cover no-repeat;
}
.floor {
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: -8%;
  height: 42%;
  background-image:
    linear-gradient(rgba(255, 46, 230, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 46, 230, 0.45) 1px, transparent 1px);
  background-size: 72px 72px;
  transform: perspective(420px) rotateX(68deg);
  transform-origin: center top;
  animation: floor 10s linear infinite;
  mask-image: linear-gradient(to top, #000 10%, transparent 78%);
  opacity: 0.45;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  padding: calc(var(--nav) + 28px) 0 72px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--pink);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 10px var(--magenta);
  animation: pulse 1.8s ease-in-out infinite;
}
.hero h1 {
  font-family: "Exo 2", sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(4.6rem, 9vw, 8.2rem);
  line-height: 0.84;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  padding-right: 0.06em;
  background: linear-gradient(180deg, #ffffff 10%, #d8d0e6 45%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(168, 85, 247, 0.35));
}
.ticker-line {
  margin-top: 8px;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, #e9d5ff, #ff2ee6 55%, #ff7aea);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.dek {
  max-width: 38rem;
  margin-top: 18px;
  color: #ddd4ea;
  font-size: 1.12rem;
  font-weight: 300;
}
.motto {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-top: 26px;
}
.motto li {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 46, 230, 0.4);
  background: rgba(0, 0, 0, 0.35);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.ca-bar {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  padding: 10px 12px 10px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 46, 230, 0.28);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: inset 0 0 24px rgba(168, 85, 247, 0.08);
}
.ca-label {
  flex: none;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
}
.ca-text {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.82rem;
  color: #efe8f8;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.copy-btn .icon-copied { display: none; }
.copy-btn.copied .icon-copy { display: none; }
.copy-btn.copied .icon-copied { display: block; }
.fine {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  max-width: 46rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 460px;
}
.logo {
  position: relative;
  z-index: 2;
  width: min(440px, 100%);
  animation: float 6.5s ease-in-out infinite;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 22px rgba(255, 46, 230, 0.35));
}
.orbits { position: absolute; inset: 8%; pointer-events: none; }
.orbits span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 46, 230, 0.45);
  animation: spin 22s linear infinite;
}
.orbits span:nth-child(2) {
  inset: -8%;
  border-style: dashed;
  border-color: rgba(168, 85, 247, 0.55);
  animation-duration: 34s;
  animation-direction: reverse;
}
.orbits span:nth-child(3) {
  inset: -16%;
  border-color: rgba(255, 90, 224, 0.25);
  animation-duration: 48s;
}

.float-bug {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 0 12px rgba(255, 46, 230, 0.65));
}
.butterfly { width: 100%; height: 100%; display: block; }
.wing-left {
  transform-box: fill-box;
  transform-origin: center;
  animation: flap 1.7s ease-in-out infinite;
}
.wing-right {
  transform-box: fill-box;
  transform-origin: center;
  animation: flap-1 1.7s ease-in-out infinite;
}
/* .wing-right { animation-delay: 1s; } */
.bug-a { width: 62px; top: 16%; left: 4%; animation: drift 13s ease-in-out infinite; }
.bug-b { width: 48px; top: auto; bottom: 10%; right: 16%; animation: drift 16s ease-in-out infinite reverse; opacity: 0.75; }
.bug-c { width: 78px; top: 18%; right: 4%; animation: drift 18s ease-in-out infinite; }

.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid rgba(255, 46, 230, 0.28);
  background: rgba(8, 0, 14, 0.88);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.ticker-group {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 22px;
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #f3e9ff;
}
.sep {
  width: 6px;
  height: 6px;
  background: var(--magenta);
  transform: rotate(45deg);
  box-shadow: 0 0 8px var(--magenta);
  flex: none;
}
.ticker:hover .ticker-track { animation-play-state: paused; }

.section { padding: 112px 0; }
.section-glow {
  background:
    radial-gradient(600px 280px at 15% 0%, rgba(168, 85, 247, 0.16), transparent 70%),
    radial-gradient(520px 260px at 90% 80%, rgba(255, 46, 230, 0.12), transparent 70%);
}
.eyebrow {
  color: var(--pink);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 14px;
}
h2 {
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.section-head { max-width: 680px; margin-bottom: 42px; }
.sub { margin-top: 16px; color: var(--muted); }
.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.split p + p { margin-top: 16px; }
.pull {
  margin-top: 22px;
  font-family: "Exo 2", sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  color: white;
  text-shadow: 0 0 18px rgba(255, 46, 230, 0.45);
}
.frame {
  margin: 0;
  padding: 1px;
  border-radius: 18px;
  background: linear-gradient(140deg, #ff2ee6, rgba(168, 85, 247, 0.2) 42%, #c084fc);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.45), 0 0 40px rgba(255, 46, 230, 0.2);
}
.frame img {
  display: block;
  width: 100%;
  border-radius: 17px;
  background: #05010a;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  position: relative;
  overflow: hidden;
  padding: 28px 24px 26px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 46, 230, 0.09), rgba(8, 0, 16, 0.2) 34%),
    var(--card);
  border: 1px solid rgba(255, 46, 230, 0.24);
  box-shadow: inset 0 0 40px rgba(120, 30, 180, 0.08);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.card::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% 20%;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 46, 230, 0.22), transparent 70%);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 90, 224, 0.7);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 24px rgba(255, 46, 230, 0.16);
}
.card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  border: 1px solid rgba(255, 46, 230, 0.4);
  background: rgba(255, 46, 230, 0.08);
}
.card-icon svg { width: 20px; height: 20px; }
.card-index {
  margin-top: 22px;
  font-family: "Exo 2", sans-serif;
  color: rgba(255, 46, 230, 0.7);
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}
.card h3 {
  margin: 6px 0 10px;
  font-family: "Exo 2", sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.03em;
}
.card p:last-child { color: var(--muted); }

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
}
.facts div {
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 46, 230, 0.22);
  background: rgba(10, 2, 18, 0.65);
}
.facts dt {
  color: var(--pink);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.facts dd {
  margin: 8px 0 0;
  font-family: "Exo 2", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.steps {
  list-style: none;
  display: grid;
  gap: 14px;
}
.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 46, 230, 0.2);
  background: rgba(8, 0, 16, 0.55);
}
.step-no {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  color: white;
  border: 1px solid rgba(255, 46, 230, 0.55);
  box-shadow: 0 0 16px rgba(255, 46, 230, 0.25);
}
.steps h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Exo 2", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.steps h3 svg { width: 18px; height: 18px; color: var(--pink); }
.steps p { margin-top: 6px; color: var(--muted); }

.destinations {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.dest, .social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 46, 230, 0.28);
  background: rgba(10, 2, 18, 0.7);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.dest:hover, .social-card:hover {
  transform: translateY(-4px);
  border-color: var(--pink);
  box-shadow: 0 0 24px rgba(255, 46, 230, 0.18);
}
.dest[hidden] { display: none; }
.dest-icon, .social-mark {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(160deg, rgba(168, 85, 247, 0.35), rgba(255, 46, 230, 0.2));
  border: 1px solid rgba(255, 46, 230, 0.35);
}
.dest-icon svg, .social-mark svg { width: 20px; height: 20px; }
.dest span, .social-copy { display: flex; flex-direction: column; min-width: 0; }
.dest strong, .social-card strong { font-family: "Exo 2", sans-serif; font-size: 1.1rem; }
.dest em, .social-card em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.86rem;
}
.ext { width: 16px; height: 16px; margin-left: auto; color: var(--pink); flex: none; }

.split-tape { align-items: stretch; }
.panel {
  position: relative;
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 46, 230, 0.32);
  background:
    radial-gradient(400px 180px at 80% 40%, rgba(168, 85, 247, 0.2), transparent 70%),
    linear-gradient(180deg, #120418, #05010c);
  box-shadow: 0 0 40px rgba(255, 46, 230, 0.12), inset 0 0 40px rgba(255, 46, 230, 0.05);
}
#tape-canvas, #dex-frame, #dex-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.panel-tag {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 186, 242, 0.82);
}
#dex-frame[hidden], #tape-canvas.is-hidden { display: none; }

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.social-card { min-height: 108px; }

.faq { margin-top: 56px; }
.faq-title {
  font-family: "Exo 2", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.faq-item { border-bottom: 1px solid rgba(255, 46, 230, 0.2); }
.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
}
.faq-item button svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.3s var(--ease);
  color: var(--pink);
}
.faq-item.open button svg { transform: rotate(180deg); }
.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.faq-item.open .faq-panel { grid-template-rows: 1fr; }
.faq-panel > div { overflow: hidden; }
.faq-panel p { color: var(--muted); padding-bottom: 18px; }

.closer {
  position: relative;
  padding: 40px 0 100px;
  text-align: center;
}
.closer-inner img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(255, 46, 230, 0.45);
}
.closer h2 { margin-top: 18px; }
.closer p {
  margin-top: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  font-size: 0.85rem;
  font-weight: 600;
}
.closer .cta-row { justify-content: center; }

.footer {
  border-top: 1px solid rgba(255, 46, 230, 0.2);
  padding: 42px 0 28px;
  background: #05010c;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.footer .fine { max-width: 640px; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}
.footer-links a:hover { color: white; }
.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-buy { display: none; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(12px);
  z-index: 90;
  padding: 10px 16px;
  border-radius: 999px;
  background: #1a0a22;
  border: 1px solid rgba(255, 46, 230, 0.5);
  color: white;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
}
.js .reveal.in {
  animation: rise 0.8s var(--ease) forwards;
}
.js .reveal.in:nth-child(2) { animation-delay: 0.08s; }
.js .reveal.in:nth-child(3) { animation-delay: 0.16s; }

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

@keyframes shine {
  0%, 62% { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes flap {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(0.38); }
}
@keyframes flap-1 {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(0.38); }
}
@keyframes drift {
  0%, 100% { translate: 0 0; }
  50% { translate: 16px -24px; }
}
@keyframes floor {
  from { background-position: 0 0; }
  to { background-position: 0 72px; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.8); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes rise {
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .hero-grid, .split, .cards, .facts, .social-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual { min-height: 320px; order: -1; }
  .hero-grid { padding-top: calc(var(--nav) + 12px); }
  .logo { width: min(320px, 78vw); }
  .section { padding: 80px 0; }
  .footer-grid { flex-direction: column; }
}
@media (max-width: 720px) {
  .wrap { width: min(1120px, calc(100% - 32px)); }
  .nav { padding: 0 16px; }
  .bug-a, .bug-b { display: none; }
  .hero h1 { font-size: 4.2rem; }
  .nav .btn-buy { display: none; }
  .cta-row .btn-ghost:last-child { display: none; }
  .mobile-buy {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(5, 1, 12, 0.92);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 46, 230, 0.28);
  }
  .mobile-buy .btn { width: 100%; }
  body { padding-bottom: 78px; }
  .toast { bottom: 88px; }
  .facts dd { font-size: 1.25rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .js .reveal,
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
