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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0a0a0f;
    color: #ffffff;
    position: relative;
    overflow-x: hidden;
}

/* Background Effects */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #0a0a0f 0%, #0f0f1a 100%);
    z-index: -4;
}

.bg-orb {
    position: fixed;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, 
        rgba(251, 146, 60, 0.5) 0%, 
        rgba(236, 72, 153, 0.35) 25%, 
        rgba(59, 130, 246, 0.25) 45%, 
        rgba(30, 64, 175, 0.15) 65%, 
        transparent 85%);
    filter: blur(60px);
    z-index: -3;
}

.bg-glow-left {
    position: fixed;
    top: 20%;
    left: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -2;
}

.bg-glow-right {
    position: fixed;
    top: 20%;
    right: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -2;
}

/* Container */
.container {
    max-width: 700px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: fadeIn 1s ease-out;
}

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

/* Logo Stories Style */
.logo-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.3) 0%, 
        rgba(251, 146, 60, 0.2) 50%, 
        rgba(236, 72, 153, 0.3) 100%);
    filter: blur(40px);
}

.logo-ring {
    position: relative;
    width: 160px;
    height: 160px;
    padding: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #ec4899 50%, #f97316 100%);
}

.logo-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #0a0a0f;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Typography */
.headline {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
}

.highlight {
    text-decoration: underline;
    text-decoration-color: #22d3ee;
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
}

.subheadline {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.35);
    margin-top: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.45);
}

.cta-button svg {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 1.75rem;
    }
    
    .subheadline {
        font-size: 1rem;
    }
    
    .logo-ring {
        width: 140px;
        height: 140px;
    }
    
    .logo-glow {
        width: 180px;
        height: 180px;
    }
    
    .container {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}