/* Base and Utility Styles */
body {
    background-color: #050816;
    color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -webkit-touch-callout: none;
}




    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.glass-panel-hover:hover {
    border-color: rgba(138, 190, 224, 0.3);
    box-shadow: 0 0 30px rgba(138, 190, 224, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

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

.text-gradient-cyan {
    background: linear-gradient(135deg, #00d9ff 0%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Mouse Glow */
#mouse-glow {
    position: fixed;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(138, 190, 224,0.12) 0%, rgba(5,8,22,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

/* 3D Phone Mockup CSS */
.phone-container {
    perspective: 1000px;
    width: 320px;
    height: 650px;
    margin: 0 auto;
}

.phone-body {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 48px;
    position: relative;
    transform-style: preserve-3d;
    box-shadow: 
        inset 0 0 0 2px #333,
        inset 0 0 0 6px #000,
        0 25px 50px -12px rgba(138, 190, 224, 0.25),
        0 0 40px rgba(138, 190, 224, 0.1);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-phone {
    transform: rotateX(15deg) rotateY(-15deg) rotateZ(5deg);
}
.phone-container:hover .hero-phone {
    transform: rotateX(5deg) rotateY(-5deg) rotateZ(2deg) translateY(-10px);
}
.feature-phone-right {
    transform: rotateX(10deg) rotateY(-20deg);
}
.feature-phone-left {
    transform: rotateX(10deg) rotateY(20deg);
}
.phone-screen {
    position: absolute;
    top: 10px; left: 10px; right: 10px; bottom: 10px;
    background: #0f172a;
    border-radius: 38px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}
.dynamic-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background: #000;
    border-radius: 20px;
    z-index: 20;
}

/* Glass Particles */
.glass-particle {
    position: fixed;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    pointer-events: none;
    box-shadow: 0 4px 20px rgba(138, 190, 224, 0.1);
}

/* Premium Feedback Cards */
.feedback-card {
    background: linear-gradient(145deg, rgba(15,23,42,0.7) 0%, rgba(7,17,31,0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border-radius: 2rem;
}
.feedback-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 25px 50px -12px rgba(0, 217, 255, 0.2), inset 0 1px 0 rgba(255,255,255,0.2);
    z-index: 20;
}
.feedback-quote-mark {
    position: absolute;
    top: -30px;
    left: 20px;
    font-size: 200px;
    line-height: 1;
    font-family: serif;
    color: rgba(255,255,255,0.03);
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hide Scrollbar for carousels */
.hide-scroll::-webkit-scrollbar { display: none; }
.hide-scroll { -ms-overflow-style: none; scrollbar-width: none; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #050816; }
::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #334155; }

/* Animations */
@keyframes aurora {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
@keyframes float-delayed {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}
@keyframes marquee-reverse {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0%); }
}
@keyframes pulse-glow {
    0%, 100% { opacity: 1; box-shadow: 0 0 20px 0px rgba(138, 190, 224, 0.5); }
    50% { opacity: .8; box-shadow: 0 0 40px 10px rgba(138, 190, 224, 0.8); }
}
@keyframes float-up {
    0% { transform: translateY(110vh) rotate(0deg) scale(0.8); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-20vh) rotate(360deg) scale(1.2); opacity: 0; }
}
@keyframes scroll-x {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 0.75rem)); }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}

.animate-aurora { animation: aurora 20s linear infinite; }
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-delayed { animation: float 6s ease-in-out 3s infinite; }
.animate-marquee { animation: marquee 30s linear infinite; }
.animate-marquee-reverse { animation: marquee-reverse 35s linear infinite; }
.animate-pulse-glow { animation: pulse-glow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.animate-scroll-x { animation: scroll-x 90s linear infinite; }
.animate-spin { animation: spin 1s linear infinite; }
.animate-ping { animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; }

.animate-float-up-1 { animation: float-up 15s linear infinite; }
.animate-float-up-2 { animation: float-up 20s linear 2s infinite; }
.animate-float-up-3 { animation: float-up 18s linear 5s infinite; }
.animate-float-up-4 { animation: float-up 22s linear 8s infinite; }
.animate-float-up-5 { animation: float-up 12s linear 1s infinite; }
.animate-float-up-6 { animation: float-up 25s linear 4s infinite; }
.animate-float-up-7 { animation: float-up 19s linear 6s infinite; }

.animate-spin-conic { animation: spin 2s linear infinite; }
.animate-spin-conic-slow { animation: spin 4s linear infinite; }

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}








