:root {
    --paper: #EEF1F4;
    --surface: #FFFFFF;
    --ink: #10151C;
    --muted: #576270;
    --faint: #8A94A0;
    --line: #D5DCE3;
    --line-soft: #E6EBEF;
    --blueprint: #6eda6e;
    --blueprint-bright: #6eda6e;
    --blueprint-wash: #767e92;
    --green: #1F9E6A;
    --yellow: #E0A21A;
    --orange: #E4772B;
    --red: #D23F3F;
    --shadow: 0 15px 62px 0 rgba(65, 69, 105, 0.08);
    --radius: 16px;
    --maxw: 760px;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto
}

.masthead {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto 22px;
    max-width: var(--maxw)
}

.mark {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    flex: 0 0 auto;
    background: var(--blueprint);
    position: relative;
    overflow: hidden;
}

    .mark::before, .mark::after {
        content: "";
        position: absolute;
        background: rgba(255,255,255,.85)
    }

    .mark::before {
        left: 9px;
        top: 7px;
        width: 2px;
        height: 20px
    }

    .mark::after {
        left: 9px;
        top: 16px;
        width: 16px;
        height: 2px
    }

.brand {
    font-weight: 700;
    letter-spacing: .2px;
    font-size: 15px
}

    .brand small {
        display: block;
        font-weight: 400;
        font-size: 11px;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--faint)
    }

/* ---- Card ---- */
.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.card-pad {
    padding: 34px
}

@media (max-width:560px) {
    .card-pad {
        padding: 22px
    }

    body {
        padding: 16px 12px 48px
    }
}

.eyebrow {
    font-size: 14px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--blueprint-bright);
    font-weight: 500;
    margin: 0 0 14px;
}

/* ---- Intro ---- */
.hero h1 {
    font-weight: 700;
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -.5px;
    margin: 0 0 14px;
}

    .hero h1 .u {
        background: linear-gradient(180deg,transparent 62%, var(--line-soft) 62%);
        padding: 0 2px;
    }

.hero p.lede {
    font-size: 16.5px;
    color: var(--muted);
    margin: 0 0 24px;
    max-width: 52ch
}

.metricstrip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 0 0 26px;
}

@media (max-width:480px) {
    .metricstrip {
        grid-template-columns: 1fr
    }
}

.metricstrip .m {
    border: 1px solid var(--line-soft);
    border-radius: 11px;
    padding: 16px 16px;
    background: #FBFCFD;
}

    .metricstrip .m .k {
        font-size: 11px;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--faint)
    }

    .metricstrip .m .t {
        font-weight: 600;
        font-size: 16px;
        margin-top: 3px
    }

    .metricstrip .m .d {
        font-size: 13px;
        color: var(--muted);
        margin-top: 5px;
        line-height: 1.4
    }

.facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none
}

    .facts li {
        font-size: 12.5px;
        color: var(--muted);
        display: flex;
        align-items: center;
        gap: 7px
    }

        .facts li::before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--green);
            flex: 0 0 auto
        }

/* ---- Buttons ---- */
.btn {
    font-weight: 600;
    font-size: 15px;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 13px 22px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
    text-decoration: none;
}

    .btn:active {
        transform: translateY(1px)
    }

.btn-primary {
    background: var(--blueprint);
    color: #fff
}

    .btn-primary:hover {
        background: var(--blueprint-bright);
        box-shadow: 0 6px 18px rgba(27,58,107,.28)
    }

.btn-ghost {
    background: transparent;
    color: var(--muted);
    border-color: var(--line)
}

    .btn-ghost:hover {
        color: var(--ink);
        border-color: var(--faint)
    }

.btn .arw {
    transition: transform .15s ease
}

.btn-primary:hover .arw {
    transform: translateX(3px)
}

.btn[disabled] {
    opacity: .45;
    cursor: not-allowed
}

.btn:focus-visible, .opt:focus-visible, a:focus-visible {
    outline: 3px solid var(--blueprint-bright);
    outline-offset: 2px
}

/* ---- Progress ---- */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 18px
}

.counter {
    font-size: 12.5px;
    letter-spacing: .06em;
    color: var(--muted)
}

    .counter b {
        color: var(--ink)
    }

.track {
    height: 5px;
    background: var(--line-soft);
    border-radius: 99px;
    overflow: hidden;
    flex: 1;
    margin: 0 0 0 16px;
    max-width: 280px
}

    .track > i {
        display: block;
        height: 100%;
        background: var(--blueprint);
        border-radius: 99px;
        transition: width .35s cubic-bezier(.4,0,.2,1)
    }

/* ---- Question ---- */
.qkicker {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--faint);
    margin: 0 0 8px
}

.qtitle {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.18;
    letter-spacing: -.3px;
    margin: 0 0 8px
}

.qhelp {
    font-size: 14px;
    color: var(--muted);
    margin: 0 0 20px;
    max-width: 56ch
}

.opts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 24px
}

.opt {
    text-align: left;
    width: 100%;
    cursor: pointer;
    background: #FBFCFD;
    border: 1.5px solid var(--line);
    border-radius: 11px;
    padding: 15px 16px 15px 15px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    font: inherit;
    color: var(--ink);
    transition: border-color .12s ease, background .12s ease, box-shadow .12s ease;
}

    .opt:hover {
        border-color: var(--blueprint-bright);
        background: #fff
    }

    .opt .dot {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        border: 2px solid var(--line);
        flex: 0 0 auto;
        margin-top: 1px;
        display: grid;
        place-items: center;
        transition: border-color .12s ease;
    }

        .opt .dot::after {
            content: "";
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--blueprint);
            transform: scale(0);
            transition: transform .12s ease
        }

    .opt[aria-checked="true"] {
        border-color: var(--blueprint);
        background: var(--line-soft);
        box-shadow: inset 0 0 0 1px var(--blueprint)
    }

        .opt[aria-checked="true"] .dot {
            border-color: var(--blueprint)
        }

            .opt[aria-checked="true"] .dot::after {
                transform: scale(1)
            }

    .opt .lab {
        font-size: 15px;
        line-height: 1.4
    }

    .opt .key {
        font-size: 11px;
        color: var(--faint);
        border: 1px solid var(--line);
        border-radius: 5px;
        padding: 1px 6px;
        margin-left: auto;
        flex: 0 0 auto;
        align-self: center;
    }

@media (max-width:480px) {
    .opt .key {
        display: none
    }
}

.qnav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

/* ---- Result ---- */
.verdict {
    border-radius: 12px;
    padding: 20px 22px;
    margin: 0 0 26px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .verdict .qlabel {
        font-size: 11.5px;
        letter-spacing: .16em;
        text-transform: uppercase;
        opacity: .9;
        margin: 0 0 8px
    }

    .verdict h2 {
        font-weight: 700;
        font-size: 26px;
        letter-spacing: -.4px;
        margin: 0 0 10px
    }

    .verdict p {
        margin: 0;
        font-size: 15px;
        line-height: 1.5;
        opacity: .96;
        max-width: 60ch
    }

.gauges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 0 0 26px
}

@media (max-width:560px) {
    .gauges {
        grid-template-columns: 1fr
    }
}

.gauge {
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    padding: 18px 18px 16px;
    background: #FBFCFD
}

    .gauge h3 {
        font-size: 11px;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--faint);
        margin: 0 0 4px;
        font-weight: 500
    }

    .gauge .num {
        font-weight: 700;
        font-size: 40px;
        line-height: 1;
        letter-spacing: -1px
    }

        .gauge .num span {
            font-size: 18px;
            color: var(--faint);
            font-weight: 500
        }

    .gauge .band {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-size: 12px;
        font-weight: 500;
        margin: 8px 0 0;
        padding: 3px 10px;
        border-radius: 99px
    }

        .gauge .band i {
            width: 8px;
            height: 8px;
            border-radius: 50%
        }

    .gauge .headline {
        font-size: 13.5px;
        color: var(--muted);
        margin: 10px 0 0;
        line-height: 1.45
    }

    .gauge svg {
        width: 100%;
        height: auto;
        display: block;
        margin: 2px 0 6px
    }

.section {
    margin: 0 0 26px
}

    .section > h4 {
        font-size: 11.5px;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--blueprint-bright);
        margin: 0 0 14px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .section > h4::after {
            content: "";
            height: 1px;
            background: var(--line-soft);
            flex: 1
        }

/* Quadrant map */
.matrix-wrap {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 20px;
    align-items: center
}

@media (max-width:560px) {
    .matrix-wrap {
        grid-template-columns: 1fr
    }
}

.matrix {
    position: relative;
    aspect-ratio: 1/1;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    background: #fff
}

    .matrix .cell {
        position: absolute;
        width: 50%;
        height: 50%;
        display: flex;
        padding: 10px;
        font-size: 10.5px;
        letter-spacing: .02em;
        color: var(--faint);
        text-transform: uppercase
    }

    .matrix .c-tl {
        top: 0;
        left: 0;
        align-items: flex-start;
        justify-content: flex-start;
        border-right: 1px dashed var(--line);
        border-bottom: 1px dashed var(--line)
    }

    .matrix .c-tr {
        top: 0;
        right: 0;
        align-items: flex-start;
        justify-content: flex-end;
        text-align: right;
        border-bottom: 1px dashed var(--line)
    }

    .matrix .c-bl {
        bottom: 0;
        left: 0;
        align-items: flex-end;
        justify-content: flex-start;
        border-right: 1px dashed var(--line)
    }

    .matrix .c-br {
        bottom: 0;
        right: 0;
        align-items: flex-end;
        justify-content: flex-end;
        text-align: right
    }

    .matrix .cell.active {
        background: var(--blueprint-wash);
        color: var(--blueprint)
    }

    .matrix .marker {
        position: absolute;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: var(--blueprint);
        border: 3px solid #fff;
        box-shadow: 0 2px 8px rgba(27,58,107,.5);
        transform: translate(-50%,50%);
        transition: left .5s ease, bottom .5s ease;
        z-index: 2
    }

    .matrix .axis {
        position: absolute;
        font-size: 9px;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--faint)
    }

.axis-x {
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%)
}

.axis-y {
    top: 50%;
    left: 4px;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center
}

.matrix-legend .m-cap {
    font-weight: 600;
    font-size: 15px;
    margin: 0 0 6px
}

.matrix-legend p {
    font-size: 13.5px;
    color: var(--muted);
    margin: 0 0 12px;
    line-height: 1.45
}

.benchmark {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--blueprint);
    color: #fff;
    border-radius: 10px;
    padding: 14px 16px;
}

    .benchmark .bg-num {
        font-weight: 700;
        font-size: 30px;
        line-height: 1
    }

    .benchmark .bg-txt {
        font-size: 13.5px;
        line-height: 1.4;
        opacity: .95
    }

/* insights */
.insights {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ins {
    display: flex;
    gap: 14px;
    border: 1px solid var(--line-soft);
    border-radius: 11px;
    padding: 14px 16px;
    background: #FBFCFD
}

    .ins .rk {
        font-weight: 600;
        font-size: 12px;
        color: #fff;
        background: var(--blueprint);
        border-radius: 7px;
        padding: 5px 8px;
        height: fit-content;
        white-space: nowrap;
    }

    .ins .body .q {
        font-weight: 600;
        font-size: 14px;
        margin: 0 0 3px
    }

    .ins .body .txt {
        font-size: 13.5px;
        color: var(--muted);
        line-height: 1.45;
        margin: 0
    }

/* CTA */
.cta {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px;
    background: linear-gradient(180deg,#fff, #FAFBFD)
}

    .cta.hot {
        border-color: var(--blueprint);
        box-shadow: 0 0 0 1px var(--blueprint) inset
    }

    .cta h4 {
        font-weight: 700;
        font-size: 19px;
        margin: 0 0 8px;
        letter-spacing: -.2px;
        color: var(--ink)
    }

    .cta > h4::after {
        content: none
    }

    .cta p {
        font-size: 14px;
        color: var(--muted);
        margin: 0 0 16px;
        line-height: 1.5;
        max-width: 58ch
    }

    .cta p#cta-note {
        margin-top: 16px;
    }

    .cta .row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px
    }

.note {
    font-size: 14px;
    color: var(--faint);
    margin: 14px 0 0
}

/* email */
.email {
    margin: 22px 0 0;
    border-top: 1px solid var(--line-soft);
    padding-top: 22px
}

    .email h5 {
        font-weight: 600;
        font-size: 15px;
        margin: 0 0 4px
    }

    .email p.sub {
        font-size: 13px;
        color: var(--muted);
        margin: 0 0 14px
    }

.field {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 12px
}

    .field input[type=email], .field input[type=text] {
        flex: 1;
        min-width: 220px;
        font: inherit;
        font-size: 15px;
        padding: 12px 14px;
        border: 1.5px solid var(--line);
        border-radius: 10px;
        background: #fff;
        color: var(--ink);
        margin-bottom: 0;
    }

        .field input[type=email]:focus {
            outline: none;
            border-color: var(--blueprint-bright);
        }

.consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.45
}

.consent input {
    margin-top: 3px;
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    accent-color: var(--blueprint)
}

.consent input.valError {
    accent-color: var(--red)
}

.email-ok {
    display: none;
    background: #EAF7F0;
    border: 1px solid #BEE6D2;
    color: #0F6B45;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px
}

.restart {
    display: flex;
    justify-content: center;
    margin: 24px 0 0
}

    .restart button {
        background: none;
        border: none;
        color: var(--muted);
        font: inherit;
        font-size: 13px;
        cursor: pointer;
        text-decoration: underline;
        text-underline-offset: 3px
    }

        .restart button:hover {
            color: var(--ink)
        }

.footnote {
    max-width: var(--maxw);
    margin: 18px auto 0;
    font-size: 11px;
    color: var(--faint);
    text-align: center;
    line-height: 1.6
}

[hidden] {
    display: none !important
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important
    }
}

.sectionQuiz {
    text-align: left;
}

@media (min-width:1921px) {
    .brand {
        font-size: 17px
    }

        .brand small {
            font-size: 13px;
        }

    .eyebrow {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p.lede {
        font-size: 18.5px;
    }

        .metricstrip .m .k {
            font-size: 13px;
        }

        .metricstrip .m .t {
            font-size: 18px;
        }

        .metricstrip .m .d {
            font-size: 15px;
        }

        .facts li {
            font-size: 14.5px;
        }

    .btn {
        font-size: 17px;
    }

    .counter {
        font-size: 14.5px;
    }

    .qkicker {
        font-size: 13px;
    }

    .qtitle {
        font-size: 26px;
    }

    .qhelp {
        font-size: 16px;
    }

        .opt .lab {
            font-size: 17px;
        }

        .opt .key {
            font-size: 13px;
        }

        .verdict .qlabel {
            font-size: 13.5px;
        }

        .verdict h2 {
            font-size: 28px;
        }

        .verdict p {
            font-size: 17px;
        }

        .gauge h3 {
            font-size: 13px;
        }

        .gauge .num {
            font-size: 42px;
        }

            .gauge .num span {
                font-size: 20px;
            }

        .gauge .band {
            font-size: 14px;
        }

        .gauge .headline {
            font-size: 15.5px;
        }

        .section > h4 {
            font-size: 13.5px;
        }

        .matrix .cell {
            font-size: 12.5px;
        }

        .matrix .axis {
            font-size: 11px;
        }

    .matrix-legend .m-cap {
        font-size: 17px;
    }

    .matrix-legend p {
        font-size: 15.5px;
    }

        .benchmark .bg-num {
            font-size: 32px;
        }

        .benchmark .bg-txt {
            font-size: 15.5px;
        }

        .ins .rk {
            font-size: 14px;
        }

        .ins .body .q {
            font-size: 16px;
        }

        .ins .body .txt {
            font-size: 15.5px;
        }

        .cta h4 {
            font-size: 21px;
        }

        .cta p {
            font-size: 16px;
        }

    .note {
        font-size: 16px;
    }

        .email h5 {
            font-size: 17px;
        }

        .email p.sub {
            font-size: 15px;
        }

        .field input[type=email], .field input[type=text] {
            font-size: 17px;
        }

    .consent {
        font-size: 14.5px;
    }

    .email-ok {
        font-size: 16px
    }

        .restart button {
            font-size: 15px;
        }

    .footnote {
        font-size: 13px;
    }
}
