/* ============================================
   COINRUSH — NEXT-GEN PREMIUM CSS v8
   Clean · Elegant · Ultra-refined
   ============================================ */

/* ─── Variables ─── */
:root {
  --cr-bg: #030308;
  --cr-surface: rgba(10, 12, 24, 0.55);
  --cr-surface-hover: rgba(14, 16, 32, 0.7);
  --cr-border: rgba(255, 255, 255, 0.05);
  --cr-border-hover: rgba(255, 255, 255, 0.1);
  --cr-accent: #4fffb0;
  --cr-accent-dim: rgba(79, 255, 176, 0.06);
  --cr-purple: #a855f7;
  --cr-gold: #fbbf24;
  --cr-cyan: #06b6d4;
  --cr-blue: #3b82f6;
  --cr-pink: #f472b6;
  --cr-text: #eaf0f8;
  --cr-dim: rgba(255, 255, 255, 0.55);
  --cr-muted: rgba(255, 255, 255, 0.3);
  --cr-radius: 18px;
  --cr-radius-sm: 12px;
  --cr-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --cr-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --cr-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--cr-bg);
  color: var(--cr-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  letter-spacing: -0.01em;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

/* ─── Layout ─── */
.cr-wrap { max-width: 1080px; margin: 0 auto; padding: 0 28px; }
.cr-landing {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* ═══════════════════════════════════════════
   FULL-PAGE CANVAS — Behind everything
   ═══════════════════════════════════════════ */
.cr-full-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  pointer-events: all;
  z-index: 0;
  cursor: crosshair;
  will-change: contents;
}

/* ═══════════════════════════════════════════
   MOUSE TRAIL CANVAS — Fixed viewport overlay
   ═══════════════════════════════════════════ */
.cr-mouse-trail {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 2;
  will-change: contents;
}

/* ═══════════════════════════════════════════
   CURSOR GLOW — Ambient follow light
   ═══════════════════════════════════════════ */
.cr-cursor-glow {
  position: absolute;
  top: 0; left: 0;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(79, 255, 176, 0.035) 0%,
    rgba(6, 182, 212, 0.015) 30%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
  will-change: transform, width, height;
  filter: blur(40px);
  transition: opacity 0.3s;
}

/* ═══════════════════════════════════════════
   FILM GRAIN
   ═══════════════════════════════════════════ */
.cr-landing::after {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  opacity: 0.018;
  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");
  background-repeat: repeat;
  background-size: 200px;
}

/* ─── Star field ─── */
.cr-landing::before {
  content: '';
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.25) 50%, transparent 100%),
    radial-gradient(1px 1px at 25% 70%, rgba(255,255,255,0.18) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 50% 8%, rgba(255,255,255,0.3) 50%, transparent 100%),
    radial-gradient(1px 1px at 68% 38%, rgba(255,255,255,0.12) 50%, transparent 100%),
    radial-gradient(1px 1px at 90% 75%, rgba(255,255,255,0.2) 50%, transparent 100%),
    radial-gradient(1px 1px at 15% 90%, rgba(255,255,255,0.15) 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 80% 12%, rgba(255,255,255,0.22) 50%, transparent 100%),
    radial-gradient(1px 1px at 38% 48%, rgba(255,255,255,0.1) 50%, transparent 100%),
    radial-gradient(1px 1px at 58% 82%, rgba(255,255,255,0.16) 50%, transparent 100%),
    radial-gradient(1px 1px at 95% 45%, rgba(255,255,255,0.14) 50%, transparent 100%),
    radial-gradient(0.8px 0.8px at 42% 22%, rgba(79,255,176,0.25) 50%, transparent 100%),
    radial-gradient(0.8px 0.8px at 72% 58%, rgba(168,85,247,0.2) 50%, transparent 100%);
  animation: cr-twinkle 8s ease-in-out infinite alternate;
}
@keyframes cr-twinkle {
  0% { opacity: 1; }
  100% { opacity: 0.6; }
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════ */
.rv {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--cr-smooth), transform 0.9s var(--cr-smooth);
  will-change: opacity, transform;
}
.rv.vis {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   MAGNETIC CARD — 3D hover + glow tracking
   ═══════════════════════════════════════════ */
.cr-magnetic-card {
  position: relative;
  will-change: transform;
  transform-style: preserve-3d;
}
.cr-magnetic-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cr-magnetic-card:hover .cr-magnetic-glow {
  opacity: 1;
}

/* ═══════════════════════════════════════════
   NAVBAR — Premium floating glass
   ═══════════════════════════════════════════ */
.cr-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: transparent;
  transition: all 0.5s var(--cr-smooth);
}
.cr-nav.scrolled {
  background: rgba(3, 3, 8, 0.75);
  backdrop-filter: blur(40px) saturate(1.6);
  -webkit-backdrop-filter: blur(40px) saturate(1.6);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}
.cr-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.cr-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  transition: transform 0.4s var(--cr-spring), opacity 0.3s;
}
.cr-logo:hover {
  transform: scale(1.04);
}
.cr-logo-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, #4fffb0, #00d68f);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  transition: box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(79, 255, 176, 0.15);
}
.cr-logo:hover .cr-logo-icon {
  box-shadow: 0 0 24px rgba(79, 255, 176, 0.35), 0 0 48px rgba(79, 255, 176, 0.12);
}
.cr-logo-icon::after {
  content: '';
  position: absolute; inset: -50%;
  background: conic-gradient(transparent 0deg, rgba(255,255,255,0.2) 90deg, transparent 180deg);
  animation: cr-logo-spin 4s linear infinite;
}
@keyframes cr-logo-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.cr-logo-icon-inner {
  position: relative; z-index: 2;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 12px; color: #020206;
}
.cr-logo-text { display: flex; flex-direction: column; }
.cr-logo-name {
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 14px; color: #fff;
  letter-spacing: 1.8px; line-height: 1;
}
.cr-logo-tag {
  font-size: 7.5px; color: var(--cr-muted); letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 600; margin-top: 1px;
}
.cr-nav-btns { display: flex; gap: 8px; align-items: center; }
.cr-nav-user { font-size: 13px; color: var(--cr-dim); margin-right: 6px; font-weight: 500; }
.cr-nav-user strong { color: #fff; font-weight: 700; }

/* ═══════════════════════════════════════════
   BUTTONS — Clean Premium Design
   ═══════════════════════════════════════════ */
.cr-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 600;
  border-radius: 12px;
  transition: all 0.35s var(--cr-smooth);
  white-space: nowrap; cursor: pointer; text-decoration: none;
  position: relative; overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  letter-spacing: -0.01em;
}
.cr-btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.3s var(--cr-spring); }
.cr-btn:hover svg { transform: translateX(2px); }
.cr-btn-sm { padding: 10px 22px; font-size: 13px; border-radius: 10px; }
.cr-btn-lg { padding: 16px 34px; font-size: 15px; }
.cr-btn-xl { padding: 18px 44px; font-size: 15px; letter-spacing: 0.01em; border-radius: 14px; }

/* Primary — Clean gradient */
.cr-btn-primary {
  background: linear-gradient(135deg, #4fffb0 0%, #00e89e 50%, #06d6a0 100%);
  color: #020206;
  font-weight: 700;
  box-shadow:
    0 2px 8px rgba(79, 255, 176, 0.2),
    0 8px 28px rgba(79, 255, 176, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: none;
}
.cr-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 6px 24px rgba(79, 255, 176, 0.3),
    0 16px 48px rgba(79, 255, 176, 0.12);
  filter: brightness(1.06);
}
.cr-btn-primary:active {
  transform: translateY(-1px) scale(0.99);
  transition-duration: 0.1s;
}

/* Shimmer */
.cr-btn-shimmer::before {
  content: '';
  position: absolute; top: 0; left: -120%; width: 50%; height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.15) 45%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0.15) 55%,
    transparent 70%
  );
  animation: cr-shimmer 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes cr-shimmer {
  0% { left: -120%; }
  100% { left: 220%; }
}

/* Glow */
.cr-btn-glow::after {
  content: '';
  position: absolute; inset: -4px; border-radius: inherit;
  background: rgba(79,255,176,0.35);
  z-index: -1;
  filter: blur(18px);
  opacity: 0;
  transition: opacity 0.5s var(--cr-smooth);
}
.cr-btn-glow:hover::after { opacity: 0.6; }

/* Ghost — Subtle glass */
.cr-btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--cr-text);
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.cr-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.cr-btn-ghost:active {
  transform: translateY(0) scale(0.99);
  transition-duration: 0.1s;
}

/* ═══════════════════════════════════════════
   BADGE — Refined pill
   ═══════════════════════════════════════════ */
.cr-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; color: rgba(79, 255, 176, 0.85);
  letter-spacing: 0.6px; text-transform: uppercase;
  background: rgba(79, 255, 176, 0.04);
  border: 1px solid rgba(79, 255, 176, 0.08);
  padding: 8px 20px; border-radius: 100px;
  margin-bottom: 24px;
  position: relative; overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.4s var(--cr-ease);
}
.cr-badge:hover {
  border-color: rgba(79, 255, 176, 0.15);
  background: rgba(79, 255, 176, 0.06);
  transform: translateY(-1px);
}
.cr-badge-shimmer::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(79,255,176,0.1), transparent);
  animation: cr-shimmer 5s ease-in-out infinite;
}
.cr-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cr-accent);
  animation: cr-pulse 2.5s ease infinite;
  box-shadow: 0 0 8px rgba(79,255,176,0.4);
}
@keyframes cr-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

/* ═══════════════════════════════════════════
   GRADIENT TEXT
   ═══════════════════════════════════════════ */
.cr-grad {
  background: linear-gradient(135deg, #4fffb0, #06b6d4, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════
   HERO — Full viewport, balanced whitespace
   ═══════════════════════════════════════════ */
.cr-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 28px 100px;
  z-index: 2;
}

.cr-hero-inner {
  position: relative; z-index: 2;
  max-width: 680px;
}

.cr-hero-title {
  font-family: 'Sora', sans-serif;
  line-height: 1.05;
  margin-bottom: 28px;
}
.cr-hero-l1 {
  display: block;
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.cr-hero-l2 {
  display: block;
  font-size: clamp(44px, 8vw, 82px);
  font-weight: 800;
  letter-spacing: -2px;
}
/* Animated gradient on hero title */
.cr-hero-l2 .cr-grad {
  background: linear-gradient(135deg, #4fffb0, #06b6d4, #a855f7, #4fffb0);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: cr-grad-shift 8s ease-in-out infinite;
}
@keyframes cr-grad-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.cr-hero-desc {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--cr-dim);
  line-height: 1.75;
  max-width: 460px;
  margin: 0 auto 40px;
  letter-spacing: -0.01em;
}

.cr-hero-btns {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap;
}

/* Scroll hint */
.cr-scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 3;
  animation: cr-float 3.5s ease-in-out infinite;
}
.cr-scroll-text {
  font-size: 10px; font-weight: 600;
  color: var(--cr-muted);
  letter-spacing: 1.5px; text-transform: uppercase;
}
.cr-scroll-arrow {
  display: flex;
}
.cr-scroll-arrow svg {
  width: 16px; height: 16px; color: var(--cr-muted);
  opacity: 0.6;
}
@keyframes cr-float {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.6; }
}

/* ═══════════════════════════════════════════
   SECTIONS — Global
   ═══════════════════════════════════════════ */
.cr-section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}
.cr-section::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79,255,176,0.12), transparent);
}

.cr-sec-header {
  text-align: center;
  margin-bottom: 56px;
}
.cr-sec-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.cr-sec-sub {
  font-size: clamp(14px, 1.5vw, 15px);
  color: var(--cr-dim);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

/* ═══════════════════════════════════════════
   NUMBERS — Elegant stat counters
   ═══════════════════════════════════════════ */
.cr-numbers { padding: 60px 0; }
.cr-numbers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--cr-radius);
  overflow: hidden;
  background: rgba(8, 10, 20, 0.35);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: border-color 0.5s, box-shadow 0.5s;
}
.cr-numbers-grid:hover {
  border-color: rgba(79, 255, 176, 0.06);
  box-shadow: 0 0 80px rgba(79, 255, 176, 0.02);
}
.cr-num-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 44px 20px;
  position: relative;
  transition: background 0.5s;
}
.cr-num-item:hover {
  background: rgba(79, 255, 176, 0.015);
}
/* Grid lines */
.cr-num-item:nth-child(1),
.cr-num-item:nth-child(2) {
  border-bottom: 1px solid var(--cr-border);
}
.cr-num-item:nth-child(1),
.cr-num-item:nth-child(3) {
  border-right: 1px solid var(--cr-border);
}

.cr-num-val {
  font-family: 'Sora', sans-serif;
  font-size: clamp(26px, 4.5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  transition: text-shadow 0.4s;
}
.cr-num-item:hover .cr-num-val {
  text-shadow: 0 0 40px rgba(79, 255, 176, 0.15);
}
.cr-num-label {
  font-size: 11px; font-weight: 600;
  color: var(--cr-muted);
  letter-spacing: 0.8px;
  margin-top: 8px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .cr-numbers-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .cr-num-item { padding: 48px 24px; }
  .cr-num-item:nth-child(1),
  .cr-num-item:nth-child(2) { border-bottom: none; }
  .cr-num-item:nth-child(1),
  .cr-num-item:nth-child(2),
  .cr-num-item:nth-child(3) {
    border-right: 1px solid var(--cr-border);
  }
}

/* ═══════════════════════════════════════════
   STATEMENT — Premium bold text block
   ═══════════════════════════════════════════ */
.cr-statement { padding: 120px 0; }
.cr-statement-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cr-statement-text {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.5px;
}
.cr-statement-sub {
  text-align: center;
  max-width: 540px;
  margin: 28px auto 0;
}
.cr-statement-sub p {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--cr-dim);
  line-height: 1.8;
  letter-spacing: -0.01em;
}

/* ═══════════════════════════════════════════
   PILLARS — Premium feature list
   ═══════════════════════════════════════════ */
.cr-pillars-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-radius: var(--cr-radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.cr-pillar-wrap {
  /* wrapper for scroll reveal on magnetic card */
}

.cr-pillar {
  display: flex; align-items: center; gap: 20px;
  padding: 26px 28px;
  background: rgba(8, 10, 20, 0.5);
  border: none;
  border-radius: 0;
  position: relative;
  transition: background 0.5s, box-shadow 0.5s;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cr-pillar-wrap:first-child .cr-pillar { border-radius: var(--cr-radius) var(--cr-radius) 0 0; }
.cr-pillar-wrap:last-child .cr-pillar { border-radius: 0 0 var(--cr-radius) var(--cr-radius); }
.cr-pillar:hover {
  background: rgba(14, 16, 32, 0.8);
  box-shadow: inset 0 0 40px rgba(79, 255, 176, 0.015);
}

.cr-pillar-icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s var(--cr-smooth);
  position: relative;
  z-index: 2;
}
.cr-pillar-icon svg {
  width: 20px; height: 20px;
  color: var(--pcolor, #4fffb0);
  transition: filter 0.4s, transform 0.4s;
}
.cr-pillar:hover .cr-pillar-icon svg {
  filter: drop-shadow(0 0 10px var(--pcolor, #4fffb0));
  transform: scale(1.08);
}
.cr-pillar:hover .cr-pillar-icon {
  border-color: rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
}

.cr-pillar-text {
  position: relative;
  z-index: 2;
}
.cr-pillar-text h3 {
  font-family: 'Sora', sans-serif;
  font-size: 15px; font-weight: 700; color: #fff;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.cr-pillar:hover .cr-pillar-text h3 {
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.06);
}
.cr-pillar-text p {
  font-size: 13px; color: var(--cr-dim); line-height: 1.55;
  letter-spacing: -0.01em;
}

.cr-pillar-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
}
.cr-pillar:hover .cr-pillar-line { opacity: 1; }

/* ═══════════════════════════════════════════
   LIVE TICKER — Clean horizontal scroll
   ═══════════════════════════════════════════ */
.cr-ticker {
  position: relative; z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  background: rgba(3, 3, 8, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  margin: 0;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.cr-ticker-track {
  display: flex; gap: 40px; white-space: nowrap;
  padding: 14px 0;
  animation: cr-scroll 60s linear infinite;
}
.cr-ticker-item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--cr-muted);
  flex-shrink: 0;
  transition: color 0.3s;
}
.cr-ticker-item:hover {
  color: rgba(255, 255, 255, 0.7);
}
.cr-ticker-item strong { color: rgba(255, 255, 255, 0.7); font-weight: 600; }
.cr-ticker-avatar {
  width: 16px; height: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cr-ticker-avatar svg { width: 16px; height: 16px; }
.cr-ticker-amt {
  color: var(--cr-accent); font-weight: 700;
  text-shadow: 0 0 6px rgba(79,255,176,0.1);
}
.cr-ticker-game {
  font-size: 10px; font-weight: 600; text-transform: uppercase;
  padding: 2px 8px; border-radius: 4px;
  background: rgba(255,255,255,0.03);
  color: var(--cr-muted); letter-spacing: 0.5px;
}
@keyframes cr-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

/* ═══════════════════════════════════════════
   SOCIAL STATS — Clean glass cards
   ═══════════════════════════════════════════ */
.cr-social-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 40px;
}
@media (min-width: 600px) {
  .cr-social-stats { grid-template-columns: repeat(3, 1fr); }
}

.cr-social-stat-wrap {
  /* wrapper for magnetic card */
}

.cr-social-stat {
  display: flex; align-items: center; gap: 16px;
  padding: 24px;
  background: rgba(8, 10, 20, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--cr-radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.4s, box-shadow 0.4s, background 0.4s;
}
.cr-social-stat:hover {
  border-color: rgba(255, 255, 255, 0.07);
  background: rgba(10, 12, 24, 0.5);
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.cr-social-emoji {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s var(--cr-spring);
}
.cr-social-emoji svg { width: 28px; height: 28px; }
.cr-social-stat:hover .cr-social-emoji {
  transform: scale(1.15);
}
.cr-social-val {
  font-family: 'Sora', sans-serif;
  font-size: 22px; font-weight: 800; color: #fff;
  display: block; line-height: 1.2;
  letter-spacing: -0.5px;
}
.cr-social-lbl {
  font-size: 12px; color: var(--cr-muted);
  display: block; margin-top: 2px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   CTA — Clean final call
   ═══════════════════════════════════════════ */
.cr-cta {
  padding: 60px 0 120px;
  position: relative; z-index: 2;
}
.cr-cta-inner {
  text-align: center;
  padding: 72px 32px;
  background: rgba(8, 10, 20, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color 0.5s, box-shadow 0.5s;
}
.cr-cta-inner:hover {
  border-color: rgba(79, 255, 176, 0.06);
  box-shadow: 0 0 100px rgba(79, 255, 176, 0.02);
}

/* Subtle floating glows */
.cr-cta-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cr-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.cr-cta-orb-1 {
  width: 300px; height: 300px;
  background: rgba(79, 255, 176, 0.04);
  top: -80px; left: -60px;
  animation: cr-orb-float 14s ease-in-out infinite alternate;
}
.cr-cta-orb-2 {
  width: 240px; height: 240px;
  background: rgba(6, 182, 212, 0.03);
  bottom: -80px; right: -60px;
  animation: cr-orb-float 16s ease-in-out infinite alternate-reverse;
}
.cr-cta-orb-3 {
  width: 180px; height: 180px;
  background: rgba(168, 85, 247, 0.025);
  top: 40%; left: 50%;
  animation: cr-orb-float 12s ease-in-out infinite alternate;
}
@keyframes cr-orb-float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.15); }
}

.cr-cta-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800; color: #fff;
  margin-bottom: 14px;
  position: relative;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cr-cta-sub {
  font-size: clamp(14px, 1.5vw, 15px);
  color: var(--cr-dim);
  max-width: 420px; margin: 0 auto 32px;
  line-height: 1.7;
  position: relative;
  letter-spacing: -0.01em;
}
.cr-cta-btns {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
  position: relative;
}

/* Trust pills — Minimal glass */
.cr-trust-pills {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  position: relative;
}
.cr-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: var(--cr-muted);
  padding: 7px 16px; border-radius: 100px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.35s var(--cr-smooth);
  letter-spacing: 0.1px;
}
.cr-pill:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(79,255,176,0.1);
  color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}
.cr-pill svg { width: 12px; height: 12px; color: var(--cr-accent); opacity: 0.7; transition: opacity 0.3s; }
.cr-pill:hover svg { opacity: 1; }

/* ═══════════════════════════════════════════
   MOBILE RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 767px) {
  .cr-hero { min-height: 100vh; min-height: 100dvh; padding: 120px 20px 60px; }
  .cr-section { padding: 72px 0; }
  .cr-statement { padding: 80px 0; }
  .cr-cursor-glow { display: none; }
  .cr-mouse-trail { display: none; }
  .cr-full-canvas { pointer-events: none; }
  .cr-landing::after { display: none; }
  .cr-pillar { padding: 20px; gap: 14px; }
  .cr-pillar-icon { width: 40px; height: 40px; min-width: 40px; border-radius: 10px; }
  .cr-pillar-icon svg { width: 18px; height: 18px; }
  .cr-pillar-text h3 { font-size: 14px; }
  .cr-pillar-text p { font-size: 12px; }
  .cr-cta-inner { padding: 48px 20px; border-radius: 20px; }
  .cr-hero-btns .cr-btn-xl { width: 100%; justify-content: center; }
  .cr-scroll-hint { bottom: 24px; }
  .cr-magnetic-card { transform: none !important; }
  .cr-wrap { padding: 0 20px; }
  .cr-sec-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .cr-num-item { padding: 28px 12px; }
  .cr-num-val { font-size: 22px; }
  .cr-social-stat { padding: 18px; }
  .cr-social-val { font-size: 18px; }
  .cr-hero-l2 { letter-spacing: -1px; }
  .cr-btn-xl { padding: 16px 32px; font-size: 14px; }
}
