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

body {
    background: #0a0a0a;
    color: #e8e8e8;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 300;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: -1;
}

.container {
    text-align: center;
    padding: 40px;
}

.logo {
    height: 36px;
    width: auto;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.2s forwards;
}

.tagline {
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.4s forwards;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.6s forwards;
}

.indicator {
    width: 6px;
    height: 6px;
    background: #c9a227;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.contact {
    margin-bottom: 64px;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.8s forwards;
}

.contact a {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 14px;
    padding-bottom: 4px;
    border-bottom: 1px solid #333;
    transition: border-color 0.3s ease;
}

.contact a:hover {
    border-color: #c9a227;
}

footer {
    opacity: 0;
    animation: fadeIn 0.8s ease 1s forwards;
}

footer p {
    font-size: 11px;
    color: #444;
    letter-spacing: 0.05em;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
