/* ═══════════════════════════════════════════
   $ANSEM — The Unstoppable Black Bull
   Cyberpunk Solana Theme
   ═══════════════════════════════════════════ */

:root {
  --cyan: #00e8ff;
  --cyan-dim: #00b8d4;
  --magenta: #ff2d95;
  --magenta-dim: #c2185b;
  --purple: #9945FF;
  --green: #14F195;
  --bg: #030308;
  --bg-card: rgba(8, 8, 20, 0.75);
  --bg-glass: rgba(12, 12, 28, 0.55);
  --text: #f0f4ff;
  --text-dim: #7a82a0;
  --border: rgba(0, 232, 255, 0.12);
  --glow-cyan: 0 0 40px rgba(0, 232, 255, 0.35);
  --glow-magenta: 0 0 40px rgba(255, 45, 149, 0.35);
  --gradient: linear-gradient(135deg, var(--cyan) 0%, var(--magenta) 50%, var(--purple) 100%);
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Syncopate', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

body.loaded { overflow-x: hidden; }

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

a { color: inherit; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── PRELOADER ─── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 2px solid transparent;
  border-top-color: var(--cyan);
  border-right-color: var(--magenta);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

.preloader__ring--2 {
  width: 220px;
  height: 220px;
  border-top-color: var(--magenta);
  border-right-color: var(--purple);
  animation: spin 1.8s linear infinite reverse;
}

.preloader__logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  animation: preloaderPulse 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(0, 232, 255, 0.6));
  z-index: 1;
}

.preloader__text {
  margin-top: 2rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--cyan);
  animation: blink 1s step-end infinite;
  z-index: 1;
}

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

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(0, 232, 255, 0.6)); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 40px rgba(255, 45, 149, 0.8)); }
}

@keyframes blink { 50% { opacity: 0; } }

/* ─── BACKGROUND FX ─── */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(153, 69, 255, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(255, 45, 149, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 30% at 50% 90%, rgba(0, 232, 255, 0.08) 0%, transparent 50%);
  animation: auroraShift 12s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes auroraShift {
  0% { filter: hue-rotate(0deg); transform: scale(1); }
  100% { filter: hue-rotate(30deg); transform: scale(1.05); }
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  pointer-events: none;
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(3, 3, 8, 0.7) 100%);
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 232, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

body.loaded .cursor-glow { opacity: 1; }

@media (hover: none) {
  .cursor-glow { display: none; }
}

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  background: rgba(3, 3, 8, 0.6);
  backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

.header.scrolled {
  background: rgba(3, 3, 8, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  padding: 0.5rem 2rem;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.header__logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 232, 255, 0.5));
  transition: transform 0.4s, filter 0.4s;
}

.header__logo:hover .header__logo-img {
  transform: scale(1.1) rotate(-3deg);
  filter: drop-shadow(0 0 16px rgba(255, 45, 149, 0.7));
}

.header__logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav__link {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  transition: color 0.3s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.nav__link:hover { color: var(--cyan); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
  padding: 0.55rem 1.4rem;
  background: var(--gradient);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bg) !important;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.nav__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.nav__cta:hover {
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

.nav__cta:hover::before { transform: translateX(100%); }

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}

.menu-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cyan);
  transition: transform 0.3s, opacity 0.3s;
  box-shadow: 0 0 6px var(--cyan);
}

.menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 10;
}

.hero__banner-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.08);
  animation: bannerZoom 20s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes bannerZoom {
  0% { transform: scale(1.08) translateY(0); }
  100% { transform: scale(1.15) translateY(-2%); }
}

.hero__banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3,3,8,0.3) 0%, rgba(3,3,8,0.5) 40%, rgba(3,3,8,0.92) 85%, var(--bg) 100%),
    linear-gradient(90deg, rgba(3,3,8,0.7) 0%, transparent 50%, rgba(3,3,8,0.4) 100%);
}

.hero__energy-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__energy-lines span {
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--cyan), transparent);
  opacity: 0.15;
  animation: energyPulse 4s ease-in-out infinite;
}

.hero__energy-lines span:nth-child(1) { left: 15%; animation-delay: 0s; }
.hero__energy-lines span:nth-child(2) { left: 35%; animation-delay: 0.8s; }
.hero__energy-lines span:nth-child(3) { left: 55%; animation-delay: 1.6s; }
.hero__energy-lines span:nth-child(4) { left: 75%; animation-delay: 2.4s; }
.hero__energy-lines span:nth-child(5) { left: 90%; animation-delay: 3.2s; }

@keyframes energyPulse {
  0%, 100% { opacity: 0.05; transform: scaleY(0.8); }
  50% { opacity: 0.25; transform: scaleY(1); }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  max-width: 900px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(0, 232, 255, 0.3);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0, 232, 255, 0.05);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__logo-float {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.hero__logo-ring {
  position: absolute;
  inset: -20px;
  border: 2px solid transparent;
  border-top-color: var(--cyan);
  border-bottom-color: var(--magenta);
  border-radius: 50%;
  animation: spin 4s linear infinite;
}

.hero__logo {
  width: clamp(120px, 20vw, 200px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(0, 232, 255, 0.5)) drop-shadow(0 0 60px rgba(255, 45, 149, 0.3));
  animation: logoFloat 5s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-12px) rotate(1deg); }
  75% { transform: translateY(6px) rotate(-1deg); }
}

.hero__title {
  font-family: var(--font-display);
  line-height: 0.95;
  margin-bottom: 0.5rem;
}

.hero__title .glitch {
  display: block;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  letter-spacing: 0.3em;
  color: var(--magenta);
  position: relative;
}

.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.glitch.active::before {
  animation: glitch1 0.3s linear;
  color: var(--cyan);
  opacity: 0.8;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch.active::after {
  animation: glitch2 0.3s linear;
  color: var(--magenta);
  opacity: 0.8;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

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

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

.hero__title-main {
  display: block;
  font-size: clamp(3rem, 10vw, 7rem);
  letter-spacing: 0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(0, 232, 255, 0.3));
  animation: titleShimmer 4s ease-in-out infinite;
}

@keyframes titleShimmer {
  0%, 100% { filter: drop-shadow(0 0 40px rgba(0, 232, 255, 0.3)); }
  50% { filter: drop-shadow(0 0 60px rgba(255, 45, 149, 0.5)); }
}

.hero__ticker-wrap {
  position: relative;
  display: inline-block;
  margin: 0.5rem 0 1rem;
}

.hero__ticker {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: 0.2em;
  color: var(--cyan);
  position: relative;
  z-index: 1;
}

.hero__ticker-glow {
  position: absolute;
  inset: -10px -30px;
  background: radial-gradient(ellipse, rgba(0, 232, 255, 0.2) 0%, transparent 70%);
  animation: tickerGlow 3s ease-in-out infinite;
}

@keyframes tickerGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero__tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-dim);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__tagline strong { color: var(--text); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

/* ─── BUTTONS ─── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn__label { position: relative; z-index: 2; }

.btn__shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
  0% { left: -100%; }
  50%, 100% { left: 150%; }
}

.btn--primary {
  background: var(--gradient);
  color: var(--bg);
  box-shadow: 0 4px 30px rgba(0, 232, 255, 0.3);
}

.btn--primary:hover {
  box-shadow: 0 8px 40px rgba(255, 45, 149, 0.4), 0 0 60px rgba(0, 232, 255, 0.2);
  transform: translateY(-3px) scale(1.02);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border: 1px solid rgba(0, 232, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  border-color: var(--magenta);
  color: var(--cyan);
  box-shadow: var(--glow-magenta);
  transform: translateY(-3px);
}

.btn--outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan);
}

.btn--outline:hover {
  background: rgba(0, 232, 255, 0.1);
  box-shadow: var(--glow-cyan);
}

.btn--full { width: 100%; }

.hero__stats {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 2rem;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(16px);
}

.hero__stat { text-align: center; }

.hero__stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--text);
}

.hero__stat-val--live {
  color: var(--green);
  animation: liveText 2s ease-in-out infinite;
}

@keyframes liveText {
  0%, 100% { text-shadow: 0 0 10px rgba(20, 241, 149, 0.5); }
  50% { text-shadow: 0 0 20px rgba(20, 241, 149, 0.9); }
}

.hero__stat-key {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, var(--cyan), transparent);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--cyan), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── MARQUEE ─── */
.marquee {
  position: relative;
  z-index: 10;
  padding: 1rem 0;
  background: linear-gradient(90deg, var(--bg), rgba(0, 232, 255, 0.05), var(--bg));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: 3rem;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee__track span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  flex-shrink: 0;
}

.marquee__track span:nth-child(odd) {
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0, 232, 255, 0.4);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SECTIONS ─── */
.section {
  position: relative;
  z-index: 10;
  padding: 6rem 0;
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.05em;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__sub {
  color: var(--text-dim);
  font-size: 1.15rem;
  margin-top: 0.75rem;
}

/* ─── ABOUT ─── */
.about__showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about__visual {
  position: relative;
}

.about__img-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about__img {
  width: 100%;
  border-radius: 16px;
  transition: transform 0.6s ease;
}

.about__img-frame:hover .about__img {
  transform: scale(1.05);
}

.about__img-border {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cyan), var(--magenta), var(--purple)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

.about__logo-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 100px;
  height: 100px;
  background: var(--bg);
  border-radius: 50%;
  border: 2px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-cyan);
  animation: logoFloat 4s ease-in-out infinite;
}

.about__logo-badge img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.about__lead {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.about__copy p {
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about__copy strong { color: var(--cyan); }

/* ─── TILT CARDS ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tilt-card {
  position: relative;
  border-radius: 20px;
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.1s ease;
}

.tilt-card__glow {
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.tilt-card:hover .tilt-card__glow { opacity: 1; }

.tilt-card__inner {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(16px);
  height: 100%;
  transition: border-color 0.4s, background 0.4s;
}

.tilt-card:hover .tilt-card__inner {
  border-color: transparent;
  background: rgba(8, 8, 20, 0.9);
}

.tilt-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tilt-card__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 232, 255, 0.5));
}

.tilt-card__icon--sol {
  font-size: 2rem;
  color: var(--purple);
  text-shadow: 0 0 20px var(--purple);
}

.tilt-card__icon--pump {
  font-size: 2rem;
  filter: drop-shadow(0 0 10px var(--green));
}

.tilt-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.tilt-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

/* ─── TOKEN CARD ─── */
.token__card {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.token__card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--cyan), transparent, var(--magenta), transparent);
  animation: tokenGlowSpin 8s linear infinite;
  opacity: 0.05;
}

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

.token__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  position: relative;
}

.token__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(0, 232, 255, 0.5));
  animation: logoFloat 5s ease-in-out infinite;
}

.token__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
}

.token__symbol {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--cyan);
  letter-spacing: 0.15em;
}

.token__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.token__field {
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.token__key {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}

.token__val {
  font-weight: 700;
  font-size: 1.05rem;
}

.token__ca {
  margin-bottom: 1.5rem;
  position: relative;
}

.token__ca-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding: 0.85rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 232, 255, 0.2);
  border-radius: 12px;
}

.token__ca-val {
  flex: 1;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: var(--green);
  word-break: break-all;
}

.token__copy {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 232, 255, 0.1);
  border: 1px solid rgba(0, 232, 255, 0.3);
  border-radius: 10px;
  color: var(--cyan);
  cursor: not-allowed;
  opacity: 0.4;
  transition: all 0.3s;
}

.token__copy:not(:disabled) {
  cursor: pointer;
  opacity: 1;
}

.token__copy:not(:disabled):hover {
  background: rgba(0, 232, 255, 0.2);
  box-shadow: var(--glow-cyan);
}

.token__copy.copied {
  background: rgba(20, 241, 149, 0.2);
  border-color: var(--green);
  color: var(--green);
}

/* ─── SOCIAL ─── */
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.social-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.4s, border-color 0.4s;
}

.social-btn__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.4s;
}

.social-btn:hover .social-btn__bg { opacity: 0.08; }

.social-btn:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(0, 232, 255, 0.4);
  box-shadow: var(--glow-cyan);
}

.social-btn--tg:hover {
  border-color: rgba(38, 165, 228, 0.5);
  box-shadow: 0 0 40px rgba(38, 165, 228, 0.25);
}

.social-btn svg,
.social-btn__text,
.social-btn__arrow {
  position: relative;
  z-index: 1;
}

.social-btn__label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

.social-btn__handle {
  display: block;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.social-btn__arrow {
  margin-left: auto;
  font-size: 1.5rem;
  color: var(--cyan);
  transition: transform 0.3s;
}

.social-btn:hover .social-btn__arrow { transform: translateX(6px); }

/* ─── FOOTER ─── */
.footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  background: rgba(3, 3, 8, 0.8);
}

.footer__inner {
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer__logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 232, 255, 0.4));
}

.footer__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__tag {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer__links a {
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: color 0.3s;
}

.footer__links a:hover { color: var(--cyan); }

.footer__disclaimer {
  font-size: 0.75rem;
  color: var(--text-dim);
  opacity: 0.6;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .about__showcase { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    background: rgba(3, 3, 8, 0.97);
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 105;
  }

  .nav.open { transform: translateX(0); }

  .nav__link { font-size: 1.2rem; }

  .menu-btn { display: flex; }

  .hero__stats {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
  }

  .hero__stat-divider {
    width: 60px;
    height: 1px;
  }

  .hero__scroll { display: none; }

  .about__logo-badge {
    right: 10px;
    bottom: -20px;
    width: 80px;
    height: 80px;
  }

  .about__logo-badge img {
    width: 56px;
    height: 56px;
  }

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

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

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