:root {
    --bg: #f3efe7;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: #fffaf2;
    --text: #172127;
    --muted: #5f6b72;
    --accent: #bb4d00;
    --accent-dark: #7e2f00;
    --border: rgba(23, 33, 39, 0.08);
    --shadow: 0 24px 60px rgba(70, 47, 24, 0.14);
}

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

html {
    overflow-y: auto;
    scrollbar-gutter: stable;
    background:
        radial-gradient(circle at top right, rgba(187, 77, 0, 0.16), transparent 28%),
        radial-gradient(circle at bottom left, rgba(24, 109, 88, 0.12), transparent 25%),
        linear-gradient(135deg, #efe7d9 0%, #f7f4ed 40%, #e8f0ef 100%);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--text);
    background: transparent;
    font-family: Georgia, "Times New Roman", serif;
}

main {
    flex: 1 0 auto;
    min-height: 100%;
}

.hero-shell {
    min-height: 100%;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 250, 242, 0.88);
    color: var(--accent-dark);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.95rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
}

.summary-card,
.feature-card {
    height: 100%;
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--surface);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
}

.metric-row strong {
    font-size: 1.35rem;
}

.status-line {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    background: var(--surface-strong);
    color: var(--accent-dark);
    font-weight: 600;
}

.feature-card h3 {
    margin-bottom: 0.75rem;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.table {
    --bs-table-bg: transparent;
}

@media (max-width: 768px) {
    .summary-card,
    .feature-card {
        border-radius: 18px;
    }
}
