:root {
    --ink: #1f251f;
    --muted: #657064;
    --navy: #003f35;
    --navy-2: #454d43;
    --green-900: #003f35;
    --green-800: #168a1d;
    --green-700: #32B82B;
    --green-600: #41c83a;
    --green-500: #72dd6d;
    --lime: #dff7dc;
    --line: #dfe5dc;
    --surface: #ffffff;
    --soft: #f3f5f2;
    --shadow: 0 14px 34px rgba(0, 63, 53, .08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1280px, calc(100% - 72px));
    margin-inline: auto;
}

.topbar {
    color: #fff;
    background: var(--navy);
    font-size: 13px;
    font-weight: 700;
}

.topbar__inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    gap: 34px;
}

.topbar a,
.topbar span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
}

.topbar svg {
    width: 14px;
    height: 14px;
    color: #fff;
}

.topbar .whatsapp-icon {
    width: 16px;
    height: 16px;
    color: #25d366;
    fill: currentColor;
}

.topbar .whatsapp-link {
    min-height: 26px;
    padding: 0 12px;
    border-radius: 999px;
    color: #fff;
    background: rgba(37, 211, 102, .16);
    box-shadow: inset 0 0 0 1px rgba(37, 211, 102, .28);
}

.topbar__right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.topbar__right a {
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    font-size: 12px;
    font-weight: 800;
}

.topbar__right a:hover {
    background: rgba(255, 255, 255, .16);
}

.site-header {
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid #eef1f4;
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
}

.header__inner {
    width: min(1280px, calc(100% - 72px));
    max-width: 1280px;
    height: 105px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 190px;
}

.brand img {
    width: 170px;
    height: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    margin-right: 14px;
    font-weight: 600;
}

.nav a {
    color: var(--navy);
    font-size: 14px;
    white-space: nowrap;
}

.nav a:hover,
.nav .is-active {
    color: var(--green-700);
}

.student-button,
.contractor-button,
.button,
.search-box button,
.form-panel button,
.newsletter button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    border: 0;
    border-radius: 7px;
    background: var(--green-700);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(0, 100, 68, .18);
}

.student-button {
    min-height: 40px;
    padding: 0 20px;
    border-radius: 6px;
    white-space: nowrap;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 0;
}

.contractor-button {
    min-height: 40px;
    padding: 0 18px;
    border-radius: 6px;
    color: var(--green-800);
    background: #fff;
    border: 1px solid #9bcfbd;
    box-shadow: none;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 8px;
    width: 44px;
    height: 44px;
}

.hero {
    position: relative;
    overflow: hidden;
    background: #f7f9f8;
}

.hero__content {
    min-height: 345px;
    display: grid;
    grid-template-columns: minmax(740px, .98fr) minmax(500px, 1.02fr);
    align-items: center;
    gap: 36px;
}

.hero__copy {
    position: relative;
    z-index: 2;
    padding: 44px 0 34px;
}

.hero h1 {
    margin: 0;
    max-width: 660px;
    color: var(--navy);
    font-size: clamp(39px, 3.5vw, 54px);
    line-height: 1.03;
    letter-spacing: 0;
}

.hero h1 span {
    display: block;
    color: var(--green-700);
}

.hero p {
    max-width: 610px;
    margin: 16px 0 0;
    color: #43505c;
    font-size: 18px;
    line-height: 1.45;
}

.search-box {
    width: min(720px, 100%);
    margin-top: 24px;
    padding: 12px;
    display: grid;
    grid-template-columns: minmax(180px, 1.2fr) minmax(160px, 1fr) minmax(125px, .8fr) 112px;
    gap: 12px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.search-box label {
    min-height: 36px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    min-width: 0;
}

.search-box svg {
    width: 17px;
    color: var(--green-700);
}

.search-box select,
.search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #34424e;
    font: inherit;
    font-size: 13px;
    min-width: 0;
    white-space: nowrap;
}

.search-box button {
    min-height: 36px;
    font-size: 13px;
    background: var(--navy);
}

.hero__stats {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1.15fr 1.05fr;
    gap: 26px;
    max-width: 720px;
    color: #243348;
    font-size: 13px;
}

.hero__stats div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.hero__stats span,
.quick-card span,
.newsletter span {
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green-700);
    color: #fff;
}

.hero__stats span {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
}

.hero__stats p {
    margin: 0;
    line-height: 1.28;
    text-wrap: balance;
}

.hero__stats strong {
    display: inline;
    color: #0a1821;
}

.hero__visual {
    position: relative;
    height: 345px;
    align-self: end;
    margin-right: calc((1280px - 100vw) / 2);
}

.hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(.92);
    border-top-left-radius: 0;
}

.hero__ribbon {
    display: none;
}

.hero__badge {
    position: absolute;
    right: 42px;
    bottom: 36px;
    width: 240px;
    min-height: 118px;
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 24px;
    color: #fff;
    background: var(--navy);
    border-radius: 6px;
    box-shadow: 0 18px 34px rgba(7, 27, 54, .22);
}

.hero__badge svg {
    width: 44px;
    height: 44px;
    color: var(--green-700);
}

.hero__badge p {
    margin: 0;
    color: #fff;
    font-size: 14px;
}

.hero__badge strong {
    color: var(--green-700);
}

.home-actions {
    width: calc(100% - 36px);
    max-width: none;
    margin-left: 36px;
    margin-right: 0;
    position: relative;
    padding: 20px 0 8px;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: none;
    margin-right: 0;
}

.opportunities {
    margin-top: 10px;
    padding-top: 24px;
    border-top: 1px solid #dfe6ec;
}

.quick-card {
    min-height: 104px;
    position: relative;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) 22px;
    grid-template-rows: auto 1fr;
    column-gap: 12px;
    row-gap: 8px;
    padding: 18px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(7, 27, 54, .07);
}

.quick-card span {
    width: 44px;
    height: 44px;
    grid-row: span 2;
    color: var(--green-800);
    background: var(--lime);
    border-radius: 50%;
}

.quick-card span svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.8;
}

.quick-card strong {
    grid-column: 2;
    color: var(--navy);
    font-size: 15px;
    line-height: 1.15;
}

.quick-card p {
    grid-column: 2;
    margin: 0;
    color: #1d2b35;
    font-size: 12px;
    line-height: 1.45;
}

.quick-card__arrow {
    grid-column: 3;
    grid-row: 2;
    align-self: end;
    width: 23px;
    height: 23px;
    padding: 4px;
    border-radius: 50%;
    color: var(--green-800);
    background: var(--lime);
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 12px;
}

.section-title h2 {
    margin: 0;
    color: var(--navy);
    font-size: 25px;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    margin-top: 8px;
    background: var(--green-600);
}

.section-title a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0a8e59;
    font-size: 13px;
    font-weight: 700;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
}

.opportunity-list,
.newsletter,
.job-card,
.form-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
}

.opportunity-row {
    min-height: 62px;
    display: grid;
    grid-template-columns: 72px 1.4fr .8fr 150px 135px 24px;
    gap: 18px;
    align-items: center;
    padding: 10px 24px;
    border-bottom: 1px solid var(--line);
}

.opportunity-row:last-child {
    border-bottom: 0;
}

.org-seal {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    overflow: hidden;
    background: #f3f5f2;
}

.org-seal img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.opportunity-row h3 {
    margin: 0 0 5px;
    color: var(--navy);
    font-size: 15px;
}

.opportunity-row p,
.row-meta {
    margin: 0;
    color: #44536a;
    font-size: 13px;
}

.row-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.row-meta svg {
    width: 17px;
    color: #52616e;
}

.status {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    min-height: 28px;
    padding: 0 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.status--open {
    color: #116814;
    background: #dff0d9;
}

.status--progress {
    color: #bd6500;
    background: #fff0d5;
}

.row-action {
    color: #1d3140;
}

.newsletter {
    position: absolute;
    top: 20px;
    right: 0;
    width: 292px;
    min-height: 104px;
    padding: 18px;
    color: #fff;
    background: var(--navy);
}

.newsletter span {
    width: 44px;
    height: 44px;
    border: 1px solid var(--green-700);
    background: transparent;
}

.newsletter h2 {
    margin: 12px 0 6px;
    font-size: 20px;
}

.newsletter p {
    color: #ecf5ef;
    line-height: 1.35;
    font-size: 13px;
}

.newsletter input,
.form-panel input,
.form-panel select,
.form-panel textarea {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #fff;
    font: inherit;
}

.newsletter input {
    margin-top: 16px;
}

.newsletter button,
.form-panel button,
.button {
    width: 100%;
    min-height: 42px;
    margin-top: 12px;
    background: var(--green-700);
}

.page {
    background: var(--soft);
}

.page-hero,
.student-layout,
.contact-layout,
.login-layout {
    padding: 58px 0;
}

.page-hero span,
.student-copy span,
.contact-layout span,
.login-panel span {
    color: var(--green-700);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
}

.page-hero h1,
.student-copy h1,
.contact-layout h1,
.login-panel h1 {
    max-width: 760px;
    margin: 10px 0 18px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
}

.search-box--page {
    grid-template-columns: 1fr 120px;
    margin-top: 28px;
}

.jobs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-bottom: 58px;
}

.job-card {
    padding: 24px;
}

.job-card h2 {
    margin: 14px 0 8px;
}

.job-card p {
    color: var(--muted);
}

.job-card ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 20px 0;
    list-style: none;
    color: #34424e;
}

.job-card li {
    display: flex;
    align-items: center;
    gap: 9px;
}

.button--outline {
    color: var(--green-800);
    background: #fff;
    border: 1px solid #9bcfbd;
    box-shadow: none;
}

.student-layout,
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 46px;
    align-items: start;
}

.contractor-layout {
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 42px;
    align-items: start;
    padding: 58px 0;
}

.contractor-copy span,
.contractor-panel span {
    color: var(--green-700);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
}

.contractor-copy h1 {
    max-width: 760px;
    margin: 10px 0 18px;
    color: var(--navy);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
}

.contractor-copy > p {
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.55;
}

.contractor-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.contractor-features article {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .05);
}

.contractor-features svg {
    width: 32px;
    height: 32px;
    color: var(--green-700);
}

.contractor-features strong {
    display: block;
    margin-top: 14px;
    color: var(--navy);
}

.contractor-features p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.45;
}

.panel-link {
    display: block;
    margin-top: 14px;
    color: var(--green-700);
    font-weight: 800;
    text-align: center;
}

.student-copy p,
.contact-layout p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.55;
}

.feature-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.feature-list p,
.contact-cards p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.feature-list svg,
.contact-cards svg {
    color: var(--green-700);
}

.form-panel {
    padding: 28px;
}

.form-panel h2 {
    margin-top: 0;
}

.form-panel label {
    display: grid;
    gap: 8px;
    margin-top: 16px;
    color: #2d3a44;
    font-weight: 700;
}

.form-panel textarea {
    padding-top: 12px;
    resize: vertical;
}

.student-access {
    display: grid;
    gap: 18px;
}

.student-login-panel {
    border-color: rgba(50, 184, 43, .36);
}

.student-login-panel span,
.student-pre-register span,
.student-portal__head span {
    color: var(--green-700);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.registration-hub {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding-bottom: 58px;
}

.registration-hub .alert {
    grid-column: 1 / -1;
}

.registration-card {
    align-self: start;
}

.registration-card span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-700);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.registration-card span svg {
    width: 18px;
    height: 18px;
}

.registration-hub--cards {
    align-items: stretch;
}

.access-hub {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.registration-choice-card {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .05);
}

.registration-choice-card span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-700);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.registration-choice-card span svg {
    width: 19px;
    height: 19px;
}

.registration-choice-card h2 {
    margin: 0;
    color: var(--navy);
    font-size: 23px;
}

.registration-choice-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.registration-choice-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    margin-top: 8px;
    border-radius: 7px;
    color: #fff;
    background: var(--green-700);
    font-weight: 900;
}

.public-registration {
    padding: 48px 0 58px;
}

.public-registration--verified {
    padding-top: 26px;
}

.public-registration__head {
    max-width: 780px;
    margin-bottom: 22px;
}

.public-registration--verified .public-registration__head {
    margin-bottom: 14px;
}

.public-registration__head span {
    color: var(--green-700);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.public-registration__head h1 {
    margin: 10px 0 12px;
    color: var(--navy);
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.05;
}

.public-registration--verified .public-registration__head h1 {
    max-width: 900px;
    font-size: clamp(30px, 3vw, 40px);
}

.public-registration__head p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
}

.public-registration--verified .public-registration__head p {
    font-size: 15px;
}

.public-registration-form {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .05);
}

.public-registration-form .admin-stepper {
    padding: 8px;
}

.public-registration-form .admin-stepper__item {
    min-height: 34px;
}

.public-registration-form .admin-form-step {
    padding: 14px;
}

.public-registration-form .admin-form-step.is-active {
    gap: 12px;
}

.public-registration-form .admin-form-grid {
    gap: 10px 12px;
}

.public-registration-form .admin-form-grid input,
.public-registration-form .admin-form-grid select,
.public-registration-form .admin-form-grid textarea {
    min-height: 38px;
}

.public-registration-form input[readonly] {
    color: var(--navy);
    background: #f3f5f2;
    border-color: rgba(50, 184, 43, .42);
}

.verification-panel {
    display: grid;
    gap: 16px;
    margin-bottom: 18px;
    padding: 20px;
    border: 1px solid rgba(50, 184, 43, .34);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .05);
}

.verification-panel--verified {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 12px;
    padding: 12px 16px;
}

.verification-panel span {
    color: var(--green-700);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.verification-panel h2 {
    margin: 8px 0;
    color: var(--navy);
    font-size: 24px;
}

.verification-panel--verified h2 {
    display: none;
}

.verification-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.verification-panel--verified p {
    display: none;
}

.verification-panel--verified .alert {
    margin: 0;
    padding: 9px 12px;
}

.verification-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
}

.verification-form--code {
    grid-template-columns: minmax(220px, 320px) auto;
}

.verification-form label {
    display: grid;
    gap: 7px;
    color: #2d3a44;
    font-size: 13px;
    font-weight: 800;
}

.verification-form input {
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 7px;
    font: inherit;
}

.verification-form button,
.verification-reset button {
    min-height: 42px;
    padding: 0 16px;
    border: 0;
    border-radius: 7px;
    color: #fff;
    background: var(--green-700);
    font-weight: 900;
    cursor: pointer;
}

.verification-reset {
    margin-top: -8px;
}

.verification-reset button {
    color: var(--green-800);
    background: #e8f2e6;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.alert--danger {
    color: #9f2f19;
    background: #fff0e8;
}

.student-register-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
}

.student-register-card span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-700);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.student-register-card h2 {
    margin: 10px 0 8px;
    color: var(--navy);
}

.student-register-card p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.45;
}

.student-register-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 7px;
    color: #fff;
    background: var(--green-700);
    font-weight: 900;
}

.student-portal {
    padding: 48px 0 58px;
}

.student-portal__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 22px;
}

.student-portal__head h1 {
    margin: 8px 0;
    color: var(--navy);
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1;
}

.student-portal__head p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.button--compact {
    width: auto;
    min-height: 40px;
    padding: 0 16px;
    margin-top: 0;
}

.student-portal__grid {
    display: grid;
    grid-template-columns: 280px repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.portal-summary,
.portal-card,
.portal-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .05);
}

.portal-summary,
.portal-card,
.portal-panel {
    padding: 18px;
}

.portal-avatar {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 50%;
    color: #fff;
    background: var(--navy);
    font-weight: 900;
}

.portal-summary strong,
.portal-summary span {
    display: block;
}

.portal-summary strong {
    color: var(--navy);
    font-size: 18px;
}

.portal-summary span {
    margin-top: 5px;
    color: var(--green-800);
    font-weight: 900;
}

.portal-summary p,
.portal-card p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.45;
}

.portal-card {
    display: grid;
    align-content: start;
    gap: 10px;
}

.portal-card > svg {
    width: 34px;
    height: 34px;
    color: var(--green-700);
}

.portal-card h2,
.portal-panel h2 {
    margin: 0;
    color: var(--navy);
    font-size: 18px;
}

.portal-card a {
    color: var(--green-800);
    font-weight: 900;
}

.student-portal__sections {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

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

.portal-panel__head button,
.portal-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 12px;
    border: 0;
    border-radius: 7px;
    color: var(--green-800);
    background: var(--lime);
    font-weight: 900;
}

.portal-list {
    display: grid;
    gap: 10px;
}

.portal-list div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
}

.portal-list strong {
    color: var(--navy);
}

.portal-list span {
    color: var(--muted);
    text-align: right;
}

.alert {
    padding: 12px 14px;
    margin-bottom: 18px;
    border-radius: 7px;
    color: #0f5f2e;
    background: #dff0dc;
}

.contact-cards {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.login-layout {
    display: grid;
    place-items: center;
}

.login-panel {
    width: 100%;
}

.login-card {
    width: min(980px, 100%);
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(7, 27, 54, .12);
}

.login-intro {
    padding: 42px;
    color: var(--navy);
    background: var(--soft);
    border-right: 1px solid var(--line);
}

.login-intro span,
.login-panel span {
    color: var(--green-700);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
}

.login-intro h1 {
    margin: 12px 0 4px;
    max-width: 360px;
    color: var(--navy);
    font-size: clamp(34px, 3.6vw, 46px);
    line-height: 1;
}

.login-intro > strong {
    display: block;
    margin-bottom: 18px;
    color: var(--green-700);
    font-size: 20px;
}

.login-intro > p {
    margin: 0;
    color: #44536a;
    font-size: 17px;
    line-height: 1.55;
}

.login-benefits {
    display: grid;
    gap: 14px;
    margin-top: 32px;
}

.login-benefits p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: var(--navy);
    font-weight: 700;
}

.login-benefits svg {
    width: 20px;
    color: var(--green-700);
}

.login-card .form-panel {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 42px;
}

.login-panel h2 {
    margin: 10px 0 24px;
    color: var(--navy);
    font-size: 28px;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    font-size: 13px;
}

.login-options a {
    color: var(--green-700);
    font-weight: 800;
}

.remember-option {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: center;
    gap: 8px !important;
    margin: 0 !important;
    font-weight: 600 !important;
}

.remember-option input {
    width: auto;
    min-height: auto;
}

.admin-body {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 270px 1fr;
    background: #f4f7f6;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 24px 18px;
    background: #fff;
    border-right: 1px solid var(--line);
}

.admin-brand {
    display: block;
    padding: 4px 8px 24px;
}

.admin-brand img {
    width: 170px;
}

.admin-nav {
    display: grid;
    gap: 6px;
}

.admin-nav__group {
    display: block;
    margin: 12px 8px 4px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.admin-nav__group:first-child {
    margin-top: 0;
}

.admin-nav a {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    border-radius: 8px;
    color: #34424e;
    font-weight: 800;
}

.admin-nav a:hover,
.admin-nav .is-active {
    color: var(--green-800);
    background: #e8f2e6;
}

.admin-nav svg {
    width: 18px;
}

.admin-main {
    min-width: 0;
    padding: 28px;
}

.admin-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.admin-top span {
    color: var(--green-700);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.admin-top h1 {
    margin: 6px 0 0;
    color: var(--navy);
    font-size: 34px;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    font-weight: 800;
}

.admin-user a {
    color: var(--green-700);
}

.admin-grid {
    display: grid;
    gap: 16px;
}

.admin-grid--stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 18px;
}

.admin-grid--reports {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.admin-feature-card {
    min-height: 150px;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--soft);
}

.admin-feature-card svg {
    width: 28px;
    height: 28px;
    color: var(--green-700);
}

.admin-feature-card strong {
    color: var(--navy);
    font-size: 17px;
}

.admin-feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.admin-stat,
.admin-panel,
.admin-report-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .05);
}

.admin-stat {
    padding: 20px;
}

.admin-stat svg,
.admin-report-card svg {
    width: 30px;
    color: var(--green-700);
}

.admin-stat span {
    display: block;
    margin-top: 14px;
    color: var(--muted);
    font-weight: 700;
}

.admin-stat strong {
    display: block;
    margin-top: 6px;
    color: var(--navy);
    font-size: 30px;
}

.admin-stat p,
.admin-report-card p {
    margin: 6px 0 0;
    color: var(--muted);
}

.admin-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.admin-panel {
    padding: 20px;
    overflow-x: auto;
}

.permission-matrix {
    display: grid;
    min-width: 780px;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.permission-matrix > div {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 1fr);
    gap: 0;
    border-bottom: 1px solid var(--line);
}

.permission-matrix > div:last-child {
    border-bottom: 0;
}

.permission-matrix strong,
.permission-matrix span,
.permission-matrix label {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    border-right: 1px solid var(--line);
}

.permission-matrix strong:last-child,
.permission-matrix span:last-child,
.permission-matrix label:last-child {
    border-right: 0;
}

.permission-matrix strong {
    color: var(--navy);
    background: var(--soft);
}

.permission-matrix label {
    color: #34424e;
    font-size: 13px;
    font-weight: 800;
}

.admin-config-list {
    display: grid;
    gap: 12px;
}

.admin-config-list--grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-config-list--email {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-config-list label {
    display: grid;
    gap: 7px;
    color: #2d3a44;
    font-size: 13px;
    font-weight: 800;
}

.admin-config-list input,
.admin-config-list select {
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #fff;
    font: inherit;
}

.admin-email-note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    color: var(--navy);
    background: var(--soft);
}

.admin-email-note svg {
    width: 18px;
    flex: 0 0 18px;
    color: var(--green-700);
}

.admin-email-note p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
}

.admin-whatsapp-note {
    border: 1px solid rgba(37, 211, 102, .28);
    background: rgba(37, 211, 102, .08);
}

.admin-panel__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.admin-panel__head h2 {
    margin: 0;
    color: var(--navy);
    font-size: 20px;
}

.admin-panel__head a,
.admin-panel__head button {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border: 0;
    border-radius: 7px;
    color: #fff;
    background: var(--green-700);
    font-weight: 800;
    cursor: pointer;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

.admin-table th,
.admin-table td {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    font-size: 14px;
}

.admin-table th {
    color: var(--navy);
    background: #f3f5f2;
}

.admin-alert-list {
    display: grid;
    gap: 12px;
}

.admin-alert-list p {
    margin: 0;
    padding: 12px;
    border-radius: 7px;
    background: #f3f5f2;
}

.admin-report-card {
    padding: 20px;
}

.admin-report-card strong {
    display: block;
    margin-top: 12px;
    color: var(--navy);
}

.admin-checklist {
    display: grid;
    gap: 12px;
}

.admin-checklist label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border-radius: 7px;
    background: #f3f5f2;
    font-weight: 700;
}

.admin-checklist input {
    width: 18px;
    height: 18px;
}

.admin-chip {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--green-800);
    background: #e8f2e6;
    font-size: 13px;
    font-weight: 800;
}

.admin-primary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 7px;
    color: #fff;
    background: var(--green-700);
    font-weight: 800;
}

.admin-primary-action--light {
    color: var(--green-800);
    background: #e8f2e6;
}

.admin-muted {
    color: var(--muted);
}

.admin-search-form {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) 110px auto;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f3f5f2;
}

.admin-search-form svg {
    width: 20px;
    color: var(--green-700);
    justify-self: center;
}

.admin-search-form input {
    width: 100%;
    min-height: 42px;
    border: 0;
    outline: 0;
    background: transparent;
    font: inherit;
}

.admin-search-form button,
.admin-search-form a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border: 0;
    border-radius: 7px;
    color: #fff;
    background: var(--green-700);
    font-weight: 800;
}

.admin-search-form a {
    color: var(--green-800);
    background: #e8f2e6;
}

.admin-register-card {
    display: block;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .05);
}

.admin-register-card svg {
    width: 34px;
    height: 34px;
    color: var(--green-700);
}

.admin-register-card strong {
    display: block;
    margin-top: 14px;
    color: var(--navy);
    font-size: 17px;
}

.admin-register-card p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.45;
}

.admin-message {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 7px;
    color: #0f5f2e;
    background: #dff0dc;
    font-weight: 800;
}

.admin-message--danger {
    color: #8a2b12;
    background: #fff0e8;
}

.admin-info-panel {
    margin-bottom: 16px;
    padding: 16px 20px;
}

.admin-info-panel strong {
    color: var(--navy);
}

.admin-info-panel p {
    margin: 6px 0 0;
    color: var(--muted);
}

.admin-crud-form {
    display: grid;
    gap: 16px;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.admin-form-section {
    grid-column: 1 / -1;
    padding-top: 8px;
    border-top: 1px solid var(--line);
}

.admin-form-section:first-child {
    padding-top: 0;
    border-top: 0;
}

.admin-form-section h3 {
    margin: 0;
    color: var(--navy);
    font-size: 18px;
}

.admin-form-section p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.admin-form-grid label {
    display: grid;
    gap: 7px;
    color: #2d3a44;
    font-size: 13px;
    font-weight: 800;
}

.admin-form-grid input,
.admin-form-grid select,
.admin-form-grid textarea {
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}

.admin-form-grid input[type="file"] {
    padding: 9px 12px;
    min-height: 44px;
}

.admin-form-grid small {
    color: var(--muted);
}

.admin-form-grid textarea {
    padding-top: 10px;
    resize: vertical;
}

.admin-form-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-form-actions button,
.admin-form-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border: 0;
    border-radius: 7px;
    color: #fff;
    background: var(--green-700);
    font-weight: 800;
    cursor: pointer;
}

.admin-form-actions a {
    color: var(--green-800);
    background: #e8f2e6;
}

.admin-stepper {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f3f5f2;
}

.admin-stepper__item {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 10px;
    border: 0;
    border-radius: 7px;
    color: #50616d;
    background: transparent;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.admin-stepper__item span {
    width: 24px;
    height: 24px;
    display: grid;
    flex: 0 0 24px;
    place-items: center;
    border-radius: 50%;
    color: var(--green-800);
    background: #dff0dc;
}

.admin-stepper__item.is-active {
    color: #fff;
    background: var(--navy);
}

.admin-stepper__item.is-active span {
    color: var(--navy);
    background: #fff;
}

.admin-form-step {
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.admin-form-step.is-active {
    display: grid;
    gap: 16px;
}

.admin-step-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.admin-step-actions button,
.admin-step-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border: 0;
    border-radius: 7px;
    color: #fff;
    background: var(--green-700);
    font-weight: 800;
    cursor: pointer;
}

.admin-step-actions [data-step-prev],
.admin-step-actions a {
    color: var(--green-800);
    background: #e8f2e6;
}

.admin-step-actions [hidden] {
    display: none;
}

.admin-table-actions {
    white-space: nowrap;
}

.admin-table-actions a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-right: 8px;
    padding: 0 10px;
    border-radius: 6px;
    color: var(--green-800);
    background: #e8f2e6;
    font-size: 13px;
    font-weight: 800;
}

.admin-table-actions .danger {
    color: #9f2f19;
    background: #fff0e8;
}

.admin-header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.document-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 110px;
}

.document-thumb {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 7px;
    color: var(--green-800);
    background: #f3f5f2;
    font-size: 12px;
    font-weight: 900;
}

.document-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.document-thumb--pdf {
    background: #fff0e8;
    color: #9f2f19;
}

.student-avatar {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    color: #fff;
    background: var(--navy);
    font-weight: 900;
}

.student-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.student-avatar--empty {
    text-decoration: none;
}

.document-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    padding: 28px;
    background: rgba(7, 17, 23, .72);
}

.document-modal.is-open {
    display: grid;
    place-items: center;
}

.document-modal__dialog {
    width: min(1100px, 100%);
    height: min(820px, 92vh);
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.document-modal__close {
    justify-self: end;
    min-height: 38px;
    margin: 12px;
    padding: 0 16px;
    border: 0;
    border-radius: 7px;
    color: #fff;
    background: var(--green-700);
    font-weight: 800;
    cursor: pointer;
}

.document-modal__body {
    min-height: 0;
    display: grid;
    place-items: center;
    padding: 0 18px 18px;
}

.document-modal__body img,
.document-modal__body iframe {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: contain;
}

.student-profile {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 20px;
}

.student-profile__summary {
    align-self: start;
    padding: 20px;
    border-radius: 8px;
    color: var(--navy);
    border: 1px solid #dfe5dc;
    background: #f3f5f2;
}

.student-profile__summary .student-avatar {
    width: 86px;
    height: 86px;
    margin-bottom: 18px;
    border: 3px solid #dfe5dc;
    font-size: 28px;
}

.student-profile__summary span {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    color: #fff;
    background: var(--green-700);
    font-size: 13px;
    font-weight: 800;
}

.student-profile__summary strong {
    display: block;
    margin-top: 18px;
    font-size: 22px;
}

.student-profile__summary p {
    margin: 8px 0 0;
    color: var(--muted);
}

.student-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.student-detail-sections {
    display: grid;
    gap: 14px;
}

.student-detail-tabs {
    min-width: 0;
    display: grid;
    gap: 14px;
}

.student-detail-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f3f5f2;
}

.student-detail-tabs__nav button {
    min-height: 36px;
    padding: 0 13px;
    border: 0;
    border-radius: 7px;
    color: var(--green-800);
    background: #e8f2e6;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.student-detail-tabs__nav button.is-active {
    color: #fff;
    background: var(--navy);
}

.student-detail-section {
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.student-detail-section.is-active {
    display: block;
}

.student-detail-section__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.student-detail-section h3 {
    margin: 0;
    color: var(--navy);
    font-size: 17px;
}

.student-detail-item {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f3f5f2;
}

.student-detail-item span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.student-detail-item strong {
    display: block;
    margin-top: 6px;
    color: var(--navy);
    overflow-wrap: anywhere;
}

.student-documents-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.student-document-card {
    min-height: 118px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f3f5f2;
}

.student-document-card strong {
    display: block;
    margin-bottom: 12px;
    color: var(--navy);
}

.student-card-list {
    display: grid;
    gap: 12px;
}

.student-list-card {
    display: grid;
    grid-template-columns: minmax(250px, 1.15fr) minmax(420px, 1.85fr) auto;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border: 0;
    border-radius: 8px;
    background: #f8fbf9;
    box-shadow: inset 0 0 0 1px rgba(10, 36, 56, .06);
}

.student-list-card__person {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.student-list-card__identity {
    min-width: 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.student-list-card__person h3 {
    margin: 0;
    color: var(--navy);
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow-wrap: anywhere;
}

.student-list-card__identity span {
    min-width: 86px;
    color: var(--muted);
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.student-list-card__details {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px 14px;
}

.student-list-card__details span {
    min-width: 0;
    color: #34424e;
    font-size: 13px;
    overflow-wrap: anywhere;
}

.student-list-card__details strong {
    display: block;
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
}

.student-list-card__docs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.student-list-card__docs .admin-muted {
    display: none;
}

.student-list-card__actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.student-list-card__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-height: 36px;
    padding: 0;
    border-radius: 7px;
    color: var(--green-800);
    background: #e8f2e6;
    font-weight: 800;
}

.student-list-card__actions svg {
    width: 17px;
    height: 17px;
}

.student-list-card__actions .danger {
    color: #9f2f19;
    background: #fff0e8;
}

.about-band {
    margin-top: 46px;
    padding: 42px 0;
    color: #fff;
    background: var(--navy);
}

.about-band__inner {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: center;
}

.about-band h2 {
    margin: 0 0 8px;
}

.about-band p {
    margin: 0;
    color: #dceee7;
}

.about-band .button {
    width: auto;
    min-width: 170px;
    padding: 0 22px;
    margin: 0;
}

.footer {
    padding: 26px 0;
    color: #d7e3df;
    background: #061215;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.footer p {
    margin: 0;
}

.footer a {
    margin-left: 18px;
}

@media (max-width: 1120px) {
    .header__inner {
        height: auto;
        min-height: 92px;
        flex-wrap: wrap;
        padding-block: 16px;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .nav {
        display: none;
        width: 100%;
        order: 4;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 16px 0;
    }

    .nav--open {
        display: flex;
    }

    .student-button {
        margin-left: auto;
    }

    .header-actions {
        order: 3;
        margin-left: auto;
    }

    .student-layout,
    .contact-layout,
    .contractor-layout {
        grid-template-columns: 1fr;
    }

    .hero__content {
        min-height: 430px;
        grid-template-columns: minmax(0, 1fr);
        position: relative;
    }

    .hero__copy {
        max-width: 72%;
    }

    .hero h1 {
        font-size: clamp(36px, 5.3vw, 54px);
    }

    .hero__visual {
        position: absolute;
        inset: 0 0 0 auto;
        width: 43%;
        height: 100%;
        margin: 0;
        opacity: .42;
    }

    .hero__visual img {
        border-top-left-radius: 110px;
    }

    .hero__badge {
        display: none;
    }

    .quick-links {
        grid-template-columns: repeat(2, 1fr);
        margin-right: 0;
    }

    .home-actions {
        width: min(1370px, calc(100% - 56px));
        margin-inline: auto;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .newsletter {
        position: static;
        width: auto;
        margin-top: 0;
    }

    .opportunity-row {
        grid-template-columns: 62px 1fr;
    }

    .row-meta,
    .status,
    .row-action {
        grid-column: 2;
    }

    .admin-stepper {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .admin-feature-grid,
    .admin-config-list--grid,
    .admin-config-list--email {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .registration-hub {
        grid-template-columns: 1fr;
    }

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

    .student-list-card {
        grid-template-columns: 1fr;
    }

    .student-list-card__details {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .student-list-card__actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, 1360px);
    }

    .topbar__inner {
        flex-wrap: wrap;
        gap: 10px 18px;
        padding: 10px 0;
    }

    .topbar__right {
        width: 100%;
        margin-left: 0;
        gap: 8px;
        justify-content: flex-start;
    }

    .brand {
        min-width: 0;
    }

    .brand img {
        width: 160px;
    }

    .student-button {
        width: 100%;
    }

    .header-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .contractor-button,
    .student-button {
        width: 100%;
    }

    .hero__content {
        min-height: auto;
    }

    .hero__copy {
        max-width: none;
        padding: 32px 0 24px;
    }

    .hero h1 {
        max-width: 640px;
        font-size: clamp(34px, 10vw, 46px);
    }

    .hero p {
        max-width: 610px;
        font-size: 17px;
    }

    .hero__visual {
        position: relative;
        width: 100%;
        height: 260px;
        opacity: 1;
        margin-top: 0;
    }

    .hero__visual img {
        border-top-left-radius: 0;
    }

    .hero__stats {
        grid-template-columns: 1fr;
        max-width: none;
        gap: 12px;
    }

    .hero__stats,
    .jobs {
        grid-template-columns: 1fr;
    }

    .hero__badge {
        display: flex;
        left: auto;
        right: 12px;
        bottom: 12px;
        width: min(210px, calc(100% - 24px));
        min-height: 0;
        gap: 8px;
        padding: 10px 12px;
        border-radius: 7px;
        box-shadow: 0 10px 22px rgba(0, 63, 53, .18);
    }

    .hero__badge svg {
        width: 24px;
        height: 24px;
        flex: 0 0 24px;
    }

    .hero__badge p {
        font-size: 11px;
        line-height: 1.25;
    }

    .quick-card {
        grid-template-columns: 48px minmax(0, 1fr) 24px;
        min-height: auto;
        padding: 18px;
    }

    .quick-card__arrow {
        grid-column: 3;
        grid-row: 1 / span 2;
        align-self: center;
    }

    .home-actions {
        width: min(100% - 28px, 1360px);
        margin-inline: auto;
        padding: 16px 0 8px;
    }

    .quick-links {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-right: 0;
    }

    .newsletter {
        position: static;
        width: auto;
        margin-top: 12px;
        min-height: auto;
    }

    .section-title,
    .about-band__inner,
    .footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer a {
        display: inline-block;
        margin: 8px 16px 0 0;
    }

    .opportunities {
        width: min(100% - 28px, 1360px);
        padding-top: 18px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .opportunity-row {
        grid-template-columns: 52px 1fr;
        gap: 10px 14px;
        padding: 16px;
    }

    .opportunity-row h3 {
        font-size: 15px;
    }

    .row-meta,
    .status,
    .row-action {
        grid-column: 2;
    }

    .row-action {
        justify-self: start;
    }

    .contractor-layout {
        padding: 40px 0;
    }

    .contractor-features {
        grid-template-columns: 1fr;
    }

    .login-card {
        grid-template-columns: 1fr;
    }

    .login-intro,
    .login-card .form-panel {
        padding: 28px;
    }

    .login-options {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-body {
        display: block;
    }

    .admin-sidebar {
        position: static;
        height: auto;
        padding: 18px;
    }

    .admin-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-main {
        padding: 18px;
    }

    .admin-top,
    .admin-user,
    .admin-panel__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-grid--stats,
    .admin-grid--reports,
    .admin-two-col,
    .admin-feature-grid,
    .admin-config-list--grid,
    .admin-config-list--email {
        grid-template-columns: 1fr;
    }

    .admin-form-grid {
        grid-template-columns: 1fr;
    }

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

    .admin-form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-stepper {
        grid-template-columns: 1fr;
    }

    .admin-step-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-search-form {
        grid-template-columns: 24px 1fr;
    }

    .admin-search-form button,
    .admin-search-form a {
        grid-column: 1 / -1;
    }

    .student-portal__head,
    .portal-panel__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .student-portal__grid {
        grid-template-columns: 1fr;
    }

    .portal-list div {
        flex-direction: column;
        gap: 5px;
    }

    .portal-list span {
        text-align: left;
    }

    .admin-header-actions {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .student-profile,
    .student-detail-grid,
    .student-documents-grid {
        grid-template-columns: 1fr;
    }

    .student-list-card {
        grid-template-columns: 1fr;
    }

    .student-list-card__details {
        grid-template-columns: 1fr;
    }

    .student-list-card__actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .document-modal {
        padding: 12px;
    }

    .document-modal__dialog {
        height: 88vh;
    }
}

@media (max-width: 900px) {
    .search-box,
    .search-box--page {
        grid-template-columns: 1fr 1fr;
    }

    .search-box button {
        grid-column: span 2;
    }

    .hero__stats {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

@media (max-width: 600px) {
    .search-box,
    .search-box--page {
        grid-template-columns: 1fr;
    }

    .search-box button {
        grid-column: auto;
    }

    .access-hub {
        grid-template-columns: 1fr;
    }

    .hero__visual {
        height: 220px;
    }

    .hero__badge {
        right: 10px;
        bottom: 10px;
        width: 176px;
        padding: 8px 10px;
    }

    .hero__badge svg {
        width: 20px;
        height: 20px;
        flex-basis: 20px;
    }

    .hero__badge p {
        font-size: 10px;
        line-height: 1.2;
    }
}
