:root {
    --bg-color: #141926;     /* Matches your logo background */
    --accent: #00b4ff;
}

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--bg-color);
    color: #e0f0ff;
    line-height: 1.6;
    overflow-x: hidden;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(rgba(10, 20, 40, 0.95), rgba(10, 20, 40, 0.95)), 
                var(--bg-color);
    position: relative;
}

.content {
    max-width: 900px;
    z-index: 2;
}

.logo {
    max-width: 85%;
    height: auto;
    margin-bottom: 2.5rem;
    /*filter: drop-shadow(0 20px 40px rgba(0, 180, 255, 0.3));*/
}

.tagline {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.primary {
    background: var(--accent);
    color: #0a1428;
}

.primary:hover {
    background: #00d4ff;
    transform: translateY(-3px);
}

.secondary {
    border: 2px solid #e0f0ff;
    color: #e0f0ff;
}

.secondary:hover {
    background: rgba(255,255,255,0.1);
}

footer {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

.small {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

/* Mobile optimizations */
@media (max-width: 640px) {
    .hero {
        padding: 1.5rem;
    }
    .logo {
        max-width: 95%;
    }
}