/* Aurora AI - Premium Corporate Design System */

:root {
    /* Aurora Borealis Color Palette */
    --aurora-cyan: #00D4FF;
    --aurora-teal: #00C9B7;
    --aurora-mint: #2AFFA3;
    --aurora-blue: #0891B2;
    --aurora-deep: #065F68;

    /* Neutral Palette */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --black: #0A0A0A;

    /* Gradients */
    --aurora-gradient: linear-gradient(135deg, var(--aurora-cyan) 0%, var(--aurora-teal) 50%, var(--aurora-mint) 100%);
    --aurora-gradient-subtle: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 201, 183, 0.1) 50%, rgba(42, 255, 163, 0.1) 100%);
    --aurora-gradient-dark: linear-gradient(135deg, #0c4a6e 0%, #065f46 50%, #064e3b 100%);

    /* Seamless Section Backgrounds */
    --aurora-section-glow: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(0, 212, 255, 0.04) 0%, transparent 70%);
    --aurora-section-top: radial-gradient(ellipse 100% 50% at 50% 0%, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
    --aurora-section-left: radial-gradient(ellipse 50% 80% at 0% 50%, rgba(0, 201, 183, 0.03) 0%, transparent 50%);
    --aurora-section-right: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(42, 255, 163, 0.03) 0%, transparent 50%);

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

    /* Liquid Glass Variables */
    --glass-width: 200;
    --glass-height: 56;
    --glass-radius: 28;
    --glass-frost: 0.02;
    --glass-saturation: 1.8;
    --glass-displace: 0;
    --glass-scale: -180;

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 8rem);
    --container-width: 1280px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===========================================
   NAVIGATION - Apple Liquid Glass Style
   =========================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.4s var(--ease-smooth);
}

.nav.scrolled {
    padding: 0.75rem 2rem;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 32px;
    width: auto;
    transition: transform 0.3s var(--ease-smooth);
}

.nav-logo:hover img {
    transform: scale(1.05);
}

/* Apple Liquid Glass Navigation */
.nav-glass {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem;
    border-radius: 100px;
    position: relative;
    overflow: hidden;

    /* Liquid Glass Effect - More visible with better contrast */
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: url(#glass-filter) blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);

    /* Subtle border with gradient */
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 0 2px 1px rgba(255, 255, 255, 0.3) inset,
        0px 4px 16px rgba(0, 0, 0, 0.08),
        0px 8px 24px rgba(0, 0, 0, 0.06);

    /* Liquid effect animation */
    transition: all 0.4s var(--ease-out-expo);
}

/* Water ripple effect on nav glass */
.nav-glass::after {
    content: '';
    position: absolute;
    inset: -50%;
    background: radial-gradient(
        circle,
        rgba(0, 212, 255, 0.1) 0%,
        rgba(0, 201, 183, 0.05) 30%,
        transparent 70%
    );
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
    pointer-events: none;
    border-radius: 50%;
    animation: waterRipple 3s ease-in-out infinite;
}

.nav-glass:hover::after {
    opacity: 1;
    transform: scale(1.5);
    animation: waterRippleHover 1.5s ease-in-out infinite;
}

@keyframes waterRipple {
    0%, 100% {
        transform: scale(0.8) translate(0, 0);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2) translate(10px, -10px);
        opacity: 0.5;
    }
}

@keyframes waterRippleHover {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.4;
    }
    33% {
        transform: scale(1.3) translate(-15px, 15px);
        opacity: 0.6;
    }
    66% {
        transform: scale(1.1) translate(15px, -15px);
        opacity: 0.5;
    }
}

/* Center nav glass */
.nav-glass-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Logo glass container - same size as nav links glass */
.nav-glass-logo {
    padding: 0.5rem 1rem;
}

.nav-glass-logo .nav-logo img {
    height: 36px;
}

.nav-glass::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.4) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
}

/* Aurora glow on hover */
.nav-glass:hover {
    box-shadow:
        0 0 0 1px rgba(0, 212, 255, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 212, 255, 0.1),
        0 0 40px rgba(0, 212, 255, 0.05),
        inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.nav-link {
    position: relative;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.3s var(--ease-smooth);
    z-index: 1;
    overflow: hidden;
}

.nav-link:hover {
    color: var(--gray-900);
}

.nav-link.active {
    color: var(--white);
    background: var(--aurora-gradient);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    background: var(--gray-900);
    border-radius: 100px;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--aurora-gradient);
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
}

.nav-cta:hover::before {
    opacity: 1;
}

.nav-cta span,
.nav-cta svg {
    position: relative;
    z-index: 1;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.3);
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.9) 100%
    );
}

.hero-gradient-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--white) 0%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Compliance Badges */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
    overflow: hidden;
    
    /* Liquid Glass Effect - Matching nav-glass */
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: url(#glass-filter) blur(20px) saturate(180%);
    
    /* Subtle border with gradient */
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    box-shadow:
        0 0 2px 1px rgba(255, 255, 255, 0.3) inset,
        0px 4px 16px rgba(0, 0, 0, 0.08),
        0px 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s var(--ease-smooth);
}

/* Water ripple effect on badge hover */
.badge::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(0, 212, 255, 0.3) 0%,
        rgba(0, 201, 183, 0.2) 40%,
        transparent 70%
    );
    transform: translate(-50%, -50%);
    transition: width 0.6s var(--ease-out-expo), height 0.6s var(--ease-out-expo), opacity 0.6s;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

.badge::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.4) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
}

.badge svg,
.badge span {
    position: relative;
    z-index: 1;
}

.badge:hover::after {
    width: 250px;
    height: 250px;
    opacity: 1;
    animation: badgeRipple 2s ease-in-out infinite;
}

@keyframes badgeRipple {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.badge:hover {
    box-shadow:
        0 0 0 1px rgba(0, 212, 255, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 212, 255, 0.1),
        0 0 40px rgba(0, 212, 255, 0.05),
        inset 0 1px 1px rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.badge svg {
    color: var(--aurora-teal);
}

/* Hero Title with Decryption Effect */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--gray-900);
    position: relative;
    cursor: default;
    text-align: center;
}

.hero-title .decrypt-line {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    display: block;
}

/* Magic Flow Text Effect - Smooth Appearance */
.magic-text {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
    animation: magicFlow 1.2s var(--ease-out-expo) forwards;
}

.magic-text:first-child {
    color: var(--gray-900);
    animation-delay: 0.3s;
}

.magic-text.gradient-text {
    background: var(--aurora-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-delay: 0.8s;
}

.magic-text .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    animation: letterFlow 0.6s var(--ease-out-expo) forwards;
}

/* Stagger letters for fluid flow */
.magic-text:first-child .letter:nth-child(1) { animation-delay: 0.4s; }
.magic-text:first-child .letter:nth-child(2) { animation-delay: 0.45s; }
.magic-text:first-child .letter:nth-child(3) { animation-delay: 0.5s; }
.magic-text:first-child .letter:nth-child(4) { animation-delay: 0.55s; }
.magic-text:first-child .letter:nth-child(5) { animation-delay: 0.6s; }
.magic-text:first-child .letter:nth-child(6) { animation-delay: 0.65s; }
.magic-text:first-child .letter:nth-child(7) { animation-delay: 0.7s; }
.magic-text:first-child .letter:nth-child(8) { animation-delay: 0.75s; }
.magic-text:first-child .letter:nth-child(9) { animation-delay: 0.8s; }
.magic-text:first-child .letter:nth-child(10) { animation-delay: 0.85s; }
.magic-text:first-child .letter:nth-child(11) { animation-delay: 0.9s; }
.magic-text:first-child .letter:nth-child(12) { animation-delay: 0.95s; }
.magic-text:first-child .letter:nth-child(13) { animation-delay: 1.0s; }
.magic-text:first-child .letter:nth-child(14) { animation-delay: 1.05s; }
.magic-text:first-child .letter:nth-child(15) { animation-delay: 1.1s; }
.magic-text:first-child .letter:nth-child(16) { animation-delay: 1.15s; }

.magic-text.gradient-text .letter:nth-child(1) { animation-delay: 0.9s; }
.magic-text.gradient-text .letter:nth-child(2) { animation-delay: 0.95s; }
.magic-text.gradient-text .letter:nth-child(3) { animation-delay: 1.0s; }
.magic-text.gradient-text .letter:nth-child(4) { animation-delay: 1.05s; }
.magic-text.gradient-text .letter:nth-child(5) { animation-delay: 1.1s; }
.magic-text.gradient-text .letter:nth-child(6) { animation-delay: 1.15s; }
.magic-text.gradient-text .letter:nth-child(7) { animation-delay: 1.2s; }
.magic-text.gradient-text .letter:nth-child(8) { animation-delay: 1.25s; }
.magic-text.gradient-text .letter:nth-child(9) { animation-delay: 1.3s; }
.magic-text.gradient-text .letter:nth-child(10) { animation-delay: 1.35s; }
.magic-text.gradient-text .letter:nth-child(11) { animation-delay: 1.4s; }
.magic-text.gradient-text .letter:nth-child(12) { animation-delay: 1.45s; }
.magic-text.gradient-text .letter:nth-child(13) { animation-delay: 1.5s; }
.magic-text.gradient-text .letter:nth-child(14) { animation-delay: 1.55s; }
.magic-text.gradient-text .letter:nth-child(15) { animation-delay: 1.6s; }
.magic-text.gradient-text .letter:nth-child(16) { animation-delay: 1.65s; }
.magic-text.gradient-text .letter:nth-child(17) { animation-delay: 1.7s; }
.magic-text.gradient-text .letter:nth-child(18) { animation-delay: 1.75s; }
.magic-text.gradient-text .letter:nth-child(19) { animation-delay: 1.8s; }
.magic-text.gradient-text .letter:nth-child(20) { animation-delay: 1.85s; }

@keyframes magicFlow {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes letterFlow {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
        filter: blur(4px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}


.jump-text .word,
.jump-text .letter {
    display: inline-block;
    animation: jump var(--easing) infinite;
    transform-origin: center bottom;
}

/* Stagger delays for words */
.jump-text .word:nth-child(1) {
    animation-delay: 0s;
}

.jump-text .word:nth-child(2) {
    animation-delay: 0.1s;
}

.jump-text .word:nth-child(3) {
    animation-delay: 0.2s;
}

.jump-text .word:nth-child(4) {
    animation-delay: 0.3s;
}

.jump-text .word:nth-child(5) {
    animation-delay: 0.4s;
}

/* Stagger delays for letters within words */
.jump-text .word .letter:nth-child(1) {
    animation-delay: calc(var(--word-delay, 0s) + 0s);
}

.jump-text .word .letter:nth-child(2) {
    animation-delay: calc(var(--word-delay, 0s) + 0.05s);
}

.jump-text .word .letter:nth-child(3) {
    animation-delay: calc(var(--word-delay, 0s) + 0.1s);
}

.jump-text .word .letter:nth-child(4) {
    animation-delay: calc(var(--word-delay, 0s) + 0.15s);
}

.jump-text .word .letter:nth-child(5) {
    animation-delay: calc(var(--word-delay, 0s) + 0.2s);
}

.jump-text .word .letter:nth-child(6) {
    animation-delay: calc(var(--word-delay, 0s) + 0.25s);
}

.jump-text .word .letter:nth-child(7) {
    animation-delay: calc(var(--word-delay, 0s) + 0.3s);
}

.jump-text .word .letter:nth-child(8) {
    animation-delay: calc(var(--word-delay, 0s) + 0.35s);
}

.jump-text .word .letter:nth-child(9) {
    animation-delay: calc(var(--word-delay, 0s) + 0.4s);
}

.jump-text .word .letter:nth-child(10) {
    animation-delay: calc(var(--word-delay, 0s) + 0.45s);
}

.jump-text .word .letter:nth-child(11) {
    animation-delay: calc(var(--word-delay, 0s) + 0.5s);
}

.jump-text .word .letter:nth-child(12) {
    animation-delay: calc(var(--word-delay, 0s) + 0.55s);
}

/* Gradient text letters - preserve gradient during animation */
.gradient-text .letter {
    background: var(--aurora-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Non-gradient letters use text color */
.jump-text:not(.gradient-text) .letter {
    color: var(--gray-900);
}

@keyframes jump {
    0%, 20% {
        transform: scaleY(1);
    }
    25% {
        transform: scaleY(var(--crouch-ratio));
    }
    30% {
        transform: scaleY(var(--crouch-ratio)) translateY(var(--jump-height)) rotateX(var(--spin-angle));
        background-color: var(--color-highlight);
        padding: 0 var(--chaos-percentage);
    }
    40% {
        transform: translateY(0) scaleY(1) rotateX(0deg);
    }
    45% {
        transform: scaleY(var(--crouch-ratio));
    }
    100% {
        transform: scaleY(1);
    }
}

/* For gradient text, preserve gradient and skip background-color change */
.gradient-text .letter {
    background-color: transparent !important;
}


.title-line {
    display: block;
}

.gradient-text {
    background: var(--aurora-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

/* Aurora shimmer effect on gradient text */
.gradient-text::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    line-height: 1.7;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

/* Buttons with Liquid Glass Effect */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    color: var(--white);
    background: var(--gray-900);
    position: relative;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--aurora-gradient);
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
    border-radius: inherit;
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    color: var(--gray-700);
    position: relative;
    overflow: hidden;
    
    /* Liquid Glass Effect - Matching nav-glass */
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: url(#glass-filter) blur(20px) saturate(180%);
    
    /* Subtle border with gradient */
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 0 2px 1px rgba(255, 255, 255, 0.3) inset,
        0px 4px 16px rgba(0, 0, 0, 0.08),
        0px 8px 24px rgba(0, 0, 0, 0.06);
}

/* Gradient border effect */
.btn-secondary::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.4) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
    z-index: 0;
}

/* Water loop effect on button hover */
.btn-secondary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(0, 212, 255, 0.4) 0%,
        rgba(0, 201, 183, 0.3) 30%,
        rgba(42, 255, 163, 0.2) 50%,
        transparent 70%
    );
    transform: translate(-50%, -50%);
    transition: width 0.8s var(--ease-out-expo), height 0.8s var(--ease-out-expo), opacity 0.8s;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

.btn-secondary span,
.btn-secondary svg {
    position: relative;
    z-index: 1;
}

.btn-secondary:hover::after {
    width: 400px;
    height: 400px;
    opacity: 1;
    animation: waterLoop 2.5s ease-in-out infinite;
}

@keyframes waterLoop {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translate(-50%, -50%) scale(1.1) rotate(90deg);
        opacity: 0.9;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translate(-50%, -50%) scale(1.15) rotate(270deg);
        opacity: 0.9;
    }
}

.btn-secondary:hover {
    color: var(--gray-900);
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(0, 212, 255, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 212, 255, 0.1),
        0 0 40px rgba(0, 212, 255, 0.05),
        inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.btn-outline {
    color: var(--white);
    background: light-dark(
        hsl(0 0% 100% / 0.05),
        hsl(0 0% 0% / 0.05)
    );
    backdrop-filter: url(#glass-filter) blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 0 2px 1px
            light-dark(
                color-mix(in oklch, canvasText, #0000 90%),
                color-mix(in oklch, canvasText, #0000 75%)
            )
            inset,
        0px 4px 16px rgba(17, 17, 26, 0.03);
    position: relative;
    overflow: hidden;
}

/* Water loop effect on outline button hover */
.btn-outline::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.2) 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translate(-50%, -50%);
    transition: width 0.8s var(--ease-out-expo), height 0.8s var(--ease-out-expo), opacity 0.8s;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

.btn-outline span,
.btn-outline svg {
    position: relative;
    z-index: 1;
}

.btn-outline:hover::after {
    width: 400px;
    height: 400px;
    opacity: 1;
    animation: waterLoopReverse 2.5s ease-in-out infinite;
}

@keyframes waterLoopReverse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translate(-50%, -50%) scale(1.1) rotate(-90deg);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05) rotate(-180deg);
        opacity: 0.7;
    }
    75% {
        transform: translate(-50%, -50%) scale(1.15) rotate(-270deg);
        opacity: 0.8;
    }
}

.btn-outline:hover {
    background: light-dark(
        hsl(0 0% 100% / 0.15),
        hsl(0 0% 0% / 0.15)
    );
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow:
        0 0 2px 1px rgba(255, 255, 255, 0.3) inset,
        0px 8px 24px rgba(255, 255, 255, 0.1);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

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

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gray-400);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--aurora-gradient);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

.hero-scroll-indicator span {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===========================================
   CONTAINER & SECTIONS
   =========================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--aurora-teal);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--gray-900);
    position: relative;
    cursor: default;
    transition: all 0.4s var(--ease-smooth);
}


.section-title-sm {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-900);
    position: relative;
    cursor: default;
    transition: all 0.4s var(--ease-smooth);
}


.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    line-height: 1.7;
}

/* ===========================================
   INTEGRATIONS SECTION
   =========================================== */
.integrations {
    position: relative;
    padding: var(--section-padding) 0;
    text-align: center;
    background: var(--white);
}

.integrations::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--aurora-section-glow), var(--aurora-section-left);
    pointer-events: none;
}

.integrations .container {
    position: relative;
    z-index: 1;
}

.logos-marquee {
    margin-top: 3rem;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logos-track {
    display: flex;
    gap: 3rem;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    opacity: 0.6;
    transition: all 0.3s var(--ease-smooth);
}

.logo-item:hover {
    opacity: 1;
    transform: translateY(-4px);
}

.logo-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s var(--ease-smooth);
}

.logo-item:hover img {
    filter: grayscale(0%);
}

.logo-item span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-500);
}

/* ===========================================
   FEATURES TICKER
   =========================================== */
.features-ticker {
    padding: 1.5rem 0;
    background: var(--aurora-gradient);
    overflow: hidden;
}

.ticker-track {
    display: flex;
    gap: 4rem;
    animation: ticker 25s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9375rem;
    white-space: nowrap;
}

.ticker-item svg {
    opacity: 0.8;
}

/* ===========================================
   CAPABILITIES SECTION
   =========================================== */
.capabilities {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--white);
}

.capabilities::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        var(--aurora-section-top),
        var(--aurora-section-right);
    pointer-events: none;
}

.capabilities::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(0, 201, 183, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.capabilities .container {
    position: relative;
    z-index: 1;
}

.capabilities-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Tabs Navigation */
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    font-family: var(--font-body);
    color: var(--gray-600);
    position: relative;
    overflow: hidden;
    
    /* Liquid Glass Effect - Matching nav-glass */
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: url(#glass-filter) blur(20px) saturate(180%);
    
    /* Subtle border with gradient */
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    box-shadow:
        0 0 2px 1px rgba(255, 255, 255, 0.3) inset,
        0px 4px 16px rgba(0, 0, 0, 0.08),
        0px 8px 24px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}

/* Water wave effect on tab button hover */
.tab-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(0, 212, 255, 0.3) 0%,
        rgba(0, 201, 183, 0.2) 30%,
        rgba(42, 255, 163, 0.15) 50%,
        transparent 70%
    );
    transform: translate(-50%, -50%);
    transition: width 0.7s var(--ease-out-expo), height 0.7s var(--ease-out-expo), opacity 0.7s;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

.tab-btn:hover::after {
    width: 350px;
    height: 350px;
    opacity: 1;
    animation: tabWave 2.2s ease-in-out infinite;
}

@keyframes tabWave {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.6;
    }
    33% {
        transform: translate(-50%, -50%) scale(1.15) rotate(120deg);
        opacity: 0.8;
    }
    66% {
        transform: translate(-50%, -50%) scale(1.05) rotate(240deg);
        opacity: 0.7;
    }
}

.tab-btn:hover {
    color: var(--gray-800);
    box-shadow:
        0 0 0 1px rgba(0, 212, 255, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 212, 255, 0.1),
        0 0 40px rgba(0, 212, 255, 0.05),
        inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.tab-btn::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.4) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
}

.tab-btn.active {
    color: var(--white);
    background: var(--gray-900);
    border-color: var(--gray-900);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.tab-btn.active::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--aurora-gradient);
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
    border-radius: inherit;
    z-index: -1;
}

.tab-btn.active:hover::before {
    opacity: 1;
}

/* Tab Panels */
.tabs-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s var(--ease-out-expo);
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .tab-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.tab-text h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.tab-text > p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.feature-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    
    /* Liquid Glass Effect - Matching nav-glass */
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: url(#glass-filter) blur(20px) saturate(180%);
    
    /* Subtle border with gradient */
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow:
        0 0 2px 1px rgba(255, 255, 255, 0.3) inset,
        0px 4px 16px rgba(0, 0, 0, 0.08),
        0px 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s var(--ease-smooth);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.4) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
    z-index: 0;
}

.feature-card:hover {
    box-shadow:
        0 0 0 1px rgba(0, 212, 255, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 212, 255, 0.1),
        0 0 40px rgba(0, 212, 255, 0.05),
        inset 0 1px 1px rgba(255, 255, 255, 0.8);
    transform: translateY(-4px);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    color: var(--aurora-teal);
    transition: all 0.3s var(--ease-smooth);
}

.feature-icon.aurora-glow {
    position: relative;
}

.feature-card:hover .feature-icon.aurora-glow {
    background: var(--aurora-gradient);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
}

.feature-text {
    position: relative;
    z-index: 1;
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.375rem;
}

.feature-text p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* Visual Card */
.tab-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    position: relative;
    background: var(--gray-100);
    border-radius: 24px;
    padding: 2rem;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.visual-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--aurora-gradient-subtle);
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

.visual-card:hover::before {
    opacity: 1;
}

.visual-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 212, 255, 0.15);
}

.visual-icon {
    width: 200px;
    height: auto;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.visual-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    position: relative;
    overflow: hidden;
    
    /* Liquid Glass Effect - Matching nav-glass */
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: url(#glass-filter) blur(20px) saturate(180%);
    
    /* Subtle border with gradient */
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow:
        0 0 2px 1px rgba(255, 255, 255, 0.3) inset,
        0px 4px 16px rgba(0, 0, 0, 0.08),
        0px 8px 24px rgba(0, 0, 0, 0.06);
    
    margin-bottom: 1.5rem;
    z-index: 1;
    transition: all 0.4s var(--ease-smooth);
}

.visual-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.4) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
    z-index: 0;
}

.visual-card:hover .visual-icon-wrapper {
    box-shadow:
        0 0 0 1px rgba(0, 212, 255, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 212, 255, 0.1),
        0 0 40px rgba(0, 212, 255, 0.05),
        inset 0 1px 1px rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}

.visual-svg {
    transition: all 0.4s var(--ease-smooth);
}

.visual-card:hover .visual-svg {
    transform: scale(1.1);
}

.visual-text {
    position: relative;
    z-index: 1;
}

.visual-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--aurora-teal);
    background: rgba(0, 201, 183, 0.1);
    padding: 0.375rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 0.75rem;
}

.visual-text p {
    font-size: 1rem;
    color: var(--gray-600);
}

/* ===========================================
   CTA SECTION
   =========================================== */
.cta-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    overflow: hidden;
}

.cta-aurora-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 80% at 50% 100%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 0% 50%, rgba(0, 201, 183, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 100% 50%, rgba(42, 255, 163, 0.06) 0%, transparent 50%);
    animation: auroraFloat 12s ease-in-out infinite;
}

.cta-aurora-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 30% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 70% 80%, rgba(42, 255, 163, 0.05) 0%, transparent 50%);
    animation: auroraFloat 12s ease-in-out infinite reverse;
}

@keyframes auroraFloat {
    0%, 100% {
        opacity: 0.8;
        transform: translateY(0) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-10px) scale(1.02);
    }
}

.cta-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.cta-card {
    position: relative;
    overflow: hidden;
    
    /* Liquid Glass Effect - Matching nav-glass */
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: url(#glass-filter) blur(20px) saturate(180%);
    
    /* Subtle border with gradient */
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    box-shadow:
        0 0 2px 1px rgba(255, 255, 255, 0.3) inset,
        0px 4px 16px rgba(0, 0, 0, 0.08),
        0px 8px 24px rgba(0, 0, 0, 0.06);
    
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.4s var(--ease-smooth);
}

/* Gradient border effect */
.cta-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.4) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
    z-index: 0;
}

/* Water loop effect on CTA card hover */
.cta-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(0, 212, 255, 0.2) 0%,
        rgba(0, 201, 183, 0.15) 25%,
        rgba(42, 255, 163, 0.1) 50%,
        transparent 70%
    );
    transform: translate(-50%, -50%);
    transition: width 1s var(--ease-out-expo), height 1s var(--ease-out-expo), opacity 1s;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

.cta-card h3,
.cta-card p,
.cta-card .btn {
    position: relative;
    z-index: 1;
}

.cta-card:hover::after {
    width: 600px;
    height: 600px;
    opacity: 1;
    animation: ctaWaterLoop 3s ease-in-out infinite;
}

@keyframes ctaWaterLoop {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.5;
    }
    25% {
        transform: translate(-50%, -50%) scale(1.2) rotate(90deg);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1) rotate(180deg);
        opacity: 0.6;
    }
    75% {
        transform: translate(-50%, -50%) scale(1.25) rotate(270deg);
        opacity: 0.7;
    }
}

.cta-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 0 1px rgba(0, 212, 255, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 212, 255, 0.1),
        0 0 40px rgba(0, 212, 255, 0.05),
        inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.cta-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
}

.cta-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

.cta-card .btn {
    align-self: flex-start;
    margin-top: 0.5rem;
}

.cta-card .btn-primary {
    background: var(--aurora-gradient);
    color: var(--white);
}

.cta-card .btn-primary::before {
    display: none;
}

.cta-card .btn-primary:hover {
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

.cta-card-outline {
    /* Liquid Glass Effect - Matching nav-glass */
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: url(#glass-filter) blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.cta-card-outline:hover {
    box-shadow:
        0 0 0 1px rgba(0, 212, 255, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 212, 255, 0.1),
        0 0 40px rgba(0, 212, 255, 0.05),
        inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.cta-card-outline .btn-outline {
    border-color: var(--gray-300);
    color: var(--gray-700);
}

.cta-card-outline .btn-outline:hover {
    background: var(--gray-900);
    border-color: var(--gray-900);
    color: var(--white);
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
    position: relative;
    background: var(--white);
    padding: 4rem 0 2rem;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 60% at 50% 0%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 80% 80% at 0% 100%, rgba(0, 201, 183, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 80% 80% at 100% 100%, rgba(42, 255, 163, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.footer-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

@media (max-width: 968px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.footer-logo {
    height: 32px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-600);
    text-decoration: none;
    padding: 0.375rem 0;
    transition: color 0.2s var(--ease-smooth);
}

.footer-col a:hover {
    color: var(--aurora-teal);
}

.footer-social h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    color: var(--gray-600);
    transition: all 0.3s var(--ease-smooth);
}

.social-link:hover {
    background: var(--aurora-gradient);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.25);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.footer-badges {
    display: flex;
    gap: 1.5rem;
}

.footer-badges span {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* ===========================================
   ANIMATIONS
   =========================================== */
[data-anim] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

[data-anim].animated {
    opacity: 1;
    transform: translateY(0);
}

/* Aurora Glow Hover Effect - Siri/Gemini style */
.aurora-glow-hover {
    position: relative;
}

.aurora-glow-hover::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--aurora-gradient);
    border-radius: inherit;
    opacity: 0;
    filter: blur(16px);
    transition: opacity 0.4s var(--ease-smooth);
    z-index: -1;
}

.aurora-glow-hover:hover::after {
    opacity: 0.5;
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */
@media (max-width: 768px) {
    .nav-container {
        padding: 0;
    }

    .nav-cta {
        display: none;
    }

    .nav-glass-center {
        position: relative;
        left: auto;
        transform: none;
    }

    .nav-glass-logo {
        display: none;
    }

    .hero {
        padding: 8rem 1.5rem 4rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .integrations,
    .capabilities,
    .cta-section {
        padding: 4rem 0;
    }

    .capabilities-header {
        margin-bottom: 2rem;
    }

    .footer-main {
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-links {
        justify-items: center;
    }

    .footer-social {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .badge {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }
}

/* ===========================================
   COOKIE CONSENT BANNER
   =========================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s var(--ease-out-expo), opacity 0.5s var(--ease-out-expo);
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.cookie-banner-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content {
    flex: 1;
}

.cookie-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-content h4 svg {
    color: var(--aurora-teal);
}

.cookie-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

.cookie-content a {
    color: var(--aurora-teal);
    text-decoration: none;
    font-weight: 500;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    border: none;
}

.cookie-btn-settings {
    background: light-dark(
        hsl(0 0% 100% / 0.6),
        hsl(0 0% 0% / 0.6)
    );
    backdrop-filter: url(#glass-filter) blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--gray-600);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 0 2px 1px
            light-dark(
                color-mix(in oklch, canvasText, #0000 85%),
                color-mix(in oklch, canvasText, #0000 65%)
            )
            inset,
        0px 4px 16px rgba(17, 17, 26, 0.05);
}

.cookie-btn-settings:hover {
    background: light-dark(
        hsl(0 0% 100% / 0.8),
        hsl(0 0% 0% / 0.8)
    );
    border-color: var(--gray-400);
    color: var(--gray-800);
    box-shadow:
        0 0 2px 1px rgba(0, 0, 0, 0.1) inset,
        0px 8px 24px rgba(0, 0, 0, 0.1);
}

.cookie-btn-reject {
    background: light-dark(
        hsl(0 0% 100% / 0.7),
        hsl(0 0% 0% / 0.7)
    );
    backdrop-filter: url(#glass-filter) blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--gray-700);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 0 2px 1px
            light-dark(
                color-mix(in oklch, canvasText, #0000 85%),
                color-mix(in oklch, canvasText, #0000 65%)
            )
            inset,
        0px 4px 16px rgba(17, 17, 26, 0.05);
}

.cookie-btn-reject:hover {
    background: light-dark(
        hsl(0 0% 100% / 0.9),
        hsl(0 0% 0% / 0.9)
    );
    color: var(--gray-900);
    box-shadow:
        0 0 2px 1px rgba(0, 0, 0, 0.1) inset,
        0px 8px 24px rgba(0, 0, 0, 0.1);
}

.cookie-btn-accept {
    background: var(--gray-900);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cookie-btn-accept::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--aurora-gradient);
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
    border-radius: inherit;
}

.cookie-btn-accept span {
    position: relative;
    z-index: 1;
}

.cookie-btn-accept:hover::before {
    opacity: 1;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

/* Cookie Settings Modal */
.cookie-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease-smooth), visibility 0.3s;
}

.cookie-modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.cookie-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90%;
    max-width: 540px;
    max-height: 85vh;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.cookie-modal-overlay.visible .cookie-modal {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.cookie-modal-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.cookie-modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.cookie-modal-header p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

.cookie-modal-body {
    padding: 1rem 1.5rem;
    max-height: 50vh;
    overflow-y: auto;
}

.cookie-category {
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-category-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.cookie-category-info p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.4;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--gray-300);
    border-radius: 26px;
    transition: all 0.3s var(--ease-smooth);
}

.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--aurora-gradient);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(22px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    border-top: 1px solid var(--gray-100);
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-banner-container {
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
    }

    .cookie-modal {
        width: 95%;
        max-height: 90vh;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .cookie-modal-footer .cookie-btn {
        width: 100%;
    }
}
