:root {
    --primary: #00AEEF;
    --navy-accent: #0A192F;
    --navy-secondary: #1B365D;
}
body {
    font-family: 'Inter', sans-serif;
    @apply bg-background-light text-navy-accent overflow-x-hidden;
}
.font-display { font-family: 'Plus Jakarta Sans', sans-serif; }
.glass-nav {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.glass-card {
    background: rgba(255, 255, 255, 0.046);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}
.glass-card-dark {
    background: rgba(10, 25, 47, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.animated-gradient {
    background: linear-gradient(-45deg, #f8fafc, #e2e8f0, #f1f5f9, #ffffff);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.floating {
    animation: floating 6s ease-in-out infinite;
}
@keyframes floating {
    0% { transform: translate(0, 0px); }
    50% { transform: translate(0, 20px); }
    100% { transform: translate(0, -0px); }
}
.divider-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}
.divider-wave svg {
    position: relative;
    display: block;
    width: calc(130% + 1.3px);
    height: 120px;
}
.divider-wave .shape-fill {
    fill: #0A192F;
}
.divider-angular {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.divider-angular svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}
.divider-angular .shape-fill {
    fill: #FFFFFF;
}
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
.perspective-container {
    perspective: 1000px;
}
.parallax-bg {
    background-image: radial-gradient(circle at center, rgba(0, 174, 239, 0.05) 0%, transparent 70%);
}
.process-bg-pattern {
    background-image: radial-gradient(circle at 2px 2px, rgba(0, 174, 239, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
}

.border-star{
    border: 1px solid #00AEEF;
}