:root {
    --dark:      #2c2c25;
    --muted:     #6a6a6a;
    --gold:      #d4af37;
    --gold-dark: #b8942d;
    --soft:      #faf9f5;
    --white:     #ffffff;
    --bg-light:  #faf9f5;
    --border:    #e7e7e9;
}

body { margin: 0; background: var(--white); }

h1, h2, h3 { color: var(--dark); font-weight: 800; }
p, li      { color: var(--muted); line-height: 1.7; }

a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--dark); }

section { padding: 40px 16px; }

/* ============================================================
   SECTION 2 — LIVE SUBHEADER
   ============================================================ */
.live-subheader {
    background: var(--bg-light);
    padding: 40px 16px 16px;
}

.live-subheader h2 {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    line-height: 1.4;
    color: var(--dark);
}

/* ============================================================
   SECTION 2b — GRAPH CARDS
   1 col → 2 col at 768px
   ============================================================ */
.graphs-section {
    background: var(--bg-light);
    padding: 32px 16px 48px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    justify-content: center;
}

.graph-card {
    background: var(--white);
    padding: 24px 20px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    border: 1px solid rgba(212,175,55,0.25);
    border-top: 3px solid var(--gold);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.3s;
}

.graph-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.graph-card h2 {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    margin-bottom: 10px;
    text-align: center;
}

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

.feature-list {
    margin-top: 10px;
    margin-bottom: 16px;
    padding-left: 18px;
    text-align: left;
}

.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: background 0.2s ease, transform 0.15s ease;
    margin-top: 10px;
    color: var(--white);
    background: var(--gold);
    align-self: center;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-button:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); }

/* ============================================================
   FINAL SPLIT — column → row at 768px
   ============================================================ */
.final-section {
    background: white;
    padding: 40px 16px;
}

.final-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.final-text { flex: 1; max-width: 820px; margin: 0 auto; }

.final-text h2 {
    text-align: left;
    margin-bottom: 1.2rem;
    font-size: clamp(1.3rem, 4vw, 2rem);
    line-height: 1.3;
}

.final-text p { text-align: left; margin-bottom: 1.2rem; font-size: 1rem; }

.final-list { list-style: none; padding-left: 0; margin: 1rem 0 0; }
.final-list li { margin-bottom: 14px; padding-left: 1.2rem; line-height: 1.7; }

.final-list__arrow { display: flex; align-items: baseline; gap: 10px; }
.final-list__arrow::before { content: "→"; color: #d4af37; font-weight: 700; flex-shrink: 0; }

.final-img { width: 100%; }
.final-img img { width: 100%; height: auto; border-radius: 14px; box-shadow: 0 8px 22px rgba(0,0,0,0.08); }

/* ============================================================
   CTA GRID — 1 col → 3 col at 768px
   ============================================================ */
.final-cta-section {
    background: var(--bg-light);
    padding: 40px 16px;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.cta-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 14px;
    border: 1px solid rgba(212,175,55,0.25);
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-item:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.12); }
.cta-icon { width: 70px; height: 70px; margin-bottom: 1.2rem; }

/* Gallery variant — network screenshot thumbnails */
.cta-grid--gallery .cta-item { padding: 0 0 1.5rem; overflow: hidden; }
.cta-grid--gallery .cta-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center top;
    border-radius: 14px 14px 0 0;
    margin-bottom: 1rem;
    display: block;
}
.cta-grid--gallery .cta-text { padding: 0 1.25rem; }
.cta-text { color: var(--dark); font-size: 1.05rem; line-height: 1.6; margin-bottom: 1.2rem; flex-grow: 1; }

.final-cta {
    display: inline-block;
    padding: 12px 22px;
    background: var(--gold);
    color: var(--white);
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.15s ease;
    text-decoration: none;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-cta:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); }

/* ============================================================
   BREAKPOINTS
   ============================================================ */

@media (min-width: 768px) {
    section              { padding: 56px 24px; }
    .live-subheader      { padding: 56px 24px 24px; }
    .graphs-section      { grid-template-columns: repeat(2, minmax(0, 550px)); gap: 32px; padding: 48px 24px 72px; }
    .graph-card          { padding: 32px; }
    .final-section       { padding: 64px 24px; }
    .final-split         { flex-direction: row; align-items: center; gap: 3rem; }
    .final-img           { flex: 0.9; width: auto; }
    .final-cta-section   { padding: 64px 24px; }
    .cta-grid            { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

@media (min-width: 1024px) {
    section              { padding: 60px 32px; }
    .live-subheader      { padding: 60px 32px 20px; }
    .graphs-section      { padding: 60px 32px 80px; }
    .final-section       { padding: 80px 32px; }
    .final-cta-section   { padding: 80px 0; }
    .cta-grid            { padding: 0 32px; }
}

/* ============================================================
   TOC NAV — hidden mobile, shown at 1100px+
   ============================================================ */
.toc-nav {
    display: none;
    position: fixed;
    right: 20px; top: 50%;
    transform: translateY(-50%);
    z-index: 200;
    background: rgba(255,255,255,0.93);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
    flex-direction: column;
    gap: 2px;
    min-width: 130px;
}

.toc-nav__title { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); padding: 0 8px 8px; border-bottom: 1px solid rgba(212,175,55,0.2); margin-bottom: 4px; }
.toc-dot { display: flex; align-items: center; gap: 10px; text-decoration: none; padding: 7px 8px; border-radius: 8px; border-left: 2px solid transparent; transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease; color: var(--muted); }
.toc-dot:hover { background: rgba(212,175,55,0.08); color: var(--dark); }
.toc-dot:focus-visible { outline: 2px solid var(--gold); background: rgba(212,175,55,0.08); }
.toc-dot.active { border-left-color: var(--gold); color: var(--dark); background: rgba(212,175,55,0.06); }
.toc-dot__pip { width: 7px; height: 7px; border-radius: 50%; border: 1.5px solid rgba(212,175,55,0.5); background: transparent; flex-shrink: 0; transition: all 0.2s ease; }
.toc-dot:hover .toc-dot__pip { border-color: var(--gold); background: rgba(212,175,55,0.35); }
.toc-dot.active .toc-dot__pip { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.18); }
.toc-dot__label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em; }
.toc-dot.active .toc-dot__label { font-weight: 700; }

@media (min-width: 1100px) {
    .toc-nav { display: flex; }
}
