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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e8e8e8;
}

.container {
    text-align: center;
    padding: 2rem;
}

.content {
    max-width: 600px;
}

.logo {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: #fff;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #8bc34a;
    margin-bottom: 2rem;
}

.divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8bc34a, transparent);
    margin: 0 auto 2rem;
}

.status {
    font-size: 1.5rem;
    font-weight: 200;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 2rem;
}

.contact a {
    color: #8bc34a;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #9ccc65;
}

#investor-access {
    margin-top: 3rem;
}

#investor-access a {
    display: inline-block;
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    padding: 0.75rem 1.5rem;
    border: 1px solid #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

#investor-access a:hover {
    color: #8bc34a;
    border-color: #8bc34a;
}

@media (max-width: 600px) {
    .logo {
        font-size: 2rem;
        letter-spacing: 0.1em;
    }

    .tagline {
        font-size: 0.9rem;
        letter-spacing: 0.2em;
    }

    .status {
        font-size: 1.2rem;
    }
}
