/* Shared page shell and dashboard layout. */

.page {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0 64px;
}

.hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.eyebrow,
.card-kicker {
    margin: 0 0 9px;
    color: var(--accent-light);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1,
h2,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 0;
    font-size: clamp(2.6rem, 7vw, 5.5rem);
    line-height: 0.92;
    letter-spacing: -0.065em;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(1.3rem, 3vw, 2rem);
    letter-spacing: -0.035em;
}

.hero-copy {
    max-width: 680px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.live-indicator,
.status-pill,
.coming-soon-pill,
.table-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
}

.live-indicator {
    gap: 9px;
    padding: 10px 14px;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 750;
}

.live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 16px rgba(66, 211, 146, 0.85);
}

.live-indicator.error .live-dot {
    background: var(--warning);
    box-shadow: 0 0 16px rgba(255, 191, 105, 0.75);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.full-width {
    grid-column: 1 / -1;
}

.card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 26px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.052),
            rgba(255, 255, 255, 0.01)
        ),
        var(--surface);
    box-shadow: var(--shadow);
    backdrop-filter: blur(24px);
}

.card-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 28px;
    border-bottom: 1px solid var(--border);
}

.status-pill {
    padding: 9px 13px;
    font-size: 0.82rem;
    font-weight: 800;
}
