/* TrubeTech brand only: black, red, white (matches trubetech.com /assets/style.css) */

:root {
    --bg: #0a0a0a;
    --bg-soft: #111111;
    --panel: #333333;
    --panel-soft: #1b1b1b;
    --line: rgba(255, 255, 255, 0.12);
    --text: #f5f5f5;
    --muted: #b3b3b3;
    --red: #e6392f;
    --red-soft: rgba(230, 57, 47, 0.15);
    --white: #ffffff;
    --status-bg-image: none;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background-color: var(--bg);
    background-image: var(--status-bg-image);
    background-repeat: repeat;
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Links — same as trubetech.com (no default browser blue) */
a {
    color: var(--white);
    text-decoration: underline;
    text-decoration-color: var(--red);
    text-underline-offset: 3px;
}

a:visited {
    color: var(--white);
}

a:hover,
a:focus {
    color: var(--red);
    text-decoration-color: var(--red);
}

*:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

.status-header {
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}

.status-brand-link {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 1.25rem;
    text-decoration: none;
}

.status-brand-link:hover,
.status-brand-link:focus {
    color: var(--white);
    text-decoration: none;
}

.status-logo {
    display: block;
    width: 200px;
    max-width: min(200px, 85vw);
    height: auto;
}

.status-wrap {
    max-width: 42rem;
    margin: 0 auto;
    padding: 1.5rem 1.25rem 3rem;
}

.status-card {
    background: var(--panel);
    border: 1px solid var(--line);
    padding: 1.5rem 1.5rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

h1 {
    margin: 0 0 0.75rem;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.02em;
    color: var(--white);
}

.status-domain {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    font-weight: 600;
    word-break: break-word;
    color: var(--white);
}

.status-badge {
    display: inline-block;
    margin: 0 0 1rem;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.status-badge--parked {
    background: var(--panel-soft);
    color: var(--muted);
    border: 1px solid var(--line);
}

.status-lead {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--text);
}

.status-meta,
.status-note,
.status-card p {
    margin: 0 0 1rem;
    line-height: 1.55;
    color: var(--muted);
}

.status-note {
    font-size: 0.95rem;
    padding: 0.65rem 0.75rem;
    background: var(--panel-soft);
    border-radius: 4px;
    border: 1px solid var(--line);
}

.status-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-top: 1.25rem;
    margin-bottom: 0;
}

/* Matches trubetech.com .primary-cta */
.status-btn {
    display: inline-block;
    margin-top: 0;
    padding: 0.75rem 1.25rem;
    border: 2px solid var(--red);
    color: var(--white);
    background: transparent;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-align: center;
}

.status-btn-call {
    font-variant-numeric: tabular-nums;
}

.status-btn:hover,
.status-btn:focus,
.status-btn:visited {
    background: var(--red);
    color: var(--white);
    text-decoration: none;
}

@media (max-width: 480px) {
    .status-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .status-btn {
        width: 100%;
    }
}

.status-card ul {
    color: var(--muted);
    line-height: 1.6;
}

.status-card code {
    color: var(--text);
    font-size: 0.9em;
    background: var(--panel-soft);
    border: 1px solid var(--line);
    padding: 0.1em 0.35em;
    border-radius: 3px;
}
