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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #050505;
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(30, 30, 40, 0.4) 0%, transparent 70%);
    pointer-events: none;
}

main {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.logo {
    width: 320px;
    max-width: 90vw;
    height: auto;
    filter: invert(0.9);
    opacity: 0.95;
    margin-bottom: 2.5rem;
}

.tagline {
    font-size: 0.8rem;
    color: #606060;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.contact {
    display: inline-block;
    color: #505050;
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    padding: 0.75rem 1.5rem;
    border: 1px solid #252525;
    transition: all 0.3s ease;
}

.contact:hover {
    color: #e0e0e0;
    border-color: #404040;
}

footer {
    position: fixed;
    bottom: 2rem;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.75rem;
    color: #404040;
    letter-spacing: 0.05em;
}
