:root {
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --background-primary: #000000;
    --accent-color: #3b82f6;
    --accent-hover: #60a5fa;
}

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

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: radial-gradient(circle, #000000 0%, #1a1a1a 100%);
    color: var(--text-primary);
    line-height: 1.6;
}

.stealth-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.stealth-content {
    text-align: center;
    max-width: 600px;
}

.brand-name {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.stealth-message {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.5;
}

.contact-info {
    margin-top: 3rem;
}

.contact-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.contact-link:hover {
    color: var(--accent-hover);
    border-bottom-color: var(--accent-hover);
}

@media (max-width: 768px) {
    .stealth-container {
        padding: 1.5rem;
    }
    
    .brand-name {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .stealth-message {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
    }
    
    .contact-link {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 2.5rem;
    }
    
    .stealth-message {
        font-size: 1rem;
    }
}