@font-face {
    font-family: "Noto Sans Arabic";
    src: url("fonts/noto-sans-arabic-400.ttf") format("truetype");
    font-weight: 400;
    font-display: swap;
}


/* Secure application document previews */
.file-ready__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.file-ready__actions .file-ready__preview,
.document-preview-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 36px;
    padding: 6px 10px;
    border: 1px solid #b8d8d0;
    border-radius: 7px;
    background: #fff;
    color: var(--green-700);
    cursor: pointer;
    font: 700 11px/1 "Noto Sans Arabic", sans-serif;
}

.file-ready__actions .file-ready__preview:hover,
.document-preview-trigger:hover {
    border-color: var(--green-700);
    background: #f7fbfa;
}

.file-ready__actions .file-ready__preview:disabled,
.document-preview-trigger:disabled {
    cursor: wait;
    opacity: .58;
}

.file-ready__actions .icon,
.document-preview-trigger .icon {
    width: 16px;
    height: 16px;
}

.review-files .document-preview-trigger {
    white-space: nowrap;
}

.document-preview-error {
    margin: 10px 0 0;
    padding: 9px 11px;
    border-radius: 7px;
    background: #fff3f3;
    color: var(--danger);
    font-size: 10px;
}

.document-preview-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1500;
    display: grid;
    place-items: center;
    padding: 24px;
    overflow-y: auto;
    background: rgba(5, 24, 34, .76);
    backdrop-filter: blur(4px);
}

.document-preview-dialog {
    width: min(1020px, 100%);
    max-height: calc(100vh - 48px);
    display: grid;
    grid-template-rows: auto minmax(260px, 1fr) auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

.document-preview-dialog > header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 21px;
    border-bottom: 1px solid var(--line);
}

.document-preview-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green-700);
    font-size: 9px;
    font-weight: 700;
}

.document-preview-kicker .icon {
    width: 15px;
    height: 15px;
}

.document-preview-dialog h2 {
    margin: 3px 0 1px;
    color: var(--navy-900);
    font-size: 18px;
}

.document-preview-dialog header p {
    max-width: 680px;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.document-preview-close {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface-soft);
    color: var(--navy-900);
    cursor: pointer;
}

.document-preview-close .icon {
    width: 20px;
    height: 20px;
}

.document-preview-canvas {
    min-height: 0;
    height: min(66vh, 720px);
    display: grid;
    place-items: center;
    padding: 18px;
    overflow: auto;
    background: #e7edef;
}

.document-preview-canvas iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 7px;
    background: #fff;
}

.document-preview-canvas img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 9px 28px rgba(11, 39, 56, .14);
}

.document-preview-dialog > footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 20px;
    border-top: 1px solid var(--line);
    background: #fbfcfc;
}

.document-preview-dialog footer p {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    color: var(--muted);
    font-size: 9px;
}

.document-preview-dialog footer p .icon,
.document-preview-open .icon {
    width: 15px;
    height: 15px;
}

.document-preview-open {
    min-height: 40px;
    white-space: nowrap;
}

@media (max-width: 680px) {
    .file-ready__actions {
        grid-column: 2;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .review-files .document-preview-trigger {
        grid-column: 2;
        justify-self: start;
    }

    .document-preview-backdrop {
        align-items: end;
        padding: 10px;
    }

    .document-preview-dialog {
        max-height: calc(100vh - 20px);
        border-radius: 14px;
    }

    .document-preview-dialog > header {
        padding: 14px;
    }

    .document-preview-dialog h2 {
        font-size: 16px;
    }

    .document-preview-canvas {
        height: 60vh;
        padding: 8px;
    }

    .document-preview-dialog > footer {
        align-items: stretch;
        flex-direction: column;
        padding: 11px 14px 14px;
    }

    .document-preview-open {
        width: 100%;
    }
}

@font-face {
    font-family: "Noto Sans Arabic";
    src: url("fonts/noto-sans-arabic-600.ttf") format("truetype");
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Noto Kufi Arabic";
    src: url("fonts/noto-kufi-arabic-600.ttf") format("truetype");
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Noto Kufi Arabic";
    src: url("fonts/noto-kufi-arabic-700.ttf") format("truetype");
    font-weight: 700;
    font-display: swap;
}

:root {
    --navy-950: #071d2b;
    --navy-900: #0b2738;
    --navy-800: #13384d;
    --green-800: #07594d;
    --green-700: #08715d;
    --green-600: #0b846c;
    --gold-500: #c6a45e;
    --gold-300: #ddc78f;
    --ink: #102c3b;
    --muted: #5d6e78;
    --surface: #ffffff;
    --surface-soft: #f3f7f8;
    --surface-green: #edf6f3;
    --line: #d8e1e4;
    --danger: #ae2c2c;
    --success: #147059;
    --shadow-sm: 0 8px 22px rgba(7, 29, 43, .08);
    --shadow-lg: 0 22px 60px rgba(7, 29, 43, .14);
    --radius-sm: 6px;
    --radius: 9px;
    --container: 1220px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--surface);
    color: var(--ink);
    font-family: "Noto Sans Arabic", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
    font-family: "Noto Sans Arabic", system-ui, sans-serif;
}

button,
input,
select,
textarea {
    font-size: inherit;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a,
input,
select,
summary {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--gold-500);
    outline-offset: 3px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: "Noto Kufi Arabic", "Noto Sans Arabic", sans-serif;
    line-height: 1.45;
}

h1:focus {
    outline: none;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    inset: 12px auto auto 12px;
    transform: translateY(-160%);
    padding: 9px 16px;
    border-radius: var(--radius-sm);
    background: var(--gold-500);
    color: var(--navy-950);
    font-weight: 700;
    transition: transform .18s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.icon {
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 22px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
    font-weight: 600;
    line-height: 1.4;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button:disabled {
    cursor: wait;
    opacity: .7;
    transform: none;
}

.button--primary {
    background: var(--green-700);
    color: #fff;
}

.button--primary:hover {
    background: var(--green-600);
}

.button--outline {
    border-color: #b4c2c9;
    background: transparent;
    color: var(--ink);
}

.button--outline:hover {
    border-color: var(--green-700);
    color: var(--green-700);
}

.button--inverse {
    border-color: rgba(255, 255, 255, .58);
    background: transparent;
    color: #fff;
}

.button--inverse:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .07);
}

.button--large {
    min-height: 54px;
    padding-inline: 27px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-700);
    font-weight: 600;
}

.text-link .icon {
    width: 18px;
    transition: transform .18s ease;
}

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

.utility-bar {
    min-height: 36px;
    background: var(--navy-950);
    color: #d4dfe4;
    font-size: 12px;
}

.utility-bar__inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.utility-bar nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.utility-bar a:hover {
    color: #fff;
}

.utility-bar__separator {
    width: 1px;
    height: 13px;
    background: rgba(255, 255, 255, .25);
}

.site-header {
    position: relative;
    z-index: 20;
    border-bottom: 1px solid #e1e8eb;
    background: #fff;
}

.site-header__inner {
    min-height: 104px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 38px;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.brand-lockup__mark {
    width: 64px;
    height: 72px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.brand-lockup__name {
    max-width: 185px;
    color: var(--navy-900);
    font-family: "Noto Kufi Arabic", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.65;
}

.brand-lockup--inverse .brand-lockup__mark {
    padding: 4px;
    border-radius: 4px;
    background: #fff;
    mix-blend-mode: normal;
}

.brand-lockup--inverse .brand-lockup__name {
    color: #fff;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 2.4vw, 36px);
    font-size: 14px;
    font-weight: 600;
}

.desktop-nav a {
    position: relative;
    padding-block: 39px 36px;
    color: #324955;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 3px;
    background: var(--green-700);
    content: "";
    opacity: 0;
    transform: scaleX(.35);
    transition: opacity .18s ease, transform .18s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--green-700);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.header-login {
    min-height: 44px;
    padding-inline: 17px;
    white-space: nowrap;
}

.mobile-menu {
    display: none;
}

.hero {
    position: relative;
    min-height: 608px;
    overflow: hidden;
    background: var(--navy-900);
    color: #fff;
}

.hero::before {
    position: absolute;
    top: 0;
    right: calc(50% - 610px);
    width: 88px;
    height: 4px;
    background: var(--gold-500);
    content: "";
}

.hero__inner {
    position: relative;
    z-index: 2;
    min-height: 608px;
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    align-items: center;
    gap: clamp(72px, 10vw, 150px);
    padding-block: 74px 106px;
}

.hero__content {
    align-self: center;
}

.hero__content h1 {
    max-width: 670px;
    margin-bottom: 20px;
    color: #fff;
    font-size: clamp(43px, 4.25vw, 67px);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.35;
}

.hero__content > p:not(.hero__note) {
    margin-bottom: 31px;
    color: #cddbe1;
    font-size: 20px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.hero__note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 17px 0 0;
    color: #aebfc7;
    font-size: 13px;
}

.hero__note::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-500);
    content: "";
}

.cycle-card {
    width: 100%;
    max-width: 410px;
    padding: 33px 34px 29px;
    border-top: 4px solid var(--gold-500);
    border-radius: 0 0 var(--radius) var(--radius);
    background: #fff;
    box-shadow: var(--shadow-lg);
    color: var(--ink);
}

.cycle-card__label {
    display: block;
    margin-bottom: 7px;
    color: var(--green-700);
    font-size: 12px;
    font-weight: 600;
}

.cycle-card h2 {
    margin-bottom: 24px;
    color: var(--navy-900);
    font-size: 24px;
}

.cycle-card__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 0 0 25px;
    padding: 0 0 23px;
    border-bottom: 1px solid var(--line);
}

.cycle-card__details div {
    min-width: 0;
}

.cycle-card__details dt {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 11px;
}

.cycle-card__details dt .icon {
    width: 16px;
    color: var(--green-700);
}

.cycle-card__details dd {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.cycle-progress h3 {
    margin-bottom: 18px;
    color: var(--muted);
    font-family: "Noto Sans Arabic", sans-serif;
    font-size: 12px;
    font-weight: 600;
}

.cycle-progress ol {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.cycle-progress ol::before {
    position: absolute;
    z-index: 0;
    top: 13px;
    right: 17%;
    left: 17%;
    height: 1px;
    background: var(--line);
    content: "";
}

.cycle-progress li {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #87959c;
    font-size: 11px;
}

.cycle-progress li span {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    font-size: 9px;
}

.cycle-progress li.is-active {
    color: var(--green-700);
}

.cycle-progress li.is-active span {
    border-color: var(--green-700);
    background: var(--green-700);
    color: #fff;
}

.book-motif {
    position: absolute;
    z-index: 1;
    bottom: -72px;
    left: 50%;
    width: min(55vw, 760px);
    opacity: .42;
    pointer-events: none;
    transform: translateX(-50%);
}

.book-motif svg {
    width: 100%;
}

.book-motif__pages,
.book-motif__pen {
    fill: none;
    stroke: var(--gold-500);
    stroke-linecap: round;
    stroke-width: 1.2;
}

.book-motif__pen {
    stroke-width: 2;
}

.services-section {
    position: relative;
    z-index: 5;
    background: #fff;
}

.services-rail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: -55px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.service-item {
    min-height: 138px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 17px;
    padding: 27px 28px;
    border-inline-start: 1px solid var(--line);
    transition: background-color .18s ease;
}

.service-item:first-child {
    border-inline-start: 0;
}

.service-item:hover {
    background: var(--surface-soft);
}

.service-item > .icon:first-child {
    width: 34px;
    height: 34px;
    color: var(--green-700);
}

.service-item strong,
.service-item small {
    display: block;
}

.service-item strong {
    margin-bottom: 3px;
    color: var(--navy-900);
    font-family: "Noto Kufi Arabic", sans-serif;
    font-size: 14px;
}

.service-item small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.service-item__arrow {
    width: 18px;
    color: #8c9aa1;
}

.section {
    padding-block: 108px;
}

.announcements__grid {
    display: grid;
    grid-template-columns: .7fr 1.12fr 1fr;
    gap: clamp(44px, 6vw, 84px);
}

.section-heading h2 {
    margin-bottom: 20px;
    color: var(--navy-900);
    font-size: 31px;
}

.section-heading__rule {
    display: block;
    width: 58px;
    height: 3px;
    background: var(--gold-500);
}

.announcement-featured {
    padding-inline-start: 30px;
    border-inline-start: 1px solid var(--line);
}

.announcement-featured time,
.announcement-row time,
.article-date,
.announcement-index time {
    color: var(--green-700);
    font-size: 12px;
    font-weight: 600;
}

.announcement-featured h3 {
    margin: 14px 0 25px;
    color: var(--navy-900);
    font-size: 23px;
    line-height: 1.7;
}

.announcement-list {
    border-top: 1px solid var(--line);
}

.announcement-row {
    display: grid;
    grid-template-columns: 96px 1fr auto;
    align-items: center;
    gap: 16px;
    min-height: 72px;
    border-bottom: 1px solid var(--line);
    transition: color .18s ease;
}

.announcement-row:hover {
    color: var(--green-700);
}

.announcement-row strong {
    font-size: 14px;
}

.announcement-row .icon {
    width: 17px;
}

.announcement-list__all {
    margin-top: 20px;
}

.guide-section {
    padding-block: 79px;
    background: var(--surface-soft);
}

.guide-section__inner {
    display: grid;
    grid-template-columns: .55fr 1.45fr;
    align-items: center;
    gap: 82px;
}

.guide-section header h2 {
    margin-bottom: 8px;
    color: var(--navy-900);
    font-size: 30px;
}

.guide-section header p {
    margin: 0;
    color: var(--muted);
}

.guide-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-block: 1px solid var(--line);
}

.guide-links a {
    min-height: 95px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 18px 19px;
    border-inline-start: 1px solid var(--line);
}

.guide-links a:first-child {
    border-inline-start: 0;
}

.guide-links a:hover {
    background: #fff;
}

.guide-links span {
    color: var(--gold-500);
    font-family: "Noto Kufi Arabic", sans-serif;
    font-size: 11px;
}

.guide-links strong {
    color: var(--navy-900);
    font-size: 14px;
}

.guide-links .icon {
    width: 16px;
    color: var(--green-700);
}

.result-section {
    position: relative;
    overflow: hidden;
    padding-block: 78px 84px;
    background: var(--green-800);
    color: #fff;
}

.result-section__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    align-items: end;
    gap: 82px;
}

.result-section__copy h2 {
    margin-bottom: 8px;
    color: #fff;
    font-size: 31px;
}

.result-section__copy p {
    margin: 0;
    color: #bcd6d0;
}

.result-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: start;
    gap: 13px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.field label,
.choice-fieldset legend {
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
}

.field input,
.field select,
.static-form-panel input,
.details-form input,
.details-form select {
    width: 100%;
    min-height: 49px;
    padding: 10px 14px;
    border: 1px solid #c9d4d9;
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--ink);
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.field input:focus,
.field select:focus,
.static-form-panel input:focus,
.details-form input:focus,
.details-form select:focus {
    border-color: var(--green-700);
    box-shadow: 0 0 0 3px rgba(8, 113, 93, .12);
}

.result-form .field label {
    color: #d7ebe7;
}

.result-form__submit {
    align-self: end;
    min-height: 49px;
    padding-inline: 28px;
    background: var(--gold-500);
    color: var(--navy-950);
}

.result-form__submit:hover {
    background: var(--gold-300);
}

.result-message {
    grid-column: 2;
    margin: 13px 0 0;
    color: #fff3cf;
    font-size: 13px;
}

.result-details {
    display: grid;
    grid-column: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1rem;
    margin: 1rem 0 0;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.result-details div {
    min-width: 0;
}

.result-details dt {
    margin-bottom: 0.2rem;
    font-size: 0.78rem;
    opacity: 0.76;
}

.result-details dd {
    margin: 0;
    font-weight: 700;
}

.validation-message {
    color: #c42e2e;
    font-size: 12px;
}

.result-form .validation-message {
    color: #ffe5a8;
}

.invalid:not([type="radio"]):not([type="checkbox"]) {
    border-color: var(--danger) !important;
}

.result-section__motif {
    position: absolute;
    bottom: -42px;
    left: 5%;
    width: 300px;
    opacity: .14;
}

.result-section__motif path {
    fill: none;
    stroke: #fff;
    stroke-width: 1.25;
}

.site-footer {
    padding-top: 74px;
    background: var(--navy-950);
    color: #b7c7ce;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr .9fr;
    gap: 76px;
    padding-bottom: 57px;
}

.site-footer__brand p {
    max-width: 410px;
    margin: 22px 0 0;
    font-size: 14px;
}

.site-footer h2 {
    margin-bottom: 18px;
    color: #fff;
    font-family: "Noto Sans Arabic", sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a,
.footer-contact a {
    transition: color .18s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
}

.footer-contact {
    font-style: normal;
}

.footer-contact a,
.footer-contact span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact .icon {
    width: 18px;
    color: var(--gold-500);
}

.site-footer__legal {
    min-height: 67px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .11);
    font-size: 12px;
}

.site-footer__legal a:hover {
    color: #fff;
}

/* Internal pages */
.page-hero {
    background: var(--navy-900);
    color: #fff;
}

.page-hero__inner {
    min-height: 315px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 74px;
    padding-block: 55px;
}

.breadcrumb {
    display: inline-flex;
    margin-bottom: 17px;
    color: var(--green-700);
    font-size: 13px;
    font-weight: 600;
}

.breadcrumb::after {
    margin-inline-start: 8px;
    content: "←";
}

.page-hero .breadcrumb {
    color: var(--gold-300);
}

.page-hero h1,
.simple-page h1 {
    margin-bottom: 14px;
    font-size: clamp(32px, 4vw, 48px);
}

.page-hero p {
    max-width: 680px;
    margin: 0;
    color: #c6d5dc;
    font-size: 17px;
}

.page-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-steps::before {
    position: absolute;
    top: 17px;
    right: 8%;
    left: 8%;
    height: 1px;
    background: rgba(255, 255, 255, .25);
    content: "";
}

.page-steps li {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: #9db0b9;
    font-size: 12px;
}

.page-steps span {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    background: var(--navy-900);
    font-size: 10px;
}

.page-steps li.is-active {
    color: #fff;
}

.page-steps li.is-active span {
    border-color: var(--gold-500);
    background: var(--gold-500);
    color: var(--navy-950);
}

.application-page {
    padding-block: 76px 100px;
    background: var(--surface-soft);
}

.application-page__grid {
    display: grid;
    grid-template-columns: .62fr 1.38fr;
    align-items: start;
    gap: 36px;
}

.application-help,
.application-form-panel,
.static-form-panel,
.details-form {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.application-help {
    padding: 28px;
}

.application-help h2 {
    margin-bottom: 16px;
    color: var(--navy-900);
    font-size: 18px;
}

.application-help ul {
    margin: 0 0 23px;
    padding: 0 21px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.application-help li + li {
    margin-top: 10px;
}

.application-form-panel {
    padding: 36px 40px 41px;
    box-shadow: var(--shadow-sm);
}

.application-form-panel > header {
    margin-bottom: 29px;
    padding-bottom: 23px;
    border-bottom: 1px solid var(--line);
}

.application-form-panel > header span,
.step-label,
.application-ready__eyebrow {
    color: var(--green-700);
    font-size: 12px;
    font-weight: 600;
}

.application-form-panel > header h2 {
    margin: 5px 0 7px;
    color: var(--navy-900);
    font-size: 24px;
}

.application-form-panel > header p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.choice-fieldset {
    min-width: 0;
    margin: 0 0 25px;
    padding: 0;
    border: 0;
}

.choice-fieldset legend {
    margin-bottom: 8px;
}

.choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.choice-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.choice-option:has(input:checked) {
    border-color: var(--green-700);
    background: var(--surface-green);
}

.choice-option.is-disabled {
    cursor: not-allowed;
    opacity: .58;
    background: var(--surface-soft);
}

.choice-option input {
    width: 18px;
    height: 18px;
    accent-color: var(--green-700);
}

.choice-option strong,
.choice-option small {
    display: block;
}

.choice-option strong {
    color: var(--ink);
    font-size: 14px;
}

.choice-option small {
    color: var(--muted);
    font-size: 11px;
}

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

.form-grid--three {
    grid-template-columns: repeat(3, 1fr);
}

.consent-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 22px;
    color: var(--muted);
    cursor: pointer;
    font-size: 13px;
}

.consent-row input {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    accent-color: var(--green-700);
}

.application-start__submit {
    min-width: 210px;
    margin-top: 25px;
}

.verification-step,
.application-ready {
    max-width: 520px;
    margin-inline: auto;
    text-align: center;
}

.back-button {
    display: block;
    margin: 0 0 10px auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--green-700);
    cursor: pointer;
    font-weight: 600;
}

.verification-step__icon,
.application-ready__icon {
    width: 57px;
    height: 57px;
    display: grid;
    place-items: center;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: var(--surface-green);
    color: var(--green-700);
}

.verification-step__icon .icon,
.application-ready__icon .icon {
    width: 28px;
    height: 28px;
}

.verification-step h2,
.application-ready h2 {
    margin-bottom: 8px;
    color: var(--navy-900);
    font-size: 23px;
}

.verification-step > p,
.application-ready p {
    color: var(--muted);
}

.field--otp {
    max-width: 310px;
    margin: 23px auto 0;
    text-align: start;
}

.field--otp input {
    direction: ltr;
    text-align: center;
    font-size: 22px;
    letter-spacing: .35em;
}

.prototype-note {
    margin: 14px 0 0;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    background: #fff8e9;
    color: #7a6127;
    font-size: 11px;
}

.application-ready__eyebrow {
    margin-bottom: 3px !important;
}

.application-reference {
    display: block;
    margin: 12px auto 22px;
    color: var(--green-700);
    font-family: ui-monospace, monospace;
    font-size: 22px;
}

.simple-page {
    min-height: 620px;
    padding-block: 72px 100px;
    background: #fff;
}

.simple-page__narrow {
    max-width: 900px;
}

.simple-page h1 {
    color: var(--navy-900);
}

.lead {
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
}

.static-form-panel {
    max-width: 650px;
    display: grid;
    gap: 19px;
    margin-top: 35px;
    padding: 34px;
    box-shadow: var(--shadow-sm);
}

.static-form-panel .button {
    justify-self: start;
}

.guide-page__heading {
    padding-bottom: 34px;
    border-bottom: 1px solid var(--line);
}

.guide-page__content {
    display: grid;
    grid-template-columns: 260px 1fr;
    align-items: start;
    gap: 65px;
    margin-top: 43px;
}

.guide-page__nav {
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--line);
}

.guide-page__nav a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
}

.guide-page__nav a:hover {
    color: var(--green-700);
}

.guide-page__sections > section {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    padding: 0 0 34px;
    scroll-margin-top: 28px;
}

.guide-page__sections > section + section {
    padding-top: 33px;
    border-top: 1px solid var(--line);
}

.guide-page__sections > section > span {
    color: var(--gold-500);
    font-family: "Noto Kufi Arabic", sans-serif;
    font-size: 13px;
}

.guide-page__sections h2 {
    margin-bottom: 8px;
    color: var(--navy-900);
    font-size: 22px;
}

.guide-page__sections p,
.article-body p,
.legal-page p {
    color: var(--muted);
}

.announcement-index {
    margin-top: 35px;
    border-top: 1px solid var(--line);
}

.announcement-index a {
    min-height: 83px;
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--line);
}

.announcement-index a:hover strong {
    color: var(--green-700);
}

.announcement-index .icon {
    width: 18px;
}

.article-date {
    display: block;
    margin: 7px 0 26px;
}

.article-body {
    max-width: 720px;
    padding-top: 25px;
    border-top: 1px solid var(--line);
}

.legal-page h2 {
    margin: 38px 0 9px;
    color: var(--navy-900);
    font-size: 21px;
}

.application-details__heading {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.application-details__heading p {
    max-width: 750px;
    color: var(--muted);
}

.reference-chip {
    flex: 0 0 auto;
    padding: 8px 13px;
    border: 1px solid #bcd7d0;
    border-radius: var(--radius-sm);
    background: var(--surface-green);
    color: var(--green-700);
    font-family: ui-monospace, monospace;
    font-weight: 700;
}

.details-form {
    padding: 37px;
}

.details-form section + section {
    margin-top: 34px;
    padding-top: 31px;
    border-top: 1px solid var(--line);
}

.details-form h2 {
    margin-bottom: 18px;
    color: var(--navy-900);
    font-size: 19px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 37px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}

.track-flow .static-form-panel {
    margin-top: 35px;
}

.track-flow .verification-step {
    max-width: 650px;
    margin-inline: 0;
}

.track-flow .verification-step form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tracking-result {
    max-width: 650px;
    margin-top: 35px;
    padding: 34px;
    border: 1px solid var(--line);
    border-top: 4px solid var(--green-700);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.tracking-result__label {
    color: var(--green-700);
    font-size: 12px;
    font-weight: 600;
}

.tracking-result__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 5px 0 24px;
}

.tracking-result__heading h2 {
    margin: 0;
    color: var(--navy-900);
    font-size: 27px;
}

.tracking-result__heading bdi {
    color: var(--green-700);
    font-family: ui-monospace, monospace;
    font-weight: 700;
}

.tracking-result dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0 0 25px;
    border-block: 1px solid var(--line);
}

.tracking-result dl div {
    padding: 18px 0;
}

.tracking-result dl div + div {
    padding-inline-start: 20px;
    border-inline-start: 1px solid var(--line);
}

.tracking-result dt {
    color: var(--muted);
    font-size: 12px;
}

.tracking-result dd {
    margin: 4px 0 0;
    color: var(--ink);
    font-weight: 600;
}

.documents-form,
.review-actions {
    padding: 37px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.upload-zone {
    min-height: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 28px;
    border: 1px dashed #a9bdc5;
    border-radius: var(--radius);
    background: var(--surface-soft);
    color: var(--muted);
    cursor: pointer;
    text-align: center;
    transition: border-color .18s ease, background-color .18s ease;
}

.upload-zone:hover {
    border-color: var(--green-700);
    background: var(--surface-green);
}

.upload-zone > .icon {
    width: 42px;
    height: 42px;
    color: var(--green-700);
}

.upload-zone strong {
    color: var(--navy-900);
    font-family: "Noto Kufi Arabic", sans-serif;
}

.upload-zone span {
    font-size: 12px;
}

.upload-zone input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.selected-documents {
    margin: 24px 0 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.selected-documents li {
    min-height: 68px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
    border-bottom: 1px solid var(--line);
}

.selected-documents li > .icon {
    color: var(--green-700);
}

.selected-documents strong,
.selected-documents small {
    display: block;
}

.selected-documents small {
    color: var(--muted);
}

.selected-documents button {
    padding: 5px 9px;
    border: 0;
    background: transparent;
    color: var(--danger);
    cursor: pointer;
    font-weight: 600;
}

.form-alert {
    margin: 18px 0 0;
    padding: 11px 14px;
    border: 1px solid #e8c1c1;
    border-radius: var(--radius-sm);
    background: #fff3f3;
    color: var(--danger);
    font-size: 13px;
}

.review-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.review-summary section {
    min-height: 112px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    border-inline-start: 1px solid var(--line);
}

.review-summary section:first-child {
    border-inline-start: 0;
}

.review-summary span {
    color: var(--muted);
    font-size: 12px;
}

.review-summary strong {
    margin-top: 4px;
    color: var(--green-700);
}

.review-actions .consent-row {
    margin-top: 0;
}

.submission-success {
    padding: 45px 30px;
    border: 1px solid #b9d8d0;
    border-radius: var(--radius);
    background: var(--surface-green);
    text-align: center;
}

.submission-success > span {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: var(--green-700);
    color: #fff;
}

.submission-success > span .icon {
    width: 30px;
    height: 30px;
}

.submission-success h2 {
    margin-bottom: 7px;
    color: var(--navy-900);
}

.submission-success p {
    color: var(--muted);
}

.submission-success > strong {
    display: block;
    margin: 15px 0 22px;
    color: var(--green-700);
    font-family: ui-monospace, monospace;
    font-size: 21px;
}

#blazor-error-ui {
    position: fixed;
    z-index: 1000;
    right: 20px;
    bottom: 20px;
    display: none;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    background: var(--danger);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

#blazor-error-ui .reload {
    margin-inline-start: 10px;
    text-decoration: underline;
}

#blazor-error-ui .dismiss {
    margin-inline-start: 15px;
    cursor: pointer;
}

.blazor-error-boundary {
    padding: 18px;
    background: var(--danger);
    color: #fff;
}

@media (max-width: 1040px) {
    .site-header__inner {
        gap: 20px;
    }

    .desktop-nav {
        gap: 17px;
    }

    .desktop-nav a {
        font-size: 13px;
    }

    .brand-lockup__name {
        display: none;
    }

    .hero__inner {
        gap: 55px;
    }

    .announcements__grid {
        grid-template-columns: .55fr 1fr 1fr;
        gap: 38px;
    }

    .service-item {
        padding-inline: 20px;
    }
}

@media (max-width: 800px) {
    html {
        scroll-padding-top: 80px;
    }

    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .utility-bar__inner {
        justify-content: center;
    }

    .utility-bar__inner > span,
    .utility-bar__separator,
    .utility-bar nav a:last-child {
        display: none;
    }

    .site-header__inner {
        min-height: 82px;
        display: flex;
        justify-content: space-between;
    }

    .brand-lockup__mark {
        width: 50px;
        height: 57px;
    }

    .brand-lockup__name {
        display: block;
        max-width: 160px;
        font-size: 12px;
    }

    .desktop-nav,
    .header-login {
        display: none;
    }

    .mobile-menu {
        position: relative;
        display: block;
    }

    .mobile-menu summary {
        width: 43px;
        height: 43px;
        display: grid;
        place-items: center;
        border: 1px solid var(--line);
        border-radius: var(--radius-sm);
        color: var(--navy-900);
        cursor: pointer;
        list-style: none;
    }

    .mobile-menu summary::-webkit-details-marker {
        display: none;
    }

    .mobile-menu nav {
        position: absolute;
        top: 52px;
        left: 0;
        width: min(285px, calc(100vw - 32px));
        display: flex;
        flex-direction: column;
        padding: 10px 18px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
        box-shadow: var(--shadow-lg);
    }

    .mobile-menu nav a {
        padding: 10px 3px;
        border-bottom: 1px solid var(--line);
        font-weight: 600;
    }

    .mobile-menu nav a:last-child {
        border-bottom: 0;
        color: var(--green-700);
    }

    .hero,
    .hero__inner {
        min-height: auto;
    }

    .hero::before {
        right: 16px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-block: 60px 96px;
    }

    .hero__content h1 {
        font-size: clamp(38px, 10vw, 51px);
        line-height: 1.45;
    }

    .hero__content > p:not(.hero__note) {
        font-size: 17px;
    }

    .hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero__actions .button {
        width: 100%;
    }

    .cycle-card {
        max-width: none;
    }

    .book-motif {
        bottom: -14px;
        width: 115vw;
    }

    .services-section {
        background: #fff;
    }

    .services-rail {
        grid-template-columns: 1fr;
        margin-top: -44px;
    }

    .service-item {
        min-height: 112px;
        border-inline-start: 0;
        border-top: 1px solid var(--line);
    }

    .service-item:first-child {
        border-top: 0;
    }

    .section {
        padding-block: 76px;
    }

    .announcements__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .announcement-featured {
        padding: 0 0 30px;
        border-inline-start: 0;
        border-bottom: 1px solid var(--line);
    }

    .announcement-row {
        grid-template-columns: 88px 1fr auto;
    }

    .guide-section__inner,
    .result-section__inner,
    .page-hero__inner,
    .application-page__grid,
    .guide-page__content {
        grid-template-columns: 1fr;
    }

    .guide-section__inner,
    .result-section__inner {
        gap: 39px;
    }

    .guide-links {
        grid-template-columns: 1fr;
    }

    .guide-links a {
        min-height: 75px;
        border-inline-start: 0;
        border-top: 1px solid var(--line);
    }

    .guide-links a:first-child {
        border-top: 0;
    }

    .result-form {
        grid-template-columns: 1fr;
    }

    .result-form__submit {
        margin-top: 5px;
    }

    .result-message,
    .result-details {
        grid-column: 1;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 46px 35px;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .site-footer__legal {
        min-height: 90px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 4px;
    }

    .page-hero__inner {
        gap: 35px;
        padding-block: 46px;
    }

    .application-page {
        padding-block: 45px 70px;
    }

    .application-help {
        order: 2;
    }

    .guide-page__nav {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .guide-page__content {
        gap: 38px;
    }

    .form-grid--three {
        grid-template-columns: 1fr;
    }

    .review-summary {
        grid-template-columns: 1fr 1fr;
    }

    .review-summary section:nth-child(3) {
        border-inline-start: 0;
    }

    .review-summary section:nth-child(n + 3) {
        border-top: 1px solid var(--line);
    }
}

@media (max-width: 560px) {
    .brand-lockup__name {
        max-width: 125px;
        font-size: 10px;
    }

    .hero__inner {
        padding-top: 51px;
    }

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

    .cycle-card {
        padding: 27px 22px 25px;
    }

    .cycle-card__details {
        grid-template-columns: 1fr;
    }

    .announcement-row {
        grid-template-columns: 1fr auto;
        gap: 5px 12px;
        padding-block: 12px;
    }

    .announcement-row time {
        grid-column: 1 / -1;
    }

    .guide-section,
    .result-section,
    .site-footer {
        padding-top: 62px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__brand {
        grid-column: auto;
    }

    .page-steps li {
        font-size: 10px;
    }

    .page-steps span {
        width: 31px;
        height: 31px;
    }

    .choice-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .application-form-panel,
    .details-form,
    .static-form-panel {
        padding: 25px 20px;
    }

    .application-start__submit {
        width: 100%;
    }

    .simple-page {
        padding-block: 52px 75px;
    }

    .guide-page__nav {
        grid-template-columns: 1fr;
    }

    .announcement-index a {
        grid-template-columns: 1fr auto;
        gap: 7px 13px;
        padding-block: 15px;
    }

    .announcement-index time {
        grid-column: 1 / -1;
    }

    .application-details__heading {
        flex-direction: column;
    }

    .form-actions {
        flex-direction: column-reverse;
    }

    .form-actions .button {
        width: 100%;
    }

    .tracking-result,
    .documents-form,
    .review-actions {
        padding: 25px 20px;
    }

    .tracking-result__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .tracking-result dl,
    .review-summary {
        grid-template-columns: 1fr;
    }

    .tracking-result dl div + div,
    .review-summary section,
    .review-summary section:nth-child(3) {
        padding-inline-start: 0;
        border-inline-start: 0;
    }

    .tracking-result dl div + div,
    .review-summary section + section {
        border-top: 1px solid var(--line);
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

.correction-notice,
.tracking-correction {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin: 0 0 22px;
    padding: 16px 18px;
    border: 1px solid #edc88f;
    border-radius: 10px;
    background: #fff9ef;
    color: #7d4a08;
}

.correction-notice > .icon {
    width: 21px;
    height: 21px;
    margin-top: 2px;
    color: #b66b0b;
}

.correction-notice strong,
.correction-notice p,
.tracking-correction strong,
.tracking-correction p {
    display: block;
    margin: 0;
}

.correction-notice strong,
.tracking-correction strong {
    font-weight: 700;
}

.correction-notice p,
.tracking-correction p {
    margin-top: 3px;
    color: #78562c;
    font-size: .88rem;
}

.tracking-correction {
    display: block;
    margin: 18px 0;
    text-align: start;
}

.tracking-result > .button {
    margin-inline-end: 8px;
    margin-top: 12px;
}

@media (max-width: 620px) {
    .correction-notice {
        padding: 14px;
    }

    .tracking-result > .button {
        width: 100%;
        margin-inline-end: 0;
    }
}

/* Application intake: ExamSys-compatible, public-facing workflow */
.intake-cycle-card {
    position: relative;
    display: grid;
    gap: 3px;
    margin: -28px -28px 25px;
    padding: 21px 27px 19px;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
    background: var(--navy-900);
    color: #fff;
}

.intake-cycle-card::before {
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: var(--gold-500);
    content: "";
}

.intake-cycle-card > span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #bcd6d0;
    font-size: 11px;
    font-weight: 600;
}

.intake-cycle-card > span i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ed7a9;
    box-shadow: 0 0 0 4px rgba(78, 215, 169, .12);
}

.intake-cycle-card strong {
    font-family: "Noto Kufi Arabic", sans-serif;
    font-size: 16px;
}

.intake-cycle-card code {
    color: var(--gold-300);
    font-size: 11px;
}

.intake-cycle-card > small {
    margin-top: 6px;
    color: #bcd6d0;
    font-size: 10px;
    line-height: 1.6;
}

.field-help {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.65;
}

.application-progress {
    position: relative;
    margin: 0 0 24px;
    padding: 19px 25px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-soft);
}

.application-progress ol {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
}

.application-progress ol::before {
    position: absolute;
    z-index: 0;
    top: 17px;
    right: 12.5%;
    left: 12.5%;
    height: 1px;
    background: #cbd7dc;
    content: "";
}

.application-progress li {
    position: relative;
    z-index: 1;
}

.application-progress li > div,
.application-progress li > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #7a8b94;
}

.application-progress li span {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border: 1px solid #c5d2d7;
    border-radius: 50%;
    background: #fff;
    color: #71828b;
    font-size: 10px;
    font-weight: 700;
}

.application-progress li small {
    font-size: 11px;
    font-weight: 600;
}

.application-progress li.is-current span {
    border-color: var(--green-700);
    background: var(--green-700);
    box-shadow: 0 0 0 5px rgba(8, 113, 93, .09);
    color: #fff;
}

.application-progress li.is-current small {
    color: var(--green-700);
}

.application-progress li.is-complete span {
    border-color: #9bc9bd;
    background: var(--surface-green);
    color: var(--green-700);
}

.application-progress li.is-complete a:hover small {
    color: var(--green-700);
}

.form-state {
    min-height: 190px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    padding: 35px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
    color: var(--muted);
    text-align: center;
}

.form-state strong {
    color: var(--navy-900);
    font-family: "Noto Kufi Arabic", sans-serif;
    font-size: 20px;
}

.form-state p {
    margin: 0 0 9px;
}

.form-state--error {
    border-top: 3px solid var(--danger);
}

.form-intro-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: -37px -37px 35px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    border-radius: var(--radius) var(--radius) 0 0;
    background: var(--surface-soft);
}

.form-intro-strip > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 17px 23px;
    border-inline-start: 1px solid var(--line);
}

.form-intro-strip > div:first-child {
    border-inline-start: 0;
}

.form-intro-strip span,
.form-intro-strip small {
    color: var(--muted);
    font-size: 10px;
}

.form-intro-strip strong {
    overflow: hidden;
    color: var(--navy-900);
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.form-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.form-section-heading > div {
    display: flex;
    align-items: center;
    gap: 11px;
}

.form-section-heading > div > span {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--surface-green);
    color: var(--green-700);
    font-size: 10px;
    font-weight: 700;
}

.details-form .form-section-heading h2 {
    margin: 0;
}

.form-section-heading > small {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 10px;
}

.form-section-heading > small i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-700);
}

.field label b,
.gender-field legend b,
.subject-picker legend b {
    color: var(--green-700);
}

.field label em {
    color: var(--muted);
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
}

.field--span-two {
    grid-column: span 2;
}

.verified-input {
    position: relative;
}

.verified-input input {
    padding-inline-end: 88px;
    background: #f7fafb;
    color: #425b68;
}

.verified-input span {
    position: absolute;
    top: 50%;
    inset-inline-end: 10px;
    padding: 3px 8px;
    transform: translateY(-50%);
    border-radius: 999px;
    background: var(--surface-green);
    color: var(--green-700);
    font-size: 9px;
    font-weight: 700;
}

.gender-field {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.gender-field legend {
    margin-bottom: 7px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
}

.segmented-control {
    position: relative;
    min-height: 49px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 3px;
    border: 1px solid #c9d4d9;
    border-radius: var(--radius-sm);
    background: var(--surface-soft);
}

.segmented-control label {
    display: grid;
    place-items: center;
    border-radius: 4px;
    color: var(--muted);
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
}

.segmented-control label:has(input:checked) {
    background: #fff;
    box-shadow: 0 2px 8px rgba(7, 29, 43, .09);
    color: var(--green-700);
}

.segmented-control input {
    position: absolute;
    width: 1px !important;
    height: 1px !important;
    min-height: 0 !important;
    margin: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.fixed-subjects-note {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    margin-top: 23px;
    padding: 16px 18px;
    border: 1px solid #cce1dc;
    border-radius: var(--radius-sm);
    background: var(--surface-green);
}

.fixed-subjects-note > .icon {
    color: var(--green-700);
}

.fixed-subjects-note strong,
.fixed-subjects-note p {
    display: block;
    margin: 0;
}

.fixed-subjects-note strong {
    color: var(--navy-900);
    font-size: 12px;
}

.fixed-subjects-note p {
    color: var(--muted);
    font-size: 11px;
}

.fixed-subjects-note > span {
    padding: 4px 10px;
    border-radius: 999px;
    background: #fff;
    color: var(--green-700);
    font-size: 10px;
    font-weight: 700;
}

.subject-picker {
    min-width: 0;
    margin: 25px 0 0;
    padding: 0;
    border: 0;
}

.subject-picker legend {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
}

.subject-picker legend small {
    color: var(--green-700);
    font-size: 10px;
}

.subject-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.subject-options button {
    min-width: 0;
    min-height: 50px;
    display: grid;
    grid-template-columns: 26px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    text-align: start;
}

.subject-options button > span {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--surface-soft);
    color: var(--muted);
    font-size: 9px;
}

.subject-options button strong {
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.subject-options button i {
    color: var(--green-700);
    font-size: 15px;
    font-style: normal;
}

.subject-options button.is-selected {
    border-color: var(--green-700);
    background: var(--surface-green);
}

.subject-options button.is-selected > span {
    background: var(--green-700);
    color: #fff;
}

.subject-options button:disabled {
    cursor: not-allowed;
    opacity: .45;
}

.form-actions--spread {
    align-items: center;
    justify-content: space-between;
}

.form-actions--spread > div {
    display: flex;
    align-items: center;
    gap: 13px;
}

.autosave-note {
    color: var(--muted);
    font-size: 10px;
}

.documents-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.documents-heading > div:first-child > span,
.review-readiness__eyebrow {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 700;
}

.documents-heading h2 {
    margin: 2px 0 4px;
    color: var(--navy-900);
    font-size: 21px;
}

.documents-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.documents-counter {
    min-width: 105px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    padding: 10px 13px;
    border-radius: var(--radius-sm);
    background: var(--surface-soft);
}

.documents-counter strong {
    color: var(--green-700);
    font-size: 24px;
}

.documents-counter span {
    color: var(--muted);
    font-size: 9px;
}

.document-requirements {
    display: grid;
    gap: 13px;
}

.document-card {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.document-card.is-complete {
    border-color: #b8d8d0;
    box-shadow: inset 3px 0 0 var(--green-700);
}

.document-card > header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
    margin-bottom: 13px;
}

.document-index {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--surface-soft);
    color: var(--green-700);
    font-size: 9px;
    font-weight: 700;
}

.document-card h3 {
    margin: 0 0 2px;
    color: var(--navy-900);
    font-size: 13px;
}

.document-card header p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
}

.document-card header > small {
    padding: 4px 8px;
    border-radius: 999px;
    background: #fff5df;
    color: #7a6127;
    font-size: 9px;
    font-weight: 600;
}

.upload-zone--compact {
    min-height: 105px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-content: center;
    justify-content: start;
    column-gap: 13px;
    padding: 18px 20px;
    text-align: start;
}

.upload-zone--compact > .icon {
    grid-row: 1 / 3;
    width: 30px;
    height: 30px;
}

.upload-zone--compact strong {
    font-family: "Noto Sans Arabic", sans-serif;
    font-size: 12px;
}

.file-ready {
    min-height: 72px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    background: var(--surface-green);
}

.file-ready > .icon {
    width: 25px;
    height: 25px;
    color: var(--green-700);
}

.file-ready strong,
.file-ready span {
    display: block;
}

.file-ready strong {
    max-width: 520px;
    overflow: hidden;
    color: var(--navy-900);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-ready span {
    color: var(--muted);
    font-size: 10px;
}

.file-ready button {
    padding: 5px 8px;
    border: 0;
    background: transparent;
    color: var(--green-700);
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
}

.document-error {
    margin: 8px 0 0;
    color: var(--danger);
    font-size: 11px;
}

.payment-declaration-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.payment-declaration-grid label,
.payment-declaration-grid label > span {
    display: block;
}

.payment-declaration-grid label > span {
    margin-bottom: 5px;
    color: var(--navy-900);
    font-size: 10px;
    font-weight: 700;
}

.payment-declaration-grid input,
.payment-declaration-grid select {
    width: 100%;
    min-height: 42px;
    padding: 8px 11px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--navy-900);
    font: inherit;
    font-size: 11px;
}

.payment-review-note {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 10px;
}

.payment-review-note .icon {
    color: var(--green-700);
}

.storage-notice,
.review-routing-note {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 12px;
    margin-top: 19px;
    padding: 14px 16px;
    border: 1px solid #d5e3e7;
    border-radius: var(--radius-sm);
    background: #f4f8fa;
}

.storage-notice > .icon,
.review-routing-note > .icon {
    margin-top: 2px;
    color: var(--green-700);
}

.storage-notice p,
.review-routing-note p,
.storage-notice strong,
.storage-notice span,
.review-routing-note strong,
.review-routing-note span {
    display: block;
    margin: 0;
}

.storage-notice strong,
.review-routing-note strong {
    color: var(--navy-900);
    font-size: 11px;
}

.storage-notice span,
.review-routing-note span {
    color: var(--muted);
    font-size: 10px;
}

.review-workspace {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 315px;
    align-items: start;
    gap: 20px;
    margin-bottom: 20px;
}

.review-record {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.review-record__section {
    padding: 25px 27px;
}

.review-record__section + .review-record__section {
    border-top: 1px solid var(--line);
}

.review-record__section > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.review-record__section > header > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-record__section > header span {
    color: var(--gold-500);
    font-size: 10px;
    font-weight: 700;
}

.review-record__section h2 {
    margin: 0;
    color: var(--navy-900);
    font-size: 16px;
}

.review-record__section > header a {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 700;
}

.review-data-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
    margin: 0;
}

.review-data-grid > div {
    min-width: 0;
}

.review-data-grid dt,
.supplementary-review span {
    color: var(--muted);
    font-size: 9px;
}

.review-data-grid dd {
    margin: 3px 0 0;
    overflow-wrap: anywhere;
    color: var(--ink);
    font-size: 12px;
    font-weight: 600;
}

.review-data-grid dd small {
    display: block;
    color: var(--muted);
    font-size: 9px;
    font-weight: 400;
}

.review-data-grid__wide {
    grid-column: span 2;
}

.supplementary-review {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 18px;
    padding: 16px;
    border-radius: var(--radius-sm);
    background: var(--surface-soft);
}

.supplementary-review strong {
    display: block;
    color: var(--navy-900);
    font-size: 11px;
}

.review-files {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.review-files li {
    min-width: 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 11px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    background: var(--surface-soft);
}

.review-files .icon {
    color: var(--green-700);
}

.review-files strong,
.review-files small {
    display: block;
}

.review-files strong {
    color: var(--ink);
    font-size: 11px;
}

.review-files small {
    max-width: 470px;
    overflow: hidden;
    color: var(--muted);
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.review-files b {
    color: var(--green-700);
    font-size: 9px;
}

.review-missing {
    margin: 0;
    padding: 13px;
    border-radius: var(--radius-sm);
    background: #fff3f3;
    color: var(--danger);
    font-size: 11px;
}

.review-readiness {
    position: sticky;
    top: 20px;
    padding: 25px;
    border-top: 4px solid var(--gold-500);
    border-radius: 0 0 var(--radius) var(--radius);
    background: var(--navy-900);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

.review-readiness h2 {
    margin: 5px 0 7px;
    color: #fff;
    font-size: 19px;
}

.review-readiness > p {
    color: #afc2cb;
    font-size: 11px;
}

.review-readiness ol,
.readiness-checks {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.review-readiness ol li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 10px;
    padding: 9px 0;
    opacity: .55;
}

.review-readiness ol li.is-current {
    opacity: 1;
}

.review-readiness ol li > span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    font-size: 9px;
}

.review-readiness ol strong,
.review-readiness ol small {
    display: block;
}

.review-readiness ol strong {
    font-size: 11px;
}

.review-readiness ol small {
    color: #afc2cb;
    font-size: 9px;
}

.readiness-checks {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.readiness-checks li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    color: #d4dfe4;
    font-size: 10px;
}

.readiness-checks li > span {
    width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #ffcf78;
    font-size: 8px;
}

.readiness-checks li.is-done > span {
    background: rgba(78, 215, 169, .14);
    color: #75e5bd;
}

.review-actions {
    max-width: none;
}

.review-routing-note {
    margin: 0 0 19px;
}

@media (max-width: 900px) {
    .review-workspace {
        grid-template-columns: 1fr;
    }

    .review-readiness {
        position: static;
    }
}

@media (max-width: 800px) {
    .form-intro-strip {
        grid-template-columns: 1fr 1fr;
    }

    .form-intro-strip > div:last-child {
        grid-column: 1 / -1;
        border-top: 1px solid var(--line);
        border-inline-start: 0;
    }
}

@media (max-width: 560px) {
    .application-progress {
        padding-inline: 9px;
    }

    .application-progress li small {
        font-size: 9px;
    }

    .application-progress li span {
        width: 31px;
        height: 31px;
    }

    .application-progress ol::before {
        top: 15px;
    }

    .form-intro-strip {
        margin: -25px -20px 28px;
    }

    .form-intro-strip > div {
        padding: 13px 15px;
    }

    .form-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .field--span-two {
        grid-column: auto;
    }

    .fixed-subjects-note {
        grid-template-columns: auto 1fr;
    }

    .fixed-subjects-note > span {
        grid-column: 2;
        justify-self: start;
    }

    .subject-options {
        grid-template-columns: 1fr;
    }

    .form-actions--spread {
        align-items: stretch;
    }

    .form-actions--spread > div {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .autosave-note {
        text-align: center;
    }

    .documents-heading {
        align-items: flex-start;
    }

    .documents-counter {
        min-width: 76px;
        flex-direction: column;
        align-items: center;
        line-height: 1.2;
    }

    .document-card {
        padding: 14px;
    }

    .document-card > header {
        grid-template-columns: auto 1fr;
    }

    .document-card header > small {
        grid-column: 2;
        justify-self: start;
    }

    .upload-zone--compact {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .upload-zone--compact > .icon {
        grid-row: auto;
    }

    .file-ready {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .file-ready button {
        grid-column: 2;
        justify-self: start;
    }

    .payment-declaration-grid {
        grid-template-columns: 1fr;
    }

    .review-record__section {
        padding: 21px 18px;
    }

    .review-data-grid,
    .supplementary-review {
        grid-template-columns: 1fr;
    }

    .review-data-grid__wide {
        grid-column: auto;
    }

    .review-files li {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .review-files b {
        grid-column: 2;
    }

    .review-readiness {
        padding: 23px 20px;
    }
}

/* Public portal polish and institutional content pages */
.utility-bar__identity {
    display: flex;
    align-items: center;
    gap: 12px;
}

.environment-badge {
    display: inline-flex;
    min-height: 20px;
    align-items: center;
    padding: 1px 8px;
    border: 1px solid rgba(221, 199, 143, .5);
    border-radius: 999px;
    color: var(--gold-300);
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
}

.site-header__inner {
    min-height: 98px;
    gap: 32px;
}

.brand-lockup__mark {
    width: 70px;
    height: 78px;
}

.brand-lockup__name {
    max-width: 190px;
}

.desktop-nav a {
    padding-block: 36px 33px;
}

.hero,
.hero__inner {
    min-height: 560px;
}

.hero__inner {
    gap: clamp(62px, 8vw, 120px);
    padding-block: 60px 88px;
}

.hero__content h1 {
    max-width: 620px;
    font-size: clamp(42px, 4vw, 60px);
    line-height: 1.38;
}

.cycle-card__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 8px;
}

.cycle-card__topline .cycle-card__label {
    margin: 0;
}

.cycle-status {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    gap: 7px;
    width: max-content;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
}

.cycle-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 4px rgba(11, 132, 108, .12);
}

.cycle-status--open {
    background: var(--surface-green);
    color: var(--green-700);
}

.cycle-status--neutral {
    background: var(--surface-soft);
    color: var(--muted);
}

.cycle-card__details dd small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 400;
}

.cycle-progress li.is-complete {
    color: var(--green-700);
}

.cycle-progress li.is-complete span {
    border-color: #a5cfc5;
    background: var(--surface-green);
}

.services-section {
    padding-bottom: 18px;
}

.announcements {
    padding-top: 122px;
}

.institution-hero {
    position: relative;
    overflow: hidden;
    background: var(--navy-900);
    color: #fff;
}

.institution-hero::before {
    position: absolute;
    top: 0;
    right: calc(50% - 610px);
    width: 88px;
    height: 4px;
    background: var(--gold-500);
    content: "";
}

.institution-hero__inner {
    min-height: 330px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px;
    align-items: center;
    gap: 90px;
    padding-block: 54px;
}

.institution-hero .breadcrumb {
    margin-bottom: 16px;
    color: var(--gold-300);
}

.institution-hero h1 {
    max-width: 820px;
    margin-bottom: 15px;
    color: #fff;
    font-size: clamp(35px, 4vw, 50px);
    letter-spacing: -.02em;
}

.institution-hero__copy > p {
    max-width: 720px;
    margin: 0;
    color: #c6d5dc;
    font-size: 17px;
}

.institution-hero__symbol {
    position: relative;
    width: 188px;
    height: 188px;
    display: grid;
    place-items: center;
    justify-self: end;
    border: 1px solid rgba(221, 199, 143, .28);
    border-radius: 50%;
    color: var(--gold-300);
}

.institution-hero__symbol::before,
.institution-hero__symbol::after {
    position: absolute;
    border: 1px solid rgba(221, 199, 143, .12);
    border-radius: 50%;
    content: "";
}

.institution-hero__symbol::before {
    inset: 18px;
}

.institution-hero__symbol::after {
    inset: 37px;
}

.institution-hero__symbol > span {
    position: absolute;
    top: -55px;
    bottom: -55px;
    left: 50%;
    width: 1px;
    background: rgba(221, 199, 143, .13);
}

.institution-hero__symbol .icon {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    stroke-width: 1.35;
}

.institution-page {
    padding-block: 88px 110px;
    background: #fff;
}

.editorial-intro {
    display: grid;
    grid-template-columns: 62px minmax(0, 1.25fr) minmax(260px, .75fr);
    align-items: start;
    gap: clamp(30px, 4vw, 62px);
    padding-bottom: 70px;
    border-bottom: 1px solid var(--line);
}

.editorial-intro__index,
.legislation-catalog__number {
    color: var(--gold-500);
    font-family: "Noto Kufi Arabic", sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.editorial-intro h2,
.institution-section-heading h2,
.legislation-intro h2,
.schedule-panel h2,
.results-route h2,
.publication-note h2 {
    color: var(--navy-900);
}

.editorial-intro h2 {
    max-width: 650px;
    margin-bottom: 16px;
    font-size: clamp(27px, 3vw, 38px);
}

.editorial-intro > div > p,
.editorial-intro aside p,
.legislation-intro > p {
    margin: 0;
    color: var(--muted);
}

.editorial-intro aside {
    padding: 6px 25px 6px 0;
    border-inline-start: 3px solid var(--green-700);
}

.editorial-intro aside strong {
    display: block;
    margin-bottom: 7px;
    color: var(--green-700);
    font-family: "Noto Kufi Arabic", sans-serif;
    font-size: 13px;
}

.mandate-section,
.exam-stages {
    display: grid;
    grid-template-columns: minmax(230px, .58fr) minmax(0, 1.42fr);
    align-items: start;
    gap: clamp(54px, 8vw, 120px);
    margin-top: 78px;
}

.institution-section-heading > span,
.legislation-intro > div > span,
.schedule-panel > div > span {
    display: block;
    margin-bottom: 8px;
    color: var(--green-700);
    font-size: 12px;
    font-weight: 700;
}

.institution-section-heading h2,
.legislation-intro h2 {
    margin: 0;
    font-size: clamp(24px, 2.5vw, 31px);
}

.mandate-list,
.exam-stages ol {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.mandate-list article,
.exam-stages li {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 22px;
    padding-block: 25px;
    border-bottom: 1px solid var(--line);
}

.mandate-list article > span,
.exam-stages li > span {
    color: var(--gold-500);
    font-family: "Noto Kufi Arabic", sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.mandate-list h3,
.exam-stages h3,
.legislation-catalog h3 {
    margin-bottom: 7px;
    color: var(--navy-900);
    font-size: 17px;
}

.mandate-list p,
.exam-stages p,
.legislation-catalog p,
.schedule-panel p,
.results-route p,
.publication-note p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.institution-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    margin-top: 84px;
    padding: 38px 42px;
    border-top: 4px solid var(--gold-500);
    border-radius: 0 0 var(--radius) var(--radius);
    background: var(--navy-900);
    color: #fff;
}

.institution-band h2 {
    margin-bottom: 8px;
    color: #fff;
    font-size: 23px;
}

.institution-band p {
    max-width: 690px;
    margin: 0;
    color: #c6d5dc;
}

.institution-band__actions,
.cycle-overview__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.institution-band__actions {
    flex: 0 0 auto;
}

.cycle-overview {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
    overflow: hidden;
    border-top: 4px solid var(--gold-500);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-sm);
}

.cycle-overview__copy {
    padding: 43px 46px 45px;
    border: 1px solid var(--line);
    border-top: 0;
    border-inline-end: 0;
}

.cycle-overview__copy h2 {
    margin: 13px 0 12px;
    color: var(--navy-900);
    font-size: clamp(27px, 3vw, 36px);
}

.cycle-overview__copy > p {
    max-width: 630px;
    margin-bottom: 25px;
    color: var(--muted);
}

.cycle-overview__facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0;
    padding: 30px;
    background: var(--navy-900);
    color: #fff;
}

.cycle-overview__facts div {
    min-width: 0;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
    border-inline-start: 1px solid rgba(255, 255, 255, .13);
}

.cycle-overview__facts div:nth-child(even) {
    border-inline-start: 0;
}

.cycle-overview__facts div:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.cycle-overview__facts dt {
    margin-bottom: 7px;
    color: #9fb3bc;
    font-size: 11px;
}

.cycle-overview__facts dd {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.exam-stages li {
    position: relative;
}

.exam-stages li::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 3px;
    background: transparent;
    content: "";
}

.exam-stages li.is-current {
    padding-inline: 18px;
    background: var(--surface-green);
}

.exam-stages li.is-current::before {
    background: var(--green-700);
}

.exam-stages li.is-current > span,
.exam-stages li.is-complete > span {
    color: var(--green-700);
}

.schedule-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 45px;
    margin-top: 84px;
    padding: 37px 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-soft);
    scroll-margin-top: 130px;
}

.schedule-panel h2 {
    margin-bottom: 10px;
    font-size: 25px;
}

.schedule-panel__date {
    width: 118px;
    min-height: 128px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 3px solid var(--gold-500);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    background: var(--navy-900);
    color: #fff;
}

.schedule-panel__date strong {
    font-family: "Noto Kufi Arabic", sans-serif;
    font-size: 31px;
    line-height: 1.1;
}

.schedule-panel__date span {
    color: var(--gold-300);
    font-size: 13px;
}

.schedule-panel__date small {
    color: #aebfc7;
    font-size: 11px;
}

.results-route {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    margin-top: 30px;
    padding: 27px 32px;
    border-block: 1px solid var(--line);
}

.results-route > div:first-child {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--surface-green);
    color: var(--green-700);
}

.results-route h2 {
    margin-bottom: 4px;
    font-size: 18px;
}

.legislation-intro {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    align-items: end;
    gap: 80px;
    padding-bottom: 49px;
    border-bottom: 1px solid var(--line);
}

.legislation-catalog article {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) auto;
    align-items: center;
    gap: 27px;
    min-height: 132px;
    padding: 28px 8px;
    border-bottom: 1px solid var(--line);
}

.legislation-catalog__state {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-700);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.legislation-catalog__state .icon {
    width: 18px;
}

.publication-note {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    margin-top: 56px;
    padding: 27px 30px;
    border-top: 3px solid var(--gold-500);
    background: var(--surface-soft);
}

.publication-note > .icon {
    width: 34px;
    height: 34px;
    color: var(--green-700);
}

.publication-note h2 {
    margin-bottom: 4px;
    font-size: 17px;
}

.announcements-page {
    min-height: 520px;
}

.announcements-page .announcement-index {
    margin-top: 0;
}

.announcements-page .announcement-index a {
    min-height: 94px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
    color: var(--green-700);
    font-size: 13px;
    font-weight: 700;
}

.back-link .icon {
    width: 17px;
    transform: rotate(180deg);
}

@media (max-width: 1040px) {
    .site-header__inner {
        gap: 17px;
    }

    .brand-lockup__name {
        display: block;
        max-width: 145px;
        font-size: 12px;
    }

    .desktop-nav {
        gap: 15px;
    }

    .desktop-nav a {
        font-size: 12px;
    }

    .header-login {
        padding-inline: 13px;
        font-size: 13px;
    }

    .institution-hero__inner {
        gap: 50px;
    }

    .cycle-overview {
        grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
    }

    .mandate-section,
    .exam-stages {
        gap: 55px;
    }
}

@media (max-width: 940px) and (min-width: 801px) {
    .brand-lockup__name {
        display: none;
    }
}

@media (max-width: 800px) {
    .utility-bar__identity {
        display: none;
    }

    .site-header__inner {
        min-height: 86px;
    }

    .brand-lockup__mark {
        width: 55px;
        height: 63px;
    }

    .brand-lockup__name {
        display: block;
        max-width: 160px;
        font-size: 12px;
    }

    .mobile-menu summary {
        width: auto;
        min-width: 82px;
        height: 43px;
        display: flex;
        gap: 7px;
        padding-inline: 12px;
        font-size: 12px;
        font-weight: 700;
    }

    .mobile-menu[open] summary {
        border-color: var(--green-700);
        background: var(--surface-green);
        color: var(--green-700);
    }

    .mobile-menu nav {
        position: fixed;
        z-index: 30;
        top: 122px;
        right: 16px;
        left: 16px;
        width: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 9px;
        padding: 16px;
        border-radius: 0 0 12px 12px;
    }

    .mobile-menu nav a {
        min-height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 9px 12px;
        border: 1px solid var(--line);
        border-radius: var(--radius-sm);
        background: #fff;
        font-size: 13px;
        text-align: center;
    }

    .mobile-menu nav a.active {
        border-color: #aad0c7;
        background: var(--surface-green);
        color: var(--green-700);
    }

    .mobile-menu nav a[href="/announcements"] {
        grid-column: 1 / -1;
    }

    .mobile-menu nav a:last-child,
    .mobile-menu nav .mobile-menu__track {
        grid-column: 1 / -1;
        gap: 8px;
        border: 0;
        background: var(--green-700);
        color: #fff;
    }

    .hero__inner {
        gap: 36px;
        padding-block: 47px 80px;
    }

    .hero__content h1 {
        max-width: 570px;
        font-size: clamp(34px, 9vw, 43px);
        line-height: 1.42;
    }

    .services-section {
        padding-bottom: 8px;
    }

    .announcements {
        padding-top: 88px;
    }

    .institution-hero__inner {
        min-height: 285px;
        grid-template-columns: minmax(0, 1fr) 128px;
        gap: 30px;
        padding-block: 43px;
    }

    .institution-hero__symbol {
        width: 120px;
        height: 120px;
    }

    .institution-hero__symbol > span {
        top: -45px;
        bottom: -45px;
    }

    .institution-hero__symbol .icon {
        width: 40px;
        height: 40px;
    }

    .institution-page {
        padding-block: 62px 80px;
    }

    .editorial-intro,
    .mandate-section,
    .exam-stages,
    .legislation-intro,
    .cycle-overview {
        grid-template-columns: 1fr;
    }

    .editorial-intro {
        gap: 24px;
        padding-bottom: 49px;
    }

    .editorial-intro__index {
        display: none;
    }

    .mandate-section,
    .exam-stages {
        gap: 31px;
        margin-top: 58px;
    }

    .institution-band {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
        margin-top: 62px;
        padding: 31px 29px;
    }

    .cycle-overview__copy {
        padding: 35px 31px 37px;
        border-inline-end: 1px solid var(--line);
    }

    .cycle-overview__facts {
        min-height: 255px;
    }

    .schedule-panel {
        margin-top: 62px;
    }

    .legislation-intro {
        align-items: start;
        gap: 20px;
    }
}

@media (max-width: 560px) {
    .brand-lockup__name {
        max-width: 145px;
        font-size: 11px;
    }

    .mobile-menu nav {
        top: 122px;
    }

    .hero__inner {
        padding-top: 41px;
    }

    .hero__content h1 {
        font-size: 34px;
    }

    .hero__content > p:not(.hero__note) {
        margin-bottom: 24px;
        font-size: 16px;
    }

    .cycle-card {
        padding: 24px 20px 23px;
    }

    .cycle-card__details {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cycle-card__details dd {
        font-size: 12px;
    }

    .institution-hero__inner {
        min-height: 260px;
        grid-template-columns: 1fr;
        padding-block: 38px 43px;
    }

    .institution-hero__symbol {
        display: none;
    }

    .institution-hero h1 {
        font-size: 31px;
    }

    .institution-hero__copy > p {
        font-size: 15px;
    }

    .institution-page {
        padding-block: 51px 68px;
    }

    .editorial-intro h2 {
        font-size: 26px;
    }

    .institution-band__actions,
    .cycle-overview__actions {
        width: 100%;
        flex-direction: column;
    }

    .institution-band__actions .button,
    .cycle-overview__actions .button {
        width: 100%;
    }

    .cycle-overview__copy {
        padding: 30px 22px 32px;
    }

    .cycle-overview__facts {
        padding: 18px;
    }

    .cycle-overview__facts div {
        padding: 16px 13px;
    }

    .mandate-list article,
    .exam-stages li {
        grid-template-columns: 39px 1fr;
        gap: 15px;
    }

    .schedule-panel {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 29px 23px;
    }

    .schedule-panel__date {
        width: 100%;
        min-height: 90px;
        flex-direction: row;
        gap: 8px;
    }

    .schedule-panel__date strong {
        font-size: 27px;
    }

    .results-route,
    .publication-note {
        grid-template-columns: auto 1fr;
        align-items: start;
        padding-inline: 19px;
    }

    .results-route .text-link,
    .publication-note .text-link {
        grid-column: 2;
    }

    .legislation-catalog article {
        grid-template-columns: 39px minmax(0, 1fr);
        align-items: start;
        gap: 14px;
        padding-block: 24px;
    }

    .legislation-catalog__state {
        grid-column: 2;
    }

    .announcements-page .announcement-index a {
        min-height: 0;
    }
}
