        :root {
            --primary: #8c4f64;
            --primary-dark: #693a4a;
            --primary-light: #f6e9ee;
            --secondary: #c99aa9;
            --background: #fbf8f6;
            --surface: #ffffff;
            --text: #332a2d;
            --text-light: #71666a;
            --border: #eadde1;
            --success: #497a65;
            --warning: #a56a38;
            --shadow: 0 18px 45px rgba(80, 48, 59, 0.10);
            --radius: 22px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            min-height: 100vh;
            background:
                radial-gradient(
                    circle at top left,
                    rgba(201, 154, 169, 0.18),
                    transparent 30%
                ),
                var(--background);
            color: var(--text);
            font-family:
                Inter,
                -apple-system,
                BlinkMacSystemFont,
                "Segoe UI",
                sans-serif;
            line-height: 1.6;
        }

        button,
        input {
            font: inherit;
        }

        button {
            cursor: pointer;
        }

        .page {
            width: min(920px, calc(100% - 32px));
            margin: 0 auto;
            padding: 40px 0 70px;
        }

        .brand {
            margin-bottom: 28px;
            text-align: center;
        }

        .brand-name {
            margin: 0;
            color: var(--primary);
            font-size: 0.85rem;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .card {
            overflow: hidden;
            padding: clamp(24px, 5vw, 54px);
            border: 1px solid rgba(140, 79, 100, 0.08);
            border-radius: var(--radius);
            background: var(--surface);
            box-shadow: var(--shadow);
        }

        .screen {
            display: none;
        }

        .screen.active {
            display: block;
            animation: fadeIn 0.35s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(8px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .eyebrow {
            margin: 0 0 12px;
            color: var(--primary);
            font-size: 0.82rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

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

        h1 {
            max-width: 760px;
            margin-bottom: 20px;
            font-family: Georgia, "Times New Roman", serif;
            font-size: clamp(2rem, 5.4vw, 3.6rem);
            font-weight: 500;
            letter-spacing: -0.03em;
            line-height: 1.12;
        }

        h2 {
            margin-bottom: 16px;
            font-family: Georgia, "Times New Roman", serif;
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 500;
            line-height: 1.15;
        }

        h3 {
            font-size: 1.05rem;
        }

        .lead {
            max-width: 720px;
            color: var(--text-light);
            font-size: clamp(1rem, 2vw, 1.15rem);
        }

        .highlight-box {
            margin: 28px 0;
            padding: 22px;
            border-left: 4px solid var(--primary);
            border-radius: 0 16px 16px 0;
            background: var(--primary-light);
        }

        .highlight-box p:last-child {
            margin-bottom: 0;
        }

        .quiz-details {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin: 26px 0 34px;
        }

        .detail {
            padding: 17px 12px;
            border: 1px solid var(--border);
            border-radius: 16px;
            text-align: center;
        }

        .detail strong {
            display: block;
            color: var(--primary);
            font-size: 1.15rem;
        }

        .detail span {
            color: var(--text-light);
            font-size: 0.84rem;
        }

        .button {
            display: inline-flex;
            min-height: 54px;
            align-items: center;
            justify-content: center;
            padding: 14px 25px;
            border: 0;
            border-radius: 999px;
            background: var(--primary);
            color: #fff;
            font-weight: 800;
            text-align: center;
            text-decoration: none;
            transition:
                transform 0.2s ease,
                background 0.2s ease,
                box-shadow 0.2s ease;
        }

        .button:hover {
            transform: translateY(-2px);
            background: var(--primary-dark);
            box-shadow: 0 10px 24px rgba(105, 58, 74, 0.2);
        }

        .button.secondary {
            border: 1px solid var(--border);
            background: #fff;
            color: var(--primary);
        }

        .button.secondary:hover {
            background: var(--primary-light);
            box-shadow: none;
        }

        .button.full {
            width: 100%;
        }

        .button:disabled {
            cursor: not-allowed;
            opacity: 0.45;
            transform: none;
            box-shadow: none;
        }

        .button:disabled:hover {
            transform: none;
            background: var(--primary);
            box-shadow: none;
        }

        .progress-wrapper {
            margin-bottom: 34px;
        }

        .progress-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 9px;
            color: var(--text-light);
            font-size: 0.85rem;
            font-weight: 700;
        }

        .progress-track {
            width: 100%;
            height: 9px;
            overflow: hidden;
            border-radius: 999px;
            background: #eee5e8;
        }

        .progress-bar {
            width: 0;
            height: 100%;
            border-radius: inherit;
            background:
                linear-gradient(
                    90deg,
                    var(--primary),
                    var(--secondary)
                );
            transition: width 0.35s ease;
        }

        .pillar-intro {
            margin-bottom: 34px;
        }

        .pillar-intro p {
            max-width: 710px;
            color: var(--text-light);
        }

        .question {
            margin-bottom: 34px;
            padding-bottom: 32px;
            border-bottom: 1px solid var(--border);
        }

        .question:last-child {
            margin-bottom: 0;
            border-bottom: 0;
        }

        .question-number {
            display: inline-flex;
            min-width: 34px;
            height: 34px;
            align-items: center;
            justify-content: center;
            margin-bottom: 13px;
            border-radius: 50%;
            background: var(--primary-light);
            color: var(--primary);
            font-size: 0.85rem;
            font-weight: 900;
        }

        .question-text {
            margin-bottom: 20px;
            font-size: clamp(1.05rem, 2.3vw, 1.22rem);
            font-weight: 700;
            line-height: 1.45;
        }

        .scale-labels {
            display: flex;
            justify-content: space-between;
            margin-bottom: 9px;
            color: var(--text-light);
            font-size: 0.75rem;
        }

        .rating {
            display: grid;
            grid-template-columns: repeat(10, 1fr);
            gap: 7px;
        }

        .rating input {
            position: absolute;
            width: 1px;
            height: 1px;
            overflow: hidden;
            opacity: 0;
            pointer-events: none;
        }

        .rating label {
            display: flex;
            min-height: 43px;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border);
            border-radius: 11px;
            background: #fff;
            color: var(--text);
            font-size: 0.9rem;
            font-weight: 800;
            transition: 0.16s ease;
        }

        .rating label:hover {
            transform: translateY(-2px);
            border-color: var(--secondary);
            background: var(--primary-light);
        }

        .rating input:focus-visible + label {
            outline: 3px solid rgba(140, 79, 100, 0.24);
            outline-offset: 2px;
        }

        .rating input:checked + label {
            border-color: var(--primary);
            background: var(--primary);
            color: #fff;
            box-shadow: 0 7px 16px rgba(140, 79, 100, 0.2);
        }

        .navigation {
            display: flex;
            gap: 12px;
            justify-content: space-between;
            margin-top: 34px;
        }

        .error-message {
            display: none;
            margin-top: 22px;
            padding: 14px 16px;
            border: 1px solid #eed3c1;
            border-radius: 13px;
            background: #fff5ed;
            color: var(--warning);
            font-weight: 700;
        }

        .error-message.visible {
            display: block;
        }

        .result-header {
            margin-bottom: 30px;
            text-align: center;
        }

        .tier-label {
            display: inline-block;
            margin-bottom: 6px;
            padding: 6px 16px;
            border-radius: 999px;
            background: var(--primary-light);
            color: var(--primary);
            font-size: 0.8rem;
            font-weight: 800;
            letter-spacing: 0.03em;
        }

        .score-circle {
            display: flex;
            width: 175px;
            height: 175px;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin: 22px auto;
            border: 12px solid var(--primary-light);
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 16px 35px rgba(80, 48, 59, 0.12);
        }

        .score-circle strong {
            color: var(--primary);
            font-family: Georgia, "Times New Roman", serif;
            font-size: 3.2rem;
            font-weight: 500;
            line-height: 1;
        }

        .score-circle span {
            margin-top: 7px;
            color: var(--text-light);
            font-size: 0.8rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .result-note {
            max-width: 660px;
            margin: 0 auto;
            color: var(--text-light);
        }

        .tier-detail {
            max-width: 720px;
            margin: 30px auto 0;
            text-align: left;
        }

        .tier-detail p {
            color: var(--text-light);
        }

        .tier-detail .highlight-box {
            text-align: left;
        }

        .tier-detail .highlight-box h3 {
            margin-bottom: 8px;
            color: var(--primary);
            font-family: Georgia, "Times New Roman", serif;
            font-size: 1.3rem;
            font-weight: 500;
        }

        .pillar-results {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin: 34px 0;
        }

        .pillar-result {
            padding: 20px;
            border: 1px solid var(--border);
            border-radius: 17px;
            background: #fff;
        }

        .pillar-result-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            margin-bottom: 12px;
        }

        .pillar-result h3 {
            margin: 0;
            line-height: 1.3;
        }

        .pillar-score {
            color: var(--primary);
            font-weight: 900;
            white-space: nowrap;
        }

        .mini-track {
            height: 8px;
            overflow: hidden;
            border-radius: 999px;
            background: #eee5e8;
        }

        .mini-bar {
            height: 100%;
            border-radius: inherit;
            background: var(--primary);
        }

        .strengths-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin: 0 0 34px;
        }

        .strength-card {
            padding: 22px;
            border-radius: 18px;
            background: var(--primary-light);
        }

        .strength-card.opportunity {
            background: #fff5ed;
        }

        .strength-card .tag {
            display: block;
            margin-bottom: 8px;
            color: var(--primary);
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .strength-card.opportunity .tag {
            color: var(--warning);
        }

        .strength-card h3 {
            margin-bottom: 8px;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 1.2rem;
            font-weight: 500;
        }

        .strength-card p {
            margin: 0;
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .next-step {
            margin-top: 34px;
            padding: 28px;
            border-radius: 19px;
            background: var(--primary-light);
            text-align: center;
        }

        .next-step h3 {
            margin-bottom: 9px;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 1.7rem;
            font-weight: 500;
        }

        .next-step p {
            color: var(--text-light);
        }

        .footer-note {
            margin-top: 22px;
            color: var(--text-light);
            font-size: 0.78rem;
            text-align: center;
        }

        @media (max-width: 700px) {
            .page {
                width: min(100% - 20px, 920px);
                padding-top: 18px;
            }

            .card {
                padding: 24px 18px;
                border-radius: 18px;
            }

            .quiz-details,
            .pillar-results,
            .strengths-grid {
                grid-template-columns: 1fr;
            }

            .rating {
                grid-template-columns: repeat(5, 1fr);
            }

            .scale-labels {
                display: none;
            }

            .navigation {
                flex-direction: column-reverse;
            }

            .navigation .button {
                width: 100%;
            }
        }

.hidden { display: none !important; }

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.field { display: flex; flex-direction: column; gap: 7px; }
.field label, .field-label { color: var(--text); font-size: .9rem; font-weight: 800; }
.field input, .field select, .reflection-textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    color: var(--text);
    padding: 14px 15px;
    outline: none;
    transition: border-color .16s ease, box-shadow .16s ease;
}
.field input:focus, .field select:focus, .reflection-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(140, 79, 100, .12);
}

#reflection-form { margin-top: 28px; }
.field-label { display: block; margin-bottom: 10px; line-height: 1.5; }
.reflection-textarea { min-height: 150px; resize: vertical; line-height: 1.55; }
.field-meta { display: flex; justify-content: space-between; gap: 12px; margin-top: 7px; color: var(--text-light); font-size: .78rem; }
.consent-row { display: flex; gap: 10px; align-items: flex-start; margin: 22px 0; color: var(--text-light); font-size: .86rem; line-height: 1.45; }
.consent-row input { margin-top: 4px; accent-color: var(--primary); }
.hidden-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.result-link { margin-top: 22px; padding: 20px 22px; border: 1px solid var(--border); border-radius: 16px; background: #fff; text-align: center; }
.result-link strong { display: block; color: var(--text); font-family: Georgia, serif; font-size: 1.15rem; font-weight: 500; }
.result-link p:first-of-type { color: var(--text-light); font-size: .92rem; }
.result-link p { margin: 8px 0 0; overflow-wrap: anywhere; }
.result-link a { color: var(--primary); }

.admin-shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 40px 0 70px; }
.admin-card { padding: clamp(24px, 4vw, 44px); border: 1px solid rgba(140, 79, 100, .08); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.login-card { max-width: 520px; margin: 40px auto; }
.admin-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; margin-bottom: 28px; }
.admin-head h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 8px; }
.admin-actions { display: flex; align-items: center; gap: 10px; }
.admin-actions form { margin: 0; }
.muted { color: var(--text-light); }
.admin-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 28px; }
.admin-kpi { padding: 18px; border: 1px solid var(--border); border-radius: 15px; }
.admin-kpi strong { display: block; color: var(--primary); font-size: 1.7rem; }
.admin-kpi span { color: var(--text-light); font-size: .8rem; }
.admin-filters { display: grid; grid-template-columns: 2fr 1.3fr 1fr 1fr auto auto; align-items: end; gap: 10px; margin-bottom: 28px; }
.table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.admin-table th, .admin-table td { padding: 13px 10px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
.admin-table th { color: var(--text-light); font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; }
.admin-table .button { min-height: 38px; padding: 8px 14px; font-size: .8rem; }
.pagination { display: flex; gap: 7px; margin-top: 22px; }
.pagination a, .pagination span { display: inline-flex; min-width: 34px; height: 34px; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 9px; color: var(--primary); text-decoration: none; }
.pagination .current { background: var(--primary); color: #fff; }
.admin-detail-grid { display: grid; grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr); gap: 20px; }
.detail-panel { padding: 22px; border: 1px solid var(--border); border-radius: 17px; }
.detail-panel h3 { margin: 0 0 16px; font-family: Georgia, serif; font-size: 1.35rem; font-weight: 500; }
.detail-panel h3:not(:first-child) { margin-top: 28px; }
.detail-panel p { color: var(--text-light); }
.detail-panel a { color: var(--primary); }
.admin-score { margin-bottom: 14px; }
.admin-score > div:first-child { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 6px; font-size: .9rem; }
.reflection-quote { margin: 0 0 28px; padding: 20px; border-left: 4px solid var(--primary); border-radius: 0 14px 14px 0; background: var(--primary-light); color: var(--text); font-family: Georgia, serif; font-size: 1.15rem; line-height: 1.55; }
.admin-answer { padding: 16px 0; border-top: 1px solid var(--border); }
.admin-answer p { margin: 6px 0; }
.admin-answer span { color: var(--primary); font-weight: 800; }
.form-error { display: none; margin: 0 0 18px; padding: 14px 16px; border: 1px solid #eed3c1; border-radius: 13px; background: #fff5ed; color: var(--warning); font-weight: 700; }
.form-error.visible { display: block; }

@media (max-width: 800px) {
    .admin-filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .admin-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .field-grid, .admin-kpis { grid-template-columns: 1fr; }
    .admin-head { flex-direction: column; }
    .admin-actions { width: 100%; flex-wrap: wrap; }
    .admin-filters { grid-template-columns: 1fr; }
    .field-meta { flex-direction: column; gap: 2px; }
}
/* Landing page — scorecard */
.landing-page { background: var(--background); }
.landing-container { width: min(1100px, calc(100% - 40px)); margin: 0 auto; }
.landing-header { position: sticky; top: 0; z-index: 10; border-bottom: 1px solid rgba(140,79,100,.12); background: rgba(251,248,246,.92); backdrop-filter: blur(12px); }
.landing-nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.landing-brand { color: var(--primary); font-size: .86rem; font-weight: 900; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.small-button { min-height: 40px; padding: 9px 17px; font-size: .82rem; }
.landing-hero { padding: clamp(58px, 9vw, 108px) 0 84px; background: radial-gradient(circle at 85% 12%, rgba(201,154,169,.3), transparent 33%), linear-gradient(135deg, #fbf8f6 0%, #f8edef 100%); }
.hero-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); align-items: center; gap: clamp(36px, 7vw, 80px); }
.hero-copy-block h1 { max-width: 720px; margin-bottom: 22px; color: var(--text); font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.4rem, 5.2vw, 4.6rem); font-weight: 500; letter-spacing: -.04em; line-height: 1.06; }
.hero-copy-block h1 em { color: var(--primary); font-style: normal; }
.hero-lead { max-width: 640px; margin-bottom: 30px; color: var(--text-light); font-size: clamp(1.08rem, 2vw, 1.28rem); }
.hero-note { margin: 15px 0 0; color: var(--text-light); font-size: .82rem; font-weight: 800; }
.hero-note span { padding: 0 6px; color: var(--secondary); }
.hero-card { padding: clamp(25px, 4vw, 38px); border: 1px solid rgba(140,79,100,.13); border-radius: 24px; background: rgba(255,255,255,.78); box-shadow: 0 22px 55px rgba(80,48,59,.13); }
.hero-card-seal { display: flex; width: 68px; height: 68px; align-items: center; justify-content: center; margin-bottom: 24px; border: 1px solid var(--secondary); border-radius: 50%; color: var(--primary); font-family: Georgia, serif; font-size: 1rem; font-weight: 700; }
.fact-list { display: grid; gap: 12px; margin: 18px 0 0; padding: 0; list-style: none; color: var(--text-light); font-size: .96rem; }
.fact-list li { padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.fact-list li:last-child { padding-bottom: 0; border-bottom: 0; }
.fact-list strong { color: var(--text); }
.landing-section { padding: clamp(64px, 8vw, 104px) 0; }
.landing-section-soft { background: #f6e9ee; }
.section-kicker { margin: 0 0 13px; color: var(--primary); font-size: .78rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.landing-section h2 { max-width: 800px; margin-bottom: 22px; font-size: clamp(1.95rem, 4vw, 3.2rem); }
.narrow-copy { max-width: 760px; }
.narrow-copy p, .results-section p { max-width: 680px; color: var(--text-light); font-size: clamp(1.04rem, 1.8vw, 1.18rem); }
.center-heading { max-width: 760px; margin: 0 auto 38px; text-align: center; }
.pillar-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.pillar-card { padding: 26px; border: 1px solid var(--border); border-radius: 19px; background: #fff; }
.pillar-number { display: block; margin-bottom: 22px; color: var(--secondary); font-size: .78rem; font-weight: 900; letter-spacing: .08em; }
.pillar-card h3 { margin-bottom: 9px; font-family: Georgia, serif; font-size: 1.45rem; font-weight: 500; }
.pillar-card p { margin: 0; color: var(--text-light); }
.credibility-note { max-width: 760px; margin: 30px auto 0; padding: 20px 24px; border: 1px solid var(--border); border-radius: 16px; background: #fff; text-align: center; }
.credibility-label { display: block; margin-bottom: 7px; color: var(--primary); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.credibility-note p { margin: 0; color: var(--text-light); font-size: .95rem; }
.credibility-note strong { color: var(--text); }
.results-section { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 7vw, 80px); align-items: start; }
.check-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; color: var(--text-light); font-size: 1.05rem; line-height: 1.5; }
.check-list li::before { position: absolute; left: 0; top: 1px; content: "✓"; color: var(--primary); font-weight: 900; }
.result-list { padding-top: 5px; }
.landing-final-cta { padding: clamp(70px, 9vw, 116px) 0; background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: #fff; text-align: center; }
.final-cta-content { display: flex; flex-direction: column; align-items: center; }
.final-cta-content .section-kicker { color: #f2cad7; }
.final-cta-content h2 { max-width: 740px; margin-bottom: 12px; color: #fff; font-family: Georgia, serif; font-size: clamp(2.1rem, 4.6vw, 3.8rem); font-weight: 500; line-height: 1.08; }
.final-transition { max-width: 560px; margin: 0 0 26px; color: rgba(255,255,255,.82); font-size: 1.05rem; }
.final-cta-content .button { background: #fff; color: var(--primary-dark); }
.final-cta-content .button:hover { background: #f6e9ee; }
.final-note { margin-top: 18px; color: rgba(255,255,255,.72); font-size: .84rem; font-weight: 700; }
.radar-card { margin: 34px 0 0; padding: 24px 18px 10px; border: 1px solid var(--border); border-radius: 19px; background: #fff; }
.card-title { margin: 0 0 6px; font-family: Georgia, serif; font-size: 1.35rem; font-weight: 500; text-align: center; }
.radar-wrapper { width: 100%; max-width: 520px; margin: 0 auto; }
.radar-wrapper svg { width: 100%; height: auto; overflow: visible; }
.radar-label { fill: var(--text-light); font-family: Inter, -apple-system, sans-serif; font-size: 13px; font-weight: 700; }
.radar-value { fill: var(--primary); font-size: 13px; font-weight: 900; }
.share-step .button { margin-top: 6px; }
.share-button { background: #2f8f5b; }
.share-button:hover { background: #27784c; box-shadow: 0 10px 24px rgba(39,120,76,.24); }
.share-note { margin: 14px 0 0; color: var(--text-light); font-size: .82rem; }
.secondary-link { display: inline-block; margin-top: 16px; color: var(--primary); font-size: .9rem; font-weight: 700; text-decoration: underline; }
.assessment-shell { min-height: 100vh; background: var(--background); }
.assessment-page { padding-top: 34px; }

@media (max-width: 800px) {
    .hero-layout, .results-section { grid-template-columns: 1fr; }
    .hero-card { max-width: 620px; }
}

@media (max-width: 600px) {
    .landing-container { width: min(100% - 24px, 1100px); }
    .landing-nav { min-height: 62px; }
    .landing-brand { max-width: 200px; font-size: .72rem; }
    .small-button { padding: 8px 12px; font-size: .72rem; }
    .landing-hero { padding-top: 50px; }
    .hero-copy-block h1 { font-size: clamp(2.3rem, 11vw, 3.3rem); }
    .hero-copy-block .button, .final-cta-content .button { width: 100%; }
    .pillar-cards { grid-template-columns: 1fr; }
}
