@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
    --text-primary: #111827;
    /* Near Black */
    --text-secondary: #6b7280;
    /* Neutral Grey */
    --accent: #2563eb;
    /* Corporate Blue */
    --bg-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.container {
    /* No card look - Pure layout */
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Site Logo */
.site-logo {
    max-width: 130px;
    height: auto;
    margin-bottom: 40px;
    display: block;
}

/* Minimal Text Status */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #f59e0b;
    /* Amber */
    border-radius: 50%;
}

h1 {
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    /* Tight tracking for modern feel */
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-primary);
}

p.subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 480px;
}

/* Simple Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--text-primary);
    /* Solid Black/Dark */
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: #000;
    transform: translateY(-1px);
}

/* Minimal Footer Line */
.contact-info {
    margin-top: 80px;
    padding-top: 24px;
    width: 100%;
    border-top: 1px solid #f3f4f6;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.contact-item {
    font-size: 0.8125rem;
    /* Micro typography */
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item:hover {
    color: var(--text-primary);
}

.contact-item i {
    font-size: 1em;
    color: #9ca3af;
}

@media (max-width: 640px) {
    h1 {
        font-size: 1.75rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        text-align: center;
    }
}