* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    background: linear-gradient(135deg, #000000 0%, #050810 35%, #0a1520 50%, #050810 65%, #000000 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Animated gradient background */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse 800px 600px at 20% 50%, rgba(88, 186, 200, 0.2) 0%, rgba(88, 186, 200, 0.1) 20%, rgba(88, 186, 200, 0.05) 40%, transparent 70%),
                radial-gradient(ellipse 700px 500px at 80% 50%, rgba(76, 159, 174, 0.15) 0%, rgba(76, 159, 174, 0.08) 25%, rgba(76, 159, 174, 0.03) 50%, transparent 80%),
                radial-gradient(ellipse 600px 600px at 50% 30%, rgba(88, 186, 200, 0.12) 0%, rgba(88, 186, 200, 0.06) 30%, transparent 70%),
                radial-gradient(ellipse 500px 500px at 50% 70%, rgba(76, 159, 174, 0.1) 0%, rgba(76, 159, 174, 0.05) 35%, transparent 75%);
    animation: gradientShift 15s ease-in-out infinite;
    filter: blur(40px);
}

@keyframes gradientShift {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(-20%, 10%) rotate(90deg) scale(1.2);
    }
    50% {
        transform: translate(10%, -20%) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(-10%, -10%) rotate(270deg) scale(1.1);
    }
}

.bg-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    max-width: 800px;
    height: auto;
    opacity: 0.08;
    filter: blur(0.5px);
    animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.08;
        filter: blur(0.5px) drop-shadow(0 0 20px rgba(88, 186, 200, 0));
    }
    50% {
        transform: translate(-50%, -50%) scale(1.02);
        opacity: 0.12;
        filter: blur(0.5px) drop-shadow(0 0 60px rgba(88, 186, 200, 0.4));
    }
}

/* Floating orbs */
.floating-orb {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(88, 186, 200, 0.6), rgba(76, 159, 174, 0.3));
    filter: blur(40px);
    opacity: 0.6;
}

.orb-1 {
    top: 10%;
    left: 10%;
    animation: float1 25s ease-in-out infinite;
}

.orb-2 {
    top: 60%;
    right: 15%;
    animation: float2 30s ease-in-out infinite;
}

.orb-3 {
    bottom: 20%;
    left: 50%;
    animation: float3 35s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(200px, 100px) scale(1.2);
    }
    66% {
        transform: translate(-100px, 200px) scale(0.8);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-150px, -100px) scale(0.9);
    }
    66% {
        transform: translate(100px, -200px) scale(1.3);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-200px, -150px) scale(1.1);
    }
    66% {
        transform: translate(150px, 100px) scale(0.9);
    }
}

/* Main Content */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.content-wrapper {
    text-align: center;
    max-width: 700px;
    animation: fadeUp 1s ease-out;
    padding-top: 40px;
}

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

.logo-section {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    margin-top: 120px;
}

.logo {
    width: 600px;
    height: auto;
    position: relative;
    z-index: 2;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(88, 186, 200, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}

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

.tagline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #58bac8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.strapline {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    backdrop-filter: blur(10px);
}

.pulse {
    width: 8px;
    height: 8px;
    background: #58bac8;
    border-radius: 50%;
    position: relative;
}

.pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #58bac8;
    border-radius: 50%;
    animation: pulsate 2s ease-out infinite;
}

@keyframes pulsate {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.status-indicator .text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #58bac8, #4c9fae);
    color: #000000;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4c9fae, #3d8b9a);
    border-radius: 100px;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(88, 186, 200, 0.4);
}

.cta-button:hover::before {
    left: 0;
}

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

.arrow {
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .logo {
        width: 400px;
        height: auto;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .strapline {
        font-size: 0.85rem;
    }
    
    .description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .bg-icon {
        width: 80vw;
        opacity: 0.02;
    }
}