/* ========================================
   LAGUNAISLAND - FiveM Community Theme
   Ultra Premium Purple Neon Design
   ======================================== */

/* Base */
* { margin: 0; padding: 0; box-sizing: border-box; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #050510; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #a855f7, #6d28d9); border-radius: 3px; }
::selection { background: rgba(168, 85, 247, 0.5); color: #fff; }

/* Animated Background */
body {
    background: #050510;
    overflow-x: hidden;
}

.bg-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.bg-glow-1, .bg-glow-2, .bg-glow-3 {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}
.bg-glow-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.15), transparent 70%);
    top: -200px; left: -100px;
    animation: floatGlow1 20s ease-in-out infinite;
}
.bg-glow-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(109, 40, 217, 0.12), transparent 70%);
    bottom: -150px; right: -100px;
    animation: floatGlow2 25s ease-in-out infinite;
}
.bg-glow-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(192, 132, 252, 0.08), transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: floatGlow3 15s ease-in-out infinite;
}

@keyframes floatGlow1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, 50px) scale(1.1); }
    66% { transform: translate(-50px, 100px) scale(0.9); }
}
@keyframes floatGlow2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-80px, -60px) scale(1.15); }
    66% { transform: translate(60px, -40px) scale(0.85); }
}
@keyframes floatGlow3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

/* Navbar */
.nav-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-main.scrolled {
    background: rgba(5, 5, 16, 0.85) !important;
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(168, 85, 247, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #c084fc, #a855f7, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
}
.nav-brand::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #a855f7, transparent);
    border-radius: 1px;
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}
.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(109, 40, 217, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}
.nav-link:hover {
    color: #fff;
    transform: translateY(-1px);
}
.nav-link:hover::before { opacity: 1; }
.nav-link i {
    transition: all 0.3s ease;
    font-size: 0.8rem;
}
.nav-link:hover i {
    color: #a855f7;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.nav-btn-primary {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(168, 85, 247, 0.3);
}
.nav-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nav-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
}
.nav-btn-primary:hover::before { opacity: 1; }
.nav-btn-primary span { position: relative; z-index: 1; }

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-line-left, .hero-line-right {
    position: absolute;
    width: 1px;
    height: 40%;
    z-index: 1;
}
.hero-line-left {
    left: 15%;
    top: 10%;
    background: linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.2), transparent);
}
.hero-line-right {
    right: 15%;
    bottom: 10%;
    background: linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.15), transparent);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: #c084fc;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
}
.hero-badge .pulse-dot {
    width: 6px; height: 6px;
    background: #a855f7;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}
.hero-title .gradient-text {
    background: linear-gradient(135deg, #fff 0%, #c084fc 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-title .neon-text {
    background: linear-gradient(135deg, #a855f7, #7c3aed, #a855f7);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.3));
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2.25rem;
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(168, 85, 247, 0.4);
    text-decoration: none;
}
.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.5), 0 0 80px rgba(147, 51, 234, 0.15);
}
.btn-hero-primary:hover::before { opacity: 1; }

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2.25rem;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    text-decoration: none;
}
.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-2px);
}

/* Stats Strip */
.stats-strip {
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
}
.stat-item {
    text-align: center;
}
.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #c084fc, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(168, 85, 247, 0.06), transparent 40%);
    pointer-events: none;
}
.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(147, 51, 234, 0.08);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(109, 40, 217, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #a855f7;
    margin-bottom: 1.25rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(168, 85, 247, 0.1);
}
.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(109, 40, 217, 0.2));
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}
.feature-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

/* CTA Section */
.cta-box {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(109, 40, 217, 0.05));
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #a855f7, transparent);
}
.cta-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: radial-gradient(ellipse at center bottom, rgba(147, 51, 234, 0.08), transparent 70%);
    pointer-events: none;
}

/* Section Title */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.section-subtitle {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Auth Pages */
.auth-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    line-height: 1.45;
}
.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.4), transparent);
}
.auth-card h1,
.auth-card h2,
.auth-card p,
.auth-card span {
    overflow-wrap: anywhere;
}

.auth-icon-ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(109, 40, 217, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}
.auth-icon-ring::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(168, 85, 247, 0.1);
    animation: pulseDot 3s ease-in-out infinite;
}

.input-field {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    outline: none;
}
.input-field::placeholder { color: rgba(255, 255, 255, 0.25); }
.input-field:focus {
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.08), 0 0 20px rgba(168, 85, 247, 0.05);
    background: rgba(255, 255, 255, 0.04);
}

/* Dropdowns in modern FiveM panel style */
select.input-field {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    padding-right: 2.75rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c084fc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    background-size: 0.9rem;
}
select.input-field:hover {
    border-color: rgba(168, 85, 247, 0.3);
    background-color: rgba(255, 255, 255, 0.04);
}
select.input-field option {
    background: #100d1d;
    color: #f5f3ff;
}
select.input-field option:checked {
    background: #2e1065;
    color: #ffffff;
}

/* Custom select with modern FiveM panel look */
.fivem-select {
    position: relative;
    width: 100%;
}
.fivem-select-native {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
}
.fivem-select-trigger {
    width: 100%;
    min-height: 42px;
    padding: 0.5rem 2.75rem 0.5rem 0.9rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.25;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}
.fivem-select-trigger::after {
    content: '';
    position: absolute;
    right: 0.95rem;
    top: 50%;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid rgba(192, 132, 252, 0.95);
    border-bottom: 2px solid rgba(192, 132, 252, 0.95);
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.2s ease;
    pointer-events: none;
}
.fivem-select.open .fivem-select-trigger {
    border-color: rgba(168, 85, 247, 0.45);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.08), 0 0 20px rgba(168, 85, 247, 0.05);
    background: rgba(255, 255, 255, 0.04);
}
.fivem-select.open .fivem-select-trigger::after {
    transform: translateY(-35%) rotate(225deg);
}
.fivem-select-label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fivem-select-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.45rem);
    z-index: 180;
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.25);
    background: rgba(8, 7, 20, 0.96);
    backdrop-filter: blur(14px) saturate(150%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), 0 0 26px rgba(147, 51, 234, 0.12);
    max-height: min(360px, 50vh);
    overflow-y: auto;
    padding: 0.35rem;
    display: none;
}
.fivem-select.open .fivem-select-menu {
    display: block;
}
.fivem-select-item {
    width: 100%;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.86);
    text-align: left;
    font-size: 0.88rem;
    line-height: 1.25;
    padding: 0.58rem 0.65rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.fivem-select-item:hover {
    background: rgba(168, 85, 247, 0.16);
    color: #fff;
}
.fivem-select-item.active {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.24), rgba(124, 58, 237, 0.18));
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(168, 85, 247, 0.32);
}
.fivem-select-item:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
.fivem-select-group-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(168, 85, 247, 0.5);
    padding: 0.5rem 0.65rem 0.25rem;
    pointer-events: none;
    user-select: none;
}
.fivem-select-group-label:not(:first-child) {
    margin-top: 0.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.55rem;
}

.btn-primary {
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: #fff;
    font-weight: 700;
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 46px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
    text-decoration: none;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
}

.btn-cfx {
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(135deg, #ea580c, #c2410c);
    color: #fff;
    font-weight: 700;
    border: 1px solid rgba(234, 88, 12, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    min-height: 46px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
}
.btn-cfx:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.3);
}

/* Dashboard Cards */
.dash-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.75rem;
    transition: all 0.4s ease;
}
.dash-card:hover {
    border-color: rgba(168, 85, 247, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Admin Action Cards */
.action-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.75rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}
.action-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(168, 85, 247, 0.06), transparent 40%);
    pointer-events: none;
}
.action-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Divider */
.divider-text {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}
.divider-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}
.divider-text span {
    position: relative;
    background: #050510;
    padding: 0 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(0, 0, 0, 0.3);
}

/* Flash Messages */
.flash-msg {
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.4s ease;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Particle */
.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(168, 85, 247, 0.4);
    border-radius: 50%;
    pointer-events: none;
}

/* Mobile */
@media (max-width: 768px) {
    .stats-strip { gap: 1.5rem; }
    .cta-box { padding: 2.5rem 1.5rem; }
}
