:root {
    color-scheme: light;
    font-family: Georgia, "Times New Roman", serif;
    background: #f7f2e8;
}

html,
body {
    min-height: 100%;
    margin: 0;
}

body {
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.22), transparent 28rem),
        linear-gradient(135deg, #f7f2e8 0%, #fffdf8 48%, #efe2cf 100%);
}

.main-shell {
    min-height: 100vh;
    padding-top: 64px;
}

.home-shell {
    padding: 9vh 1rem 3rem;
}

.hero-card {
    border: 1px solid rgba(17, 32, 29, 0.12);
    border-radius: 30px;
    padding: clamp(2rem, 6vw, 4rem);
    background:
        linear-gradient(160deg, rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.82)),
        repeating-linear-gradient(90deg, rgba(15, 118, 110, 0.08) 0 1px, transparent 1px 34px);
    box-shadow: 0 24px 70px rgba(46, 32, 20, 0.14);
}

.eyebrow {
    color: #0f766e;
    letter-spacing: 0.18em;
}

.hero-title {
    max-width: 11ch;
    margin-top: 0.35rem;
    color: #11201d;
    line-height: 0.95;
}

.hero-copy {
    max-width: 42rem;
    margin-top: 1.25rem;
    color: #4b4036;
}

.health-actions {
    margin-top: 2rem;
}

.health-result {
    margin-top: 1.5rem;
}

.hidden {
    visibility: hidden;
}

.boot-shell {
    display: grid;
    min-height: 100vh;
    place-content: center;
    gap: 1rem;
    color: #11201d;
    text-align: center;
}

.boot-mark {
    width: 56px;
    height: 56px;
    margin: 0 auto;
    border: 4px solid rgba(15, 118, 110, 0.18);
    border-top-color: #0f766e;
    border-radius: 999px;
    animation: spin 900ms linear infinite;
}

#blazor-error-ui {
    display: none;
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1000;
    max-width: 32rem;
    padding: 1rem 1.25rem;
    border: 1px solid #c2410c;
    border-radius: 12px;
    background: #fff7ed;
    color: #7c2d12;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    padding-left: 1rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
