:root {
    --ink: #1C2054;
    --ink-soft: #555873;
    --surface: #ffffff;
    --surface-soft: #F3F3F3;
    --surface-deep: #E7E7EE;
    --accent: #EF5020;
    --accent-dark: #CD3B0E;
    --accent-soft: #FFF0EA;
    --line: #D9D9E2;
    --danger: #a62e2e;
    --shadow: 0 22px 60px rgba(28, 32, 84, 0.10);
    --radius-large: 24px;
    --radius-medium: 15px;
    --radius-small: 9px;
    --shell: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--surface-soft);
    color: var(--ink);
    font-family:
        "Kumbh Sans",
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.5;
}

body {
    min-height: 100%;
    margin: 0;
    background: var(--surface-soft);
}

button,
input {
    font: inherit;
}

a {
    color: inherit;
}

.shell {
    width: min(calc(100% - 40px), var(--shell));
    margin-inline: auto;
}

.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    min-height: 78px;
}

.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 11px;
    color: var(--ink);
    text-decoration: none;
}

.brand-name {
    font-size: 1.48rem;
    font-weight: 850;
    letter-spacing: -0.045em;
}

.brand-label {
    padding-left: 11px;
    border-left: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.site-footer {
    padding: 32px 0;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.76);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-size: 0.82rem;
}

.footer-inner p {
    margin: 0;
}

.hero {
    padding: 76px 0 88px;
    background:
        radial-gradient(
            circle at 85% 18%,
            rgba(239, 80, 32, 0.18),
            transparent 34%
        ),
        linear-gradient(135deg, #f8fafb 0%, #edf4f5 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(340px, 0.7fr);
    gap: 64px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 13px;
    color: var(--accent-dark);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
    overflow-wrap: break-word;
}

h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(2.4rem, 4.5vw, 4.3rem);
    line-height: 0.99;
    letter-spacing: -0.052em;
}

.hero-intro {
    max-width: 720px;
    margin: 28px 0 0;
    color: var(--ink-soft);
    font-size: 1.18rem;
    line-height: 1.72;
}

.feature-list {
    display: grid;
    gap: 15px;
    margin: 34px 0;
}

.feature {
    display: grid;
    gap: 3px;
    padding-left: 22px;
    border-left: 3px solid var(--accent);
}

.feature strong {
    font-size: 0.98rem;
}

.feature span {
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.start-form {
    display: inline-block;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 23px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    transition:
        transform 160ms ease,
        background 160ms ease,
        border-color 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--accent);
    color: #ffffff;
}

.button-primary:hover {
    background: var(--accent-dark);
}

.button-secondary {
    border-color: var(--line);
    background: var(--surface);
    color: var(--ink);
}

.button-full {
    width: 100%;
}

.resume-link {
    display: inline-block;
    margin-left: 20px;
    color: var(--accent-dark);
    font-weight: 750;
}

.time-note,
.save-note,
.privacy-note,
.result-disclaimer {
    color: var(--ink-soft);
    font-size: 0.82rem;
}

.hero-panel {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: var(--radius-large);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.panel-kicker {
    margin: 0 0 20px;
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.preview-score {
    display: grid;
    gap: 3px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--line);
}

.preview-number {
    font-size: 3rem;
    font-weight: 850;
    letter-spacing: -0.06em;
}

.preview-label {
    color: var(--ink-soft);
    font-weight: 700;
}

.check-list {
    display: grid;
    gap: 13px;
    margin: 25px 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 29px;
}

.check-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--accent);
    content: "✓";
    font-weight: 900;
}

.panel-note {
    margin: 0;
    padding: 14px 16px;
    border-radius: var(--radius-small);
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 0.85rem;
}

.explanation {
    padding: 86px 0;
    background: var(--surface);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 33px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.domain-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.domain-card {
    min-height: 250px;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: var(--radius-medium);
    background: var(--surface-soft);
}

.domain-number {
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.domain-card h3 {
    margin: 35px 0 11px;
    font-size: 1.17rem;
}

.domain-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.assessment-page {
    min-height: calc(100vh - 180px);
    padding: 40px 0 80px;
}

.assessment-shell {
    max-width: 1080px;
}

.progress-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 9px;
    color: var(--ink-soft);
    font-size: 0.82rem;
    font-weight: 700;
}

.progress-track {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--surface-deep);
}

.progress-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--accent);
    transition: width 240ms ease;
}

.question-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
    margin-top: 42px;
}

.section-context {
    position: sticky;
    top: 24px;
    padding: 24px;
    border-radius: var(--radius-medium);
    background: var(--ink);
    color: #ffffff;
}

.section-context .eyebrow {
    color: #FFB39A;
}

.section-context h2 {
    margin: 0 0 12px;
    font-size: 1.35rem;
    line-height: 1.15;
}

.section-context p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
}

.question-card,
.contact-card,
.score-preview-card {
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: var(--radius-large);
    background: var(--surface);
    box-shadow: 0 15px 45px rgba(28, 32, 84, 0.07);
}

fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

legend {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    font-weight: 820;
    line-height: 1.18;
    letter-spacing: -0.035em;
}

.question-help {
    margin: 13px 0 0;
    color: var(--ink-soft);
}

.option-list {
    display: grid;
    gap: 11px;
    margin-top: 28px;
}

.option-card {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    cursor: pointer;
    transition:
        border-color 150ms ease,
        background 150ms ease,
        transform 150ms ease;
}

.option-card:hover {
    transform: translateY(-1px);
    border-color: var(--accent);
}

.option-card.is-selected {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.option-card input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.option-marker {
    width: 21px;
    height: 21px;
    margin-top: 1px;
    border: 2px solid #9badb8;
    border-radius: 50%;
    background: var(--surface);
}

.option-card.is-selected .option-marker {
    border: 6px solid var(--accent);
}

.option-content {
    display: grid;
    gap: 4px;
}

.option-label {
    font-weight: 720;
    line-height: 1.38;
}

.option-support {
    color: var(--ink-soft);
    font-size: 0.84rem;
}

.question-actions {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 30px;
}

.save-note {
    margin: 16px 0 0;
    text-align: right;
}

.form-error {
    margin-top: 18px;
    padding: 13px 15px;
    border-left: 4px solid var(--danger);
    border-radius: 7px;
    background: #fff0f0;
    color: var(--danger);
    font-weight: 700;
}

.result-gate {
    min-height: calc(100vh - 180px);
    padding: 64px 0 86px;
}

.result-gate-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
    gap: 32px;
    align-items: start;
}

.score-preview-card {
    background:
        linear-gradient(
            145deg,
            rgba(239, 80, 32, 0.10),
            transparent 55%
        ),
        var(--surface);
}

.score-ring {
    display: grid;
    width: 190px;
    height: 190px;
    place-content: center;
    margin: 22px 0;
    border: 14px solid var(--accent-soft);
    border-top-color: var(--accent);
    border-radius: 50%;
    text-align: center;
}

.score-ring strong {
    font-size: 3.25rem;
    line-height: 1;
    letter-spacing: -0.06em;
}

.score-ring span {
    margin-top: 5px;
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 750;
}

.score-preview-card h1 {
    font-size: 2.15rem;
    line-height: 1.08;
}

.exposure-label {
    display: inline-flex;
    margin: 14px 0 0;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--ink);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
}

.headline-finding {
    display: grid;
    gap: 5px;
    margin-top: 28px;
    padding: 18px;
    border-radius: var(--radius-small);
    background: var(--surface-soft);
}

.headline-finding span {
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.indicative-note {
    margin: 24px 0 0;
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.contact-card h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.contact-card > p:not(.eyebrow) {
    color: var(--ink-soft);
}

.contact-form {
    margin-top: 27px;
}

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

.field {
    display: grid;
    gap: 7px;
    margin-bottom: 16px;
}

.field label {
    font-size: 0.82rem;
    font-weight: 800;
}

.field input {
    width: 100%;
    min-height: 49px;
    padding: 10px 13px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
    color: var(--ink);
    outline: none;
}

.field input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(239, 80, 32, 0.12);
}

.checkbox-row {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    margin: 17px 0;
    color: var(--ink-soft);
    cursor: pointer;
    font-size: 0.84rem;
}

.checkbox-row input {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--accent);
}

.errorlist {
    margin: 2px 0 0;
    padding: 0;
    color: var(--danger);
    font-size: 0.78rem;
    font-weight: 700;
    list-style: none;
}

.full-result {
    padding: 68px 0 90px;
}

.result-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 40px;
    align-items: center;
    padding-bottom: 45px;
    border-bottom: 1px solid var(--line);
}

.result-header h1 {
    max-width: 900px;
    font-size: clamp(2.5rem, 5vw, 4.4rem);
}

.result-summary {
    max-width: 830px;
    margin: 24px 0 0;
    color: var(--ink-soft);
    font-size: 1.12rem;
}

.result-score-block {
    display: grid;
    justify-items: center;
}

.score-ring-small {
    width: 160px;
    height: 160px;
    margin: 0 0 12px;
}

.score-ring-small strong {
    font-size: 2.7rem;
}

.band-chip {
    padding: 7px 13px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 0.78rem;
    font-weight: 850;
}

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

.metric-card {
    display: grid;
    gap: 6px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-medium);
    background: var(--surface);
}

.metric-card span {
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.metric-card strong {
    font-size: 2rem;
    letter-spacing: -0.04em;
}

.metric-card em {
    color: var(--accent-dark);
    font-size: 0.84rem;
    font-style: normal;
    font-weight: 800;
}

.result-section {
    padding-top: 72px;
}

.domain-results {
    display: grid;
    gap: 23px;
    max-width: 900px;
}

.domain-result-label {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 8px;
}

.domain-result-label span {
    color: var(--ink-soft);
    font-weight: 800;
}

.domain-result-track {
    height: 14px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--surface-deep);
}

.domain-result-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--accent);
}

.gap-list {
    display: grid;
    gap: 18px;
}

.gap-card {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 22px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-large);
    background: var(--surface);
}

.gap-rank {
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    border-radius: 50%;
    background: var(--ink);
    color: #ffffff;
    font-weight: 850;
}

.gap-content h3 {
    margin: 4px 0 23px;
    font-size: 1.55rem;
    letter-spacing: -0.025em;
}

.gap-block {
    margin: 18px 0;
}

.gap-block h4,
.detail-content h4 {
    margin: 0 0 5px;
    font-size: 0.79rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.gap-block p,
.detail-content p {
    margin: 0;
    color: var(--ink-soft);
}

details {
    margin-top: 21px;
    padding-top: 17px;
    border-top: 1px solid var(--line);
}

summary {
    color: var(--accent-dark);
    cursor: pointer;
    font-weight: 800;
}

.detail-content {
    display: grid;
    gap: 7px;
    margin-top: 18px;
    padding: 19px;
    border-radius: var(--radius-small);
    background: var(--surface-soft);
}

.detail-content h4:not(:first-child) {
    margin-top: 13px;
}

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

.strength-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 9px 20px;
    padding: 24px;
    border-radius: var(--radius-medium);
    background: var(--accent-soft);
}

.strength-card span {
    color: var(--accent-dark);
    font-size: 1.4rem;
    font-weight: 850;
}

.strength-card p {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--ink-soft);
}

.diagnostic-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    align-items: center;
    margin-top: 78px;
    padding: 38px;
    border-radius: var(--radius-large);
    background: var(--ink);
    color: #ffffff;
}

.diagnostic-cta .eyebrow {
    color: #FFB39A;
}

.diagnostic-cta h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.diagnostic-cta p:not(.eyebrow) {
    max-width: 800px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
}

.result-disclaimer {
    margin: 23px 0 0;
    text-align: center;
}

@media (max-width: 900px) {
    .hero-grid,
    .result-gate-grid,
    .result-header,
    .diagnostic-cta {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 38px;
    }

    .domain-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .question-layout {
        grid-template-columns: 1fr;
    }

    .section-context {
        position: static;
    }

    .result-score-block {
        justify-items: start;
    }

    .metric-grid {
        grid-template-columns: 1fr;
    }

    .diagnostic-cta {
        justify-items: start;
    }
}

@media (max-width: 640px) {
    .shell {
        width: min(calc(100% - 24px), var(--shell));
    }

    .header-inner {
        min-height: 66px;
    }

    .brand {
        align-items: flex-start;
        flex-direction: column;
        gap: 1px;
    }

    .brand-label {
        padding-left: 0;
        border-left: 0;
        font-size: 0.65rem;
    }

    .hero {
        padding: 48px 0 58px;
    }

    h1 {
        font-size: 2.6rem;
    }

    .hero-intro {
        font-size: 1rem;
    }

    .hero-panel,
    .question-card,
    .contact-card,
    .score-preview-card {
        padding: 23px;
        border-radius: 18px;
    }

    .resume-link {
        display: block;
        margin: 17px 0 0;
    }

    .domain-grid,
    .field-grid,
    .strength-grid {
        grid-template-columns: 1fr;
    }

    .domain-card {
        min-height: 0;
    }

    .assessment-page {
        padding-top: 24px;
    }

    .question-layout {
        gap: 18px;
        margin-top: 25px;
    }

    .section-context {
        padding: 20px;
    }

    legend {
        font-size: 1.45rem;
    }

    .option-card {
        padding: 15px;
    }

    .question-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .question-actions .button {
        width: 100%;
    }

    .save-note {
        text-align: left;
    }

    .result-gate,
    .full-result {
        padding: 40px 0 62px;
    }

    .score-ring {
        width: 150px;
        height: 150px;
    }

    .score-ring strong {
        font-size: 2.6rem;
    }

    .result-header {
        gap: 27px;
    }

    .result-header h1 {
        font-size: 2.55rem;
    }

    .gap-card {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .diagnostic-cta {
        margin-top: 55px;
        padding: 27px;
    }

    .footer-inner {
        flex-direction: column;
    }
}


/* RAWVIEW BRAND AND EMBED PATCH V1 */

.brand {
    align-items: center;
}

.brand-logo {
    display: block;
    width: 190px;
    height: auto;
    flex: 0 0 auto;
}

.brand-label {
    color: var(--ink);
    font-weight: 600;
}

.button-primary {
    box-shadow: 0 10px 24px rgba(239, 80, 32, 0.20);
}

.button-primary:focus-visible,
.button-secondary:focus-visible,
.option-card:focus-within,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(239, 80, 32, 0.30);
    outline-offset: 3px;
}

.hero {
    background:
        radial-gradient(
            circle at 85% 18%,
            rgba(239, 80, 32, 0.13),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #FAFAFA 0%,
            #F3F3F3 100%
        );
}

.hero-panel {
    border-color: rgba(28, 32, 84, 0.08);
}

.preview-number,
.score-ring strong,
.metric-card strong {
    color: var(--ink);
}

.progress-fill,
.domain-result-track span {
    background: var(--accent);
}

.section-context,
.diagnostic-cta,
.exposure-label,
.gap-rank,
.site-footer {
    background: var(--ink);
}

body.embedded-mode {
    min-height: auto;
    background: transparent;
}

body.embedded-mode main {
    min-height: auto;
}

body.embedded-mode .hero {
    padding-top: 38px;
    padding-bottom: 62px;
}

body.embedded-mode .assessment-page {
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 48px;
}

body.embedded-mode .result-gate,
body.embedded-mode .full-result {
    min-height: auto;
    padding-top: 30px;
    padding-bottom: 56px;
}

body.embedded-mode .explanation {
    padding-top: 62px;
    padding-bottom: 62px;
}

body.embedded-mode .shell {
    width: min(calc(100% - 28px), var(--shell));
}

@media (max-width: 640px) {
    .brand-logo {
        width: 150px;
    }

    body.embedded-mode .hero {
        padding-top: 24px;
        padding-bottom: 44px;
    }

    body.embedded-mode .assessment-page,
    body.embedded-mode .result-gate,
    body.embedded-mode .full-result {
        padding-top: 18px;
        padding-bottom: 40px;
    }
}

/* RAWVIEW SECTION AND RESUME UX V1 */
.resume-panel {
    max-width: 500px;
    margin-top: 20px;
    padding: 18px 20px;
    border: 1px solid #f2cfc3;
    border-radius: 14px;
    background: #fff0ea;
}

.resume-panel .eyebrow {
    margin-bottom: 6px;
}

.resume-panel strong {
    display: block;
    margin-bottom: 5px;
    color: #1c2054;
    font-size: 17px;
}

.resume-panel p:not(.eyebrow) {
    margin: 0 0 14px;
    color: #555873;
    font-size: 14px;
    line-height: 1.5;
}

.save-progress-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 8px 16px;
    margin-top: 12px;
}

.save-progress-row .save-note {
    margin: 0;
}

.save-later-link,
.save-later-back {
    color: #1c2054;
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.save-later-page {
    min-height: calc(100vh - 180px);
    padding: 58px 0 80px;
    background: #f4f4f5;
}

.save-later-shell {
    display: flex;
    justify-content: center;
}

.save-later-card {
    width: 100%;
    max-width: 620px;
    padding: 36px;
    border: 1px solid #dedee7;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(28, 32, 84, 0.08);
}

.save-later-card h1 {
    margin: 0 0 16px;
    color: #1c2054;
    font-size: clamp(28px, 4vw, 39px);
    line-height: 1.15;
}

.save-later-card > p:not(.eyebrow):not(.privacy-note) {
    margin: 0 0 24px;
    color: #555873;
    line-height: 1.65;
}

.resume-email-form {
    margin-top: 24px;
}

.copy-link-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin: 24px 0;
}

.copy-link-row input {
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid #d8d8e2;
    border-radius: 10px;
    color: #555873;
    background: #fafafa;
}

.copy-confirmation {
    margin-top: 10px;
    color: #1c7c54;
    font-size: 13px;
    font-weight: 600;
}

.save-later-back {
    display: inline-block;
    margin-top: 19px;
}

@media (max-width: 640px) {
    .save-later-page {
        padding: 28px 0 48px;
    }

    .save-later-card {
        padding: 25px 20px;
    }

    .copy-link-row {
        grid-template-columns: 1fr;
    }

    .save-progress-row {
        justify-content: center;
        text-align: center;
    }
}
/* END RAWVIEW SECTION AND RESUME UX V1 */

/* LANDING READINESS HEADLINE V1 */
.hero-readiness {
    max-width: 720px;
    margin: 24px 0 0;
    color: #1c2054;
    font-size: clamp(1.12rem, 1.8vw, 1.35rem);
    font-weight: 750;
    line-height: 1.42;
}

.hero-readiness + .hero-intro {
    margin-top: 13px;
}

@media (max-width: 640px) {
    .hero-readiness {
        margin-top: 21px;
        font-size: 1.05rem;
        line-height: 1.45;
    }

    .hero-readiness + .hero-intro {
        margin-top: 11px;
    }
}
/* END LANDING READINESS HEADLINE V1 */

/* LANDING CTA HIERARCHY V1 */
.hero-copy .start-form {
    margin-top: 27px;
}

.hero-time-note {
    margin: 13px 0 0;
}

.hero-supporting-features {
    margin-top: 32px;
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .hero-copy .start-form {
        margin-top: 24px;
    }

    .hero-time-note {
        margin-top: 12px;
        line-height: 1.55;
    }

    .hero-supporting-features {
        margin-top: 29px;
    }
}
/* END LANDING CTA HIERARCHY V1 */

/* RESULT PDF DOWNLOAD V1 */
.result-download-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 34px;
    margin-top: 30px;
    padding: 28px 30px;
    border: 1px solid #dedee7;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(28, 32, 84, 0.08);
}

.result-download-panel .eyebrow {
    margin-bottom: 7px;
}

.result-download-panel h2 {
    margin: 0;
    color: #1c2054;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.result-download-panel p:not(.eyebrow) {
    max-width: 720px;
    margin: 9px 0 0;
    color: #555873;
    line-height: 1.6;
}

.result-download-panel .button {
    white-space: nowrap;
}

@media (max-width: 760px) {
    .result-download-panel {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 23px;
    }

    .result-download-panel .button {
        width: 100%;
        white-space: normal;
        text-align: center;
    }
}
/* END RESULT PDF DOWNLOAD V1 */

/* POSITIVE STRENGTH CARDS V1 */
.strength-card {
    border: 1px solid #c9e4d0;
    background: #eef8f1;
}

.strength-card > span {
    color: #19733a;
    font-weight: 850;
}

.strength-card p {
    color: #45644f;
}
/* END POSITIVE STRENGTH CARDS V1 */

/* DISCOVERY CALL MODAL V2 */
body.discovery-modal-open {
    overflow: hidden;
}

.discovery-modal[hidden] {
    display: none;
}

.discovery-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 24px;
}

.discovery-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 18, 48, 0.76);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.discovery-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(1040px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 30px 90px rgba(8, 10, 35, 0.35);
}

.discovery-modal-dialog:focus {
    outline: none;
}

.discovery-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    z-index: 3;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 0;
    border: 1px solid #dcdde7;
    border-radius: 999px;
    background: #ffffff;
    color: #1c2054;
    font: inherit;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 7px 20px rgba(28, 32, 84, 0.1);
}

.discovery-modal-close:hover {
    background: #f4f4f8;
}

.discovery-modal-close:focus-visible {
    outline: 3px solid rgba(43, 50, 132, 0.28);
    outline-offset: 3px;
}

.discovery-modal-header {
    padding: 30px 76px 22px 32px;
    border-bottom: 1px solid #ececf2;
}

.discovery-modal-header h2 {
    max-width: 760px;
    margin: 0;
    color: #1c2054;
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.discovery-modal-header p:not(.eyebrow) {
    max-width: 780px;
    margin: 11px 0 0;
    color: #555873;
    line-height: 1.65;
}

.discovery-modal-direct-link {
    display: inline-block;
    margin-top: 12px;
    color: #1c2054;
    font-size: 0.84rem;
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.discovery-modal .meetings-iframe-container {
    min-height: 700px;
    background: #ffffff;
}

@media (max-width: 760px) {
    .discovery-call-cta {
        align-items: stretch;
    }

    .discovery-call-cta .button {
        width: 100%;
        text-align: center;
    }

    .discovery-modal {
        place-items: stretch;
        padding: 0;
    }

    .discovery-modal-dialog {
        width: 100%;
        height: 100dvh;
        max-height: 100dvh;
        border: 0;
        border-radius: 0;
    }

    .discovery-modal-close {
        position: fixed;
        top: 12px;
        right: 12px;
    }

    .discovery-modal-header {
        padding: 72px 20px 20px;
    }

    .discovery-modal .meetings-iframe-container {
        min-height: 780px;
    }
}
/* END DISCOVERY CALL MODAL V2 */

/* RESULT SCORE DEFINITIONS AND UPLIFT V1 */
.metric-card .metric-explainer {
    max-width: 430px;
    margin: 12px 0 0;
    color: #666a80;
    font-size: 0.91rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.52;
}

.gap-impact {
    margin-top: 18px;
    padding: 16px 18px;
    border: 1px solid #c9e4d0;
    border-radius: 14px;
    background: #eef8f1;
}

.gap-impact h4 {
    margin: 0 0 5px;
    color: #19733a;
}

.gap-impact p {
    margin: 0;
    color: #385d45;
}

.gap-impact strong {
    color: #19733a;
    font-weight: 850;
}

@media (max-width: 760px) {
    .metric-card .metric-explainer {
        max-width: none;
    }

    .gap-impact {
        padding: 14px;
    }
}
/* END RESULT SCORE DEFINITIONS AND UPLIFT V1 */


/* EQUAL-STAGE SCORE SCALES V4 */

.score-scale {
    margin-top: 1.15rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.score-scale-direction {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--ink-soft);
    font-size: 0.7rem;
    font-weight: 750;
    line-height: 1.25;
}

.score-scale-direction span:last-child {
    text-align: right;
}

.score-scale-track-wrap {
    position: relative;
    margin-top: 0.35rem;
    padding-top: 1.55rem;
}

.score-scale-track {
    display: flex;
    width: 100%;
    height: 12px;
    overflow: hidden;
    border: 1px solid rgba(28, 32, 84, 0.13);
    border-radius: 999px;
    background: #ececf1;
}

.score-scale-segment {
    flex:
        0
        0
        var(--score-scale-width);
    height: 100%;
    border-right:
        1px solid
        rgba(255, 255, 255, 0.9);
}

.score-scale-segment:last-child {
    border-right: 0;
}

.score-scale-segment.is-active {
    box-shadow:
        inset 0 0 0 2px
        rgba(28, 32, 84, 0.7);
}

.score-scale-marker {
    position: absolute;
    top: 0;
    left: var(--score-position);
    z-index: 2;
    transform: translateX(-50%);
}

.score-scale-marker::after {
    content: "";
    position: absolute;
    top: 1.35rem;
    left: 50%;
    width: 2px;
    height: 17px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: var(--ink);
}

.score-scale-marker-value {
    display: inline-flex;
    min-width: 2rem;
    min-height: 1.55rem;
    align-items: center;
    justify-content: center;
    padding: 0.16rem 0.42rem;
    border-radius: 999px;
    background: var(--ink);
    color: #ffffff;
    font-size: 0.74rem;
    font-style: normal;
    font-weight: 850;
    line-height: 1;
    box-shadow:
        0 4px 10px
        rgba(28, 32, 84, 0.18);
}

.score-scale-band-labels {
    display: flex;
    width: 100%;
    margin-top: 0.52rem;
}

.score-scale-band-label {
    flex:
        0
        0
        var(--score-scale-width);
    min-width: 0;
    padding: 0.25rem 0.12rem;
    color: var(--ink-soft);
    font-size: 0.58rem;
    font-style: normal;
    font-weight: 650;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.score-scale-band-label.is-active {
    border-radius: 6px;
    background: rgba(28, 32, 84, 0.08);
    color: var(--ink);
    font-weight: 850;
}

.metric-card
.score-scale-interpretation {
    margin: 0.75rem 0 0;
    color: var(--ink-soft);
    font-size: 0.78rem;
    line-height: 1.45;
}

.metric-card
.score-scale-interpretation strong {
    display: inline;
    margin: 0;
    padding: 0;
    color: var(--ink);
    font-size: inherit;
    font-style: normal;
    font-weight: 800;
    line-height: inherit;
}

.band-reactive {
    background: #efa493;
}

.band-developing {
    background: #f4c795;
}

.band-managed {
    background: #f2dda0;
}

.band-assured {
    background: #badbbf;
}

.band-continuous {
    background: #78ba8b;
}

.band-low {
    background: #78ba8b;
}

.band-moderate {
    background: #badbbf;
}

.band-significant {
    background: #f2cf91;
}

.band-high {
    background: #e98f80;
}

@media (max-width: 560px) {
    .score-scale-direction {
        font-size: 0.65rem;
    }

    .score-scale-band-labels {
        margin-top: 0.58rem;
    }

    .score-scale-band-label {
        padding:
            0.25rem
            0.02rem;
        font-size: 0.49rem;
        letter-spacing: -0.02em;
    }

    .score-scale-marker-value {
        min-width: 1.8rem;
        min-height: 1.4rem;
        font-size: 0.68rem;
    }

    .metric-card
    .score-scale-interpretation {
        margin-top: 0.85rem;
        font-size: 0.74rem;
        line-height: 1.5;
    }
}

/* END EQUAL-STAGE SCORE SCALES V4 */


/* RESPONSIVE ASSURANCE SCALE THREE-LABEL ROW V7 */

/*
 * Respond to the actual width of the assurance scale,
 * rather than assuming that a particular viewport width
 * always means mobile or tablet.
 */
.score-scale-assurance {
    container-name: assurance-scale;
    container-type: inline-size;
}

/*
 * Where the scale has less than 520px available, retain
 * all five equal coloured stages but simplify the labels
 * to:
 *
 * Reactive | current stage | Continuous
 *
 * All three remain on the same row.
 */
@container assurance-scale (max-width: 520px) {
    .score-scale-assurance
    .score-scale-band-labels {
        display: grid;
        grid-template-columns:
            repeat(5, minmax(0, 1fr));
        width: 100%;
        margin-top: 0.58rem;
        align-items: start;
    }

    .score-scale-assurance
    .score-scale-band-label {
        display: none;
        width: max-content;
        max-width: none;
        min-width: 0;
        padding: 0.25rem 0.35rem;
        font-size: 0.58rem;
        line-height: 1.1;
        white-space: nowrap;
        overflow: visible;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    /*
     * Always show the two maturity endpoints and the
     * respondent's active stage.
     */
    .score-scale-assurance
    .score-scale-band-label:first-child,
    .score-scale-assurance
    .score-scale-band-label:last-child,
    .score-scale-assurance
    .score-scale-band-label.is-active {
        display: block;
    }

    /*
     * Anchor each label to the same equal-width column as
     * its corresponding coloured stage.
     */
    .score-scale-assurance
    .score-scale-band-label:nth-child(1) {
        grid-column: 1;
        justify-self: start;
        padding-left: 0;
        text-align: left;
    }

    .score-scale-assurance
    .score-scale-band-label:nth-child(2) {
        grid-column: 2;
        justify-self: center;
    }

    .score-scale-assurance
    .score-scale-band-label:nth-child(3) {
        grid-column: 3;
        justify-self: center;
    }

    .score-scale-assurance
    .score-scale-band-label:nth-child(4) {
        grid-column: 4;
        justify-self: center;
    }

    .score-scale-assurance
    .score-scale-band-label:nth-child(5) {
        grid-column: 5;
        justify-self: end;
        padding-right: 0;
        text-align: right;
    }

    /*
     * Ensure no earlier mobile rule moves the active
     * stage onto another row.
     */
    .score-scale-assurance
    .score-scale-band-label.is-active {
        transform: none;
    }

    .score-scale-assurance
    .score-scale-interpretation {
        margin-top: 0.75rem;
    }
}

/*
 * Fallback for browsers without container-query support.
 * This covers mobile and narrower tablet layouts using
 * the same single-row three-label presentation.
 */
@supports not (container-type: inline-size) {
    @media (max-width: 900px) {
        .score-scale-assurance
        .score-scale-band-labels {
            display: grid;
            grid-template-columns:
                repeat(5, minmax(0, 1fr));
            width: 100%;
            margin-top: 0.58rem;
        }

        .score-scale-assurance
        .score-scale-band-label {
            display: none;
            width: max-content;
            max-width: none;
            padding: 0.25rem 0.35rem;
            font-size: 0.58rem;
            line-height: 1.1;
            white-space: nowrap;
            overflow: visible;
        }

        .score-scale-assurance
        .score-scale-band-label:first-child,
        .score-scale-assurance
        .score-scale-band-label:last-child,
        .score-scale-assurance
        .score-scale-band-label.is-active {
            display: block;
            transform: none;
        }

        .score-scale-assurance
        .score-scale-band-label:nth-child(1) {
            grid-column: 1;
            justify-self: start;
            padding-left: 0;
        }

        .score-scale-assurance
        .score-scale-band-label:nth-child(2) {
            grid-column: 2;
            justify-self: center;
        }

        .score-scale-assurance
        .score-scale-band-label:nth-child(3) {
            grid-column: 3;
            justify-self: center;
        }

        .score-scale-assurance
        .score-scale-band-label:nth-child(4) {
            grid-column: 4;
            justify-self: center;
        }

        .score-scale-assurance
        .score-scale-band-label:nth-child(5) {
            grid-column: 5;
            justify-self: end;
            padding-right: 0;
        }
    }
}

/* END RESPONSIVE ASSURANCE SCALE THREE-LABEL ROW V7 */


/* RESPONSIVE ASSURANCE LABEL SIZE MATCH V8 */

/*
 * Match the simplified assurance-stage labels to the
 * existing exposure-stage label size.
 *
 * The container query covers mobile, tablet columns and
 * any other situation where the assurance card becomes
 * narrow.
 */
@container assurance-scale (max-width: 520px) {
    .score-scale-assurance
    .score-scale-band-label {
        font-size: 0.58rem !important;
        letter-spacing: 0;
        line-height: 1.1;
    }
}

/*
 * Fallback for browsers without container-query support.
 */
@supports not (container-type: inline-size) {
    @media (max-width: 900px) {
        .score-scale-assurance
        .score-scale-band-label {
            font-size: 0.58rem !important;
            letter-spacing: 0;
            line-height: 1.1;
        }
    }
}

/* END RESPONSIVE ASSURANCE LABEL SIZE MATCH V8 */


/* FINAL SHARED STAGE FONT V11 */

/*
 * Use the genuine HTML text rather than any smaller
 * replacement text left by an earlier pseudo-element rule.
 */
html body
.score-scale-assurance
.score-scale-band-label::after {
    content: none;
    display: none;
}

/*
 * When the assurance component switches to its simplified
 * three-label layout, match the exposure-stage typography.
 */
@container assurance-scale (max-width: 520px) {
    html body
    .score-scale-assurance
    .score-scale-band-label {
        font-size: 0.58rem;
        letter-spacing: 0;
        line-height: 1.1;
    }
}

/*
 * Tablet and older-browser fallback.
 */
@supports not (container-type: inline-size) {
    @media (max-width: 900px) {
        html body
        .score-scale-assurance
        .score-scale-band-label {
            font-size: 0.58rem;
            letter-spacing: 0;
            line-height: 1.1;
        }

        html body
        .score-scale-assurance
        .score-scale-band-label::after {
            content: none;
            display: none;
        }
    }
}

/* END FINAL SHARED STAGE FONT V11 */

/* DEDICATED COMPACT ASSURANCE LABELS V12 */

.score-scale-compact-labels {
    display: none;
}

/*
 * The card itself controls the responsive switch.
 * This therefore covers mobile, tablet columns and
 * constrained split-screen layouts.
 */
@container assurance-scale (max-width: 520px) {
    /*
     * Hide the original five-label row only.
     * The five equal coloured segments remain visible.
     */
    .score-scale-assurance
    .score-scale-band-labels {
        display: none;
    }

    .score-scale-assurance
    .score-scale-compact-labels {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: center;
        width: 100%;
        margin-top: 0.58rem;
        color: var(--ink-soft);
        font-size: 0.58rem;
        font-weight: 650;
        letter-spacing: 0;
        line-height: 1.1;
    }

    .score-scale-compact-labels span {
        min-width: 0;
        padding: 0.25rem 0.35rem;
        white-space: nowrap;
    }

    .score-scale-compact-labels span:first-child {
        justify-self: start;
        padding-left: 0;
        text-align: left;
    }

    .score-scale-compact-labels span:nth-child(2) {
        justify-self: center;
        text-align: center;
    }

    .score-scale-compact-labels span:last-child {
        justify-self: end;
        padding-right: 0;
        text-align: right;
    }

    .score-scale-compact-labels .is-active {
        border-radius: 6px;
        background: rgba(28, 32, 84, 0.08);
        color: var(--ink);
        font-weight: 850;
    }
}

/*
 * Mobile exposure labels and the new assurance labels
 * use exactly the same declared font size.
 */
@media (max-width: 560px) {
    .score-scale-assurance
    .score-scale-compact-labels,
    .score-scale-exposure
    .score-scale-band-label {
        font-size: 0.58rem;
        letter-spacing: 0;
        line-height: 1.1;
    }
}

/*
 * Older-browser and tablet fallback where container
 * queries are unavailable.
 */
@supports not (container-type: inline-size) {
    @media (max-width: 900px) {
        .score-scale-assurance
        .score-scale-band-labels {
            display: none;
        }

        .score-scale-assurance
        .score-scale-compact-labels {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            align-items: center;
            width: 100%;
            margin-top: 0.58rem;
            color: var(--ink-soft);
            font-size: 0.58rem;
            font-weight: 650;
            line-height: 1.1;
        }

        .score-scale-compact-labels span:first-child {
            justify-self: start;
        }

        .score-scale-compact-labels span:nth-child(2) {
            justify-self: center;
        }

        .score-scale-compact-labels span:last-child {
            justify-self: end;
        }

        .score-scale-compact-labels .is-active {
            border-radius: 6px;
            background: rgba(28, 32, 84, 0.08);
            color: var(--ink);
            font-weight: 850;
        }
    }
}

/* END DEDICATED COMPACT ASSURANCE LABELS V12 */

/* UNIFIED RESPONSIVE STAGE TYPOGRAPHY V13 */

/*
 * Let the exposure scale respond to its actual card width,
 * matching the existing assurance-scale container behaviour.
 */
.score-scale-exposure {
    container-name: exposure-scale;
    container-type: inline-size;
}

/*
 * Both narrow-card label rows inherit exactly the same
 * font size. This covers mobile, tablet columns and
 * constrained split-screen layouts.
 */
@container assurance-scale (max-width: 520px) {
    .score-scale-assurance
    .score-scale-compact-labels {
        font-size: 0.54rem;
        font-weight: 650;
        letter-spacing: 0;
        line-height: 1.1;
    }

    .score-scale-assurance
    .score-scale-compact-labels > span {
        font-size: inherit !important;
        line-height: inherit !important;
    }
}

@container exposure-scale (max-width: 520px) {
    .score-scale-exposure
    .score-scale-band-labels {
        font-size: 0.54rem;
        font-weight: 650;
        letter-spacing: 0;
        line-height: 1.1;
    }

    .score-scale-exposure
    .score-scale-band-label {
        font-size: inherit !important;
        line-height: inherit !important;
    }
}

/*
 * Preserve the stronger emphasis of whichever stage
 * is active without changing its actual text size.
 */
.score-scale-compact-labels .is-active,
.score-scale-exposure
.score-scale-band-label.is-active {
    font-size: inherit !important;
    font-weight: 850;
}

/*
 * Fallback for browsers without container-query support.
 */
@supports not (container-type: inline-size) {
    @media (max-width: 900px) {
        .score-scale-assurance
        .score-scale-compact-labels,
        .score-scale-exposure
        .score-scale-band-labels {
            font-size: 0.54rem;
            font-weight: 650;
            letter-spacing: 0;
            line-height: 1.1;
        }

        .score-scale-assurance
        .score-scale-compact-labels > span,
        .score-scale-exposure
        .score-scale-band-label {
            font-size: inherit !important;
            line-height: inherit !important;
        }
    }
}

/* END UNIFIED RESPONSIVE STAGE TYPOGRAPHY V13 */

/* WHITE SCORE SCALE MARKER TEXT V14 */

html body
.score-scale-marker-value {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    opacity: 1;
    text-shadow: none;
}

/* END WHITE SCORE SCALE MARKER TEXT V14 */

/* UNIFIED ACTIVE STAGE TYPOGRAPHY V15 */

/*
 * The assurance and exposure active stages come from
 * different responsive components. Force both to use
 * identical typography at every screen width.
 */
html body
.score-scale-assurance
.score-scale-band-label.is-active,

html body
.score-scale-assurance
.score-scale-compact-labels
.is-active,

html body
.score-scale-exposure
.score-scale-band-label.is-active {
    font-size: 12px !important;
    line-height: 14px !important;
    font-weight: 850;
}

/* END UNIFIED ACTIVE STAGE TYPOGRAPHY V15 */

/* FULL IMPROVEMENT POTENTIAL PANEL V19 */

.improvement-potential-panel {
    margin: 1.75rem 0 2rem;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    border: 1px solid rgba(32, 38, 85, 0.14);
    border-radius: 18px;
    background: linear-gradient(
        145deg,
        rgba(32, 38, 85, 0.055),
        rgba(255, 255, 255, 0.96)
    );
    box-shadow: 0 18px 45px rgba(31, 36, 73, 0.07);
}

.improvement-potential-panel h2 {
    margin: 0.25rem 0 1rem;
}

.improvement-potential-panel p {
    margin: 0.75rem 0 0;
}

.improvement-potential-panel .improvement-potential-note {
    padding-top: 0.8rem;
    border-top: 1px solid rgba(32, 38, 85, 0.12);
    color: var(--ink-soft);
    font-size: 0.9rem;
}

/* END FULL IMPROVEMENT POTENTIAL PANEL V19 */

/* RESULT UPLIFT SCENARIO CARD V1 */
.result-uplift-panel {
    margin-top: 30px;
    padding: 28px 30px;
    border: 1px solid #c9e4d0;
    border-radius: 20px;
    background:
        linear-gradient(
            135deg,
            #eef8f1 0%,
            #f7fbf8 100%
        );
    box-shadow:
        0 14px 36px
        rgba(25, 115, 58, 0.08);
}

.result-uplift-eyebrow {
    margin: 0;
    color: #19733a;
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-transform: uppercase;
}

.result-uplift-summary {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto;
    align-items: end;
    gap: 32px;
    margin-top: 15px;
}

.result-uplift-score strong {
    display: block;
    color: #19733a;
    font-size:
        clamp(
            2.35rem,
            5vw,
            3.35rem
        );
    font-weight: 850;
    letter-spacing: -0.045em;
    line-height: 1;
}

.result-uplift-change {
    display: grid;
    gap: 4px;
    justify-items: end;
    text-align: right;
}

.result-uplift-change span {
    color: #1c2054;
    font-size: 0.8rem;
    font-weight: 800;
}

.result-uplift-change strong {
    color: #19733a;
    font-size:
        clamp(
            1.25rem,
            2.6vw,
            1.75rem
        );
    font-weight: 850;
    line-height: 1.1;
}

.result-uplift-description {
    max-width: 980px;
    margin: 18px 0 0;
    color: #385d45;
    font-size: 0.95rem;
    line-height: 1.62;
}

.result-uplift-description strong {
    color: #19733a;
    font-weight: 850;
}

.result-uplift-note {
    max-width: 980px;
    margin: 10px 0 0;
    color: #66766b;
    font-size: 0.78rem;
    line-height: 1.55;
}

@media (max-width: 600px) {
    .result-uplift-panel {
        padding: 23px;
    }

    .result-uplift-summary {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .result-uplift-change {
        justify-items: start;
        padding-top: 14px;
        border-top: 1px solid
            rgba(25, 115, 58, 0.18);
        text-align: left;
    }

    .result-uplift-description {
        margin-top: 16px;
    }
}
/* END RESULT UPLIFT SCENARIO CARD V1 */

