/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #0a0a0a;
    --color-surface: #111111;
    --color-text: #fafafa;
    --color-text-muted: #888888;
    --color-accent: #3b82f6;
    --color-accent-glow: rgba(59, 130, 246, 0.4);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-bg);
    color: var(--color-text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

/* Noise texture overlay */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    z-index: 100;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Gradient orbs */
.gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.gradient-orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.gradient-orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    bottom: -150px;
    left: -150px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(-30px, -20px) scale(1.02);
    }
}

/* Container */
.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Content */
.content {
    text-align: center;
    max-width: 540px;
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.logo-wrapper {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.logo {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 28px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.logo:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 60px var(--color-accent-glow);
}

/* Typography */
.company-name {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 300;
    color: var(--color-text-muted);
    letter-spacing: 0.02em;
}

/* Divider */
.divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-text-muted), transparent);
    margin: 2.5rem auto;
}

/* Description */
.description {
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* Contact */
.contact {
    display: flex;
    justify-content: center;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-accent);
    box-shadow: 0 0 30px var(--color-accent-glow);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    text-align: center;
}

.footer p {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--color-text-muted);
    opacity: 0.5;
}

/* Mobile responsiveness */
@media (max-width: 640px) {
    .container {
        padding: 1.5rem;
    }
    
    .logo {
        width: 140px;
        height: 140px;
        border-radius: 22px;
    }
    
    .divider {
        margin: 2rem auto;
    }
    
    .gradient-orb-1 {
        width: 400px;
        height: 400px;
    }
    
    .gradient-orb-2 {
        width: 300px;
        height: 300px;
    }
    
    .footer {
        bottom: 1.5rem;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .gradient-orb {
        animation: none;
    }
    
    .content {
        animation: none;
    }
    
    .logo:hover {
        transform: none;
    }
    
    .contact-link:hover {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --color-text-muted: #aaaaaa;
    }
    
    .noise {
        display: none;
    }
}
