:root {
    color-scheme: light;
    font-family: "Instrument Sans", "Segoe UI", sans-serif;
    --bg: #f4efe7;
    --bg-accent: #e0d2bf;
    --panel: rgba(255, 252, 246, 0.86);
    --text: #1f1a17;
    --muted: #6f6257;
    --border: rgba(31, 26, 23, 0.1);
    --shadow: 0 24px 60px rgba(81, 59, 39, 0.18);
    --accent: #c04d2b;
    --ok: #2d7a4f;
    --error: #c04d2b;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(192, 77, 43, 0.18), transparent 30%),
        radial-gradient(circle at bottom right, rgba(49, 114, 89, 0.16), transparent 28%),
        linear-gradient(135deg, var(--bg) 0%, var(--bg-accent) 100%);
}

code {
    font-family: "JetBrains Mono", "SFMono-Regular", monospace;
}

.app-shell {
    display: grid;
    place-items: center;
    padding: 24px;
}

.hero {
    width: min(100%, 960px);
}

.hero__panel {
    padding: clamp(32px, 6vw, 72px);
    border: 1px solid var(--border);
    border-radius: 32px;
    background: var(--panel);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.hero__eyebrow {
    margin: 0 0 16px;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.hero__lead {
    max-width: 36rem;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.6;
}

.hero__section {
    margin: 40px 0 0;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero__meta {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin: 16px 0 0;
}

.hero__meta div {
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.45);
}

.hero__meta dt {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero__meta dd {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.status--ok {
    color: var(--ok);
}

.status--error {
    color: var(--error);
}

.hero__meta a {
    color: var(--accent);
    text-decoration: none;
    word-break: break-all;
}

.hero__meta a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .hero__meta {
        grid-template-columns: 1fr;
    }
}
