:root {
    --dark: #2c2c25;
    --muted: #6a6a6a;
    --gold: #d4af37;
    --gold-dark: #b8942d;
    --soft: #f6f6f6;
    --white: #ffffff;
}

h1, h2, h3 {
    color: var(--dark);
    font-weight: 800;
}

p, li {
    color: var(--muted);
    line-height: 1.7;
}

section {
    padding: 60px 32px;
    max-width: 1100px;
    margin: 0 auto;
}

/* ===========================================================
    SECTION 1
=========================================================== */
.live-hero h1 {
    font-size: 2.6rem;
    text-align: center;
}

.live-hero p {
    text-align: center;
    max-width: 780px;
    margin: 16px auto;
    font-size: 1.15rem;
}

/* ===========================================================
    SECTION 2
=========================================================== */
.live-subheader h2 {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

/* ===========================================================
    SECTION 2b
=========================================================== */

.graphs-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-top: 20px;
}

.graph-card {
    background: var(--white);
    padding: 32px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    border: 1px solid rgba(212,175,55,0.25);
}

.graph-card h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.graph-card p {
    text-align: left;
    font-size: 1rem;
    margin-bottom: 16px;
}

.feature-list {
    margin-top: 12px;
    margin-bottom: 20px;
    padding-left: 20px;
}

.feature-list li {
    margin-bottom: 8px;
}

.cta-button {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    transition: 0.25s ease;
    margin-top: 10px;
    color: white;
    background: var(--gold);
}

.cta-button:hover {
    background: var(--gold-dark);
}

.final-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.final-section p {
    text-align: center;
    margin-bottom: 20px;
}

.final-section ul {
    max-width: 780px;
    margin: 0 auto 24px;
    padding-left: 20px;
}

.final-section li {
    margin-bottom: 10px;
}

.final-cta-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 520px;
    margin: 30px auto 80px;
}

.final-cta {
    display: block;
    padding: 14px 20px;
    background: var(--dark);
    color: var(--white);
    border-radius: 8px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    transition: 0.25s ease;
    text-decoration: none;
}

.final-cta:hover {
    background: #1f1f18;
}

@media (max-width: 900px) {
    .graphs-section {
        grid-template-columns: 1fr;
    }
}