/* Neuraphic brand kit — Pearl gray + Black + Space Grotesk + Inter.
   Kept intentionally minimal: this is a placeholder landing for the
   workers.neuraphic.com subdomain until the real product surface
   ships. Mirror the look of the marketing site so a visitor who lands
   here recognizes the brand instantly. */

:root {
    --pearl: #f0f1f3;
    --ink: #131314;
    --muted: #6b7280;
    --line: #e5e7eb;
}

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

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--pearl);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}

.header__brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.02em;
    color: var(--ink);
    text-decoration: none;
}

.main {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero__eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 24px;
}

.hero__title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-size: 19px;
    color: var(--muted);
    margin-bottom: 40px;
    max-width: 560px;
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: opacity 0.15s ease;
}

.btn:hover {
    opacity: 0.85;
}

.btn--primary {
    background: var(--ink);
    color: var(--pearl);
}

.btn--ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}

.footer {
    padding: 32px 0;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer a {
    color: var(--muted);
    text-decoration: none;
    margin-right: 20px;
}

.footer a:hover {
    color: var(--ink);
}

@media (max-width: 640px) {
    .hero__title {
        font-size: 40px;
    }
    .hero__subtitle {
        font-size: 17px;
    }
    .footer {
        flex-direction: column;
    }
}
