:root {
    --app-ink: #14304a;
    --app-muted: #64758a;
    --app-blue: #2ba9df;
    --app-blue-dark: #0878b6;
    --app-green: #70b94c;
    --app-paper: #ffffff;
    --app-mist: #f1f5f8;
    --app-line: #d8e1e8;
    --app-danger: #c83c45;
    --app-warning: #a76500;
    --app-shadow: 0 18px 50px rgba(27, 68, 100, .12);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    color: var(--app-ink);
    background: var(--app-mist);
    font-family: "Noto Sans TC", "Microsoft JhengHei", system-ui, sans-serif;
}

a { color: inherit; }

.applicant-auth-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 14%, rgba(43, 169, 223, .16), transparent 27rem),
        linear-gradient(135deg, #f8fbfd 0%, #edf4f8 54%, #f8fbfd 100%);
}

.applicant-auth-header,
.applicant-portal-header {
    min-height: 88px;
    padding: 14px clamp(20px, 5vw, 76px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(255, 255, 255, .95);
    border-bottom: 1px solid var(--app-line);
}

.award-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--app-ink);
    text-decoration: none;
}

.award-brand img {
    border-radius: 50%;
    object-fit: cover;
}

.award-brand span { display: grid; line-height: 1.18; }
.award-brand strong { font-size: 1.22rem; letter-spacing: .04em; }
.award-brand small { margin-top: 4px; color: var(--app-blue-dark); letter-spacing: .12em; text-transform: uppercase; }

.back-home-link {
    min-height: 46px;
    padding: 9px 16px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--app-blue-dark);
    background: rgba(43, 169, 223, .06);
    border: 1px solid rgba(8, 120, 182, .2);
    border-radius: 14px 2px 14px 2px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.back-home-link svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: square;
    stroke-linejoin: miter;
}

.back-home-link:hover,
.back-home-link:focus-visible {
    color: #056da7;
    background: rgba(43, 169, 223, .12);
    border-color: rgba(8, 120, 182, .38);
    transform: translateY(-1px);
}

.applicant-auth-main {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: clamp(38px, 6vw, 78px) 0;
}

.auth-card {
    width: min(620px, 100%);
    margin: 0 auto;
    padding: clamp(28px, 5vw, 54px);
    background: var(--app-paper);
    border: 1px solid rgba(20, 48, 74, .09);
    border-radius: 28px;
    box-shadow: var(--app-shadow);
}

.auth-card--register { width: min(980px, 100%); }
.auth-card--result { max-width: 650px; text-align: center; }

.auth-card__header { margin-bottom: 30px; }
.auth-card__header--split { display: flex; justify-content: space-between; gap: 32px; align-items: flex-start; }
.auth-card__header h1,
.portal-page-header h1 { margin: 6px 0 8px; font-size: clamp(1.8rem, 4vw, 2.65rem); font-weight: 900; letter-spacing: .03em; }
.auth-card__header p,
.portal-page-header p { margin: 0; color: var(--app-muted); line-height: 1.7; }
.auth-eyebrow,
.portal-kicker { color: var(--app-blue-dark); font-size: .78rem; font-weight: 900; letter-spacing: .2em; }

.registration-state {
    min-width: 230px;
    padding: 16px 18px;
    display: grid;
    gap: 4px;
    border-left: 5px solid;
    background: #f5f8fa;
}
.registration-state.is-open { border-color: var(--app-green); }
.registration-state.is-closed { border-color: var(--app-danger); }
.registration-state span { color: var(--app-muted); font-size: .88rem; }

.validated-form,
.portal-form { display: grid; gap: 22px; }

.validated-form fieldset,
.portal-form fieldset {
    margin: 0;
    padding: 24px;
    border: 1px solid var(--app-line);
    border-radius: 18px;
}

.validated-form fieldset[disabled],
.portal-form fieldset[disabled] { opacity: .58; }

.validated-form legend,
.portal-form legend {
    float: none;
    width: auto;
    margin: 0 0 18px;
    padding: 0 10px;
    color: var(--app-blue-dark);
    font-size: 1rem;
    font-weight: 900;
}

.alternate-contact-toggle {
    width: 100%;
    min-height: 58px;
    padding: 12px 18px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    color: var(--app-blue-dark);
    background: linear-gradient(90deg, rgba(43, 169, 223, .1), rgba(43, 169, 223, .025));
    border: 1px solid rgba(8, 120, 182, .24);
    border-radius: 14px 3px 14px 3px;
    font: inherit;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
    transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.alternate-contact-toggle__symbol {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--app-blue-dark);
    border-radius: 50%;
    font-size: 1.45rem;
    line-height: 1;
}
.alternate-contact-toggle__hint { color: var(--app-muted); font-size: .82rem; font-weight: 700; }
.alternate-contact-toggle:hover,
.alternate-contact-toggle:focus-visible {
    color: #056da7;
    background: rgba(43, 169, 223, .14);
    border-color: rgba(8, 120, 182, .48);
    box-shadow: 0 8px 22px rgba(8, 120, 182, .1);
    transform: translateY(-1px);
}
.alternate-contact-toggle:focus-visible { outline: 3px solid rgba(43, 169, 223, .2); outline-offset: 3px; }
.alternate-contact-region { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .28s ease, opacity .2s ease; }
.alternate-contact-region.is-open { grid-template-rows: 1fr; opacity: 1; }
.alternate-contact-region__inner { min-height: 0; overflow: hidden; }
.alternate-contact-region fieldset { margin-top: 2px; }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.form-field { display: grid; gap: 8px; align-content: start; }
.form-field--wide { grid-column: 1 / -1; }
.form-field label { font-weight: 800; }
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 48px;
    padding: 10px 14px;
    color: var(--app-ink);
    background: #fff;
    border: 1px solid #aebcc8;
    border-radius: 12px;
    outline: none;
    transition: border-color .18s, box-shadow .18s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--app-blue);
    box-shadow: 0 0 0 4px rgba(43, 169, 223, .14);
}
.form-field input[readonly] { background: #eef2f5; color: #536474; }
.form-field small { color: var(--app-muted); font-size: .82rem; }
.form-field > span,
.field-validation-error { color: var(--app-danger); font-size: .86rem; }
.input-validation-error { border-color: var(--app-danger) !important; }

.check-field { display: inline-flex; align-items: center; gap: 9px; color: var(--app-muted); }
.check-field input { width: 18px; height: 18px; accent-color: var(--app-blue); }

.primary-action {
    min-height: 52px;
    padding: 12px 28px;
    color: #fff;
    background: linear-gradient(90deg, var(--app-blue-dark), var(--app-blue));
    border: 0;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: .08em;
    box-shadow: 0 8px 20px rgba(8, 120, 182, .22);
    cursor: pointer;
}
.primary-action:hover { filter: brightness(.95); }
.primary-action:disabled { opacity: .48; cursor: not-allowed; box-shadow: none; }
.primary-action--link { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }

.auth-card__links { margin-top: 24px; display: flex; justify-content: center; gap: 28px; }
.auth-card__links a { color: var(--app-blue-dark); font-weight: 800; text-decoration: none; }
.auth-card__links a:hover { text-decoration: underline; }

.auth-followup {
    margin-top: 20px;
    padding: 16px 18px;
    display: grid;
    gap: 6px;
    color: #5f4a16;
    background: #fff8e8;
    border-left: 4px solid #e4a227;
    line-height: 1.65;
}
.auth-followup span { color: #776332; font-size: .9rem; }
.auth-followup div { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 3px; }
.auth-followup a { color: var(--app-blue-dark); font-weight: 800; text-decoration: none; }
.auth-followup a:hover { text-decoration: underline; }

.validation-summary-valid { display: none; }
.validation-summary-errors {
    padding: 13px 16px;
    color: #8f2630;
    background: #fff0f1;
    border-left: 4px solid var(--app-danger);
}
.validation-summary-errors ul { margin: 0; padding-left: 20px; }

.result-mark {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--app-green);
    border-radius: 50%;
    font-size: 2.1rem;
    font-weight: 900;
}
.result-mark--error { background: var(--app-danger); }
.credential-panel { margin: 28px 0; display: grid; gap: 1px; overflow: hidden; text-align: left; background: var(--app-line); border: 1px solid var(--app-line); border-radius: 14px; }
.credential-panel div { padding: 14px 18px; display: grid; grid-template-columns: 120px 1fr; background: #fff; }
.credential-panel dt { color: var(--app-muted); }
.credential-panel dd { margin: 0; font-weight: 900; word-break: break-all; }
.credential-panel--compact { margin-top: 0; }
.result-actions { margin-top: 24px; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 18px; }
.secondary-action { color: var(--app-blue-dark); font-weight: 900; text-decoration: none; }
.secondary-action:hover { text-decoration: underline; }

.applicant-footer {
    padding: 24px clamp(20px, 5vw, 76px);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    color: var(--app-muted);
    font-size: .82rem;
}

.applicant-footer__support {
    max-width: 480px;
    margin: 0;
    display: grid;
    gap: 3px;
    color: inherit;
    font-style: normal;
    line-height: 1.65;
    text-align: right;
}

.applicant-portal-body { min-height: 100vh; }
.applicant-portal-header { position: sticky; top: 0; z-index: 20; }
.applicant-account-menu { position: relative; }
.applicant-account-trigger {
    min-width: 210px;
    padding: 7px 10px 7px 8px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--app-ink);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 14px;
    cursor: pointer;
    transition: background-color .18s, border-color .18s, box-shadow .18s;
}
.applicant-account-trigger:hover,
.applicant-account-trigger[aria-expanded="true"] {
    background: #f4f9fc;
    border-color: var(--app-line);
    box-shadow: 0 8px 24px rgba(27, 68, 100, .1);
}
.applicant-account-trigger:focus-visible { outline: 3px solid rgba(43, 169, 223, .24); outline-offset: 2px; }
.applicant-avatar {
    width: 43px;
    height: 43px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, var(--app-blue), var(--app-blue-dark));
    border-radius: 50%;
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .28);
}
.applicant-avatar svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; }
.applicant-account-identity { min-width: 0; flex: 1; display: grid; text-align: right; line-height: 1.3; }
.applicant-account-identity span { color: var(--app-muted); font-size: .82rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.applicant-account-identity strong { letter-spacing: .06em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.applicant-account-chevron { width: 16px; height: 16px; flex: 0 0 auto; fill: none; stroke: var(--app-blue-dark); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .18s; }
.applicant-account-trigger[aria-expanded="true"] .applicant-account-chevron { transform: rotate(180deg); }
.applicant-account-dropdown {
    min-width: 210px;
    margin-top: 9px !important;
    padding: 7px;
    background: #fff;
    border: 1px solid var(--app-line);
    border-radius: 12px;
    box-shadow: 0 18px 42px rgba(27, 68, 100, .18);
}
.applicant-account-dropdown .dropdown-item {
    min-height: 44px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--app-ink);
    border-radius: 8px;
    font-weight: 800;
}
.applicant-account-dropdown .dropdown-item:hover,
.applicant-account-dropdown .dropdown-item:focus { color: var(--app-blue-dark); background: #edf8fd; }
.applicant-account-dropdown .dropdown-item svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.applicant-account-dropdown form { margin: 5px 0 0; padding-top: 5px; border-top: 1px solid var(--app-line); }
.applicant-account-dropdown .applicant-account-logout { width: 100%; color: var(--app-danger); background: transparent; border: 0; }
.applicant-account-dropdown .applicant-account-logout:hover,
.applicant-account-dropdown .applicant-account-logout:focus { color: #9e252e; background: #fff0f1; }

.applicant-portal-shell {
    min-height: calc(100vh - 88px);
    display: grid;
    grid-template-columns: 255px minmax(0, 1fr);
}

.applicant-sidebar {
    padding: 34px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border-right: 1px solid var(--app-line);
}
.applicant-sidebar nav { display: grid; gap: 8px; }
.applicant-sidebar nav a {
    padding: 13px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--app-ink);
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    transition: color .16s, background-color .16s, box-shadow .16s, transform .16s;
}
.applicant-sidebar nav a span { color: #a4b2bd; font-family: ui-monospace, monospace; font-size: .74rem; }
.applicant-sidebar nav a:not(.is-active):hover {
    color: var(--app-blue-dark);
    background: linear-gradient(90deg, #e2f4fb 0%, rgba(231, 245, 251, .68) 68%, transparent 100%);
    border-radius: 0;
    box-shadow: inset 4px 0 var(--app-blue);
    transform: translateX(3px);
}
.applicant-sidebar nav a:not(.is-active):hover span { color: #458ba9; }
.applicant-sidebar nav a.is-active,
.applicant-sidebar nav a.is-active:hover {
    color: #fff;
    background: linear-gradient(90deg, var(--app-blue-dark) 0%, #1597c9 100%);
    border-radius: 0;
    box-shadow: inset 4px 0 #8edfff;
}
.applicant-sidebar nav a.is-active span { color: #a9e0f8; }
.sidebar-logout { width: 100%; padding: 12px; color: var(--app-danger); background: transparent; border: 1px solid #e3b9bd; border-radius: 9px; font-weight: 800; }

.applicant-content { width: min(1180px, 100%); padding: clamp(28px, 4vw, 58px); }
.applicant-content--wide { width: min(1500px, 100%); }
.portal-page-header { margin-bottom: 28px; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
.policy-clock { min-width: 270px; padding: 15px 18px; display: grid; background: #fff; border-left: 5px solid var(--app-green); box-shadow: 0 8px 26px rgba(27, 68, 100, .08); }
.policy-clock span,
.policy-clock small { color: var(--app-muted); }
.policy-clock strong { margin: 2px 0; }
.policy-clock--stage { min-height: 102px; align-content: center; gap: 4px; }
.policy-clock--stage strong { font-size: 1.28rem; }
.policy-clock--stage small { font-size: .96rem; }

.portal-alert,
.form-response {
    margin-bottom: 22px;
    padding: 14px 17px;
    border-left: 5px solid;
    background: #fff;
}
.portal-alert--success,
.form-response.is-success { color: #245c22; border-color: var(--app-green); background: #f1faee; }
.portal-alert--warning { color: #7a4b00; border-color: #e4a227; background: #fff8e8; }
.portal-alert--error,
.form-response.is-error { color: #8f2630; border-color: var(--app-danger); background: #fff0f1; }

.notice-sheet {
    display: grid;
    grid-template-columns: 84px 1fr;
    background: #fff;
    border: 1px solid var(--app-line);
    box-shadow: var(--app-shadow);
}
.notice-sheet__rail { padding: 24px 12px; display: flex; flex-direction: column; align-items: center; color: #fff; background: var(--app-blue-dark); }
.notice-sheet__rail span { writing-mode: vertical-rl; letter-spacing: .2em; }
.notice-sheet__rail strong { margin-top: auto; font-size: 1.4rem; }
.notice-sheet__body { padding: clamp(24px, 4vw, 48px); }
.notice-sheet__body h2 { margin: 0 0 22px; font-size: 1.5rem; }
.notice-sheet__body ol { margin: 0; padding-left: 1.5rem; display: grid; gap: 14px; line-height: 1.75; }
.notice-emphasis { color: #039abc; font-weight: 800; }

.review-progress-card {
    max-width: 920px;
    padding: clamp(28px, 4vw, 44px);
    background: #fff;
    border: 1px solid var(--app-line);
    box-shadow: var(--app-shadow);
}
.review-progress-card h2 {
    margin: 0;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--app-line);
    font-size: 1.42rem;
    font-weight: 900;
}
.review-progress-rows {
    margin: 0;
    display: grid;
}
.review-progress-rows > div {
    min-height: 108px;
    padding: 24px 4px;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid var(--app-line);
}
.review-progress-rows dt { color: var(--app-muted); font-weight: 800; }
.review-progress-rows dd { min-height: 1.65em; margin: 0; }
.review-progress-number { font-size: clamp(1.3rem, 3vw, 1.7rem); font-weight: 900; letter-spacing: .06em; }
.review-progress-value { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.review-progress-value strong { color: var(--app-blue-dark); font-size: clamp(1.35rem, 3vw, 1.75rem); font-weight: 900; line-height: 1.45; white-space: pre-line; }
.review-period-status { color: #b73440; font-size: 1.02rem; font-weight: 900; }

.portal-form { padding: clamp(22px, 4vw, 38px); background: #fff; border: 1px solid var(--app-line); }
.portal-form--narrow { max-width: 650px; }
.portal-submit { justify-self: center; min-width: 220px; }

.document-response,
.document-card-response {
    padding: 11px 13px;
    border-left: 4px solid;
}
.document-response.is-success,
.document-card-response.is-success { color: #245c22; background: #eff9ed; border-color: var(--app-green); }
.document-response.is-error,
.document-card-response.is-error { color: #8f2630; background: #fff0f1; border-color: var(--app-danger); }

.document-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.document-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #fff;
    border: 1px solid var(--app-line);
    border-top: 5px solid #aebbc5;
    box-shadow: 0 12px 34px rgba(27, 68, 100, .08);
}
.document-card.is-open { border-top-color: var(--app-blue); }
.document-card > header { min-height: 66px; display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; }
.document-card h2 { margin: 3px 0 0; display: -webkit-box; overflow: hidden; font-size: 1.22rem; font-weight: 900; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-clamp: 2; }
.document-code { color: var(--app-muted); font-family: ui-monospace, monospace; font-size: .68rem; letter-spacing: .08em; }
.open-badge,
.closed-badge { padding: 4px 9px; flex: 0 0 auto; border: 1px solid; font-size: .72rem; font-weight: 900; }
.open-badge { color: #236825; background: #f1faee; border-color: #b7dca8; }
.closed-badge { color: #63727f; background: #f0f3f5; border-color: #cbd4da; }
.document-current { min-height: 126px; padding: 15px; display: grid; align-content: center; gap: 4px; background: #f3f7f9; border-left: 4px solid var(--app-line); }
.document-current > span { color: var(--app-muted); font-size: .82rem; }
.document-current a { display: -webkit-box; overflow: hidden; color: var(--app-blue-dark); font-weight: 900; overflow-wrap: anywhere; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-clamp: 2; }
.document-current small { color: var(--app-muted); }
.document-rules { display: flex; flex-wrap: wrap; gap: 8px 14px; color: var(--app-muted); font-size: .82rem; }
.document-rules a { color: var(--app-blue-dark); font-weight: 800; }
.document-upload-form { margin-top: auto; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
.document-upload-form button { min-width: 100px; padding: 10px 18px; color: #fff; background: var(--app-blue-dark); border: 0; font-weight: 900; }
.document-upload-form button:disabled { opacity: .55; }
.file-picker { min-width: 0; min-height: 44px; padding: 10px 13px; display: flex; align-items: center; background: #fff; border: 1px dashed #8ca2b2; cursor: pointer; }
.file-picker input { position: absolute; inline-size: 1px; block-size: 1px; opacity: 0; }
.file-picker span { color: var(--app-blue-dark); font-weight: 800; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.document-card-response { grid-column: 1 / -1; }
@media (max-width: 840px) {
    .auth-card__header--split,
    .portal-page-header { align-items: stretch; flex-direction: column; }
    .registration-state,
    .policy-clock { min-width: 0; }
    .applicant-portal-shell { grid-template-columns: 1fr; }
    .applicant-sidebar { padding: 10px; position: sticky; top: 88px; z-index: 15; border-right: 0; border-bottom: 1px solid var(--app-line); }
    .applicant-sidebar nav { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .applicant-sidebar nav a { justify-content: center; font-size: .8rem; text-align: center; }
    .applicant-sidebar nav a span { display: none; }
    .applicant-sidebar > form { display: none; }
    .applicant-content { padding: 24px 16px 46px; }
    .document-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .applicant-auth-header,
    .applicant-portal-header { min-height: 76px; padding: 10px 16px; }
    .award-brand img { width: 48px; height: 48px; }
    .award-brand strong { font-size: 1rem; }
    .award-brand small { font-size: .68rem; }
    .back-home-link {
        min-height: 42px;
        padding: 8px 11px;
        font-size: .88rem;
    }
    .back-home-link svg { width: 20px; height: 20px; }
    .auth-card { padding: 26px 20px; border-radius: 18px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-field--wide { grid-column: auto; }
    .validated-form fieldset,
    .portal-form fieldset { padding: 18px 14px; }
    .applicant-account-trigger { min-width: 0; padding-right: 6px; }
    .applicant-account-identity span { display: none; }
    .applicant-account-identity strong { max-width: 135px; }
    .applicant-sidebar { top: 76px; overflow-x: auto; }
    .applicant-sidebar nav { width: 510px; }
    .notice-sheet { grid-template-columns: 12px 1fr; }
    .notice-sheet__rail > * { display: none; }
    .review-progress-rows > div { grid-template-columns: 1fr; gap: 8px; }
    .credential-panel div { grid-template-columns: 1fr; gap: 5px; }
    .document-upload-form { grid-template-columns: 1fr; }
    .applicant-footer { align-items: flex-start; flex-direction: column; }
    .applicant-footer__support { text-align: left; }
}

@media (max-width: 460px) {
    .applicant-account-identity { display: none; }
    .applicant-account-trigger { gap: 7px; }
    .applicant-account-dropdown { min-width: 190px; }
}
