/* Mani's Psychology Lab — scoped styles.
   All styles target .assess-page on body to avoid leaking into the main site.
   Signature color = violet #A78BFA (matches the academic/psychology badge in the main site).
*/

.assess-page {
    --lab-bg: #0A0A0A;
    --lab-surface: #111114;
    --lab-surface-2: #16161B;
    --lab-border: rgba(255, 255, 255, 0.08);
    --lab-text: #F5F5F5;
    --lab-muted: #9A9AA1;
    --lab-faint: #5A5A60;
    --lab-violet: #A78BFA;
    --lab-violet-soft: rgba(167, 139, 250, 0.15);
    --lab-violet-line: rgba(167, 139, 250, 0.35);
    --lab-radius: 12px;
    --lab-radius-lg: 18px;
    --lab-max-w: 760px;
    --lab-max-w-wide: 1080px;
    background: var(--lab-bg);
    color: var(--lab-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.assess-page * { box-sizing: border-box; }
.assess-page a { color: var(--lab-violet); text-decoration: none; transition: opacity 0.15s; }
.assess-page a:hover { opacity: 0.8; text-decoration: underline; }
.assess-page button { font-family: inherit; cursor: pointer; }
.assess-page strong { color: var(--lab-text); font-weight: 600; }

/* ── NAV ─────────────────────────────────────────── */
.lab-nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: saturate(140%) blur(8px);
    border-bottom: 1px solid var(--lab-border);
}
.lab-nav-inner {
    max-width: var(--lab-max-w-wide);
    margin: 0 auto;
    padding: 14px 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}
.lab-nav-back {
    justify-self: start;
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; font-weight: 600;
    color: var(--lab-muted);
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid var(--lab-border);
    background: rgba(255, 255, 255, 0.02);
    transition: color 0.15s, border-color 0.15s, background 0.15s, transform 0.1s;
}
.lab-nav-back:hover {
    color: var(--lab-text);
    border-color: var(--lab-violet-line);
    background: rgba(167, 139, 250, 0.06);
    text-decoration: none;
    transform: translateX(-2px);
    opacity: 1;
}
.lab-nav-brand {
    justify-self: center;
    display: flex; align-items: baseline; gap: 10px;
    font-weight: 700; font-size: 16px; color: var(--lab-text);
}
.lab-nav-brand .lab-mark { color: var(--lab-violet); }
.lab-nav-brand a { color: inherit; }
.lab-nav-brand a:hover { text-decoration: none; opacity: 0.7; }
.lab-nav-link {
    justify-self: end;
    font-size: 14px; color: var(--lab-muted);
}
.lab-nav-spacer { display: block; }
@media (max-width: 600px) {
    .lab-nav-inner { padding: 12px 14px; gap: 8px; }
    .lab-nav-back { padding: 7px 10px; font-size: 13px; }
    .lab-nav-brand { font-size: 15px; gap: 8px; }
    .lab-nav-link { font-size: 13px; }
}

/* ── PAGE WRAP ───────────────────────────────────── */
.lab-main {
    max-width: var(--lab-max-w);
    margin: 0 auto;
    padding: 56px 24px 80px;
}

/* ── LAB LANDING ────────────────────────────────── */
.lab-hero {
    text-align: center;
    margin-bottom: 56px;
}
.lab-hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    color: var(--lab-violet);
    font-weight: 600;
    margin-bottom: 16px;
}
.lab-hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
}
.lab-hero-sub {
    font-size: 17px;
    color: var(--lab-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}
.lab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-bottom: 64px;
}
.lab-card {
    display: flex; flex-direction: column;
    background: var(--lab-surface);
    border: 1px solid var(--lab-border);
    border-radius: var(--lab-radius-lg);
    padding: 24px;
    transition: transform 0.15s, border-color 0.15s, background 0.15s;
    color: inherit;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.lab-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--tint, var(--lab-violet));
    opacity: 0.7;
}
.lab-card.is-live:hover {
    transform: translateY(-2px);
    border-color: var(--tint, var(--lab-violet));
    background: var(--lab-surface-2);
    text-decoration: none;
}
.lab-card.is-soon { opacity: 0.55; cursor: not-allowed; }
.lab-card-status {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 10px;
    color: var(--tint, var(--lab-violet));
    font-weight: 700;
    margin-bottom: 14px;
}
.lab-card-name {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.25;
    color: var(--lab-text);
}
.lab-card-tagline {
    font-size: 14px;
    color: var(--lab-muted);
    margin: 0 0 20px;
    line-height: 1.55;
    flex: 1;
}
.lab-card-meta {
    display: flex; gap: 14px;
    font-size: 12px;
    color: var(--lab-faint);
    margin-bottom: 14px;
}
.lab-card-instrument { color: var(--lab-faint); }
.lab-card-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--tint, var(--lab-violet));
}

.lab-about {
    border-top: 1px solid var(--lab-border);
    padding-top: 40px;
    margin-bottom: 40px;
}
.lab-about h2 { font-size: 20px; margin: 0 0 16px; font-weight: 700; }
.lab-about p { color: var(--lab-muted); margin: 0 0 12px; font-size: 15px; }

/* ── INTRO PAGE ─────────────────────────────────── */
.intro-hero {
    margin-bottom: 56px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--lab-border);
}
.intro-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    color: var(--lab-violet);
    font-weight: 600;
    margin-bottom: 16px;
}
.intro-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}
.intro-tagline {
    font-size: 19px;
    color: var(--lab-muted);
    max-width: 600px;
    margin: 0 0 32px;
    line-height: 1.55;
}
.intro-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.intro-privacy {
    font-size: 13px;
    color: var(--lab-faint);
}

.intro-what, .intro-how, .intro-faq {
    margin-bottom: 48px;
}
.intro-what h2, .intro-how h2, .intro-faq h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}
.intro-what p { color: var(--lab-muted); font-size: 16px; line-height: 1.7; margin: 0 0 24px; }
.intro-traits {
    list-style: none; padding: 0; margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}
.intro-traits li {
    background: var(--lab-surface);
    border: 1px solid var(--lab-border);
    border-radius: var(--lab-radius);
    padding: 14px 16px;
}
.it-name { display: block; font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.it-tag { display: block; font-size: 13px; color: var(--lab-muted); }

.intro-how ol { color: var(--lab-muted); padding-left: 20px; line-height: 1.75; }
.intro-how li { margin-bottom: 10px; }

.faq-item {
    border-top: 1px solid var(--lab-border);
    padding: 16px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--lab-border); }
.faq-item summary {
    font-weight: 600; font-size: 15px;
    cursor: pointer;
    list-style: none;
    color: var(--lab-text);
    display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::after {
    content: '+'; color: var(--lab-violet); font-size: 22px; line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
    color: var(--lab-muted); margin: 12px 0 0; line-height: 1.7; font-size: 15px;
}

.intro-cta-bottom {
    text-align: center;
    margin-bottom: 48px;
    padding-top: 24px;
}

/* ── BUTTONS ──────────────────────────────────── */
/* `.assess-page` prefix bumps specificity above `.assess-page a` (which sets violet text),
   otherwise the button text becomes violet on a violet background — invisible. */
.assess-page .btn-primary {
    display: inline-block;
    background: var(--lab-violet);
    color: #18121F;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 24px;
    border-radius: 10px;
    border: none;
    transition: transform 0.1s, background 0.15s;
    text-decoration: none;
}
.assess-page .btn-primary:hover {
    background: #B79EFC; color: #18121F; transform: translateY(-1px); text-decoration: none; opacity: 1;
}

/* ── QUIZ ─────────────────────────────────────── */
.quiz-host { padding-top: 24px; }
.quiz-card {
    background: var(--lab-surface);
    border: 1px solid var(--lab-border);
    border-radius: var(--lab-radius-lg);
    padding: 32px;
}
.quiz-progress { margin-bottom: 28px; }
.quiz-progress-bar {
    height: 6px;
    background: var(--lab-surface-2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}
.quiz-progress-fill {
    height: 100%;
    background: var(--lab-violet);
    transition: width 0.25s ease;
}
.quiz-progress-text {
    font-size: 12px;
    color: var(--lab-faint);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.quiz-prefix {
    font-size: 13px;
    color: var(--lab-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}
.quiz-statement {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 32px;
    letter-spacing: -0.01em;
}
.quiz-options {
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 24px;
}
.quiz-option {
    display: flex; align-items: center; gap: 14px;
    background: var(--lab-surface-2);
    border: 1.5px solid var(--lab-border);
    color: var(--lab-text);
    padding: 16px 18px;
    border-radius: 10px;
    font-size: 15px;
    text-align: left;
    transition: border-color 0.12s, background 0.12s, transform 0.06s;
}
.quiz-option:hover {
    border-color: var(--lab-violet-line);
    background: rgba(167, 139, 250, 0.05);
}
.quiz-option.selected {
    border-color: var(--lab-violet);
    background: var(--lab-violet-soft);
}
.quiz-option-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--lab-surface);
    border: 1px solid var(--lab-border);
    font-size: 12px;
    font-weight: 700;
    color: var(--lab-muted);
    flex-shrink: 0;
}
.quiz-option.selected .quiz-option-num {
    background: var(--lab-violet);
    color: #18121F;
    border-color: var(--lab-violet);
}
.quiz-option-label { flex: 1; }
.quiz-nav {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 16px; border-top: 1px solid var(--lab-border);
}
.quiz-back, .quiz-skip, .quiz-autofill {
    background: none; border: none;
    color: var(--lab-muted);
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 6px;
}
.quiz-back:hover:not(:disabled), .quiz-skip:hover, .quiz-autofill:hover { color: var(--lab-text); background: var(--lab-surface-2); }
.quiz-back:disabled { opacity: 0.3; cursor: not-allowed; }
.quiz-autofill {
    color: rgba(167, 139, 250, 0.65);
    border: 1px dashed rgba(167, 139, 250, 0.3);
    font-size: 12px;
    padding: 6px 12px;
}
.quiz-autofill:hover { color: var(--lab-violet); border-color: var(--lab-violet-line); background: var(--lab-violet-soft); }

/* ── RESULTS ──────────────────────────────────── */
.results-host { display: flex; flex-direction: column; gap: 40px; }

.results-headline {
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--lab-border);
}
.rh-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    color: var(--lab-violet);
    font-weight: 600;
    margin-bottom: 16px;
}
.rh-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin: 0 0 16px;
    color: var(--accent, var(--lab-violet));
}
.rh-sub {
    font-size: 17px;
    color: var(--lab-muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}

.results-snapshot {
    position: relative;
    background: var(--lab-surface);
    border: 1px solid var(--lab-border);
    border-radius: var(--lab-radius-lg);
    padding: 28px;
}
.rs-title {
    font-size: 18px; font-weight: 700; margin: 0 0 22px;
    letter-spacing: -0.01em;
}
.bars { display: flex; flex-direction: column; gap: 20px; }
.bar-row {}
.bar-meta {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 8px;
}
.bar-name { font-size: 15px; font-weight: 600; }
.bar-pct { font-size: 13px; color: var(--lab-muted); font-variant-numeric: tabular-nums; }
.bar-track {
    height: 10px;
    background: var(--lab-surface-2);
    border-radius: 5px;
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    background: var(--tint, var(--lab-violet));
    border-radius: 5px;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.bar-band {
    font-size: 12px;
    color: var(--lab-faint);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 6px;
}

.results-snapshot.is-blurred .bars { filter: blur(7px); pointer-events: none; user-select: none; }
.results-snapshot.is-blurred .bar-pct,
.results-snapshot.is-blurred .bar-band { opacity: 0.5; }
.blur-veil {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.4) 70%, rgba(10, 10, 10, 0.7) 100%);
    pointer-events: none;
    border-radius: var(--lab-radius-lg);
}

/* ── GATE CARD ────────────────────────────────── */
.gate-card {
    background: linear-gradient(180deg, var(--lab-surface) 0%, var(--lab-surface-2) 100%);
    border: 1px solid var(--lab-violet-line);
    border-radius: var(--lab-radius-lg);
    padding: 32px;
    text-align: center;
}
.gate-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    color: var(--lab-violet);
    font-weight: 700;
    margin-bottom: 16px;
}
.gate-headline {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
}
.gate-sub {
    color: var(--lab-muted);
    font-size: 15px;
    line-height: 1.65;
    max-width: 480px;
    margin: 0 auto 24px;
}
.gate-iframe-wrap {
    max-width: 480px;
    margin: 0 auto 18px;
}
.gate-iframe-wrap iframe {
    display: block;
    width: 100%;
}
.gate-confirm {
    background: var(--lab-violet);
    color: #18121F;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 24px;
    border-radius: 10px;
    border: none;
    margin-bottom: 12px;
    transition: background 0.15s, transform 0.1s;
}
.gate-confirm:hover { background: #B79EFC; transform: translateY(-1px); }
.gate-fallback {
    display: block;
    font-size: 13px;
    color: var(--lab-muted);
    margin-bottom: 18px;
}
.gate-honor {
    font-size: 12px;
    color: var(--lab-faint);
    margin: 0;
}

/* ── DEEP REPORT ─────────────────────────────── */
.results-deep {}
.rd-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    color: var(--lab-violet);
    font-weight: 600;
    margin-bottom: 14px;
}
.rd-title {
    font-size: 26px; font-weight: 700; margin: 0 0 28px;
    letter-spacing: -0.015em;
}
.trait-deeps { display: flex; flex-direction: column; gap: 24px; }
.trait-deep {
    background: var(--lab-surface);
    border: 1px solid var(--lab-border);
    border-left: 3px solid var(--tint, var(--lab-violet));
    border-radius: var(--lab-radius-lg);
    padding: 24px 26px;
}
.td-header { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.td-name { font-size: 20px; font-weight: 700; margin: 0; color: var(--tint, var(--lab-violet)); letter-spacing: -0.01em; }
.td-meta { font-size: 13px; color: var(--lab-muted); font-variant-numeric: tabular-nums; text-transform: uppercase; letter-spacing: 0.08em; }
.td-tag { font-size: 14px; color: var(--lab-muted); font-style: italic; margin: 0 0 14px; }
.td-insight { font-size: 15px; line-height: 1.7; margin: 0 0 12px; }
.td-context { font-size: 14px; color: var(--lab-muted); line-height: 1.7; margin: 0 0 14px; }
.td-deeper { font-size: 13px; font-weight: 600; }

/* ── CTA / SHARE ─────────────────────────────── */
.results-cta { display: flex; flex-direction: column; gap: 20px; }
.cta-newsletter {
    background: var(--lab-violet-soft);
    border: 1px solid var(--lab-violet-line);
    border-radius: var(--lab-radius-lg);
    padding: 28px;
    text-align: center;
}
.cta-h { font-size: 20px; font-weight: 700; margin: 0 0 8px; letter-spacing: -0.01em; }
.cta-p { color: var(--lab-muted); font-size: 14px; margin: 0 0 18px; line-height: 1.6; }
.assess-page .cta-btn {
    display: inline-block;
    background: var(--lab-violet);
    color: #18121F;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
}
.assess-page .cta-btn:hover { background: #B79EFC; color: #18121F; text-decoration: none; opacity: 1; }
.cta-row {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 8px; gap: 12px; flex-wrap: wrap;
}
.cta-share {
    background: var(--lab-surface);
    border: 1px solid var(--lab-border);
    color: var(--lab-text);
    font-size: 13px;
    padding: 10px 16px;
    border-radius: 8px;
}
.cta-share:hover { border-color: var(--lab-violet-line); }
.cta-take-another { font-size: 14px; font-weight: 600; }
.cta-share-feedback { font-size: 13px; color: var(--lab-violet); min-height: 18px; }

/* ── CRISIS BLOCK (wellbeing only) ───────────── */
.crisis-block {
    background: rgba(74, 222, 128, 0.06);
    border: 1px solid rgba(74, 222, 128, 0.25);
    border-left: 3px solid #4ADE80;
    border-radius: var(--lab-radius-lg);
    padding: 22px 26px;
    margin-bottom: 8px;
}
.crisis-block.is-urgent {
    background: rgba(248, 113, 113, 0.08);
    border-color: rgba(248, 113, 113, 0.45);
    border-left-color: #F87171;
}
.crisis-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 11px;
    color: #4ADE80;
    font-weight: 700;
    margin-bottom: 8px;
}
.crisis-block.is-urgent .crisis-eyebrow { color: #F87171; }
.crisis-headline {
    font-size: 15px;
    color: var(--lab-text);
    margin: 0 0 14px;
    line-height: 1.55;
    font-weight: 600;
}
.crisis-list {
    list-style: none; padding: 0; margin: 0 0 14px;
    display: flex; flex-direction: column; gap: 6px;
}
.crisis-list li { font-size: 14px; color: var(--lab-text); line-height: 1.6; }
.crisis-list a { color: var(--lab-violet); font-weight: 600; }
.crisis-hours { color: var(--lab-faint); font-size: 12px; }
.crisis-disclaimer {
    font-size: 12px;
    color: var(--lab-faint);
    margin: 0;
    font-style: italic;
}

/* ── RIASEC CODE HEADLINE ────────────────────── */
.rh-code {
    font-family: 'Inter', sans-serif;
    font-size: clamp(56px, 9vw, 96px);
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--accent, var(--lab-violet));
    margin: 4px 0 14px;
}
.rh-disclaimer {
    font-size: 12px; color: var(--lab-faint); font-style: italic;
    margin: 14px 0 0;
}
.rh-sub-html { font-size: 16px; color: var(--lab-text); }
.rh-sub-html strong { color: var(--lab-violet); }

/* ── REFERENCES FOOTER ───────────────────────── */
.results-references, .page-references {
    border-top: 1px solid var(--lab-border);
    padding-top: 28px;
    margin-top: 32px;
}
.ref-head {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 11px;
    color: var(--lab-faint);
    font-weight: 600;
    margin-bottom: 12px;
}
.ref-body {
    font-size: 13px;
    color: var(--lab-muted);
    line-height: 1.7;
    margin: 0 0 12px;
}
.ref-disclaimer {
    font-size: 12px;
    color: var(--lab-faint);
    line-height: 1.65;
    margin: 0;
    font-style: italic;
}

/* ── TRAIT ARTICLE ───────────────────────────── */
.trait-article {
    max-width: 700px;
    margin: 0 auto;
}
.ta-header { margin-bottom: 32px; }
.ta-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    margin-bottom: 16px;
}
.ta-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}
.ta-section { margin-bottom: 28px; }
.ta-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}
.ta-section p {
    font-size: 16px;
    color: var(--lab-text);
    line-height: 1.75;
    margin: 0;
}
.ta-cta {
    background: var(--lab-violet-soft);
    border: 1px solid var(--lab-violet-line);
    border-radius: var(--lab-radius-lg);
    padding: 28px;
    text-align: center;
    margin-top: 40px;
}
.ta-cta h3 { font-size: 20px; font-weight: 700; margin: 0 0 8px; letter-spacing: -0.01em; }
.ta-cta p { color: var(--lab-muted); font-size: 14px; margin: 0 0 18px; }

/* ── ERROR ───────────────────────────────────── */
.view-error { text-align: center; padding: 80px 20px; }
.view-error h1 { font-size: 28px; font-weight: 700; margin: 0 0 12px; }
.view-error p { color: var(--lab-muted); margin: 0 0 24px; font-size: 16px; }

/* ── LAB FOOTER ──────────────────────────────── */
.lab-footer {
    border-top: 1px solid var(--lab-border);
    padding: 32px 24px;
    margin-top: 64px;
    color: var(--lab-faint);
    font-size: 13px;
    text-align: center;
}
.lab-footer-attr { margin-bottom: 8px; }
.lab-footer-links { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.lab-footer-links a { color: var(--lab-muted); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 600px) {
    .lab-main { padding: 32px 16px 56px; }
    .quiz-card { padding: 22px; }
    .lab-hero-title { font-size: 32px; }
    .intro-cta { flex-direction: column; align-items: flex-start; }
    .gate-card, .cta-newsletter, .results-snapshot { padding: 22px; }
    .trait-deep { padding: 20px; }
}
