:root {
    --apply-navy: #071a2b;
    --apply-navy-soft: #102f46;
    --apply-teal: #0b7f7a;
    --apply-teal-bright: #13a49c;
    --apply-silver: #aeb8c4;
    --apply-mist: #eef4f5;
    --apply-paper: #ffffff;
    --apply-ink: #173044;
    --apply-muted: #607487;
    --apply-line: #d8e2e7;
    --apply-danger: #a63b3b;
    --apply-success: #08766e;
    --apply-radius: 22px;
    --apply-shadow: 0 24px 70px rgba(7, 26, 43, .10);
    --apply-serif: Georgia, "Times New Roman", serif;
    --apply-sans: Inter, "Segoe UI", Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

.apply-page,
.apply-page * {
    box-sizing: border-box;
}

.apply-page {
    background: var(--apply-paper);
    color: var(--apply-ink);
    font-family: var(--apply-sans);
    overflow: hidden;
}

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

.apply-page h1,
.apply-page h2,
.apply-page h3,
.apply-page p,
.apply-page ol,
.apply-page ul,
.apply-page dl {
    margin-top: 0;
}

.apply-page h1,
.apply-page h2 {
    color: var(--apply-navy);
    font-family: var(--apply-serif);
    font-weight: 500;
    letter-spacing: -.035em;
}

.apply-page h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(3rem, 6vw, 5.7rem);
    line-height: .98;
}

.apply-page h2 {
    margin-bottom: 18px;
    font-size: clamp(2.15rem, 4vw, 3.65rem);
    line-height: 1.04;
}

.apply-page h3 {
    color: var(--apply-navy);
    font-size: 1.08rem;
}

.apply-page p {
    color: var(--apply-muted);
    line-height: 1.75;
}

.apply-page a {
    color: inherit;
}

.apply-icon {
    width: 1.25em;
    height: 1.25em;
    flex: 0 0 auto;
    vertical-align: middle;
}

.apply-breadcrumb {
    padding-block: 18px 0;
}

.apply-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
    color: var(--apply-muted);
    font-size: .8rem;
}

.apply-breadcrumb li + li::before {
    margin-right: 8px;
    color: var(--apply-silver);
    content: "/";
}

.apply-breadcrumb a {
    text-decoration: none;
}

.apply-breadcrumb a:hover {
    color: var(--apply-teal);
}

.apply-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--apply-teal);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.apply-kicker::before {
    width: 28px;
    height: 2px;
    background: currentColor;
    content: "";
}

.apply-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 10px;
    font: 700 .93rem/1 var(--apply-sans);
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

/* Component display rules must never override the native hidden state. */
.apply-form [hidden] {
    display: none !important;
}

.apply-button:hover:not(:disabled) {
    transform: translateY(-2px);
}

.apply-button:focus-visible,
.apply-page a:focus-visible,
.apply-page input:focus-visible,
.apply-page select:focus-visible,
.apply-page textarea:focus-visible,
.apply-page summary:focus-visible {
    outline: 3px solid rgba(19, 164, 156, .32);
    outline-offset: 3px;
}

.apply-button:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.apply-button--primary {
    background: var(--apply-teal);
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(11, 127, 122, .18);
}

.apply-button--primary:hover:not(:disabled) {
    background: #086d69;
}

.apply-button--secondary {
    border-color: var(--apply-line);
    background: #fff;
    color: var(--apply-navy) !important;
}

.apply-button--secondary:hover:not(:disabled),
.apply-button--ghost:hover:not(:disabled) {
    border-color: var(--apply-teal);
    color: var(--apply-teal) !important;
}

.apply-button--ghost {
    border-color: rgba(255, 255, 255, .25);
    background: transparent;
    color: #fff !important;
}

.apply-button--light {
    background: #fff;
    color: var(--apply-navy) !important;
}

.apply-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--apply-teal) !important;
    font-size: .9rem;
    font-weight: 800;
    text-decoration: none;
}

.apply-text-link .apply-icon {
    transition: transform .2s ease;
}

.apply-text-link:hover .apply-icon {
    transform: translateX(4px);
}

.apply-system-notice,
.apply-flash {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 18px;
    border: 1px solid #cfe2e0;
    border-radius: 12px;
    background: #f1faf8;
    color: var(--apply-navy);
    font-size: .9rem;
}

.apply-system-notice {
    flex-wrap: wrap;
}

.apply-system-notice--error,
.apply-flash--error {
    border-color: #efcccc;
    background: #fff4f4;
    color: #7c2727;
}

.apply-flash--success {
    border-color: #b9ddd8;
    background: #effaf8;
    color: #08645f;
}

.apply-submission-receipt {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 22px;
    border: 1px solid #9fded5;
    border-left: 5px solid var(--apply-teal);
    border-radius: 14px;
    background: #effbf8;
    color: var(--apply-navy);
}

.apply-submission-receipt svg {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    color: var(--apply-teal);
}

.apply-submission-receipt strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.apply-submission-receipt p {
    margin: 0;
}

.apply-submission-receipt--error {
    border-color: #efb5b5;
    border-left-color: #b42318;
    background: #fff4f3;
}

.apply-hero {
    position: relative;
    padding: clamp(70px, 8vw, 116px) 0 96px;
    background:
        linear-gradient(rgba(7, 26, 43, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 26, 43, .035) 1px, transparent 1px),
        linear-gradient(130deg, #fbfdfd 20%, #f3f8f8 100%);
    background-size: 72px 72px, 72px 72px, auto;
}

.apply-hero::after {
    position: absolute;
    right: -160px;
    bottom: -200px;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(11, 127, 122, .14);
    border-radius: 50%;
    content: "";
}

.apply-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
    gap: clamp(42px, 7vw, 92px);
    align-items: center;
}

.apply-hero__copy > p {
    max-width: 680px;
    margin-bottom: 30px;
    color: #486275;
    font-size: 1.12rem;
}

.apply-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.apply-hero__visual {
    min-height: 510px;
    position: relative;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 22px;
    padding: 26px 30px 28px;
    border: 1px solid var(--apply-line);
    border-radius: var(--apply-radius);
    background: rgba(255, 255, 255, .93);
    box-shadow: var(--apply-shadow);
}

.apply-visual__head {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--apply-line);
    color: var(--apply-navy);
    font-size: .82rem;
}

.apply-visual__head span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--apply-teal);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.apply-visual__head i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--apply-teal-bright);
    box-shadow: 0 0 0 6px rgba(19, 164, 156, .11);
}

.apply-path {
    min-height: 390px;
    position: relative;
}

.apply-path__axis {
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 50%;
    border-left: 1px dashed var(--apply-silver);
}

.apply-path__curve {
    position: absolute;
    left: 10%;
    width: 76%;
    height: 50%;
    border: 5px solid var(--apply-teal);
}

.apply-path__curve--one {
    top: 5%;
    border-bottom: 0;
    border-left-color: transparent;
    border-radius: 0 80px 0 0;
    transform: skewY(8deg);
}

.apply-path__curve--two {
    bottom: 5%;
    border-top: 0;
    border-right-color: transparent;
    border-radius: 0 0 0 80px;
    transform: skewY(-8deg);
}

.apply-path__node {
    position: absolute;
    z-index: 2;
    top: 5%;
    left: 50%;
    width: 27px;
    height: 27px;
    border: 6px solid #fff;
    border-radius: 50%;
    background: var(--apply-navy);
    box-shadow: 0 0 0 3px var(--apply-teal);
    transform: translate(-50%, -50%);
}

.apply-path__node:nth-of-type(2) {
    top: 27.5%;
}

.apply-path__node:nth-of-type(3) {
    top: 50%;
}

.apply-path__node:nth-of-type(4) {
    top: 72.5%;
}

.apply-path__node:nth-of-type(5) {
    top: 95%;
}

.apply-hero__visual > ol {
    min-height: 390px;
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
}

.apply-hero__visual li {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-content: center;
    column-gap: 10px;
    border-bottom: 1px solid #edf2f4;
}

.apply-hero__visual li:last-child {
    border-bottom: 0;
}

.apply-hero__visual li span {
    grid-row: 1 / 3;
    color: var(--apply-teal);
    font-size: .68rem;
    font-weight: 800;
}

.apply-hero__visual li strong {
    color: var(--apply-navy);
    font-size: .85rem;
}

.apply-hero__visual li small {
    color: var(--apply-muted);
    font-size: .72rem;
}

.apply-notice-section {
    padding: 0 0 82px;
    background: #f3f8f8;
}

.apply-important-notice {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: start;
    padding: 28px 32px;
    border-left: 4px solid var(--apply-teal);
    border-radius: 0 16px 16px 0;
    background: var(--apply-navy);
    box-shadow: 0 16px 36px rgba(7, 26, 43, .15);
}

.apply-important-notice__icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(19, 164, 156, .17);
    color: #75e1db;
}

.apply-important-notice h2 {
    margin-bottom: 8px;
    color: #fff;
    font-family: var(--apply-sans);
    font-size: 1.25rem;
    font-weight: 750;
    letter-spacing: -.01em;
}

.apply-important-notice p {
    margin-bottom: 0;
    color: #c9d6df;
}

.apply-audience,
.apply-readiness,
.apply-tracks,
.apply-process,
.apply-governance,
.apply-faq {
    padding: 96px 0;
}

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

.apply-section-heading > p {
    max-width: 690px;
    margin-bottom: 0;
}

.apply-audience__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.apply-audience article {
    min-height: 225px;
    padding: 26px;
    border: 1px solid var(--apply-line);
    border-radius: 16px;
    background: #fff;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.apply-audience article:hover {
    border-color: #a9d1ce;
    box-shadow: 0 16px 34px rgba(7, 26, 43, .07);
    transform: translateY(-3px);
}

.apply-audience article > span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 12px;
    background: #edf8f6;
    color: var(--apply-teal);
}

.apply-audience article p {
    margin-bottom: 0;
    font-size: .9rem;
}

.apply-readiness {
    background: var(--apply-mist);
}

.apply-readiness__grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: clamp(48px, 8vw, 110px);
    align-items: center;
}

.apply-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.apply-checklist li {
    min-height: 78px;
    display: flex;
    gap: 13px;
    align-items: center;
    padding: 16px 18px;
    border: 1px solid #d4e2e3;
    border-radius: 12px;
    background: rgba(255, 255, 255, .75);
    color: #29475a;
    font-size: .87rem;
    line-height: 1.45;
}

.apply-checklist .apply-icon {
    color: var(--apply-teal);
}

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

.apply-track-card {
    padding: 30px;
    border: 1px solid var(--apply-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(7, 26, 43, .055);
}

.apply-track-card__label {
    color: var(--apply-teal);
    font-size: .66rem;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.apply-track-card h3 {
    margin: 16px 0 12px;
    font-family: var(--apply-serif);
    font-size: 1.65rem;
    font-weight: 500;
}

.apply-track-card > p {
    min-height: 88px;
    font-size: .88rem;
}

.apply-track-card dl {
    margin: 28px 0 0;
}

.apply-track-card dl > div {
    padding: 16px 0;
    border-top: 1px solid var(--apply-line);
}

.apply-track-card dt {
    margin-bottom: 6px;
    color: var(--apply-navy);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.apply-track-card dd {
    margin: 0;
    color: var(--apply-muted);
    font-size: .83rem;
    line-height: 1.55;
}

.apply-track-card--recommend {
    background: var(--apply-navy);
}

.apply-track-card--recommend h3 {
    color: #fff;
}

.apply-track-card--recommend > p {
    color: #bdccd6;
}

.apply-track-card--recommend .apply-track-card__note {
    min-height: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #77d4cf;
    font-size: .78rem;
}

.apply-process {
    background: #f7fafb;
}

.apply-process__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: 0;
    padding: 0;
    counter-reset: process;
    list-style: none;
}

.apply-process__list li {
    min-height: 260px;
    position: relative;
    padding: 22px 24px 24px;
    border-top: 1px solid var(--apply-line);
    border-bottom: 1px solid var(--apply-line);
    border-left: 1px solid var(--apply-line);
    background: #fff;
}

.apply-process__list li:first-child {
    border-radius: 16px 0 0 16px;
}

.apply-process__list li:last-child {
    border-right: 1px solid var(--apply-line);
    border-radius: 0 16px 16px 0;
}

.apply-process__number {
    color: var(--apply-silver);
    font-size: .7rem;
    font-weight: 800;
}

.apply-process__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin: 22px 0 25px;
    border-radius: 50%;
    background: #edf8f6;
    color: var(--apply-teal);
}

.apply-process__list p {
    margin-bottom: 0;
    font-size: .82rem;
    line-height: 1.6;
}

.apply-form-section {
    scroll-margin-top: 24px;
    padding: 100px 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(11, 127, 122, .15), transparent 28%),
        var(--apply-navy);
}

.apply-section-heading--light h2 {
    color: #fff;
}

.apply-section-heading--light p {
    color: #b9cad5;
}

.apply-current-record {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
}

.apply-current-record div {
    display: grid;
    gap: 5px;
}

.apply-current-record span {
    color: #8fa8b8;
    font-size: .68rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.apply-current-record strong {
    color: #fff;
    font-size: .84rem;
}

.apply-current-record > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #73d5d0;
    font-size: .8rem;
    font-weight: 800;
    text-decoration: none;
}

.apply-form {
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .22);
    overflow: hidden;
}

.apply-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.apply-progress {
    padding: 26px 30px 22px;
    border-bottom: 1px solid var(--apply-line);
    background: #f6f9fa;
}

.apply-progress__bar {
    height: 4px;
    margin-bottom: 20px;
    border-radius: 4px;
    background: #dbe5e8;
    overflow: hidden;
}

.apply-progress__bar span {
    width: var(--progress, 12.5%);
    height: 100%;
    display: block;
    border-radius: inherit;
    background: var(--apply-teal);
    transition: width .3s ease;
}

.apply-progress ol {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.apply-progress button {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--apply-muted);
    font: 700 .67rem/1.25 var(--apply-sans);
    text-align: left;
    cursor: pointer;
}

.apply-progress button > span {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    margin-bottom: 7px;
    border: 1px solid var(--apply-silver);
    border-radius: 50%;
    background: #fff;
    color: var(--apply-muted);
    font-size: .62rem;
}

.apply-progress button > small {
    display: block;
    font: inherit;
}

.apply-progress li.is-active button,
.apply-progress li.is-complete button {
    color: var(--apply-navy);
}

.apply-progress li.is-active button > span,
.apply-progress li.is-complete button > span {
    border-color: var(--apply-teal);
    background: var(--apply-teal);
    color: #fff;
}

.apply-error-summary {
    margin: 24px 30px 0;
    padding: 18px 20px;
    border: 1px solid #e6baba;
    border-left: 4px solid var(--apply-danger);
    border-radius: 8px;
    background: #fff6f6;
    color: #752c2c;
    font-size: .86rem;
}

.apply-error-summary p {
    margin-bottom: 8px;
    color: inherit;
    font-weight: 800;
}

.apply-error-summary ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.apply-error-summary a {
    color: inherit;
}

.apply-step {
    margin: 0;
    padding: 44px 42px 30px;
    border: 0;
}

.apply-step[hidden] {
    display: none;
}

.apply-step legend {
    width: 100%;
    display: grid;
    gap: 7px;
    margin-bottom: 12px;
    padding: 0;
    color: var(--apply-navy);
    font: 500 clamp(1.75rem, 3vw, 2.5rem)/1.1 var(--apply-serif);
}

.apply-step legend span {
    color: var(--apply-teal);
    font: 800 .68rem/1 var(--apply-sans);
    letter-spacing: .11em;
    text-transform: uppercase;
}

.apply-step__intro {
    max-width: 780px;
    margin-bottom: 32px !important;
    font-size: .9rem;
}

.apply-fields {
    display: grid;
    gap: 22px;
}

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

.apply-field {
    min-width: 0;
}

.apply-field--wide {
    grid-column: 1 / -1;
}

.apply-field label {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--apply-navy);
    font-size: .79rem;
    font-weight: 750;
}

.apply-field label em {
    color: var(--apply-teal);
    font-size: .62rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.apply-field input,
.apply-field select,
.apply-field textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #cbd8df;
    border-radius: 8px;
    background: #fff;
    color: var(--apply-navy);
    font: 400 .92rem/1.5 var(--apply-sans);
    transition: border-color .15s ease, box-shadow .15s ease;
}

.apply-field textarea {
    min-height: 106px;
    resize: vertical;
}

.apply-field input:hover,
.apply-field select:hover,
.apply-field textarea:hover {
    border-color: #9fb5c1;
}

.apply-field input:focus,
.apply-field select:focus,
.apply-field textarea:focus {
    border-color: var(--apply-teal);
    box-shadow: 0 0 0 4px rgba(11, 127, 122, .09);
    outline: 0;
}

.apply-field [aria-invalid="true"] {
    border-color: var(--apply-danger);
    box-shadow: 0 0 0 3px rgba(166, 59, 59, .08);
}

.apply-inline-error {
    margin: 7px 0 0 !important;
    color: var(--apply-danger) !important;
    font-size: .75rem;
    line-height: 1.45 !important;
}

.apply-context-note,
.apply-email-state,
.apply-upload,
.apply-review-summary,
.apply-final-notices {
    grid-column: 1 / -1;
    padding: 18px 20px;
    border: 1px solid var(--apply-line);
    border-radius: 10px;
    background: #f7fafb;
}

.apply-context-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: .84rem;
}

.apply-context-note p,
.apply-email-state p {
    margin-bottom: 0;
}

.apply-context-note--teal {
    border-color: #c1dfdc;
    background: #eff9f8;
}

.apply-email-state {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.apply-email-state--verified {
    border-color: #b9ddd8;
    background: #effaf8;
}

.apply-email-state--pending {
    border-color: #e5d8ae;
    background: #fffaf0;
}

.apply-email-state > span {
    color: var(--apply-teal);
}

.apply-email-state button {
    margin-left: auto;
}

.apply-upload {
    display: grid;
    gap: 9px;
}

.apply-upload input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px dashed #a7bac4;
    border-radius: 8px;
    background: #fff;
}

.apply-upload small {
    color: var(--apply-muted);
    line-height: 1.5;
}

.apply-declarations {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.apply-declarations label,
.apply-track-options label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 15px 16px;
    border: 1px solid var(--apply-line);
    border-radius: 9px;
    color: #304e60;
    font-size: .84rem;
    line-height: 1.55;
    cursor: pointer;
}

.apply-declarations input,
.apply-track-options input {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin-top: 1px;
    accent-color: var(--apply-teal);
}

.apply-track-options {
    display: grid;
    gap: 12px;
}

.apply-track-options label:has(input:checked) {
    border-color: var(--apply-teal);
    background: #f0faf8;
}

.apply-review-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 0;
    overflow: hidden;
}

.apply-review-summary div {
    padding: 16px 18px;
    border-bottom: 1px solid var(--apply-line);
}

.apply-review-summary div:nth-child(odd) {
    border-right: 1px solid var(--apply-line);
}

.apply-review-summary span {
    display: block;
    margin-bottom: 5px;
    color: var(--apply-muted);
    font-size: .67rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.apply-review-summary strong {
    color: var(--apply-navy);
    font-size: .86rem;
}

.apply-final-notices {
    margin-top: 22px;
}

.apply-final-notices p {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: .8rem;
}

.apply-final-notices p:last-child {
    margin-bottom: 0;
}

.apply-final-notices .apply-icon {
    color: var(--apply-teal);
}

.apply-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    padding: 24px 42px 30px;
    border-top: 1px solid var(--apply-line);
    background: #f7fafb;
}

.apply-form-actions .apply-button--ghost {
    border-color: var(--apply-line);
    color: var(--apply-navy) !important;
}

.apply-form-actions [data-next-step],
.apply-form-actions [data-submit-application] {
    margin-left: auto;
}

.apply-save-status {
    max-width: 300px;
    color: var(--apply-muted);
    font-size: .76rem;
    line-height: 1.45;
}

.apply-save-status[data-state="success"] {
    color: var(--apply-success);
}

.apply-save-status[data-state="error"] {
    color: var(--apply-danger);
}

.apply-submitted-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    align-items: center;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 16px;
    background: rgba(255, 255, 255, .07);
}

.apply-submitted-card > .apply-icon {
    width: 46px;
    height: 46px;
    padding: 10px;
    border-radius: 50%;
    background: var(--apply-teal);
    color: #fff;
}

.apply-submitted-card h3 {
    margin-bottom: 8px;
    color: #fff;
}

.apply-submitted-card p {
    margin-bottom: 0;
    color: #b9cad5;
}

.apply-governance__grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 70px;
}

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

.apply-governance article {
    padding: 28px;
    border: 1px solid var(--apply-line);
    border-radius: 16px;
    background: #fff;
}

.apply-governance article > span {
    color: var(--apply-teal);
}

.apply-governance article ul {
    margin: 18px 0 0;
    padding-left: 18px;
    color: var(--apply-muted);
    font-size: .83rem;
    line-height: 1.8;
}

.apply-fee-notice {
    padding: 46px 0;
    background: var(--apply-mist);
}

.apply-fee-notice .shell > div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: center;
}

.apply-fee-notice .shell > div > span {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #dcefeb;
    color: var(--apply-teal);
}

.apply-fee-notice h2 {
    margin-bottom: 5px;
    font-family: var(--apply-sans);
    font-size: 1.22rem;
    font-weight: 760;
    letter-spacing: 0;
}

.apply-fee-notice p {
    margin-bottom: 0;
    font-size: .86rem;
}

.apply-faq__grid {
    display: grid;
    grid-template-columns: .68fr 1.32fr;
    gap: 76px;
}

.apply-accordion details {
    border-top: 1px solid var(--apply-line);
}

.apply-accordion details:last-child {
    border-bottom: 1px solid var(--apply-line);
}

.apply-accordion summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    color: var(--apply-navy);
    font-size: .93rem;
    font-weight: 760;
    cursor: pointer;
    list-style: none;
}

.apply-accordion summary::-webkit-details-marker {
    display: none;
}

.apply-accordion summary span {
    color: var(--apply-teal);
    font-size: 1.4rem;
    font-weight: 400;
    transition: transform .2s ease;
}

.apply-accordion details[open] summary span {
    transform: rotate(45deg);
}

.apply-accordion details p {
    max-width: 760px;
    padding: 0 42px 20px 0;
    font-size: .86rem;
}

.apply-contact {
    padding: 56px 0;
    background: var(--apply-teal);
}

.apply-contact .shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.apply-contact .apply-kicker,
.apply-contact h2,
.apply-contact p {
    color: #fff;
}

.apply-contact h2 {
    margin-bottom: 7px;
    font-family: var(--apply-sans);
    font-size: 1.45rem;
    font-weight: 760;
    letter-spacing: -.015em;
}

.apply-contact p {
    margin-bottom: 0;
    opacity: .82;
}

/* Private status and publisher pages */
.apply-status-hero {
    padding: 76px 0 64px;
    background:
        radial-gradient(circle at 85% 30%, rgba(19, 164, 156, .17), transparent 24%),
        var(--apply-navy);
}

.apply-status-hero h1 {
    margin-bottom: 16px;
    color: #fff;
    font-size: clamp(2.7rem, 5vw, 4.5rem);
}

.apply-status-hero p {
    max-width: 700px;
    margin-bottom: 0;
    color: #b9cad5;
}

.apply-status-content,
.apply-publisher-records {
    min-height: 520px;
    padding: 72px 0 100px;
    background: #f4f8f9;
}

.apply-status-content__grid {
    display: grid;
    grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr);
    gap: 24px;
    align-items: start;
}

.apply-status-form,
.apply-status-result,
.apply-status-help,
.apply-record-grid article,
.apply-empty-state {
    padding: 30px;
    border: 1px solid var(--apply-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(7, 26, 43, .055);
}

.apply-status-form h2,
.apply-status-result h2,
.apply-status-help h2,
.apply-empty-state h2 {
    font-family: var(--apply-serif);
    font-size: 1.8rem;
}

.apply-status-form .apply-field {
    margin-bottom: 18px;
}

.apply-status-result__label {
    color: var(--apply-teal);
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.apply-status-result h2 {
    margin: 14px 0 24px;
}

.apply-status-result dl,
.apply-record-grid dl {
    margin-bottom: 24px;
}

.apply-status-result dl > div,
.apply-record-grid dl > div {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 14px;
    padding: 13px 0;
    border-top: 1px solid var(--apply-line);
}

.apply-status-result dt,
.apply-record-grid dt {
    color: var(--apply-muted);
    font-size: .75rem;
}

.apply-status-result dd,
.apply-record-grid dd {
    margin: 0;
    color: var(--apply-navy);
    font-size: .83rem;
    overflow-wrap: anywhere;
}

.apply-status-result__notice {
    padding: 14px 16px;
    border-left: 3px solid var(--apply-teal);
    background: #eff8f7;
    font-size: .8rem;
}

.apply-status-help {
    text-align: center;
}

.apply-status-help > .apply-icon,
.apply-empty-state > .apply-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 22px;
    padding: 14px;
    border-radius: 50%;
    background: #e8f5f3;
    color: var(--apply-teal);
}

.apply-status-help a {
    color: var(--apply-teal);
    font-weight: 750;
}

.apply-record-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.apply-evidence-requests {
    display: grid;
    grid-template-columns: minmax(240px, .55fr) minmax(0, 1.45fr);
    gap: 30px;
    margin-bottom: 38px;
    padding: 30px;
    border: 1px solid #bfdedb;
    border-radius: 18px;
    background: #edf8f6;
}

.apply-evidence-requests h2 {
    font-size: 2rem;
}

.apply-evidence-requests__list {
    display: grid;
    gap: 14px;
}

.apply-evidence-requests__list > article {
    padding: 22px;
    border: 1px solid var(--apply-line);
    border-radius: 12px;
    background: #fff;
}

.apply-evidence-requests__list > article > span {
    color: var(--apply-teal);
    font-size: .65rem;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.apply-evidence-requests__list h3 {
    margin: 12px 0 8px;
}

.apply-evidence-requests__list p {
    margin-bottom: 12px;
    font-size: .84rem;
}

.apply-evidence-requests__list small {
    display: block;
    margin-bottom: 18px;
    color: var(--apply-muted);
}

.apply-evidence-requests__list form {
    display: grid;
    gap: 14px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--apply-line);
}

.apply-evidence-requests__list form label {
    display: grid;
    gap: 8px;
    color: var(--apply-navy);
    font-size: .76rem;
    font-weight: 750;
}

.apply-evidence-requests__list textarea,
.apply-evidence-requests__list input[type="file"] {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid #cbd8df;
    border-radius: 8px;
    background: #fff;
}

.apply-evidence-requests__response {
    margin-top: 16px;
    padding: 15px;
    border-left: 3px solid var(--apply-teal);
    background: #f3f8f8;
}

.apply-evidence-requests__response p {
    margin: 7px 0 0;
}

.apply-record-grid article > span {
    color: var(--apply-teal);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .07em;
}

.apply-record-grid article h2 {
    min-height: 70px;
    margin: 14px 0 22px;
    font-family: var(--apply-serif);
    font-size: 1.5rem;
}

.apply-record-grid dl > div {
    grid-template-columns: 100px 1fr;
}

.apply-record-grid article > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--apply-teal);
    font-size: .82rem;
    font-weight: 800;
    text-decoration: none;
}

.apply-empty-state {
    max-width: 650px;
    margin-inline: auto;
    text-align: center;
}

@media (max-width: 1080px) {
    .apply-hero__grid {
        grid-template-columns: 1fr;
    }

    .apply-hero__visual {
        width: min(680px, 100%);
    }

    .apply-audience__grid,
    .apply-tracks__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apply-process__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .apply-process__list li,
    .apply-process__list li:first-child,
    .apply-process__list li:last-child {
        border: 1px solid var(--apply-line);
        border-radius: 14px;
    }

    .apply-governance__grid,
    .apply-faq__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .apply-progress ol {
        grid-template-columns: repeat(4, 1fr);
        row-gap: 16px;
    }

    .apply-record-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .apply-page .shell {
        width: min(100% - 28px, 1180px);
    }

    .apply-page h1 {
        font-size: clamp(2.65rem, 14vw, 4rem);
    }

    .apply-page h2 {
        font-size: 2.25rem;
    }

    .apply-hero {
        padding: 56px 0 70px;
    }

    .apply-hero__grid {
        gap: 44px;
    }

    .apply-hero__visual {
        min-height: 450px;
        grid-template-columns: 95px 1fr;
        gap: 12px;
        padding: 20px;
    }

    .apply-visual__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .apply-path,
    .apply-hero__visual > ol {
        min-height: 320px;
    }

    .apply-notice-section {
        padding-bottom: 60px;
    }

    .apply-important-notice {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .apply-audience,
    .apply-readiness,
    .apply-tracks,
    .apply-process,
    .apply-governance,
    .apply-faq,
    .apply-form-section {
        padding: 70px 0;
    }

    .apply-audience__grid,
    .apply-readiness__grid,
    .apply-tracks__grid,
    .apply-checklist,
    .apply-governance__columns,
    .apply-fields--two,
    .apply-review-summary,
    .apply-status-content__grid,
    .apply-record-grid {
        grid-template-columns: 1fr;
    }

    .apply-evidence-requests {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .apply-audience article {
        min-height: 0;
    }

    .apply-track-card > p {
        min-height: 0;
    }

    .apply-process__list {
        grid-template-columns: 1fr;
    }

    .apply-process__list li {
        min-height: 0;
    }

    .apply-current-record {
        grid-template-columns: 1fr 1fr;
    }

    .apply-progress {
        padding: 20px;
    }

    .apply-progress ol {
        grid-template-columns: repeat(2, 1fr);
    }

    .apply-step {
        padding: 34px 22px 24px;
    }

    .apply-form-actions {
        padding: 20px 22px 24px;
    }

    .apply-form-actions .apply-button {
        flex: 1 1 calc(50% - 8px);
    }

    .apply-form-actions [data-next-step],
    .apply-form-actions [data-submit-application] {
        margin-left: 0;
    }

    .apply-save-status {
        width: 100%;
        max-width: none;
        order: 5;
    }

    .apply-review-summary div:nth-child(odd) {
        border-right: 0;
    }

    .apply-submitted-card {
        grid-template-columns: 1fr;
    }

    .apply-contact .shell {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .apply-actions,
    .apply-actions .apply-button {
        width: 100%;
    }

    .apply-hero__visual {
        grid-template-columns: 72px 1fr;
        padding: 16px;
    }

    .apply-path__curve {
        left: 0;
        width: 90%;
    }

    .apply-hero__visual li {
        grid-template-columns: 26px 1fr;
    }

    .apply-current-record {
        grid-template-columns: 1fr;
    }

    .apply-form-actions .apply-button {
        flex-basis: 100%;
    }

    .apply-fee-notice .shell > div {
        grid-template-columns: 1fr;
    }

    .apply-status-result dl > div,
    .apply-record-grid dl > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .apply-page *,
    .apply-page *::before,
    .apply-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
        animation-duration: .001ms !important;
    }
}
