.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

[hidden] {
    display: none !important;
}

.bizops-page {
    min-height: 100vh;
    min-height: 100svh;
    overflow-x: hidden;
    background:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
        #111827;
    background-size: 48px 48px;
    color: #fff;
}

.bizops-page::before {
    position: fixed;
    z-index: 0;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: rgba(207, 255, 83, 0.13);
    content: '';
    filter: blur(90px);
    pointer-events: none;
    right: -180px;
    top: -180px;
}

.bizops-nav,
.bizops-shell,
.bizops-footer {
    position: relative;
    z-index: 1;
}

.bizops-nav {
    display: grid;
    min-height: 88px;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bizops-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-decoration: none;
}

.bizops-logo span {
    color: var(--lime);
}

.bizops-nav p,
.bizops-time {
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
    font-weight: 700;
}

.bizops-time {
    justify-self: end;
}

.bizops-shell {
    display: grid;
    min-height: calc(100vh - 170px);
    grid-template-columns: 0.82fr 1.18fr;
    gap: clamp(36px, 7vw, 100px);
    align-items: center;
    padding-top: 55px;
    padding-bottom: 55px;
}

.bizops-kicker {
    margin: 0 0 28px;
    color: var(--lime);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.bizops-intro h1 {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(56px, 6vw, 88px);
    line-height: 0.9;
    letter-spacing: -0.07em;
}

.bizops-intro h1 em {
    color: var(--lime);
    font-style: normal;
}

.bizops-lead {
    max-width: 540px;
    margin: 32px 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    line-height: 1.75;
}

.quiz-card {
    min-height: 620px;
    padding: clamp(28px, 4.2vw, 52px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.97);
    color: var(--ink);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
}

.quiz-topline {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 42px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.quiz-progress {
    height: 5px;
    flex: 1;
    overflow: hidden;
    border-radius: 99px;
    background: #e7e8e9;
}

.quiz-progress i {
    display: block;
    width: 20%;
    height: 100%;
    border-radius: inherit;
    background: var(--orange);
    transition: width 220ms ease;
}

.quiz-step {
    display: none;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.quiz-step.is-active {
    display: grid;
    gap: 10px;
    animation: quiz-in 220ms ease-out;
}

@keyframes quiz-in {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

.quiz-step legend {
    width: 100%;
    margin-bottom: 22px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.quiz-step legend small {
    display: block;
    margin-bottom: 12px;
    color: var(--orange);
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    letter-spacing: 0.14em;
}

.quiz-option {
    position: relative;
    display: block;
}

.quiz-option input {
    position: absolute;
    opacity: 0;
}

.quiz-option > span {
    position: relative;
    display: block;
    padding: 16px 50px 16px 18px;
    border: 1px solid #e1e3e7;
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.quiz-option > span::after {
    position: absolute;
    top: 50%;
    right: 17px;
    display: grid;
    width: 21px;
    height: 21px;
    place-items: center;
    border: 1px solid #c7cbd2;
    border-radius: 50%;
    content: '';
    transform: translateY(-50%);
}

.quiz-option input:checked + span {
    border-color: var(--orange);
    background: #fff5f1;
    transform: translateX(3px);
}

.quiz-option input:checked + span::after {
    border-color: var(--orange);
    background: var(--orange);
    color: #fff;
    content: '✓';
    font-size: 12px;
    font-weight: 900;
}

.quiz-option input:focus-visible + span {
    outline: 3px solid rgba(255, 90, 54, 0.25);
    outline-offset: 2px;
}

.is-transitioning .quiz-option > span {
    pointer-events: none;
}

.quiz-option b,
.quiz-option small {
    display: block;
}

.quiz-option b {
    font-size: 14px;
}

.quiz-option small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.45;
}

.quiz-status {
    min-height: 360px;
    place-content: center;
    justify-items: start;
}

.quiz-status:not([hidden]) {
    display: grid;
}

.quiz-status__eyebrow {
    margin-bottom: 14px;
    color: var(--orange);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.quiz-status strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.04em;
}

.quiz-status p {
    max-width: 470px;
    margin: 16px 0 26px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.quiz-analysis-bar {
    position: relative;
    width: min(100%, 470px);
    height: 8px;
    overflow: hidden;
    border-radius: 99px;
    background: #e7e8e9;
}

.quiz-analysis-bar i {
    position: absolute;
    inset: 0;
    width: 44%;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, var(--orange) 35%, #ff8a70 65%, transparent);
    animation: analysis-scan 1.25s ease-in-out infinite;
}

.quiz-status > small {
    margin-top: 12px;
    color: #8b919c;
    font-size: 10px;
}

.quiz-status.is-complete .quiz-analysis-bar i {
    width: 100%;
    background: var(--lime);
    animation: none;
    transition: width 280ms ease, background 280ms ease;
}

@keyframes analysis-scan {
    0% { transform: translateX(-110%); opacity: 0.48; }
    50% { opacity: 1; }
    100% { transform: translateX(230%); opacity: 0.48; }
}

.bizops-footer {
    display: flex;
    min-height: 80px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.38);
    font-size: 10px;
}

.result-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 85% 10%, rgba(217,255,101,0.25), transparent 25%),
        #111827;
    color: #fff;
}

.handoff-shell {
    display: grid;
    width: min(620px, calc(100% - 32px));
    min-height: 100vh;
    min-height: 100svh;
    margin-inline: auto;
    place-content: center;
    justify-items: start;
}

.handoff-shell h1 {
    max-width: 560px;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(48px, 8vw, 86px);
    line-height: 0.94;
    letter-spacing: -0.065em;
}

.handoff-shell > p:not(.bizops-kicker) {
    margin: 26px 0;
    color: rgba(255, 255, 255, 0.64);
}

.result-shell {
    width: min(1040px, calc(100% - 28px));
    margin-inline: auto;
    padding: 55px 0 80px;
}

.result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.result-header span:last-child {
    color: rgba(255, 255, 255, 0.46);
    font-size: 11px;
}

.result-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
}

.result-main,
.result-lead-card {
    border-radius: 30px;
    background: #fff;
    color: var(--ink);
}

.result-main {
    padding: clamp(34px, 6vw, 68px);
}

.result-main h1 {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(48px, 7vw, 82px);
    line-height: 0.91;
    letter-spacing: -0.07em;
}

.result-main h1 em {
    color: var(--orange);
    font-style: normal;
}

.result-summary {
    margin: 28px 0 35px;
    color: #555d6d;
    font-size: 16px;
    line-height: 1.75;
}

.result-focus {
    padding: 24px;
    border-left: 4px solid var(--orange);
    border-radius: 0 16px 16px 0;
    background: #f5f3ee;
}

.result-focus span {
    color: var(--orange);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.result-focus h2 {
    margin: 8px 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
}

.result-focus p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.result-steps {
    display: grid;
    gap: 10px;
    margin-top: 30px;
}

.result-steps div {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    line-height: 1.55;
}

.result-steps b {
    color: var(--orange);
}

.result-lead-card {
    align-self: start;
    padding: clamp(28px, 5vw, 48px);
    background: var(--lime);
}

.result-lead-card h2 {
    margin: 0 0 14px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.result-lead-card > p {
    margin: 0 0 26px;
    font-size: 13px;
    line-height: 1.65;
}

.result-lead-card .field input {
    border-color: rgba(16, 19, 26, 0.2);
    background: rgba(255, 255, 255, 0.75);
}

.result-lead-card .checkline {
    color: rgba(16, 19, 26, 0.7);
}

.result-privacy {
    margin-top: 16px !important;
    color: rgba(16, 19, 26, 0.55);
    font-size: 9px !important;
}

.result-retake {
    display: inline-block;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.thanks-card {
    width: min(660px, calc(100% - 28px));
    margin: 10vh auto;
    padding: clamp(38px, 7vw, 74px);
    border-radius: 32px;
    background: #fff;
    color: var(--ink);
    text-align: center;
}

.thanks-card .success-mark {
    margin-inline: auto;
}

.thanks-card h1 {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(46px, 8vw, 78px);
    line-height: 0.94;
    letter-spacing: -0.065em;
}

.thanks-card p {
    margin: 25px auto;
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .bizops-shell,
    .result-grid {
        grid-template-columns: 1fr;
    }

    .bizops-intro {
        padding: 28px 0 0;
    }

    .quiz-card {
        min-height: 560px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .bizops-nav {
        min-height: 68px;
        grid-template-columns: 1fr auto;
    }

    .bizops-nav p {
        display: none;
    }

    .bizops-shell {
        min-height: auto;
        gap: 24px;
        padding-top: 14px;
        padding-bottom: 28px;
    }

    .bizops-intro h1 {
        max-width: 520px;
        font-size: clamp(42px, 13.5vw, 60px);
        line-height: 0.95;
    }

    .bizops-kicker {
        margin-bottom: 16px;
        font-size: 9px;
    }

    .bizops-lead {
        margin: 20px 0 0;
        font-size: 14px;
        line-height: 1.6;
    }

    .quiz-card {
        min-height: 0;
        padding: 22px 16px 20px;
        border-radius: 20px;
    }

    .quiz-topline {
        gap: 12px;
        margin-bottom: 24px;
    }

    .quiz-step legend {
        margin-bottom: 16px;
        font-size: clamp(24px, 7.6vw, 32px);
        line-height: 1.08;
    }

    .quiz-option > span {
        min-height: 60px;
        padding: 13px 46px 13px 14px;
    }

    .quiz-option b {
        font-size: 13px;
    }

    .quiz-option small {
        font-size: 9px;
    }

    .quiz-status {
        min-height: 300px;
    }

    .quiz-status p {
        margin: 14px 0 22px;
    }

    .bizops-footer,
    .result-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding: 24px 0;
    }

    .bizops-footer {
        min-height: 0;
        align-items: center;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .quiz-analysis-bar i {
        width: 70%;
        animation: none;
    }
}

/* Calm, familiar quiz theme with larger targets and mobile-first readability. */
.bizops-page {
    background: #f3f6fa;
    color: #26364d;
}

.bizops-page::before {
    display: none;
}

.bizops-nav {
    display: flex;
    min-height: 72px;
    gap: 18px;
    justify-content: space-between;
    border-bottom: 1px solid #dfe5ec;
    color: #26364d;
}

.bizops-logo {
    color: #26364d;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 19px;
    letter-spacing: -0.02em;
}

.bizops-logo span {
    color: #2f6fca;
}

.bizops-nav p,
.bizops-time {
    color: #66758b;
    font-size: 12px;
    letter-spacing: 0;
}

.bizops-shell {
    display: block;
    width: min(760px, calc(100% - 32px));
    min-height: calc(100vh - 152px);
    padding-top: 36px;
    padding-bottom: 56px;
}

.bizops-intro {
    max-width: 660px;
    margin: 0 auto 28px;
    padding: 0;
    text-align: center;
}

.bizops-kicker {
    margin-bottom: 12px;
    color: #2f6fca;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 12px;
    letter-spacing: 0.08em;
}

.bizops-intro h1 {
    margin: 0;
    color: #22334b;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(34px, 5vw, 48px);
    line-height: 1.14;
    letter-spacing: -0.035em;
}

.bizops-lead {
    max-width: 620px;
    margin: 18px auto 0;
    color: #56657a;
    font-size: 17px;
    line-height: 1.65;
}

.quiz-card {
    min-height: 540px;
    padding: clamp(26px, 5vw, 42px);
    border: 1px solid #dfe5ec;
    border-radius: 18px;
    background: #fff;
    color: #26364d;
    box-shadow: 0 12px 34px rgba(38, 54, 77, 0.08);
}

.quiz-topline {
    margin-bottom: 32px;
    color: #66758b;
    font-size: 11px;
    letter-spacing: 0.025em;
}

.quiz-progress {
    height: 8px;
    background: #e4e9f0;
}

.quiz-progress i {
    background: #2f6fca;
}

.quiz-step.is-active {
    gap: 12px;
}

.quiz-step legend {
    margin-bottom: 22px;
    color: #22334b;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(27px, 4.5vw, 36px);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.03em;
}

.quiz-step legend small {
    margin-bottom: 10px;
    color: #2f6fca;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 11px;
    letter-spacing: 0.08em;
}

.quiz-option > span {
    min-height: 72px;
    padding: 16px 58px 16px 20px;
    border: 2px solid #dce3ec;
    border-radius: 12px;
    background: #fff;
    transition: border-color 140ms ease, background 140ms ease;
}

.quiz-option > span::after {
    right: 19px;
    width: 25px;
    height: 25px;
    border: 2px solid #aeb8c7;
}

.quiz-option input:checked + span {
    border-color: #2f6fca;
    background: #eef5ff;
    transform: none;
}

.quiz-option input:checked + span::after {
    border-color: #2f6fca;
    background: #2f6fca;
    font-size: 14px;
}

.quiz-option input:focus-visible + span {
    outline-color: rgba(47, 111, 202, 0.3);
}

.quiz-option b {
    color: #26364d;
    font-size: 17px;
    line-height: 1.35;
}

.quiz-option small {
    margin-top: 5px;
    color: #66758b;
    font-size: 13px;
    line-height: 1.45;
}

@media (hover: hover) {
    .quiz-option > span:hover {
        border-color: #91acd2;
        background: #f8fbff;
    }
}

.quiz-status {
    min-height: 390px;
}

.quiz-status__eyebrow {
    color: #2f6fca;
    font-size: 11px;
}

.quiz-status strong {
    color: #22334b;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(30px, 5vw, 40px);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.quiz-status p {
    color: #56657a;
    font-size: 15px;
}

.quiz-analysis-bar {
    height: 10px;
    background: #e4e9f0;
}

.quiz-analysis-bar i {
    background: linear-gradient(90deg, transparent, #2f6fca 35%, #79a6e3 65%, transparent);
}

.quiz-status.is-complete .quiz-analysis-bar i {
    background: #67a877;
}

.bizops-footer {
    min-height: 80px;
    justify-content: center;
    gap: 24px;
    border-top-color: #dfe5ec;
    color: #748197;
    font-size: 11px;
}

.bizops-footer nav {
    display: flex;
    gap: 16px;
}

.bizops-footer a {
    color: #5c6d83;
    text-underline-offset: 3px;
}

.bizops-footer a:hover {
    color: #2f6fca;
}

.result-page {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background: #f3f6fa;
    color: #26364d;
}

.handoff-shell {
    flex: 1;
    justify-items: center;
    text-align: center;
}

.handoff-shell .bizops-kicker {
    color: #2f6fca;
}

.handoff-shell h1 {
    color: #22334b;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(40px, 7vw, 62px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.handoff-shell > p:not(.bizops-kicker) {
    color: #66758b;
    font-size: 16px;
}

.handoff-button {
    min-width: 230px;
    margin-top: 10px;
    background: #2f6fca;
}

.handoff-button:hover {
    background: #285fae;
}

.handoff-note {
    display: block;
    max-width: 520px;
    margin-top: 20px;
    color: #748197;
    font-size: 12px;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .bizops-nav {
        min-height: 64px;
    }

    .bizops-time {
        font-size: 11px;
    }

    .bizops-shell {
        width: min(100% - 20px, 760px);
        padding-top: 22px;
        padding-bottom: 32px;
    }

    .bizops-intro {
        margin-bottom: 20px;
        text-align: left;
    }

    .bizops-kicker {
        margin-bottom: 9px;
    }

    .bizops-intro h1 {
        font-size: clamp(30px, 9.5vw, 38px);
        line-height: 1.16;
    }

    .bizops-lead {
        margin-top: 12px;
        font-size: 16px;
        line-height: 1.55;
    }

    .quiz-card {
        min-height: 0;
        padding: 22px 14px 18px;
        border-radius: 14px;
        box-shadow: 0 8px 24px rgba(38, 54, 77, 0.07);
    }

    .quiz-topline {
        margin-bottom: 24px;
    }

    .quiz-step legend {
        margin-bottom: 17px;
        font-size: clamp(25px, 7.6vw, 31px);
        line-height: 1.2;
    }

    .quiz-option > span {
        min-height: 68px;
        padding: 15px 52px 15px 16px;
    }

    .quiz-option > span::after {
        right: 15px;
    }

    .quiz-option b {
        font-size: 16px;
    }

    .quiz-option small {
        font-size: 12px;
    }

    .quiz-status {
        min-height: 330px;
    }

    .bizops-footer {
        padding-inline: 16px;
    }

    .bizops-footer nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .handoff-button {
        width: min(100%, 320px);
    }
}
