/* ===== CSS Variables ===== */
:root {
    --bg-dark: #0a0a0f;
    --bg-darker: #070709;
    --text-white: #ffffff;
    --text-muted: #8a8a9a;
    --accent-cyan: #00b4d8;
    --accent-blue: #0077b6;
    --glow-blue-1: #0066ff;
    --glow-blue-2: #00b4d8;
    --glow-blue-3: #0088cc;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* ===== Animated Background Glow ===== */
.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    will-change: transform, opacity;
}

.glow-orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.6) 0%, rgba(0, 102, 255, 0.2) 40%, transparent 70%);
    top: -250px;
    left: -200px;
    opacity: 0.8;
    animation: drift-1 12s ease-in-out infinite, pulse-1 8s ease-in-out infinite;
}

.glow-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.5) 0%, rgba(0, 180, 216, 0.15) 40%, transparent 70%);
    top: -50px;
    left: 50px;
    opacity: 0.6;
    animation: drift-2 15s ease-in-out infinite, pulse-2 10s ease-in-out infinite;
}

.glow-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 136, 204, 0.4) 0%, rgba(0, 136, 204, 0.1) 40%, transparent 70%);
    top: 100px;
    left: -100px;
    opacity: 0.7;
    animation: drift-3 18s ease-in-out infinite, pulse-3 6s ease-in-out infinite;
}

/* Drift Animations - Organic Movement */
@keyframes drift-1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, 30px) scale(1.05);
    }
    50% {
        transform: translate(30px, 60px) scale(1);
    }
    75% {
        transform: translate(-20px, 40px) scale(0.95);
    }
}

@keyframes drift-2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(40px, -20px) rotate(5deg);
    }
    66% {
        transform: translate(-30px, 30px) rotate(-5deg);
    }
}

@keyframes drift-3 {
    0%, 100% {
        transform: translate(0, 0);
    }
    20% {
        transform: translate(60px, 20px);
    }
    40% {
        transform: translate(40px, 50px);
    }
    60% {
        transform: translate(-10px, 40px);
    }
    80% {
        transform: translate(-30px, 10px);
    }
}

/* Pulse Animations - Breathing Effect */
@keyframes pulse-1 {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

@keyframes pulse-2 {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.85;
    }
}

@keyframes pulse-3 {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.9;
    }
}

/* ===== Layout ===== */
.container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.content {
    text-align: center;
    max-width: 800px;
}

/* ===== Logo ===== */
.logo {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3.5rem, 10vw, 5.5rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 1.75rem;
    line-height: 1;
}

.logo-veloo {
    color: var(--text-white);
    text-shadow: 0 0 60px rgba(0, 180, 216, 0.4), 0 0 120px rgba(0, 102, 255, 0.2);
}

.logo-io {
    background: linear-gradient(135deg, #00d4ff 0%, #00b4d8 50%, #0088cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 180, 216, 0.5));
}

/* ===== Badge ===== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    width: 14px;
    height: 14px;
    color: var(--accent-cyan);
    opacity: 0.8;
}

/* ===== Headline ===== */
.headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1.25rem;
    letter-spacing: 0.01em;
}

.highlight {
    background: linear-gradient(90deg, #00d4ff 0%, #00b4d8 40%, #0099cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(0, 180, 216, 0.4));
}

/* ===== Subtext ===== */
.subtext {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.6;
}

/* ===== Contact Link ===== */
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 180, 216, 0.3);
    transform: translateY(-2px);
}

.contact-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.contact-email {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-cyan);
}

/* ===== Footer ===== */
.footer {
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer p {
    font-size: 0.8rem;
    color: rgba(138, 138, 154, 0.6);
    font-weight: 400;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .glow-orb-1 {
        width: 500px;
        height: 500px;
        top: -150px;
        left: -150px;
    }
    
    .glow-orb-2 {
        width: 350px;
        height: 350px;
        top: -50px;
        left: 20px;
    }
    
    .glow-orb-3 {
        width: 280px;
        height: 280px;
        top: 50px;
        left: -50px;
    }
    
    .badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }
    
    .headline br {
        display: none;
    }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    .glow-orb {
        animation: none;
    }
}

