/* ═══════════════════════════════════════════════════════════════════════════
   How This Works — methodology page
   Single readable column. Follows contestant profile visual register.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Page wrapper ─────────────────────────────────────────────────────────── */
.how-main {
    flex: 1;
    max-width: 760px;
    padding: 56px 0 100px;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.how-hero {
    padding-bottom: 44px;
    margin-bottom: 0;
    border-bottom: 1px solid var(--border-hi);
}

.how-title {
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.0;
    margin-bottom: 18px;
}

.how-subtitle {
    font-size: 16px;
    color: var(--secondary);
    line-height: 1.7;
    letter-spacing: 0.02em;
    max-width: 600px;
}

/* ── Section list ─────────────────────────────────────────────────────────── */
.how-section {
    display: flex;
    gap: 36px;
    padding: 44px 0;
    border-bottom: 1px solid var(--border);
}

.how-section:last-child {
    border-bottom: none;
}

.how-section-num {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--border-hi);
    flex-shrink: 0;
    width: 24px;
    padding-top: 3px;
    letter-spacing: 0.04em;
}

.how-section-content {
    flex: 1;
}

.how-section-head {
    font-size: var(--label-size);
    font-weight: 700;
    letter-spacing: var(--label-track);
    text-transform: uppercase;
    color: var(--label);
    margin-bottom: 18px;
}

/* ── Prose ────────────────────────────────────────────────────────────────── */
.how-body p {
    font-size: 16px;
    color: var(--secondary);
    line-height: 1.85;
    letter-spacing: 0.01em;
    margin-bottom: 18px;
}

.how-body p:last-child {
    margin-bottom: 0;
}

/* Inline callout — for technical terms, stats, or key phrases */
.how-callout {
    display: inline-block;
    font-family: var(--mono);
    font-size: 13px;
    color: var(--yellow);
    background: rgba(255, 204, 0, 0.08);
    padding: 1px 7px;
    letter-spacing: 0.04em;
    margin: 0 2px;
}

/* Closing section — slightly different treatment */
.how-section.is-closing .how-section-head {
    color: var(--yellow-dim);
}

/* ── Future-page section marker ───────────────────────────────────────────── */
/* Replaces the numbered .how-section-num on the future page.
   A short yellow rule in the same left-column position — same layout,
   different register: forward-looking rather than procedural. */
.how-section-mark {
    flex-shrink: 0;
    width: 24px;
    padding-top: 8px;
}
.how-section-mark::before {
    content: '';
    display: block;
    width: 18px;
    height: 1px;
    background: var(--yellow);
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .how-section {
        flex-direction: column;
        gap: 12px;
    }
    .how-section-num,
    .how-section-mark {
        width: auto;
    }
}
