html {
    scroll-behavior: smooth;
}

body {
    background: #0a0a0f;
    color: #e2e8f0;
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.glass-strong {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(232, 54, 86, 0.3);
    box-shadow: 0 8px 32px rgba(232, 54, 86, 0.1);
    transform: translateY(-2px);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
}

.glow-line {
    background: linear-gradient(90deg, transparent, rgba(232, 54, 86, 0.4), transparent);
    height: 1px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #E83656 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-pink {
    background: linear-gradient(135deg, #E83656 0%, #ff6b8a 50%, #ff9eb5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(232, 54, 86, 0.4), 0 0 60px rgba(232, 54, 86, 0.15);
}

.pulse-ring {
    animation: pulse-ring 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.hero-logo-watermark {
    animation: hero-logo-pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    pointer-events: none;
}

@keyframes hero-logo-pulse {
    0%, 100% { opacity: 0.06; transform: scale(1); }
    50% { opacity: 0.12; transform: scale(1.05); }
}

.float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-question .plus {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question .plus {
    transform: rotate(45deg);
}

.grid-bg {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.015;
    z-index: 1000;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.stat-number {
    font-variant-numeric: tabular-nums;
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(232, 54, 86, 0.6);
    border-radius: 50%;
    animation: drift 8s ease-in-out infinite;
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    25% { transform: translate(30px, -20px) scale(1.5); opacity: 0.3; }
    50% { transform: translate(-20px, -40px) scale(0.8); opacity: 0.8; }
    75% { transform: translate(10px, -10px) scale(1.2); opacity: 0.4; }
}

.team-img-ring {
    background: linear-gradient(135deg, rgba(232, 54, 86, 0.6), rgba(232, 54, 86, 0.1));
    padding: 3px;
    border-radius: 50%;
}

.icon-invert {
    filter: invert(1) brightness(2);
}

.header-logo-tint {
    filter: brightness(0) saturate(100%) invert(36%) sepia(89%) saturate(1768%) hue-rotate(322deg) brightness(95%) contrast(92%);
}

section[id] {
    scroll-margin-top: 100px;
}

.sidebar-link {
    transition: all 0.2s ease;
}

.sidebar-link:hover {
    background: rgba(255, 255, 255, 0.04);
    padding-left: 1rem;
}

.sidebar-link.active {
    color: #E83656;
    background: rgba(232, 54, 86, 0.08);
    border-left: 2px solid #E83656;
    padding-left: calc(1rem - 2px);
}
