/* ─── Variables ───────────────────────────────────────────── */
:root {
    --kick:   #53FC18;
    --purple: #7C3AED;
    --purpl2: #4F46E5;
    --blue:   #3B82F6;
    --pink:   #EC4899;
    --orange: #F97316;
    --bg:     #09090f;
    --bg2:    #0f0f1a;
    --card:   rgba(255,255,255,0.028);
    --bdr:    rgba(255,255,255,0.07);
    --txt:    #ffffff;
    --muted:  rgba(255,255,255,0.55);
    --r:      16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--txt);
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ─── Backgrounds ─────────────────────────────────────────── */
.bg-mesh {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle at 15% 15%, rgba(124,58,237,.13) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(83,252,24,.07)  0%, transparent 45%),
        radial-gradient(circle at 55% 45%, rgba(59,130,246,.06) 0%, transparent 55%);
}

#particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    contain: strict;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--kick);
    will-change: transform, opacity;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0%   { transform: translate3d(0, 110vh, 0); opacity: 0; }
    12%  { opacity: 0.7; }
    88%  { opacity: 0.7; }
    100% { transform: translate3d(0, -20px, 0); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    #particles { display: none; }
}

/* ─── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: rgba(83,252,24,.3); border-radius: 3px; }

/* ─── Nav ─────────────────────────────────────────────────── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px;
    height: 64px;
    background: rgba(9,9,15,.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--bdr);
}

.logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; font-size: 20px; font-weight: 800; letter-spacing: -.5px;
}

.logo-ico {
    width: 36px; height: 36px; border-radius: 9px;
    background: linear-gradient(135deg, var(--kick), var(--purple));
    display: flex; align-items: center; justify-content: center; font-size: 18px;
    box-shadow: 0 0 18px rgba(83,252,24,.35);
    user-select: none;
    -webkit-user-select: none;
}

.logo-w  { color: #fff; }
.logo-w span { color: var(--kick); }

.nav-links { display: flex; align-items: center; gap: 4px; }

.nav-links a {
    padding: 8px 16px; color: var(--muted); text-decoration: none;
    font-size: 15px; font-weight: 500; border-radius: 9px;
    transition: color .2s, background .2s;
}
.nav-links a:hover { color: #fff; background: var(--bdr); }

.nav-cta {
    background: linear-gradient(135deg, var(--purple), var(--purpl2)) !important;
    color: #fff !important; font-weight: 700 !important;
    box-shadow: 0 0 20px rgba(124,58,237,.3);
}
.nav-cta:hover { opacity: .9; transform: translateY(-1px); }

.nav-login {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 10px 20px !important;
    border-radius: 10px !important;
    background: var(--kick) !important;
    color: #0a0a0f !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    box-shadow: 0 0 24px rgba(83,252,24,.35);
    transition: transform .2s, box-shadow .2s, opacity .2s;
}
.nav-login:hover {
    opacity: .95;
    transform: translateY(-1px);
    box-shadow: 0 0 32px rgba(83,252,24,.45);
    background: var(--kick) !important;
    color: #0a0a0f !important;
}
.nav-login-ico { flex-shrink: 0; }

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 480px;
    align-items: center;
    padding: 80px 80px 60px;
    gap: 60px;
    position: relative; z-index: 1;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(83,252,24,.1); border: 1px solid rgba(83,252,24,.3);
    color: var(--kick); padding: 5px 14px; border-radius: 100px;
    font-size: 13px; font-weight: 600; margin-bottom: 22px; width: fit-content;
}

.hero-badge .dot {
    width: 7px; height: 7px; border-radius: 50%; background: var(--kick);
    animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.3} }

h1.hero-title {
    font-size: clamp(38px, 4.8vw, 74px);
    font-weight: 900; line-height: 1.07; letter-spacing: -2.5px;
    margin-bottom: 20px;
}

.gt {
    background: linear-gradient(130deg, var(--kick) 0%, #38bdf8 45%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 17px; color: var(--muted); line-height: 1.72;
    margin-bottom: 36px; max-width: 500px;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }

.btn-p {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--kick), #37dd00);
    color: #000; padding: 14px 30px; border-radius: 12px;
    font-size: 16px; font-weight: 800; text-decoration: none;
    transition: all .22s; box-shadow: 0 0 28px rgba(83,252,24,.28);
}
.btn-p:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(83,252,24,.45); }

.btn-s {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--card); border: 1px solid var(--bdr);
    color: #fff; padding: 14px 28px; border-radius: 12px;
    font-size: 16px; font-weight: 600; text-decoration: none;
    transition: all .22s;
}
.btn-s:hover { background: rgba(255,255,255,.07); transform: translateY(-1px); }

.hero-stats { display: flex; gap: 40px; }
.stat { text-align: left; }
.stat-n { font-size: 34px; font-weight: 900; color: var(--kick); line-height: 1; }
.stat-l { font-size: 13px; color: var(--muted); margin-top: 3px; }

/* ─── Hero chat window ────────────────────────────────────── */
.chat-win {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--bdr);
    border-radius: 20px;
    padding: 18px 14px;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 80px rgba(83,252,24,.05), 0 40px 80px rgba(0,0,0,.55);
}

.chat-win::before {
    content: '';
    position: absolute; inset: -1px; border-radius: 21px;
    background: linear-gradient(135deg, rgba(83,252,24,.25), rgba(124,58,237,.2), rgba(59,130,246,.15));
    z-index: -1; filter: blur(16px);
}

.cw-header {
    display: flex; align-items: center; gap: 10px;
    padding-bottom: 14px; border-bottom: 1px solid var(--bdr); margin-bottom: 14px;
}
.cw-dot {
    width: 9px; height: 9px; border-radius: 50%; background: var(--kick);
    box-shadow: 0 0 8px var(--kick); animation: blink 2s ease-in-out infinite;
}
.cw-name { font-size: 13px; font-weight: 600; color: var(--muted); }
.cw-live {
    margin-left: auto; background: rgba(83,252,24,.15); color: var(--kick);
    border: 1px solid rgba(83,252,24,.3); font-size: 11px; font-weight: 700;
    padding: 2px 8px; border-radius: 6px; letter-spacing: .5px;
}

#demoChat {
    display: flex; flex-direction: column-reverse;
    gap: 7px; min-height: 360px; overflow: hidden;
}

.dm {
    display: flex; align-items: flex-start; flex-wrap: wrap;
    gap: 5px; font-size: 14px; opacity: 0;
    transform: translateX(-14px);
    transition: opacity .38s, transform .38s;
}
.dm.in { opacity: 1; transform: none; }

.db {
    display: inline-flex; align-items: center; justify-content: center;
    width: 16px; height: 16px; border-radius: 3px; flex-shrink: 0;
}
.db.broadcaster { background: #53FC18; }
.db.moderator   { background: #00C562; }
.db.vip         { background: #FFB800; }
.db.subscriber  { background: #53FC18; opacity: .75; }
.db.og          { background: linear-gradient(135deg,#FF6B6B,#FFD700); }
.db.verified    { background: #3B82F6; }
.db.staff       { background: #7C3AED; }
.db.gifted      { background: #EC4899; }
.db.streak      { background: #EF4444; }
.db.founder     { background: #F97316; }

.du { font-weight: 700; }
.ds { opacity: .7; }
.dt { color: rgba(255,255,255,.9); text-shadow: 1px 1px 2px rgba(0,0,0,.8); }

/* ─── Sections wrapper ────────────────────────────────────── */
section { position: relative; z-index: 1; }

/* ─── Section header ──────────────────────────────────────── */
.sh { text-align: center; margin-bottom: 56px; }
.sh-tag {
    display: inline-block;
    background: rgba(124,58,237,.14); border: 1px solid rgba(124,58,237,.3);
    color: #a78bfa; padding: 5px 14px; border-radius: 100px;
    font-size: 13px; font-weight: 600; margin-bottom: 14px;
}
.sh h2 { font-size: clamp(30px, 3vw, 52px); font-weight: 900; letter-spacing: -1.5px; line-height: 1.15; }
.sh p  { font-size: 17px; color: var(--muted); margin-top: 12px; max-width: 580px; margin-inline: auto; line-height: 1.6; }

/* ─── Features ────────────────────────────────────────────── */
.features { padding: 80px; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.fc {
    background: var(--card); border: 1px solid var(--bdr); border-radius: var(--r);
    padding: 30px; transition: all .3s; opacity: 0; transform: translateY(22px);
}
.fc.in { opacity: 1; transform: none; }
.fc:hover { border-color: rgba(83,252,24,.28); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(83,252,24,.05); }

.fc-icon {
    width: 50px; height: 50px; border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 18px; flex-shrink: 0;
}
.fc h3 { font-size: 17px; font-weight: 700; margin-bottom: 9px; }
.fc p  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ─── Steps ───────────────────────────────────────────────── */
.steps { padding: 0 80px 80px; }
.steps-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    position: relative;
}
.steps-grid::before {
    content: ''; position: absolute; top: 42px; left: calc(12.5% + 24px);
    right: calc(12.5% + 24px); height: 1px;
    background: linear-gradient(90deg, var(--kick), var(--purple), var(--blue), var(--pink));
    opacity: .25;
}
.step {
    text-align: center; opacity: 0; transform: translateY(20px);
    transition: opacity .4s, transform .4s;
}
.step.in { opacity: 1; transform: none; }
.step-num {
    width: 64px; height: 64px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 900; margin: 0 auto 18px;
    position: relative; z-index: 1;
}
.step h3  { font-size: 15px; font-weight: 700; margin-bottom: 7px; }
.step p   { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ─── Badges showcase ─────────────────────────────────────── */
.badges-sec { padding: 0 80px 80px; }
.badges-showcase {
    display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
    margin-top: 48px;
}
.badge-card {
    display: flex; align-items: center; gap: 10px;
    background: var(--card); border: 1px solid var(--bdr); border-radius: 12px;
    padding: 12px 18px; opacity: 0; transform: scale(.92);
    transition: opacity .3s, transform .3s;
}
.badge-card.in { opacity: 1; transform: none; }
.badge-card:hover { border-color: rgba(83,252,24,.3); transform: scale(1.04); }
.badge-card span { font-size: 14px; font-weight: 600; color: var(--muted); }

/* ─── CTA ─────────────────────────────────────────────────── */
.cta { padding: 0 80px 80px; }
.cta-box {
    background: linear-gradient(135deg, rgba(83,252,24,.09), rgba(124,58,237,.09));
    border: 1px solid rgba(83,252,24,.18); border-radius: 24px;
    padding: 80px; text-align: center; overflow: hidden; position: relative;
}
.cta-box::before {
    content: ''; position: absolute; top: -40%; left: 50%;
    transform: translateX(-50%); width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(83,252,24,.08) 0%, transparent 70%);
    pointer-events: none;
}
.cta-box h2 { font-size: clamp(30px, 4vw, 52px); font-weight: 900; letter-spacing: -2px; margin-bottom: 14px; }
.cta-box p  { font-size: 18px; color: var(--muted); margin-bottom: 38px; }

/* ─── Footer ──────────────────────────────────────────────── */
footer {
    padding: 36px 80px; border-top: 1px solid var(--bdr);
    display: flex; align-items: center; justify-content: space-between;
    position: relative; z-index: 1;
}
.footer-c { font-size: 14px; color: var(--muted); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--kick); }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
    .hero { grid-template-columns: 1fr; padding: 80px 40px 60px; }
    .chat-win { display: none; }
    .feat-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
}
@media (max-width: 700px) {
    nav { padding: 0 20px; }
    .nav-links a:not(.nav-login):not(.nav-cta) { display: none; }
    .hero { padding: 80px 20px 40px; }
    .features, .steps, .badges-sec, .cta { padding-inline: 20px; }
    .feat-grid, .steps-grid { grid-template-columns: 1fr; }
    .cta-box { padding: 40px 20px; }
    footer { flex-direction: column; gap: 14px; text-align: center; }
    .hero-stats { gap: 24px; }
}
