:root {
    --et-blue: #087f8c;
    --et-blue-dark: #075761;
    --et-blue-soft: #e5f5f6;
    --et-ink: #102638;
    --et-muted: #607486;
    --et-line: #d9e7e9;
    --et-bg: #f4fafb;
    --et-shadow: 0 22px 60px rgba(26, 76, 87, .10);
}

body {
    background:
        radial-gradient(circle at 7% 17%, rgba(90, 201, 207, .12), transparent 24rem),
        radial-gradient(circle at 95% 78%, rgba(255, 125, 108, .08), transparent 22rem),
        var(--et-bg);
}

.et-public-header {
    height: 84px;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(198, 220, 223, .8);
    box-shadow: 0 5px 24px rgba(29, 69, 78, .045);
    backdrop-filter: blur(14px);
}

.et-brand {
    min-width: 0;
}

.et-brand-picture {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
}

.et-brand img.et-brand-logo {
    display: block;
    width: auto;
    height: 54px;
    max-width: 210px;
    border-radius: 0;
    object-fit: contain;
}

.et-brand-mark {
    width: 52px;
    height: 52px;
}

.et-brand-copy {
    min-width: 0;
    padding-left: 12px;
    border-left: 1px solid #dce9eb;
}

.et-brand strong {
    color: #0d2838;
    font-size: 16px;
}

.et-brand small {
    color: #71828f;
}

.et-nav-button {
    color: var(--et-blue-dark) !important;
    border-color: #bed9dc;
}

.et-nav-button:hover {
    background: #edf8f8;
    border-color: #85bcc2;
}

.et-primary-button {
    background: linear-gradient(135deg, #088b97, #087783);
    box-shadow: 0 9px 22px rgba(8, 127, 140, .22);
}

.et-primary-button:hover {
    background: linear-gradient(135deg, #077c88, #066873);
}

.et-secondary-button:hover {
    background: #f1f9f9;
    border-color: #a7cdd1;
}

.et-home-hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 72px;
    border: 0;
    background:
        radial-gradient(circle at 93% 14%, rgba(255, 255, 255, .98) 0 7rem, rgba(255, 255, 255, .48) 7.1rem 12rem, transparent 12.1rem),
        radial-gradient(circle at 1% 88%, rgba(75, 190, 198, .12) 0 8rem, transparent 8.1rem),
        linear-gradient(118deg, #f5fcfc 0%, #edf9fa 52%, #f8fbfb 100%);
}

.et-home-hero::before {
    position: absolute;
    right: -125px;
    bottom: -150px;
    width: 280px;
    height: 280px;
    border: 52px solid rgba(42, 165, 174, .08);
    border-radius: 50%;
    content: "";
}

.et-home-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(330px, .7fr);
    gap: 76px;
    align-items: center;
}

.et-home-hero-copy {
    max-width: 720px;
}

.et-home-hero .et-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #0b7d87;
}

.et-home-hero .et-eyebrow i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ff7465;
    box-shadow: 0 0 0 5px rgba(255, 116, 101, .12);
}

.et-home-hero h1 {
    max-width: 720px;
    margin: 20px 0 18px;
    color: #0b2639;
    font-size: clamp(43px, 5.2vw, 70px);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.et-home-hero p {
    max-width: 670px;
    margin: 0;
    color: #5a7180;
    font-size: 18px;
}

.et-home-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.et-home-actions .et-primary-button,
.et-home-actions .et-secondary-button {
    min-height: 52px;
    padding: 0 23px;
}

.et-home-actions .et-primary-button span {
    margin-left: 11px;
    font-size: 19px;
}

.et-home-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 24px;
    color: #526b77;
    font-size: 12px;
    font-weight: 700;
}

.et-home-trust b {
    margin-right: 4px;
    color: #088893;
}

.et-journey-card {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(190, 216, 219, .92);
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 28px 70px rgba(27, 85, 94, .14);
}

.et-journey-card::before {
    position: absolute;
    inset: -10px 18px auto;
    height: 10px;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(90deg, #0b8e99, #63cbd0, #ff7d6d);
    content: "";
    opacity: .9;
}

.et-journey-label {
    display: block;
    margin-bottom: 16px;
    color: #70838f;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .11em;
}

.et-journey-step {
    display: flex;
    gap: 14px;
    padding: 17px 0;
    border-bottom: 1px solid #e3edef;
}

.et-journey-step > b {
    display: grid;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 11px;
    background: #e6f6f7;
    color: #087e89;
    font-size: 12px;
}

.et-journey-step strong,
.et-journey-step small {
    display: block;
}

.et-journey-step strong {
    color: #183142;
    font-size: 14px;
}

.et-journey-step small {
    margin-top: 4px;
    color: #748691;
    font-size: 11px;
    line-height: 1.5;
}

.et-journey-note {
    margin-top: 18px;
    padding: 14px;
    border: 1px solid #ffe1da;
    border-radius: 13px;
    background: #fff6f3;
}

.et-journey-note span,
.et-journey-note strong {
    display: block;
}

.et-journey-note span {
    color: #b75548;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.et-journey-note strong {
    margin-top: 4px;
    color: #523b38;
    font-size: 12px;
}

.et-home-tests {
    padding: 64px 0 72px;
    background: transparent;
}

.et-home-tests .et-section-heading {
    align-items: center;
}

.et-home-tests .et-kicker {
    color: #087f8c;
}

.et-home-tests .et-test-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
}

.et-home-tests .et-test-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-color: #d4e5e7;
    border-radius: 22px;
    box-shadow: 0 16px 45px rgba(27, 76, 86, .075);
}

.et-home-tests .et-test-card::after {
    position: absolute;
    top: -105px;
    right: -95px;
    width: 170px;
    height: 170px;
    border: 28px solid rgba(31, 163, 173, .065);
    border-radius: 50%;
    content: "";
}

.et-home-tests .et-test-card:hover {
    border-color: #9dcbd0;
    box-shadow: 0 24px 58px rgba(24, 91, 101, .13);
}

.et-code {
    color: #087b86;
    background: #e5f5f6;
}

.et-home-tests .et-test-card h3 {
    color: #173142;
    font-size: 25px;
}

.et-test-facts {
    border-color: #e1ebed;
}

.et-home-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    margin-top: 32px;
    border: 1px solid #d8e7e9;
    border-radius: 20px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 15px 45px rgba(30, 77, 86, .055);
}

.et-home-benefits > div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    border-right: 1px solid #e0eaec;
}

.et-home-benefits > div:last-child {
    border: 0;
}

.et-benefit-icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 12px;
    background: #e7f6f7;
    color: #087f8c;
    font-style: normal;
    font-weight: 900;
}

.et-home-benefits p,
.et-home-benefits strong,
.et-home-benefits small {
    display: block;
    margin: 0;
}

.et-home-benefits strong {
    color: #213947;
    font-size: 13px;
}

.et-home-benefits small {
    margin-top: 4px;
    color: #768893;
    font-size: 10px;
    line-height: 1.45;
}

.et-form-hero {
    border-bottom-color: #d9e8ea;
    background:
        radial-gradient(circle at 92% 12%, rgba(89, 194, 201, .13), transparent 17rem),
        linear-gradient(120deg, #fff 0%, #f1fafb 100%);
}

.et-fee-card {
    background: linear-gradient(145deg, #087f8c, #075864);
    box-shadow: 0 18px 38px rgba(7, 88, 100, .2);
}

.et-fee-card span {
    color: #bde9ec;
}

.et-fee-card small {
    color: #d7f3f4;
}

.et-form-section,
.et-payment-section,
.et-result-section {
    background: transparent;
}

.et-aside-muted,
.et-declaration,
.et-checkout-total {
    background: #edf7f7;
}

.et-form-card,
.et-aside-card,
.et-checkout-card,
.et-status-form,
.et-tracker-card {
    border-color: #d5e6e8;
    box-shadow: 0 18px 50px rgba(26, 78, 88, .085);
}

.et-field input:focus,
.et-field select:focus,
.et-field textarea:focus {
    border-color: #55aeb6;
    box-shadow: 0 0 0 3px rgba(8, 127, 140, .11);
}

.et-photo-actions .et-upload-button {
    color: #fff !important;
}

.et-choice-row label > span {
    color: #42526a;
}

.et-choice-row input:checked + span {
    color: #087f8c;
    border-color: #087f8c;
    background: #e5f5f6;
}

.et-public-footer {
    border-color: #d8e6e8;
    background: rgba(255, 255, 255, .92);
}

@media (max-width: 900px) {
    .et-public-header {
        height: 76px;
    }

    .et-brand {
        gap: 10px;
    }

    .et-brand img.et-brand-logo {
        width: 46px;
        height: 46px;
        max-width: 46px;
        border-radius: 11px;
    }

    .et-brand-copy {
        padding-left: 0;
        border-left: 0;
    }

    .et-brand-copy strong {
        max-width: 175px;
        overflow: hidden;
        font-size: 14px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .et-brand-copy small {
        display: none;
    }

    .et-nav nav {
        gap: 10px;
        font-size: 13px;
    }

    .et-nav nav > a {
        padding: 9px 8px;
    }

    .et-nav-button {
        padding-right: 12px !important;
        padding-left: 12px !important;
    }

    .et-home-hero-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .et-home-hero-copy {
        max-width: none;
        text-align: center;
    }

    .et-home-hero p {
        margin: 0 auto;
    }

    .et-home-hero .et-eyebrow,
    .et-home-actions,
    .et-home-trust {
        justify-content: center;
    }

    .et-journey-card {
        width: min(100%, 620px);
        margin: 0 auto;
        text-align: left;
    }

    .et-home-benefits {
        grid-template-columns: 1fr;
    }

    .et-home-benefits > div {
        border-right: 0;
        border-bottom: 1px solid #e0eaec;
    }
}

@media (max-width: 640px) {
    .et-public-header {
        height: auto;
        padding: 10px 0 0;
    }

    .et-nav {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        align-items: stretch;
    }

    .et-brand {
        gap: 9px;
        min-height: 44px;
        padding-bottom: 10px;
    }

    .et-brand img.et-brand-logo,
    .et-brand-mark {
        width: 42px;
        height: 42px;
        max-width: 42px;
        border-radius: 10px;
    }

    .et-brand-copy strong {
        max-width: none;
        font-size: 13px;
    }

    .et-nav nav {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
        gap: 0;
        border-top: 1px solid #dce9eb;
        font-size: 11px;
    }

    .et-nav nav > a,
    .et-nav nav > a:first-child {
        display: flex;
        min-width: 0;
        min-height: 42px;
        align-items: center;
        justify-content: center;
        padding: 8px 5px;
        overflow: hidden;
        text-align: center;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .et-nav nav > a + a {
        border-left: 1px solid #e4edef;
    }

    .et-nav-button {
        border: 0;
        border-radius: 0;
        background: #edf8f8;
    }

    .et-home-hero {
        padding: 54px 0 48px;
    }

    .et-home-hero h1 {
        font-size: 39px;
    }

    .et-home-actions {
        flex-direction: column;
    }

    .et-home-actions a {
        width: 100%;
    }

    .et-home-trust {
        display: grid;
        justify-content: start;
        text-align: left;
    }

    .et-journey-card {
        padding: 21px;
        border-radius: 19px;
    }

    .et-home-tests {
        padding: 42px 0 52px;
    }

    .et-home-tests .et-test-card {
        padding: 23px;
    }

    .et-home-benefits {
        margin-top: 22px;
    }
}

@media (max-width: 380px) {
    .et-public-container {
        width: min(100% - 18px, 1180px);
    }

    .et-brand img.et-brand-logo,
    .et-brand-mark {
        width: 38px;
        height: 38px;
        max-width: 38px;
    }

    .et-nav nav {
        font-size: 10px;
    }

    .et-nav nav > a,
    .et-nav nav > a:first-child {
        padding-right: 3px;
        padding-left: 3px;
    }
}

/* Session result portal */
.et-progress{grid-template-columns:repeat(4,1fr)}
.et-tracker-result{display:grid;grid-template-columns:1fr auto auto;gap:18px;align-items:center;margin:25px 0;padding:20px;border:1px solid #d7e7e8;border-radius:16px;background:linear-gradient(125deg,#f6fbfb,#eef8f9)}
.et-tracker-result.is-selected{border-color:#f1d7a9;background:linear-gradient(125deg,#fffaf0,#fff5de)}
.et-tracker-result>div:first-child span{color:#71858d;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.7px}
.et-tracker-result h3{margin:5px 0 3px;color:#163641;font-size:18px}
.et-tracker-result p{margin:0;color:#6e828a;font-size:11px}
.et-result-score{min-width:105px;padding:11px 15px;border-left:1px solid rgba(122,155,160,.24);text-align:center}
.et-result-score small,.et-result-score strong,.et-result-score span{display:block}
.et-result-score small{color:#788b92;font-size:9px;text-transform:uppercase}
.et-result-score strong{margin:2px 0;color:#087f8c;font-size:23px}
.et-result-score span{color:#819198;font-size:9px}
.et-public-result-section{min-height:calc(100vh - 150px)}
.et-result-privacy{display:flex;gap:8px;justify-content:center;margin-top:16px;color:#71838d;font-size:10px}
.et-result-privacy b{color:#087f8c}
.et-public-result-card{max-width:940px;margin:0 auto;overflow:hidden;border:1px solid #d5e5e7;border-radius:24px;background:#fff;box-shadow:0 24px 65px rgba(27,77,87,.12)}
.et-public-result-card:before{display:block;height:5px;background:linear-gradient(90deg,#0a8591,#63c9ce,#ff7e6e);content:""}
.et-public-result-card.is-selected:before{background:linear-gradient(90deg,#c78a1e,#f0c667,#0a8994)}
.et-result-card-head{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:28px 30px;border-bottom:1px solid #e1ebec;background:linear-gradient(120deg,#fff,#f2fafb)}
.et-result-card-head span{color:#087e89;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.8px}
.et-result-card-head h2{margin:7px 0 3px;color:#14333e;font-size:25px}
.et-result-card-head p{margin:0;color:#788b93;font-size:11px}
.et-result-verdict{min-width:155px;padding:13px 16px;border:1px solid #cbe3e5;border-radius:13px;background:#eaf7f7;text-align:center}
.et-public-result-card.is-selected .et-result-verdict{border-color:#efd8a7;background:#fff5da}
.et-result-verdict small,.et-result-verdict strong{display:block}
.et-result-verdict small{color:#71858d;font-size:9px}
.et-result-verdict strong{margin-top:3px;color:#087985;font-size:17px}
.et-public-result-card.is-selected .et-result-verdict strong{color:#a66b0b}
.et-result-student,.et-result-metrics{display:grid;grid-template-columns:repeat(3,1fr);margin:0 30px;border-bottom:1px solid #e2ebec}
.et-result-student>div{padding:18px 14px}
.et-result-student small,.et-result-student strong,.et-result-metrics small,.et-result-metrics strong,.et-result-metrics span{display:block}
.et-result-student small,.et-result-metrics small{margin-bottom:5px;color:#82939a;font-size:9px;text-transform:uppercase}
.et-result-student strong{color:#2a464f;font-size:12px}
.et-result-metrics{border-bottom:0}
.et-result-metrics>div{margin:24px 0;padding:8px 20px;border-right:1px solid #dfebec;text-align:center}
.et-result-metrics>div:last-child{border:0}
.et-result-metrics strong{color:#123943;font-size:27px}
.et-result-metrics span{margin-top:4px;color:#788b93;font-size:10px}
.et-result-message{margin:0 30px 25px;padding:16px 18px;border:1px solid #d8e8e9;border-radius:12px;background:#f5fafb}
.et-result-message strong{color:#087f8c;font-size:10px;text-transform:uppercase}
.et-result-message p{margin:6px 0 0;color:#5e747e;font-size:12px;line-height:1.6}
.et-public-result-card>.et-result-actions{margin:0;padding:0 30px 28px}
.et-selected-hero{padding:62px 0;background:radial-gradient(circle at 90% 20%,rgba(255,255,255,.12),transparent 14rem),linear-gradient(125deg,#087b87,#0a9099);color:#fff}
.et-selected-hero .et-eyebrow{color:#bfeaed}
.et-selected-hero h1{max-width:760px;margin:14px 0 10px;font-size:clamp(34px,5vw,54px);line-height:1.08}
.et-selected-hero p{max-width:720px;margin:0;color:rgba(255,255,255,.78);font-size:15px;line-height:1.6}
.et-selected-count{display:inline-flex;align-items:baseline;gap:8px;margin-top:22px;padding:10px 14px;border:1px solid rgba(255,255,255,.24);border-radius:11px;background:rgba(255,255,255,.1)}
.et-selected-count strong{font-size:23px}
.et-selected-count span{font-size:10px;text-transform:uppercase;letter-spacing:.6px}
.et-selected-card{overflow:hidden;border:1px solid #d6e6e8;border-radius:21px;background:#fff;box-shadow:0 20px 55px rgba(24,72,81,.09)}
.et-selected-card-head{display:flex;align-items:center;justify-content:space-between;padding:24px 28px;border-bottom:1px solid #dfeaec}
.et-selected-card-head span{color:#087f8c;font-size:9px;font-weight:800;text-transform:uppercase}
.et-selected-card-head h2{margin:5px 0 0;color:#173640;font-size:23px}
.et-selected-card-head a{color:#087f8c;font-size:11px;font-weight:800}
.et-selected-table-wrap{overflow-x:auto}
.et-selected-table{width:100%;border-collapse:collapse}
.et-selected-table th,.et-selected-table td{padding:15px 18px;border-bottom:1px solid #e5edef;color:#3e565f;font-size:11px;text-align:left}
.et-selected-table th{background:#f2f8f8;color:#6c8189;font-size:9px;text-transform:uppercase;letter-spacing:.4px}
.et-selected-table td strong,.et-selected-table td small{display:block}
.et-selected-table td small{margin-top:4px;color:#85969d;font-size:9px}
.et-merit-rank{display:inline-grid;min-width:38px;height:30px;padding:0 7px;place-items:center;border-radius:8px;background:#e5f5f6;color:#087b87;font-weight:800}
.et-selected-badge{display:inline-flex;padding:6px 9px;border-radius:20px;background:#fff2d9;color:#a66a08;font-size:9px;font-weight:800}

@media(max-width:640px){
    .et-nav nav{gap:0}
    .et-nav nav>a:not(.et-nav-button){padding:8px 5px;font-size:inherit}
    .et-brand strong{max-width:none;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
    .et-brand small{display:none}
    .et-tracker-result{align-items:stretch;grid-template-columns:1fr}
    .et-result-card-head,.et-selected-card-head{align-items:stretch;flex-direction:column}
    .et-result-score{border-top:1px solid rgba(122,155,160,.24);border-left:0}
    .et-result-student,.et-result-metrics{grid-template-columns:1fr}
    .et-result-student>div,.et-result-metrics>div{margin:0;padding:14px 0;border-right:0;border-bottom:1px solid #e2ebec;text-align:left}
    .et-result-metrics>div:last-child{border-bottom:0}
    .et-selected-hero{padding:44px 0}
}
