:root {
  --pink: #ff2d95;
  --magenta: #e91e8c;
  --cyan: #2ef5ff;
  --violet: #9b5cff;
  --deep: #0a0614;
  --ink: #12081f;
  --glass: rgba(18, 8, 35, 0.55);
  --text: #f4eef8;
  --muted: rgba(244, 238, 248, 0.72);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-ui: "Oswald", sans-serif;
  --font-body: "Rajdhani", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.6;
  background: var(--deep);
  overflow-x: hidden;
  cursor: none;
  -webkit-text-size-adjust: 100%;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

@media (pointer: coarse) {
  body { cursor: auto; }
  .cursor-glow { display: none !important; }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; border: 0; background: none; color: inherit; cursor: pointer; }
ul, ol { list-style: none; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }

/* ===== Layers ===== */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.bg-image {
  position: absolute;
  inset: -8%;
  background: url("./bg.jpg") center / cover no-repeat;
  transform: scale(1.08);
  will-change: transform;
  transition: transform 0.1s linear;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 4, 18, 0.55) 0%, rgba(8, 4, 18, 0.35) 35%, rgba(8, 4, 18, 0.7) 100%),
    radial-gradient(ellipse at 50% 0%, rgba(255, 45, 149, 0.18), transparent 55%),
    radial-gradient(ellipse at 80% 60%, rgba(46, 245, 255, 0.12), transparent 45%);
}

.scanlines {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(0, 0, 0, 0.12) 2px,
    rgba(0, 0, 0, 0.12) 4px
  );
  mix-blend-mode: multiply;
  opacity: 0.35;
}

.vignette {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 89;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0, 0, 0, 0.55) 100%);
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 88;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: noiseShift 0.4s steps(2) infinite;
}

@keyframes noiseShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-1%, 1%); }
  50% { transform: translate(1%, -1%); }
  75% { transform: translate(-1%, -1%); }
  100% { transform: translate(0, 0); }
}

#particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 100;
  mix-blend-mode: screen;
  background: radial-gradient(circle, rgba(46, 245, 255, 0.85) 0%, rgba(255, 45, 149, 0.35) 45%, transparent 70%);
  box-shadow: 0 0 40px rgba(255, 45, 149, 0.45), 0 0 80px rgba(46, 245, 255, 0.25);
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  opacity: 0;
}

.cursor-glow.active { opacity: 1; }
.cursor-glow.hot {
  width: 48px;
  height: 48px;
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 3vw, 2.5rem);
  padding-top: calc(0.85rem + env(safe-area-inset-top, 0px));
  background: linear-gradient(180deg, rgba(10, 6, 20, 0.85), rgba(10, 6, 20, 0.35) 70%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.nav.scrolled {
  background: rgba(10, 6, 20, 0.88);
  border-bottom-color: rgba(255, 45, 149, 0.35);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(155, 92, 255, 0.6), 0 0 18px rgba(255, 45, 149, 0.45);
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(155, 92, 255, 0.6), 0 0 18px rgba(255, 45, 149, 0.45); }
  50% { box-shadow: 0 0 0 2px rgba(46, 245, 255, 0.7), 0 0 28px rgba(46, 245, 255, 0.55); }
}

.nav-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, #fff, var(--cyan), var(--pink));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s, text-shadow 0.2s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(46, 245, 255, 0.7);
}

.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  box-shadow: 0 0 8px rgba(46, 245, 255, 0.5);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  background: rgba(8, 4, 18, 0.96);
  backdrop-filter: blur(16px);
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.08em;
}

.mobile-menu.open { transform: translateY(0); }
.mobile-menu a:hover {
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(46, 245, 255, 0.8);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.2rem;
  font-family: var(--font-ui);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  border-radius: 2px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-lg {
  padding: 0.95rem 1.8rem;
  font-size: 1rem;
}

.btn-neon {
  color: #12081f;
  background: linear-gradient(135deg, var(--cyan), #7afff5 40%, var(--pink));
  background-size: 200% 200%;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 0 24px rgba(255, 45, 149, 0.45),
    0 0 48px rgba(46, 245, 255, 0.25);
  animation: btnShift 5s ease infinite;
}

.btn-neon:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35),
    0 0 36px rgba(255, 45, 149, 0.65),
    0 0 72px rgba(46, 245, 255, 0.4);
}

@keyframes btnShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.btn-outline {
  color: var(--text);
  border: 1px solid rgba(46, 245, 255, 0.55);
  background: rgba(18, 8, 35, 0.35);
  box-shadow: inset 0 0 20px rgba(46, 245, 255, 0.08), 0 0 18px rgba(46, 245, 255, 0.15);
}

.btn-outline:hover {
  border-color: var(--pink);
  color: #fff;
  box-shadow: inset 0 0 24px rgba(255, 45, 149, 0.15), 0 0 28px rgba(255, 45, 149, 0.35);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 18px rgba(46, 245, 255, 0.25);
}

.pulse {
  animation: btnShift 5s ease infinite, pulseGlow 2.2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 24px rgba(255, 45, 149, 0.45), 0 0 48px rgba(46, 245, 255, 0.25); }
  50% { box-shadow: 0 0 40px rgba(255, 45, 149, 0.75), 0 0 80px rgba(46, 245, 255, 0.45); }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-content: end;
  padding: 5.5rem 0 0;
}

.hero-media {
  position: relative;
  width: min(1400px, 100%);
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
}

.hero-banner {
  width: 100%;
  height: clamp(280px, 52vh, 620px);
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.15) contrast(1.05);
  transform: scale(1.02);
  animation: bannerKen 18s ease-in-out infinite alternate;
}

@keyframes bannerKen {
  from { transform: scale(1.02) translateY(0); }
  to { transform: scale(1.08) translateY(-1.5%); }
}

.hero-shine {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.18) 48%,
    transparent 62%
  );
  transform: translateX(-120%);
  animation: shineSweep 5.5s ease-in-out infinite;
}

@keyframes shineSweep {
  0%, 40% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}

.hero-border-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  box-shadow:
    inset 0 0 0 2px rgba(46, 245, 255, 0.45),
    inset 0 0 40px rgba(255, 45, 149, 0.2),
    0 0 60px rgba(255, 45, 149, 0.25);
  animation: borderPulse 3.5s ease-in-out infinite;
}

@keyframes borderPulse {
  0%, 100% {
    box-shadow:
      inset 0 0 0 2px rgba(46, 245, 255, 0.45),
      inset 0 0 40px rgba(255, 45, 149, 0.2),
      0 0 60px rgba(255, 45, 149, 0.25);
  }
  50% {
    box-shadow:
      inset 0 0 0 2px rgba(255, 45, 149, 0.65),
      inset 0 0 50px rgba(46, 245, 255, 0.25),
      0 0 80px rgba(46, 245, 255, 0.35);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1100px, 92%);
  margin: -4.5rem auto 0;
  padding: 0 0 4rem;
  text-align: center;
}

.hero-logo {
  width: 88px;
  height: 88px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  box-shadow:
    0 0 0 3px rgba(155, 92, 255, 0.7),
    0 0 40px rgba(255, 45, 149, 0.55),
    0 0 80px rgba(46, 245, 255, 0.3);
}

.float {
  animation: floatY 4s ease-in-out infinite;
}

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

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 14vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  text-shadow:
    0 0 20px rgba(255, 45, 149, 0.55),
    0 0 60px rgba(46, 245, 255, 0.25),
    4px 4px 0 rgba(0, 0, 0, 0.65);
}

.glitch {
  position: relative;
  color: #fff;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: 0.8;
  pointer-events: none;
}

.glitch::before {
  color: var(--cyan);
  animation: glitchA 3.2s infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch::after {
  color: var(--pink);
  animation: glitchB 2.4s infinite linear alternate-reverse;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitchA {
  0% { transform: translate(0); }
  20% { transform: translate(-3px, 1px); }
  40% { transform: translate(3px, -1px); }
  60% { transform: translate(-2px, 2px); }
  80% { transform: translate(2px, -2px); }
  100% { transform: translate(0); }
}

@keyframes glitchB {
  0% { transform: translate(0); }
  20% { transform: translate(3px, -1px); }
  40% { transform: translate(-3px, 1px); }
  60% { transform: translate(2px, -2px); }
  80% { transform: translate(-2px, 2px); }
  100% { transform: translate(0); }
}

.hero-tag {
  font-family: var(--font-ui);
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.6rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.ca-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  max-width: 100%;
  padding: 0.55rem 0.7rem 0.55rem 0.9rem;
  margin: 0 auto 1.75rem;
  background: rgba(10, 6, 20, 0.65);
  border: 1px solid rgba(46, 245, 255, 0.35);
  box-shadow: 0 0 30px rgba(46, 245, 255, 0.12), inset 0 0 20px rgba(255, 45, 149, 0.08);
  backdrop-filter: blur(12px);
}

.ca-label {
  font-family: var(--font-ui);
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--cyan);
}

.ca-value {
  font-size: 0.9rem;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-copy {
  padding: 0.4rem 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(255, 45, 149, 0.35), rgba(46, 245, 255, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s, transform 0.2s;
}

.btn-copy:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(255, 45, 149, 0.55), rgba(46, 245, 255, 0.4));
}

.ticker {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  border-top: 1px solid rgba(255, 45, 149, 0.25);
  border-bottom: 1px solid rgba(46, 245, 255, 0.25);
  padding: 0.55rem 0;
  background: rgba(0, 0, 0, 0.25);
}

.ticker-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  font-family: var(--font-ui);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  animation: marquee 22s linear infinite;
}

.ticker-track span:nth-child(odd) { color: var(--cyan); }
.ticker-track span:nth-child(3n) { color: var(--pink); }

@keyframes marquee {
  to { transform: translateX(-33.333%); }
}

.scroll-hint {
  position: absolute;
  right: clamp(1rem, 4vw, 2.5rem);
  bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.55);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--cyan), transparent);
  animation: scrollDrop 1.6s ease-in-out infinite;
}

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

/* ===== Sections ===== */
.section {
  position: relative;
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
}

.section-inner {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--font-ui);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--cyan);
  margin-bottom: 0.75rem;
  text-shadow: 0 0 16px rgba(46, 245, 255, 0.45);
}

.section-title {
  margin-bottom: 1.25rem;
}

.title-line,
.title-accent {
  display: block;
  font-family: var(--font-display);
  line-height: 0.92;
  letter-spacing: 0.04em;
}

.title-line {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.55);
}

.title-accent {
  font-size: clamp(3.4rem, 10vw, 7rem);
  background: linear-gradient(100deg, var(--pink), #fff 45%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(255, 45, 149, 0.35));
}

.section-lead {
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-copy p {
  margin-bottom: 1.1rem;
  color: var(--muted);
  font-size: 1.2rem;
}

.about-copy strong { color: #fff; }
.sym {
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(46, 245, 255, 0.5);
}
.highlight {
  color: var(--pink);
  text-shadow: 0 0 12px rgba(255, 45, 149, 0.55);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.stat-row li {
  padding: 1rem 0.9rem;
  background: rgba(10, 6, 20, 0.55);
  border: 1px solid rgba(255, 45, 149, 0.28);
  box-shadow: 0 0 24px rgba(155, 92, 255, 0.12);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.stat-row li:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: 0 0 30px rgba(46, 245, 255, 0.25);
}

.stat-k {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.stat-v {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
}

.about-visual {
  display: grid;
  place-items: center;
}

.logo-orb {
  position: relative;
  width: min(280px, 70vw);
  height: min(280px, 70vw);
  display: grid;
  place-items: center;
}

.logo-orb img {
  width: 58%;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 30px rgba(155, 92, 255, 0.7));
  animation: floatY 5s ease-in-out infinite;
}

.orb-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(46, 245, 255, 0.45);
  box-shadow: 0 0 30px rgba(46, 245, 255, 0.2), inset 0 0 30px rgba(255, 45, 149, 0.12);
  animation: spin 14s linear infinite;
}

.orb-ring::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
  transform: translateX(-50%);
}

.orb-ring.delay {
  inset: 18px;
  border-color: rgba(255, 45, 149, 0.45);
  animation-direction: reverse;
  animation-duration: 10s;
}

.orb-ring.delay::before {
  background: var(--pink);
  box-shadow: 0 0 16px var(--pink);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* How to buy */
.howto {
  background:
    linear-gradient(180deg, transparent, rgba(10, 6, 20, 0.45) 20%, rgba(10, 6, 20, 0.45) 80%, transparent);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.step {
  position: relative;
  padding: 1.5rem 1.2rem 1.4rem;
  background: rgba(10, 6, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  transition-delay: calc(var(--i) * 40ms);
}

.step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 45, 149, 0.12), transparent 50%, rgba(46, 245, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s;
}

.step:hover {
  transform: translateY(-8px) rotate(-0.4deg);
  border-color: rgba(46, 245, 255, 0.55);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 40px rgba(255, 45, 149, 0.2);
}

.step:hover::before { opacity: 1; }

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

.step h3 {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
  position: relative;
}

.step p {
  position: relative;
  color: var(--muted);
  font-size: 1rem;
}

.howto-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.ca-inline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.ca-inline code {
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(46, 245, 255, 0.4);
}

/* Join */
.join-panel {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
  background: rgba(10, 6, 20, 0.65);
  border: 1px solid rgba(255, 45, 149, 0.4);
  box-shadow:
    0 0 0 1px rgba(46, 245, 255, 0.15),
    0 0 60px rgba(255, 45, 149, 0.18),
    inset 0 0 40px rgba(46, 245, 255, 0.05);
  overflow: hidden;
}

.join-glow {
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 45, 149, 0.25), transparent 30%, rgba(46, 245, 255, 0.2), transparent 60%);
  animation: spin 8s linear infinite;
  opacity: 0.55;
}

.join-panel > *:not(.join-glow) {
  position: relative;
  z-index: 1;
}

.join-logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(155, 92, 255, 0.6);
}

.join-panel h3 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(46, 245, 255, 0.35);
}

.join-panel p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(255, 45, 149, 0.25);
  background: rgba(0, 0, 0, 0.35);
}

.footer-inner {
  width: min(1100px, 92%);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  text-align: center;
  justify-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  font-size: 1.3rem;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.disclaimer {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  max-width: 36rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  font-family: var(--font-ui);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.footer-links a:hover {
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(46, 245, 255, 0.6);
}

.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translate(-50%, 120%);
  z-index: 120;
  padding: 0.7rem 1.2rem;
  background: rgba(10, 6, 20, 0.92);
  border: 1px solid var(--cyan);
  box-shadow: 0 0 30px rgba(46, 245, 255, 0.35);
  font-family: var(--font-ui);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  opacity: 0;
  transition: transform 0.35s, opacity 0.35s;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .nav-links { gap: 1.1rem; font-size: 0.82rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .nav {
    padding: 0.75rem 1rem;
  }

  .nav-links,
  .nav-actions { display: none; }

  .nav-toggle { display: flex; }

  .mobile-menu {
    padding: 5rem 1.25rem 2rem;
    gap: 1.25rem;
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .mobile-menu .btn {
    width: min(280px, 100%);
    margin-top: 0.5rem;
  }

  .hero {
    min-height: auto;
    padding-top: 0;
    align-content: start;
    display: flex;
    flex-direction: column;
  }

  .hero-media {
    width: 100%;
    height: clamp(320px, 48vh, 520px);
    min-height: 320px;
  }

  .hero-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
  }

  .hero-media::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(8, 4, 18, 0.35) 40%,
      rgba(8, 4, 18, 0.92) 100%
    );
  }

  .hero-border-glow,
  .hero-shine {
    z-index: 2;
  }

  .hero-content {
    width: min(640px, 94%);
    margin-top: -6.5rem;
    padding-bottom: 2.75rem;
    z-index: 3;
  }

  .hero-logo {
    width: 72px;
    height: 72px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 16vw, 6rem);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .about-visual { order: -1; }

  .about-copy p { font-size: 1.1rem; }

  .stat-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .scroll-hint { display: none; }

  .section-lead {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .howto-cta {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 1.05rem;
    cursor: auto;
  }

  .nav {
    padding-top: calc(0.65rem + env(safe-area-inset-top, 0px));
  }

  .nav-logo {
    width: 36px;
    height: 36px;
  }

  .nav-name {
    font-size: 1.3rem;
  }

  .hero-media {
    height: clamp(340px, 52svh, 480px);
    min-height: 340px;
  }

  .hero-banner {
    object-position: 48% 18%;
  }

  .hero-content {
    width: 92%;
    margin-top: -7.5rem;
    padding: 0 0 1.75rem;
  }

  .hero-logo {
    width: 70px;
    height: 70px;
    margin-bottom: 0.55rem;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 14vw, 4.4rem);
    margin-bottom: 0.35rem;
  }

  .hero-tag {
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    margin-bottom: 1rem;
    padding: 0 0.25rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    margin-bottom: 0.95rem;
  }

  .hero-ctas .btn-lg,
  .howto-cta .btn-lg,
  .join-panel .btn-lg {
    width: 100%;
    padding: 0.9rem 1.2rem;
  }

  .ca-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    gap: 0.55rem;
    padding: 0.6rem 0.7rem;
    margin-bottom: 1.1rem;
  }

  .ca-value {
    font-size: 0.82rem;
    text-align: center;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .btn-copy {
    flex: 0 0 auto;
    padding: 0.45rem 0.7rem;
  }

  .ticker {
    margin-left: -4vw;
    margin-right: -4vw;
    width: calc(100% + 8vw);
  }

  .ticker-track {
    gap: 1.5rem;
    font-size: 0.75rem;
  }

  .section {
    padding: 2.75rem 0;
  }

  .section-inner {
    width: min(100%, 92%);
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-align: center;
  }

  .section-title {
    text-align: center;
    margin-bottom: 1rem;
  }

  .title-line {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  .title-accent {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  .section-lead {
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
  }

  .logo-orb {
    width: min(200px, 58vw);
    height: min(200px, 58vw);
  }

  .stat-row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .stat-row li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    text-align: left;
  }

  .stat-k {
    margin-bottom: 0;
  }

  .stat-v {
    font-size: 1.45rem;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
  }

  .step {
    padding: 1.15rem 1rem 1.1rem;
    text-align: left;
  }

  .step:hover {
    transform: translateY(-4px);
  }

  .step-num {
    font-size: 1.9rem;
  }

  .step h3 {
    font-size: 1.05rem;
  }

  .ca-inline {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.88rem;
  }

  .join-panel {
    width: 100%;
    padding: 2rem 1.15rem;
  }

  .join-panel h3 {
    font-size: clamp(1.8rem, 9vw, 2.3rem);
  }

  .join-panel .btn {
    white-space: normal;
    line-height: 1.3;
  }

  .footer {
    padding: 2rem 0 5.5rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.25rem;
  }

  .toast {
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    width: min(90vw, 320px);
    text-align: center;
  }
}

@media (max-width: 420px) {
  .nav {
    padding: 0.65rem 0.75rem;
    padding-top: calc(0.55rem + env(safe-area-inset-top, 0px));
  }

  .nav-name {
    font-size: 1.15rem;
  }

  .hero-media {
    height: clamp(300px, 48svh, 400px);
    min-height: 300px;
  }

  .hero-banner {
    object-position: 52% 16%;
  }

  .hero-content {
    width: 94%;
    margin-top: -6.25rem;
  }

  .hero-logo {
    width: 62px;
    height: 62px;
  }

  .hero h1 {
    font-size: 2.9rem;
    letter-spacing: 0.02em;
  }

  .hero-tag {
    font-size: 0.82rem;
  }

  .ca-bar {
    gap: 0.4rem;
    padding: 0.55rem 0.6rem;
  }

  .ca-label {
    font-size: 0.68rem;
  }

  .ca-value {
    font-size: 0.76rem;
  }

  .about-copy p {
    font-size: 1rem;
    text-align: left;
  }

  .join-logo {
    width: 60px;
    height: 60px;
  }
}

/* Sticky mobile buy bar */
.mobile-buybar {
  display: none;
}

@media (max-width: 720px) {
  .mobile-buybar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    gap: 0.55rem;
    padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, transparent, rgba(8, 4, 18, 0.92) 28%);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 45, 149, 0.3);
  }

  .mobile-buybar .btn {
    flex: 1;
    min-height: 44px;
  }

  body.menu-open .mobile-buybar {
    display: none;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .bg-image { transform: none !important; }
}
