@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@200,400,500,600,700&display=swap');

html {
    scroll-behavior: smooth;
    background-color: #000000;
    color: #ffffff;
}

body {
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    background-color: #000000;
    margin: 0;
    padding: 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6, .font-display {
    font-family: 'Clash Display', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #000000;
}
::-webkit-scrollbar-thumb {
    background: #1e3a8a; /* deep blue */
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}

/* Background Glowing Blobs - Blue Theme */
.blob {
    position: absolute;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
    animation: float 20s infinite ease-in-out alternate;
    pointer-events: none;
}
.blob-1 { top: -10%; left: -10%; width: 500px; height: 500px; background: rgba(37, 99, 235, 0.28); animation-delay: 0s; } /* Electric Blue */
.blob-2 { top: 40%; right: -10%; width: 600px; height: 600px; background: rgba(168, 85, 247, 0.24); animation-delay: -5s; } /* Cyber Violet */
.blob-3 { bottom: -10%; left: 20%; width: 700px; height: 700px; background: rgba(6, 182, 212, 0.20); animation-delay: -10s; } /* Sky Cyan */

@media (max-width: 768px) {
    .blob {
        filter: blur(50px);
        opacity: 0.45;
    }
    .blob-1 { width: 260px; height: 260px; top: -5%; left: -15%; }
    .blob-2 { width: 300px; height: 300px; top: 35%; right: -20%; }
    .blob-3 { width: 320px; height: 320px; bottom: -10%; left: 10%; }
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Text Utilities */
.text-stroke {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    color: transparent;
    transition: all 0.3s ease;
}
.text-stroke:hover {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
    color: rgba(255, 255, 255, 0.1);
}

.text-gradient {
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-gradient-brand {
    background: linear-gradient(135deg, #38bdf8 0%, #3b82f6 35%, #a855f7 70%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glassmorphism */
.glass {
    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);
}

/* Spotlight Card Hover */
.spotlight-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.spotlight-card::before {
    content: "";
    position: absolute;
    top: var(--y, 50%);
    left: var(--x, 50%);
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139,92,246,0.18) 0%, rgba(37,99,235,0.12) 35%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.spotlight-card:hover::before {
    opacity: 1;
}
.spotlight-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.4); /* Cyber Violet border on hover */
    box-shadow: 0 20px 40px -15px rgba(139,92,246,0.25);
}
.spotlight-content {
    position: relative;
    z-index: 1;
}

/* Buttons */
.btn-glow {
    position: relative;
    background: linear-gradient(135deg, #2563eb 0%, #6366f1 50%, #8b5cf6 100%); /* Blue to Violet Gradient */
    border: 1px solid rgba(168, 85, 247, 0.4);
    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.25), transparent);
    transition: all 0.5s ease;
}
.btn-glow:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #4f46e5 50%, #7c3aed 100%);
    border-color: #a855f7;
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.5);
}
.btn-glow:hover::before {
    left: 100%;
}
.btn-glow:hover .btn-icon {
    transform: translateX(5px);
}
.btn-icon {
    transition: all 0.3s ease;
}

.btn-outline {
    position: relative;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    border-color: #a855f7;
    background: rgba(168, 85, 247, 0.15);
    color: #fff;
}

/* Inputs */
.input-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}
.input-premium:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

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

/* Accordion / FAQ Styles */
.accordion-item {
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}
.accordion-item:hover {
    border-color: rgba(168, 85, 247, 0.35);
}
.accordion-header {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: transparent;
    border: none;
    text-align: left;
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1.5rem;
    color: #94a3b8;
    line-height: 1.6;
}
.accordion-item.open .accordion-content {
    padding-bottom: 1.5rem;
}

/* Marquee / Infinite Scroller */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    width: 100%;
}
.marquee-container::before, .marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}
.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #000000, transparent);
}
.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #000000, transparent);
}
.marquee-content {
    display: flex;
    animation: scroll 25s linear infinite;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Process Timeline */
.timeline-step {
    position: relative;
    padding-left: 2.5rem;
    border-left: 2px solid rgba(59, 130, 246, 0.2);
    padding-bottom: 2.5rem;
}
.timeline-step:last-child {
    border-left: 2px solid transparent;
}
.timeline-dot {
    position: absolute;
    left: -9px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #06b6d4, #3b82f6, #a855f7);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.8);
}

/* Badge Glow */
.badge-glow {
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.15), rgba(168, 85, 247, 0.15));
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: #c084fc;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

