/* Custom color variables */
:root {
    --color-navy: #0A0E27;
    --color-orange: #FF6B35;
    --color-orange-light: #F7931E;
    --color-gray: #6B7280;
    --color-gray-light: #F8F9FB;
    --color-gray-soft: #A0A0B8;
    --color-peach: #FFF8F3;
}
/* Base styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--color-gray);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}
/* Aurora Borealis Parallax Effect */
.aurora {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 300vh; /* 3x viewport height for parallax */
    z-index: 0;
    pointer-events: none;
    --hue: 210;
    --saturation: 80%;
    background: none;
    will-change: transform;
}

.aurora::before,
.aurora::after,
.aurora::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, 
        hsla(var(--hue), var(--saturation), 70%, 0.15) 0%, 
        hsla(var(--hue), var(--saturation), 60%, 0) 70%);
    filter: blur(80px);
    animation: aurora-move 40s infinite alternate ease-in-out;
    will-change: transform;
}

.aurora::before {
    width: 1000px;
    height: 1000px;
    top: 20%;
    left: -300px;
    animation-delay: -5s;
}

.aurora::after {
    width: 800px;
    height: 800px;
    bottom: 15%;
    right: -200px;
    animation-delay: -10s;
}

.aurora::after {
    width: 1200px;
    height: 1200px;
    top: 60%;
    left: 50%;
    animation-delay: -15s;
}

@keyframes aurora-move {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(150px, 100px); }
    50% { transform: translate(-100px, -50px); }
    75% { transform: translate(-150px, 80px); }
}

/* Parallax scroll effect */
body {
    overflow-x: hidden;
    perspective: 1px;
    transform-style: preserve-3d;
}

.aurora::before {
    transform: translateZ(-0.5px) scale(1.5);
}

.aurora::after {
    transform: translateZ(-0.3px) scale(1.3);
}

.aurora::after {
    transform: translateZ(-0.7px) scale(1.7);
}
/* Custom color classes */
.bg-navy {
    background-color: var(--color-navy);
}

.text-navy {
    color: var(--color-navy);
}

.bg-orange {
    background-color: var(--color-orange);
}

.text-orange {
    color: var(--color-orange);
}

.bg-peach {
    background-color: var(--color-peach);
}

.bg-gray-light {
    background-color: var(--color-gray-light);
}

/* Typography */
.font-cormorant {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

/* Buttons */
.btn-orange {
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
    color: white;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* Animations */
@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }
}
/* Custom components */
.integration-logo {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.integration-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Demo tooltip */
.group:hover .group-hover\:block {
    display: block !important;
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Card hover effects */
.card-hover {
    transition: all 0.3s ease;
}

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

/* Gradient backgrounds */
.gradient-orange {
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
}

/* Utility classes */
.max-w-8xl {
    max-width: 90rem;
}

.z-10 {
    z-index: 10;
}