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

:root {
  --g: #25D366;
  --g2: #1DB954;
  --g3: #00FF87;
  --black: #050805;
  --dark: #090D09;
  --card: #0D130D;
  --white: #F0FFF0;
  --muted: #4D6B4D;
  --border: rgba(37,211,102,0.12);
  --border2: rgba(37,211,102,0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* ===================== CURSOR ===================== */
.cursor {
  width: 10px; height: 10px;
  background: var(--g);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  transition: transform 0.15s ease, width 0.2s, height 0.2s;
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(37,211,102,0.6);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.18s ease;
}
.cursor.hover { width: 16px; height: 16px; background: var(--g3); }
.cursor-ring.hover { width: 56px; height: 56px; border-color: var(--g); }

/* ===================== PARTICLE CANVAS ===================== */
#particle-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ===================== NOISE ===================== */
body::after {
  content: '';
  position: fixed; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9000;
}

/* ===================== NAV ===================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  border-bottom: 1px solid rgba(37,211,102,0.08);
  backdrop-filter: blur(24px) saturate(180%);
  background: rgba(5,8,5,0.8);
  animation: navDrop 0.8s ease both;
}

@keyframes navDrop { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }

.logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #1a2e1a, #0d1f0d);
  border: 1px solid var(--border2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  transition: all 0.3s ease;
}
.logo-mark:hover { border-color: var(--g); box-shadow: 0 0 20px rgba(37,211,102,0.4); }
.logo-mark::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(37,211,102,0.15), transparent); }
.logo-mark svg { width: 22px; height: 22px; position: relative; z-index: 1; }

.logo-wordmark { font-family: 'Bebas Neue', cursive; font-size: 26px; letter-spacing: 2px; color: #fff; line-height: 1; }
.logo-wordmark em { color: var(--g); font-style: normal; }

.nav-center { display: flex; gap: 36px; list-style: none; }
.nav-center a {
  color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 500;
  letter-spacing: 0.5px; transition: color 0.2s; text-transform: uppercase; position: relative;
}
.nav-center a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--g); transition: width 0.3s ease;
}
.nav-center a:hover { color: var(--g); }
.nav-center a:hover::after { width: 100%; }

.btn-solid-nav {
  padding: 9px 22px; border-radius: 8px; font-size: 13px; font-weight: 700;
  cursor: pointer; text-decoration: none; font-family: 'Outfit', sans-serif;
  background: var(--g); color: #000; border: none; transition: all 0.25s;
  position: relative; overflow: hidden;
}
.btn-solid-nav::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%); transition: transform 0.5s;
}
.btn-solid-nav:hover::before { transform: translateX(100%); }
.btn-solid-nav:hover { background: var(--g3); box-shadow: 0 0 24px rgba(37,211,102,0.5); transform: translateY(-1px); }

/* ===================== AURORA HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
}

/* Aurora layers */
.aurora {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.aurora-band {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  mix-blend-mode: screen;
  opacity: 0;
  animation: auroraReveal 2s ease forwards;
}
.aurora-1 {
  width: 70vw; height: 40vh;
  background: radial-gradient(ellipse, rgba(37,211,102,0.18) 0%, transparent 70%);
  top: -10%; left: -10%;
  animation: auroraReveal 2s 0.2s ease forwards, aurora1Move 12s 2s ease-in-out infinite;
}
.aurora-2 {
  width: 60vw; height: 50vh;
  background: radial-gradient(ellipse, rgba(0,255,135,0.10) 0%, transparent 70%);
  bottom: -10%; right: -10%;
  animation: auroraReveal 2s 0.4s ease forwards, aurora2Move 14s 2s ease-in-out infinite;
}
.aurora-3 {
  width: 40vw; height: 60vh;
  background: radial-gradient(ellipse, rgba(29,185,84,0.08) 0%, transparent 70%);
  top: 30%; left: 40%;
  animation: auroraReveal 2s 0.6s ease forwards, aurora3Move 10s 2s ease-in-out infinite;
}

@keyframes auroraReveal { to { opacity: 1; } }
@keyframes aurora1Move { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(5vw,-5vh) scale(1.1)} 66%{transform:translate(-3vw,8vh) scale(0.95)} }
@keyframes aurora2Move { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(-8vw,4vh) scale(1.05)} 66%{transform:translate(6vw,-6vh) scale(1.1)} }
@keyframes aurora3Move { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(4vw,3vh) scale(1.15)} }

/* Grid overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(37,211,102,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(37,211,102,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent);
  pointer-events: none;
  animation: gridReveal 2s ease both;
}
@keyframes gridReveal { from { opacity: 0; } to { opacity: 1; } }

.hero-inner {
  max-width: 1100px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 2;
}

/* ===================== HERO LEFT ===================== */
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(37,211,102,0.08); border: 1px solid rgba(37,211,102,0.2);
  border-radius: 6px; padding: 6px 14px; margin-bottom: 32px;
  font-size: 11px; font-weight: 600; color: var(--g);
  text-transform: uppercase; letter-spacing: 2px;
  animation: tagSlide 0.8s 0.5s ease both;
}
.live-dot { width: 6px; height: 6px; background: var(--g); border-radius: 50%; animation: blink 1.4s infinite; }
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.3;transform:scale(0.7)} }
@keyframes tagSlide { from { opacity:0; transform:translateX(-30px); } to { opacity:1; transform:translateX(0); } }

.hero-h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(72px, 8vw, 120px);
  line-height: 0.92; letter-spacing: 3px; margin-bottom: 24px;
  animation: h1Rise 0.9s 0.6s ease both;
}
@keyframes h1Rise { from { opacity:0; transform:translateY(50px); } to { opacity:1; transform:translateY(0); } }

.line-white { display: block; color: #fff; }
.line-green {
  display: block; color: var(--g);
  text-shadow: 0 0 60px rgba(37,211,102,0.5);
  animation: h1Rise 0.9s 0.7s ease both, glowPulse 3s 1.5s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100%{text-shadow:0 0 60px rgba(37,211,102,0.5)} 50%{text-shadow:0 0 100px rgba(37,211,102,0.8),0 0 30px rgba(0,255,135,0.4)} }

.line-outline {
  display: block; color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.25);
  animation: h1Rise 0.9s 0.8s ease both;
}

.hero-p {
  font-size: 16px; font-weight: 300; color: rgba(240,255,240,0.55);
  line-height: 1.7; max-width: 440px; margin-bottom: 40px;
  animation: h1Rise 0.9s 0.9s ease both;
}
.hero-p strong { color: var(--g); font-weight: 600; }

/* ===================== STORE BUTTONS ===================== */
.store-buttons { display: flex; gap: 14px; flex-wrap: wrap; animation: h1Rise 0.9s 1s ease both; }

.store-pill {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 22px; border-radius: 12px; text-decoration: none;
  position: relative; overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.store-pill::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%); transition: transform 0.6s ease;
}
.store-pill:hover::after { transform: translateX(100%); }
.store-pill:hover { transform: translateY(-5px) scale(1.03); }

.android-pill { background: var(--g); color: #000; box-shadow: 0 8px 32px rgba(37,211,102,0.3); }
.android-pill:hover { background: var(--g3); box-shadow: 0 20px 50px rgba(37,211,102,0.6); }

.ios-pill { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: var(--white); backdrop-filter: blur(10px); }
.ios-pill:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); box-shadow: 0 20px 50px rgba(255,255,255,0.1); }

.store-pill svg { width: 24px; height: 24px; flex-shrink: 0; }
.pill-text small { display: block; font-size: 10px; opacity: 0.7; letter-spacing: 0.5px; }
.pill-text strong { display: block; font-size: 15px; font-weight: 700; }

/* ===================== STATS STRIP ===================== */
.hero-stats {
  display: flex; align-items: center; gap: 0;
  margin-top: 36px;
  background: rgba(37,211,102,0.04);
  border: 1px solid rgba(37,211,102,0.15);
  border-radius: 16px; padding: 20px 28px;
  animation: statsRise 1s 1.2s ease both;
  position: relative; overflow: hidden;
}
@keyframes statsRise { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }

.hero-stats::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--g), transparent);
  animation: scanline 3s 2s linear infinite;
}
@keyframes scanline { to { left: 140%; } }

.hero-stats::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(37,211,102,0.03), transparent, rgba(37,211,102,0.03));
  animation: statsBgShift 4s ease-in-out infinite;
}
@keyframes statsBgShift { 0%,100%{opacity:0.5} 50%{opacity:1} }

.hero-stat { flex: 1; text-align: center; position: relative; z-index: 1; }

.hero-stat-num {
  font-family: 'Bebas Neue', cursive; font-size: 40px; letter-spacing: 1px;
  color: var(--g); line-height: 1; margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(37,211,102,0.4);
  animation: countGlow 2s 2s ease-in-out infinite alternate;
}
@keyframes countGlow { from{text-shadow:0 0 20px rgba(37,211,102,0.4)} to{text-shadow:0 0 40px rgba(37,211,102,0.8),0 0 80px rgba(37,211,102,0.3)} }

.hero-stat-num span { font-size: 22px; color: rgba(37,211,102,0.7); }
.hero-stat-stars { font-size: 17px; color: #FFD700; letter-spacing: 3px; margin-bottom: 2px; animation: starShine 2s 2.5s ease-in-out infinite; }
@keyframes starShine { 0%,100%{text-shadow:0 0 10px rgba(255,215,0,0.4)} 50%{text-shadow:0 0 25px rgba(255,215,0,0.8),0 0 50px rgba(255,215,0,0.3)} }
.hero-stat-label { font-size: 11px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; }
.hero-stat-divider { width: 1px; height: 52px; background: linear-gradient(180deg, transparent, rgba(37,211,102,0.25), transparent); flex-shrink: 0; margin: 0 8px; }

/* ===================== HERO RIGHT — FLOATING CARDS ===================== */
.hero-right { position: relative; height: 560px; animation: h1Rise 1s 1s ease both; }

.card-float {
  position: absolute;
  background: rgba(13,19,13,0.9);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(24px);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(37,211,102,0.05);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.card-float:hover { border-color: var(--border2); box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 30px rgba(37,211,102,0.1); }

.video-card {
  width: 300px; top: 0; left: 50%;
  transform: translateX(-50%);
  animation: floatMain 5s 1.5s ease-in-out infinite;
}
@keyframes floatMain { 0%,100%{transform:translateX(-50%) translateY(0) rotate(0deg)} 25%{transform:translateX(-50%) translateY(-10px) rotate(0.3deg)} 75%{transform:translateX(-50%) translateY(-5px) rotate(-0.2deg)} }

.video-thumb {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0d200d, #0a1a0a, #152515);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.video-thumb::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 30% 60%, rgba(37,211,102,0.15), transparent), radial-gradient(ellipse 40% 60% at 70% 30%, rgba(0,255,135,0.08), transparent);
  animation: thumbGlow 3s ease-in-out infinite;
}
@keyframes thumbGlow { 0%,100%{opacity:1} 50%{opacity:0.6} }

.play-btn {
  width: 56px; height: 56px; background: rgba(37,211,102,0.9);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1; transition: all 0.3s;
  animation: playPulse 2s ease-in-out infinite;
}
.play-btn::before {
  content: ''; position: absolute;
  width: 100%; height: 100%; border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: ripple 2s ease-out infinite;
}
.play-btn::after {
  content: ''; position: absolute;
  width: 100%; height: 100%; border-radius: 50%;
  background: rgba(37,211,102,0.2);
  animation: ripple 2s 0.5s ease-out infinite;
}
.play-btn:hover { background: var(--g3); transform: scale(1.1); }
.play-btn svg { width: 22px; height: 22px; margin-left: 4px; position: relative; z-index: 1; }

@keyframes playPulse { 0%,100%{box-shadow:0 0 30px rgba(37,211,102,0.4)} 50%{box-shadow:0 0 60px rgba(37,211,102,0.7)} }
@keyframes ripple { 0%{transform:scale(1);opacity:0.6} 100%{transform:scale(2.2);opacity:0} }

.video-bars { position: absolute; bottom: 12px; left: 12px; right: 12px; display: flex; align-items: flex-end; gap: 2px; height: 24px; }
.vb { flex: 1; background: rgba(37,211,102,0.3); border-radius: 2px; animation: barAnim 1.2s ease-in-out infinite; }
.vb:nth-child(1){height:40%;animation-delay:0s}.vb:nth-child(2){height:70%;animation-delay:.1s}.vb:nth-child(3){height:55%;animation-delay:.2s}.vb:nth-child(4){height:90%;animation-delay:.3s}.vb:nth-child(5){height:45%;animation-delay:.4s}.vb:nth-child(6){height:80%;animation-delay:.5s}.vb:nth-child(7){height:60%;animation-delay:.6s}.vb:nth-child(8){height:35%;animation-delay:.7s}.vb:nth-child(9){height:75%;animation-delay:.8s}.vb:nth-child(10){height:50%;animation-delay:.9s}
@keyframes barAnim { 0%,100%{transform:scaleY(1);background:rgba(37,211,102,0.3)} 50%{transform:scaleY(0.3);background:rgba(37,211,102,0.6)} }

.video-info { padding: 14px 16px; }
.video-title { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.video-meta { display: flex; align-items: center; justify-content: space-between; }
.video-meta span { font-size: 11px; color: var(--muted); }
.quality-badge { font-size: 9px; font-weight: 700; color: var(--g); background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.25); padding: 2px 8px; border-radius: 4px; letter-spacing: 0.5px; }
.speed-bar { height: 3px; background: rgba(37,211,102,0.1); border-radius: 2px; margin-top: 12px; overflow: hidden; }
.speed-fill { height: 100%; background: linear-gradient(90deg, var(--g), var(--g3)); border-radius: 2px; animation: speedAnim 2.5s 2s ease-in-out infinite; }
@keyframes speedAnim { 0%{width:0} 40%{width:78%} 60%{width:78%} 80%{width:95%} 100%{width:78%} }

/* speed card */
.speed-card { width: 170px; top: 60px; left: -20px; padding: 16px; animation: floatSide1 6s 1.8s ease-in-out infinite; }
@keyframes floatSide1 { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-14px) rotate(-2.5deg)} }
.speed-label { font-size: 10px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.speed-value { font-family: 'Bebas Neue', cursive; font-size: 42px; color: var(--g); line-height: 1; letter-spacing: 1px; animation: speedValPulse 2s ease-in-out infinite; }
@keyframes speedValPulse { 0%,100%{text-shadow:0 0 15px rgba(37,211,102,0.5)} 50%{text-shadow:0 0 35px rgba(37,211,102,0.9)} }
.speed-unit { font-size: 12px; color: var(--muted); margin-top: 2px; }
.speed-mini-bars { display: flex; gap: 3px; align-items: flex-end; height: 20px; margin-top: 10px; }
.smb { width: 8px; background: rgba(37,211,102,0.2); border-radius: 2px; transition: all 0.3s; }
.smb:nth-child(1){height:30%}.smb:nth-child(2){height:50%}.smb:nth-child(3){height:80%;background:rgba(37,211,102,0.6)}.smb:nth-child(4){height:100%;background:var(--g)}.smb:nth-child(5){height:70%}

/* share card */
.share-card { width: 190px; bottom: 80px; right: -10px; padding: 16px; animation: floatSide2 7s 2.2s ease-in-out infinite; }
@keyframes floatSide2 { 0%,100%{transform:translateY(0) rotate(2deg)} 50%{transform:translateY(-12px) rotate(2.5deg)} }
.share-label { font-size: 10px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.share-icons { display: flex; gap: 8px; }
.share-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; border: 1px solid var(--border); background: rgba(37,211,102,0.05); transition: all 0.2s; cursor: default; }
.share-icon:hover { background: rgba(37,211,102,0.15); border-color: var(--g); transform: scale(1.1); }
.share-link { margin-top: 12px; background: rgba(37,211,102,0.06); border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px; font-size: 10px; color: var(--g); word-break: break-all; line-height: 1.4; }

/* no-login card */
.nologin-card { width: 160px; bottom: 60px; left: 20px; padding: 16px; animation: floatSide3 5.5s 1.6s ease-in-out infinite; }
@keyframes floatSide3 { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-14px) rotate(-1.5deg)} }
.nologin-icon { font-size: 28px; margin-bottom: 8px; }
.nologin-title { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.nologin-sub { font-size: 11px; color: var(--muted); line-height: 1.4; }
.nologin-badge { display: inline-block; margin-top: 8px; background: rgba(37,211,102,0.12); color: var(--g); font-size: 9px; font-weight: 700; padding: 3px 8px; border-radius: 4px; letter-spacing: 1px; text-transform: uppercase; animation: badgePop 3s ease-in-out infinite; }
@keyframes badgePop { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }

/* ===================== MARQUEE ===================== */
.marquee-wrap {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 0; overflow: hidden; background: rgba(37,211,102,0.02); position: relative;
}
.marquee-wrap::before, .marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--black), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(-90deg, var(--black), transparent); }

.marquee-track { display: flex; gap: 60px; animation: marqueeScroll 24s linear infinite; white-space: nowrap; padding: 18px 0; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-item { display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; flex-shrink: 0; transition: color 0.3s; }
.marquee-item:hover { color: var(--g); }
.dot-sep { width: 5px; height: 5px; background: var(--g); border-radius: 50%; opacity: 0.5; }

/* ===================== SECTION SHARED ===================== */
.section-eye { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.eye-line { width: 32px; height: 1px; background: linear-gradient(90deg, var(--g), transparent); animation: eyeGrow 1s ease both; }
@keyframes eyeGrow { from{width:0} to{width:32px} }
.eye-text { font-size: 11px; font-weight: 600; color: var(--g); text-transform: uppercase; letter-spacing: 3px; }

.section-h2 { font-family: 'Bebas Neue', cursive; font-size: clamp(52px, 6vw, 80px); letter-spacing: 2px; line-height: 0.95; margin-bottom: 16px; }
.section-h2 em { color: transparent; -webkit-text-stroke: 1.5px rgba(37,211,102,0.5); font-style: normal; }
.section-sub { color: rgba(240,255,240,0.45); font-size: 15px; font-weight: 300; max-width: 480px; line-height: 1.7; margin-bottom: 64px; }

/* ===================== BENTO FEATURES ===================== */
.features-section { padding: 120px 48px; position: relative; }
.features-inner { max-width: 1100px; margin: 0 auto; }

.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }

.bento-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  padding: 36px 32px; position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); cursor: default;
}
.bento-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(37,211,102,0.05), transparent); opacity: 0; transition: opacity 0.4s; }
.bento-card::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 1px; background: linear-gradient(90deg, transparent, var(--g), transparent); transition: left 0.6s ease; }
.bento-card:hover { border-color: rgba(37,211,102,0.35); transform: translateY(-5px); box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(37,211,102,0.12), 0 0 40px rgba(37,211,102,0.05); }
.bento-card:hover::before { opacity: 1; }
.bento-card:hover::after { left: 150%; }

.span-5{grid-column:span 5}.span-7{grid-column:span 7}.span-4{grid-column:span 4}.span-8{grid-column:span 8}.span-6{grid-column:span 6}.span-3{grid-column:span 3}.span-12{grid-column:span 12}

.bento-icon {
  width: 52px; height: 52px; background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.2);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px; transition: all 0.35s;
}
.bento-card:hover .bento-icon { background: rgba(37,211,102,0.18); box-shadow: 0 0 24px rgba(37,211,102,0.25); transform: scale(1.1) rotate(-3deg); }

.bento-tag { position: absolute; top: 20px; right: 20px; font-size: 9px; font-weight: 700; color: var(--g); background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.2); padding: 3px 10px; border-radius: 4px; text-transform: uppercase; letter-spacing: 1.5px; }
.bento-h { font-size: 20px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.3px; color: var(--white); transition: color 0.3s; }
.bento-card:hover .bento-h { color: rgba(240,255,240,0.95); }
.bento-p { font-size: 14px; color: rgba(240,255,240,0.4); line-height: 1.65; font-weight: 300; transition: color 0.3s; }
.bento-card:hover .bento-p { color: rgba(240,255,240,0.6); }

.no-login-visual { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding: 14px 16px; background: rgba(37,211,102,0.06); border-radius: 10px; border: 1px dashed rgba(37,211,102,0.2); animation: dashRotate 10s linear infinite; }
@keyframes dashRotate { to { border-color: rgba(37,211,102,0.4); } }
.no-login-visual .icon { font-size: 24px; }
.no-login-visual .text { font-size: 13px; color: var(--g); font-weight: 600; }
.no-login-visual .sub { font-size: 11px; color: var(--muted); }

.stream-visual { margin-top: 20px; display: flex; gap: 8px; flex-wrap: wrap; }
.stream-pill { padding: 6px 14px; border-radius: 50px; font-size: 11px; font-weight: 600; border: 1px solid var(--border); color: var(--muted); transition: all 0.2s; cursor: default; }
.stream-pill:hover { border-color: var(--g); color: var(--g); transform: scale(1.05); }
.stream-pill.active { background: var(--g); color: #000; border-color: var(--g); }

.platform-row { display: flex; gap: 12px; margin-top: 24px; }
.platform-chip { display: flex; align-items: center; gap: 8px; padding: 10px 16px; background: rgba(37,211,102,0.06); border: 1px solid var(--border); border-radius: 10px; font-size: 12px; font-weight: 600; color: var(--white); flex: 1; justify-content: center; transition: all 0.2s; }
.platform-chip:hover { border-color: var(--g); background: rgba(37,211,102,0.12); }
.platform-chip svg { width: 18px; height: 18px; }

.support-row { display: flex; gap: 10px; flex-wrap: wrap; }
.support-chip { display: flex; align-items: center; gap: 8px; padding: 10px 16px; background: rgba(37,211,102,0.06); border: 1px solid var(--border); border-radius: 10px; font-size: 12px; font-weight: 600; color: var(--white); text-decoration: none; transition: all 0.25s; }
.support-chip:hover { border-color: var(--g); background: rgba(37,211,102,0.14); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.15); }

/* ===================== HOW IT WORKS ===================== */
.how-section { padding: 120px 48px; background: var(--dark); border-top: 1px solid var(--border); }
.how-inner { max-width: 1100px; margin: 0 auto; }

.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 64px; position: relative; }
.steps-row::before { content: ''; position: absolute; top: 32px; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, transparent, var(--border2), var(--border2), transparent); }
.steps-row::after { content: ''; position: absolute; top: 31px; left: 12%; width: 0%; height: 2px; background: linear-gradient(90deg, var(--g), var(--g3)); animation: progressLine 3s 1s ease-in-out forwards; }
@keyframes progressLine { to { width: 76%; } }

.step-item { padding: 0 24px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.step-num-wrap { width: 64px; height: 64px; background: var(--card); border: 1px solid var(--border2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; position: relative; z-index: 1; transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.step-item:hover .step-num-wrap { background: rgba(37,211,102,0.12); border-color: var(--g); box-shadow: 0 0 0 8px rgba(37,211,102,0.08), 0 0 30px rgba(37,211,102,0.3); transform: scale(1.15); }
.step-icon { font-size: 22px; transition: transform 0.3s; }
.step-item:hover .step-icon { transform: scale(1.2) rotate(10deg); }
.step-t { font-size: 16px; font-weight: 700; margin-bottom: 10px; transition: color 0.3s; }
.step-item:hover .step-t { color: var(--g); }
.step-d { font-size: 13px; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* ===================== CTA FINAL ===================== */
.cta-final { padding: 80px 48px 120px; text-align: center; position: relative; overflow: hidden; }
.cta-final::before { content: ''; position: absolute; width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(37,211,102,0.12), transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; animation: ctaBreath 4s ease-in-out infinite; }
@keyframes ctaBreath { 0%,100%{transform:translate(-50%,-50%) scale(1);opacity:0.8} 50%{transform:translate(-50%,-50%) scale(1.15);opacity:1} }

/* Glitch text effect */
.cta-h {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(60px, 7vw, 100px);
  letter-spacing: 3px; line-height: 0.95; margin-bottom: 20px;
  position: relative; display: inline-block;
}
.cta-h .g { color: var(--g); position: relative; display: inline-block; }
.cta-h .g::before {
  content: attr(data-text); position: absolute; top: 0; left: 0;
  color: #0f0; clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
  animation: glitch1 4s 3s infinite;
}
.cta-h .g::after {
  content: attr(data-text); position: absolute; top: 0; left: 0;
  color: #0ff; clip-path: polygon(0 66%, 100% 66%, 100% 100%, 0 100%);
  animation: glitch2 4s 3s infinite;
}
@keyframes glitch1 { 0%,90%,100%{transform:translate(0)} 92%{transform:translate(-3px,1px);opacity:0.8} 94%{transform:translate(3px,-1px)} 96%{transform:translate(-2px,2px)} 98%{transform:translate(0)} }
@keyframes glitch2 { 0%,90%,100%{transform:translate(0)} 92%{transform:translate(3px,-1px);opacity:0.8} 94%{transform:translate(-3px,1px)} 96%{transform:translate(2px,-2px)} 98%{transform:translate(0)} }

.cta-sub { font-size: 16px; color: rgba(240,255,240,0.45); max-width: 420px; margin: 0 auto 48px; font-weight: 300; line-height: 1.7; }

/* Magnetic download buttons */
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-btn-big {
  display: flex; align-items: center; gap: 14px; padding: 18px 32px;
  border-radius: 14px; font-size: 16px; font-weight: 700;
  font-family: 'Outfit', sans-serif; text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative; overflow: hidden;
}
.cta-btn-big::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg,transparent,rgba(255,255,255,0.15),transparent); transform: translateX(-100%); transition: transform 0.6s; }
.cta-btn-big:hover::before { transform: translateX(100%); }
.cta-btn-big.android-big { background: var(--g); color: #000; box-shadow: 0 12px 40px rgba(37,211,102,0.3); }
.cta-btn-big.android-big:hover { background: var(--g3); box-shadow: 0 24px 64px rgba(37,211,102,0.6); transform: translateY(-6px) scale(1.03); }
.cta-btn-big.ios-big { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); color: var(--white); }
.cta-btn-big.ios-big:hover { background: rgba(255,255,255,0.13); transform: translateY(-6px); border-color: rgba(255,255,255,0.3); }
.cta-btn-big svg { width: 28px; height: 28px; }

/* ===================== FOOTER ===================== */
footer { border-top: 1px solid var(--border); padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; position: relative; }
footer::before { content: ''; position: absolute; top: 0; left: 20%; right: 20%; height: 1px; background: linear-gradient(90deg, transparent, var(--g), transparent); opacity: 0.3; }
.foot-links { display: flex; gap: 28px; list-style: none; }
.foot-links a { color: var(--muted); text-decoration: none; font-size: 13px; transition: all 0.2s; position: relative; }
.foot-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--g); transition: width 0.3s; }
.foot-links a:hover { color: var(--g); }
.foot-links a:hover::after { width: 100%; }
.foot-copy { font-size: 12px; color: var(--muted); }

/* ===================== SCROLL REVEAL ===================== */
.sr { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.23, 1, 0.32, 1); }
.sr.on { opacity: 1; transform: translateY(0); }
.sr-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.23, 1, 0.32, 1); }
.sr-left.on { opacity: 1; transform: translateX(0); }
.sr-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.23, 1, 0.32, 1); }
.sr-right.on { opacity: 1; transform: translateX(0); }
.sr-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1); }
.sr-scale.on { opacity: 1; transform: scale(1); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1000px) {
  nav { padding: 16px 24px; }
  .nav-center { display: none; }
  .hero { padding: 100px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-left { display: flex; flex-direction: column; align-items: center; }
  .hero-right { width: 100%; max-width: 320px; margin: 0 auto; }
  .speed-card, .nologin-card { display: none; }
  .features-section, .how-section { padding: 80px 24px; }
  .features-inner { padding: 0; }
  .span-5,.span-7,.span-4,.span-8,.span-6,.span-3 { grid-column: span 12; }
  .steps-row { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-row::before, .steps-row::after { display: none; }
  .cta-final { padding: 60px 24px 80px; }
  footer { padding: 32px 24px; flex-direction: column; text-align: center; }
}
</style>