:root {
    color-scheme: light;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 28%),
        radial-gradient(circle at 85% 20%, rgba(16, 185, 129, 0.08), transparent 24%),
        #f8fafc;
}

/* Glassmorphism Utilities */
.glassmorphism {
    background: rgba(255, 255, 255, 0.72);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.header-bar {
    background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px -15px rgba(30, 58, 138, 0.45);
}

.header-bar a,
.header-bar button,
.header-bar i {
    color: #ffffff;
}

.header-bar a:hover,
.header-bar button:hover {
    color: #dbeafe;
}

.header-bar .btn-primary {
    background: white;
    color: #1E3A8A;
}

.header-bar .btn-primary:hover {
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.35);
}

.dark .glassmorphism {
    background: rgba(15, 23, 42, 0.7);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.dark .glass-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

/* Custom Buttons */
.btn-primary {
    background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
    color: white;
    transition: all 0.3s ease;
    border: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(37, 99, 235, 0.15);
    color: #1e3a8a;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 10px 30px -15px rgba(15, 23, 42, 0.25);
}

.dark .pill {
    background: rgba(30, 41, 59, 0.7);
    color: #e2e8f0;
    border-color: rgba(148, 163, 184, 0.2);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.95rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.16);
    color: #2563eb;
    font-weight: 600;
}

.hero-cta-offset {
    transform: translateX(0);
}

@media (min-width: 768px) {
    .hero-cta-offset {
        transform: translateX(-1.5cm);
    }
}

@media (max-width: 767px) {

    html,
    body {
        margin: 0 !important;
        padding: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }

    nav>div,
    .header-bar>div,
    .max-w-7xl.mx-auto,
    .max-w-5xl.mx-auto,
    .px-4,
    [class*="px-4"],
    [class*="sm:px-6"],
    [class*="lg:px-8"] {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }

    .hero-cta-offset {
        transform: translateX(0) !important;
    }

    #mobile-menu-btn {
        position: relative;
        right: -1rem;
    }
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.45rem);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.04rem;
    line-height: 1.75;
}

.ai-orb-secondary {
    animation-delay: 2s;
}

/* Animations */
@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

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

.float-anim-delayed {
    animation: float 6s ease-in-out infinite;
    animation-delay: 3s;
}

/* Hover Effects */
.hover-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.dark .hover-up:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.dark ::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.dark ::-webkit-scrollbar-thumb {
    background: #334155;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}:root {
    color-scheme: light;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 28%),
        radial-gradient(circle at 85% 20%, rgba(16, 185, 129, 0.08), transparent 24%),
        #f8fafc;
}

/* Glassmorphism Utilities */
.glassmorphism {
    background: rgba(255, 255, 255, 0.72);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.header-bar {
    background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px -15px rgba(30, 58, 138, 0.45);
}

.header-bar a,
.header-bar button,
.header-bar i {
    color: #ffffff;
}

.header-bar a:hover,
.header-bar button:hover {
    color: #dbeafe;
}

.header-bar .btn-primary {
    background: white;
    color: #1E3A8A;
}

.header-bar .btn-primary:hover {
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.35);
}

.dark .glassmorphism {
    background: rgba(15, 23, 42, 0.7);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.dark .glass-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

/* Custom Buttons */
.btn-primary {
    background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
    color: white;
    transition: all 0.3s ease;
    border: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(37, 99, 235, 0.15);
    color: #1e3a8a;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 10px 30px -15px rgba(15, 23, 42, 0.25);
}

.dark .pill {
    background: rgba(30, 41, 59, 0.7);
    color: #e2e8f0;
    border-color: rgba(148, 163, 184, 0.2);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.95rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.16);
    color: #2563eb;
    font-weight: 600;
}

.hero-cta-offset {
    transform: translateX(0);
}

@media (min-width: 768px) {
    .hero-cta-offset {
        transform: translateX(-1.5cm);
    }
}

@media (max-width: 767px) {

    html,
    body {
        margin: 0 !important;
        padding: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }

    nav>div,
    .header-bar>div,
    .max-w-7xl.mx-auto,
    .max-w-5xl.mx-auto,
    .px-4,
    [class*="px-4"],
    [class*="sm:px-6"],
    [class*="lg:px-8"] {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }

    .hero-cta-offset {
        transform: translateX(0) !important;
    }

    #mobile-menu-btn {
        position: relative;
        right: -1rem;
    }
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.45rem);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.04rem;
    line-height: 1.75;
}

.ai-orb-secondary {
    animation-delay: 2s;
}

/* Animations */
@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

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

.float-anim-delayed {
    animation: float 6s ease-in-out infinite;
    animation-delay: 3s;
}

/* Hover Effects */
.hover-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.dark .hover-up:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.dark ::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.dark ::-webkit-scrollbar-thumb {
    background: #334155;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}