:root {
    --ink: #1f1b2d;
    --muted: #6f6a7c;
    --line: #ece8f5;
    --soft: #faf8ff;
    --pale: #f4e7ff;
    --purple: #6d4df2;
    --purple-dark: #4f33c9;
    --red: #f04452;
    --yellow: #ffc857;
    --teal: #1fb7a6;
    --dark: #1c1728;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #f7f7f7;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
}

a {
    color: var(--purple);
    text-decoration: none;
}

.top-market {
    align-items: center;
    background: #15111f;
    color: var(--white);
    display: grid;
    gap: 14px;
    grid-template-columns: auto 1fr auto;
    padding: 12px 7vw;
}

.top-market span {
    color: #cfc9dd;
    font-size: 13px;
    font-weight: 800;
}

.top-market a {
    background: var(--teal);
    border-radius: 4px;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    padding: 8px 16px;
}

.site-header {
    align-items: center;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(31, 27, 45, .08);
    box-shadow: 0 14px 36px rgba(31, 27, 45, .06);
    display: flex;
    justify-content: space-between;
    padding: 24px 7vw;
    position: sticky;
    top: 0;
    z-index: 10;
}

.brand {
    align-items: center;
    color: var(--ink);
    display: flex;
    font-size: 24px;
    font-weight: 900;
    gap: 8px;
    text-transform: uppercase;
}

.brand span {
    background: linear-gradient(135deg, var(--purple), var(--teal));
    border-radius: 12px;
    color: var(--white);
    display: inline-grid;
    height: 34px;
    place-items: center;
    text-transform: lowercase;
    width: 34px;
}

.brand img {
    display: block;
    max-height: 72px;
    max-width: 260px;
    object-fit: contain;
}

.brand strong {
    color: var(--ink);
    font-size: 24px;
}

nav {
    align-items: center;
    display: flex;
    gap: 24px;
}

.menu-toggle {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
    display: none;
    gap: 5px;
    padding: 10px;
}

.menu-toggle span {
    background: var(--ink);
    display: block;
    height: 2px;
    width: 24px;
}

nav a {
    color: var(--ink);
    font-weight: 700;
}

nav a:first-child {
    color: var(--purple);
}

nav form {
    margin: 0;
}

nav button {
    background: none;
    border: 0;
    color: var(--purple);
    cursor: pointer;
    font: inherit;
    font-weight: 700;
}

.nav-pill,
.button {
    background: var(--purple);
    border: 0;
    border-radius: 12px;
    box-shadow: 0 14px 28px rgba(109, 77, 242, .18);
    color: var(--white);
    cursor: pointer;
    display: inline-block;
    font-weight: 900;
    padding: 15px 28px;
}

.button.light {
    background: var(--white);
    box-shadow: 0 12px 28px rgba(31, 27, 45, .08);
    color: var(--ink);
}

.button.bordered {
    border: 1px solid var(--line);
}

.button.small {
    padding: 9px 14px;
}

.button.danger {
    background: #d92d3b;
    box-shadow: 0 14px 28px rgba(217, 45, 59, .18);
}

.nav-pill {
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--ink);
    padding: 14px 22px;
}

.notice {
    background: #f0fff6;
    border: 1px solid #b7f1cf;
    color: #15683c;
    margin: 18px 6vw 0;
    padding: 14px 16px;
}

.notice.error {
    background: #fff1f3;
    border-color: #ffcbd1;
    color: #9f1239;
}

.hero-slider {
    position: relative;
}

.hero-slide {
    display: none;
}

.hero-slide.is-active {
    display: grid;
}

.edu-hero {
    align-items: center;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, .96), rgba(244, 247, 255, .92)),
        linear-gradient(135deg, #f9fbff, #eefbf8);
    display: grid;
    gap: 50px;
    grid-template-columns: minmax(320px, 1fr) minmax(320px, .85fr);
    min-height: 720px;
    overflow: hidden;
    padding: 90px 7vw 80px;
    position: relative;
}

.hero-slider-controls {
    align-items: center;
    bottom: 38px;
    display: flex;
    gap: 14px;
    left: 7vw;
    position: absolute;
    z-index: 4;
}

.hero-slider-controls > button {
    background: #ffffff;
    border: 1px solid rgba(31, 27, 45, .1);
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(31, 27, 45, .12);
    cursor: pointer;
    height: 42px;
    position: relative;
    width: 42px;
}

.hero-slider-controls > button::before {
    border-bottom: 2px solid var(--ink);
    border-left: 2px solid var(--ink);
    content: "";
    height: 10px;
    left: 17px;
    position: absolute;
    top: 15px;
    transform: rotate(45deg);
    width: 10px;
}

.hero-slider-controls > button:last-child::before {
    left: 13px;
    transform: rotate(225deg);
}

.hero-slider-controls div {
    align-items: center;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(31, 27, 45, .08);
    border-radius: 999px;
    display: flex;
    gap: 8px;
    padding: 10px 12px;
}

.hero-slider-controls div button {
    background: #c9c5d4;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    height: 9px;
    padding: 0;
    width: 9px;
}

.hero-slider-controls div button.active {
    background: var(--purple);
    width: 28px;
}

.eyebrow {
    color: var(--purple);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 14px;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    line-height: 1.14;
    margin: 0 0 16px;
}

h1 {
    font-size: clamp(44px, 5vw, 68px);
    max-width: 710px;
}

h1 span {
    color: var(--red);
}

h2 {
    font-size: 42px;
}

.hero-copy-block p:not(.eyebrow),
.section p,
.about-section p,
.newsletter p {
    color: var(--muted);
}

.hero-copy-block > p:not(.eyebrow) {
    font-size: 18px;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.student-art {
    min-height: 520px;
    position: relative;
    isolation: isolate;
}

.blob {
    background:
        linear-gradient(145deg, rgba(109, 77, 242, .94), rgba(31, 183, 166, .92));
    box-shadow: 0 26px 70px rgba(31, 27, 45, .14);
    border-radius: 38% 62% 58% 42%;
    height: 360px;
    position: absolute;
    right: 34px;
    top: 78px;
    transform: rotate(7deg);
    width: 350px;
}

.student-card {
    align-items: center;
    background: var(--white);
    border: 1px solid rgba(31, 27, 45, .08);
    border-radius: 16px;
    box-shadow: 0 20px 46px rgba(31, 27, 45, .14);
    display: flex;
    gap: 14px;
    max-width: 300px;
    padding: 18px;
    position: absolute;
    right: 82px;
    top: 205px;
    z-index: 2;
}

.face {
    background: linear-gradient(135deg, var(--yellow), var(--teal));
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .36);
    flex: 0 0 58px;
    height: 58px;
    width: 58px;
}

.student-card strong {
    display: block;
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 4px;
}

.student-card span {
    color: var(--muted);
    display: block;
    font-size: 13px;
    line-height: 1.45;
}

.orbit {
    border: 2px solid rgba(109, 77, 242, .2);
    border-radius: 999px;
    color: var(--purple);
    font-size: 12px;
    font-weight: 900;
    padding: 18px;
    position: absolute;
}

.plane {
    right: 22px;
    top: 120px;
}

.pin {
    bottom: 92px;
    right: 250px;
}

.service-strip,
.section,
.about-section,
.faq-section,
.consultation-section {
    padding: 84px 7vw;
}

.service-strip {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: -60px;
    position: relative;
    z-index: 3;
}

.feature-card,
.destination-card,
.discipline-card,
.form-card,
.panel,
.card,
.story-card,
.blog-card,
details {
    background: #ffffff;
    border: 1px solid rgba(31, 27, 45, .08);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(31, 27, 45, .08);
}

.feature-card {
    min-height: 260px;
    padding: 36px 32px;
    transition: transform .18s ease, box-shadow .18s ease;
}

.feature-card:hover {
    box-shadow: 0 28px 62px rgba(31, 27, 45, .12);
    transform: translateY(-4px);
}

.feature-icon,
.round-icon {
    align-items: center;
    background: #fff4d4;
    border-radius: 50%;
    color: var(--purple);
    display: flex;
    font-weight: 900;
    height: 56px;
    justify-content: center;
    margin-bottom: 24px;
    width: 56px;
}

.feature-card:nth-child(2) .feature-icon,
.round-icon {
    background: #eee8ff;
}

.feature-card:nth-child(3) .feature-icon {
    background: #ffe6e8;
    color: var(--red);
}

.centered {
    text-align: center;
}

.centered h2 {
    margin-left: auto;
    margin-right: auto;
    max-width: 640px;
}

.story-grid,
.blog-grid {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 38px;
}

.story-card {
    align-items: center;
    background:
        linear-gradient(180deg, rgba(31, 27, 45, .08), rgba(31, 27, 45, .88)),
        radial-gradient(circle at 30% 12%, rgba(255, 255, 255, .28), transparent 22%),
        linear-gradient(135deg, #b8a7ca, #756a82);
    border: 0;
    color: var(--white);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 260px;
    justify-content: flex-end;
    overflow: hidden;
    padding: 24px;
    position: relative;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
    width: 100%;
}

.story-card:nth-child(2) {
    background:
        linear-gradient(180deg, rgba(31, 27, 45, .08), rgba(31, 27, 45, .88)),
        linear-gradient(135deg, #83c5be, #5e548e);
}

.story-card:nth-child(3) {
    background:
        linear-gradient(180deg, rgba(31, 27, 45, .08), rgba(31, 27, 45, .88)),
        linear-gradient(135deg, #f7b267, #6d4df2);
}

.story-card:nth-child(4) {
    background:
        linear-gradient(180deg, rgba(31, 27, 45, .08), rgba(31, 27, 45, .88)),
        linear-gradient(135deg, #a894b6, #4b4453);
}

.story-card:hover {
    box-shadow: 0 28px 55px rgba(31, 27, 45, .2);
    transform: translateY(-6px);
}

.play {
    background: var(--purple);
    border-radius: 50%;
    display: grid;
    height: 64px;
    left: 50%;
    place-items: center;
    position: absolute;
    top: 95px;
    transform: translateX(-50%);
    width: 64px;
}

.play::before {
    border-bottom: 11px solid transparent;
    border-left: 16px solid var(--white);
    border-top: 11px solid transparent;
    content: "";
    margin-left: 4px;
}

.story-card span {
    font-size: 13px;
}

.destination-band,
.steps-band {
    background: #f2f4f6;
    border: 1px solid rgba(31, 27, 45, .06);
    border-radius: 24px;
    margin: 40px 5vw;
    padding: 86px 4vw;
    text-align: center;
}

.destination-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    margin: 44px 0 54px;
}

.destination-card,
.discipline-card {
    align-items: center;
    display: grid;
    gap: 14px;
    justify-items: center;
    min-height: 142px;
    padding: 22px 14px;
}

.flag {
    align-items: center;
    background: linear-gradient(135deg, #ff6670 0 35%, #ffffff 35% 62%, #56a4e8 62%);
    border-radius: 50%;
    color: var(--ink);
    display: flex;
    font-weight: 900;
    height: 72px;
    justify-content: center;
    width: 72px;
}

.about-section {
    align-items: center;
    background: #ffffff;
    display: grid;
    gap: 70px;
    grid-template-columns: minmax(0, .95fr) minmax(320px, 1fr);
}

.metric-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 34px 0;
}

.metric-row div {
    background: #f8f8fb;
    border: 1px solid rgba(31, 27, 45, .08);
    border-radius: 14px;
    padding: 18px 28px;
}

.metric-row strong {
    color: var(--purple);
    display: block;
    font-size: 38px;
}

.metric-row div:nth-child(2) strong {
    color: var(--yellow);
}

.metric-row div:nth-child(3) strong {
    color: var(--red);
}

.metric-row span {
    font-size: 13px;
}

.about-visual {
    background: linear-gradient(135deg, #eefcf9, #f6f1ff);
    border-radius: 24px;
    box-shadow: inset 0 0 0 1px rgba(31, 27, 45, .06);
    min-height: 390px;
    padding: 42px;
    position: relative;
}

.library-card {
    background: var(--white);
    border-radius: 14px;
    bottom: 42px;
    box-shadow: 0 22px 45px rgba(31, 27, 45, .14);
    max-width: 310px;
    padding: 26px;
    position: absolute;
}

.library-card span {
    color: var(--muted);
    display: block;
    margin-top: 8px;
}

.section-heading {
    align-items: end;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.tabs {
    display: flex;
    gap: 20px;
}

.tabs span {
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 900;
    padding: 16px 34px;
    text-transform: uppercase;
}

.tabs span:first-child {
    background: linear-gradient(135deg, var(--purple), var(--teal));
    color: var(--white);
}

.discipline-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.discipline-card {
    min-height: 156px;
    text-align: center;
}

.discipline-card span {
    font-size: 14px;
}

.college-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.college-list span {
    background: #eefcf9;
    border: 1px solid #cbeee8;
    border-radius: 999px;
    color: var(--ink);
    font-weight: 800;
    padding: 10px 16px;
}

.steps-band {
    background: linear-gradient(135deg, #f7e9ff, #eafbf7);
}

.steps-row {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 58px;
}

.step-item {
    display: grid;
    gap: 18px;
    justify-items: center;
    position: relative;
}

.step-circle {
    background: var(--white);
    border-radius: 50%;
    height: 96px;
    position: relative;
    width: 96px;
}

.step-circle::after {
    background: linear-gradient(135deg, var(--purple), var(--teal));
    border-radius: 12px;
    content: "";
    height: 32px;
    left: 32px;
    position: absolute;
    top: 32px;
    width: 32px;
}

.blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    text-align: left;
}

.blog-card {
    border: 1px solid rgba(31, 27, 45, .08);
    box-shadow: 0 18px 42px rgba(31, 27, 45, .08);
    padding: 18px;
}

.blog-image {
    background: linear-gradient(135deg, #d5f4ef, #ffe0a3);
    background-position: center;
    background-size: cover;
    border-radius: 18px;
    height: 170px;
    margin-bottom: 24px;
}

.video-thumb {
    border: 0;
    cursor: pointer;
    display: grid;
    place-items: center;
    width: 100%;
}

.blog-card span {
    color: var(--muted);
    font-size: 14px;
}

.faq-section {
    background: #f1f1f3;
    display: grid;
    gap: 70px;
    grid-template-columns: minmax(280px, .75fr) minmax(320px, 1fr);
}

.question-copy {
    color: var(--ink);
    font-size: 20px;
    font-weight: 800;
    max-width: 430px;
}

.faq-list {
    display: grid;
    gap: 16px;
}

details {
    box-shadow: 0 10px 28px rgba(31, 27, 45, .06);
    padding: 20px 22px;
}

summary {
    cursor: pointer;
    font-weight: 800;
}

details p {
    color: var(--muted);
    margin-bottom: 0;
}

.consultation-section {
    background: #f7f7f8;
}

.consultation-section form {
    background: #ffffff;
    border: 1px solid rgba(31, 27, 45, .08);
    border-radius: 22px;
    box-shadow: 0 26px 70px rgba(31, 27, 45, .11);
    margin: 0 auto;
    max-width: 900px;
    padding: 38px;
}

.consult-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
    color: #4f4a5f;
    display: grid;
    font-size: 14px;
    gap: 8px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 16px;
}

input,
select,
textarea {
    background: #fbfbfd;
    border: 1px solid #c3c3c3;
    border-radius: 12px;
    color: var(--ink);
    font: inherit;
    font-weight: 700;
    padding: 14px;
    width: 100%;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(109, 77, 242, .12);
    outline: 0;
}

input::placeholder,
textarea::placeholder {
    color: #918b9f;
    font-weight: 700;
}

textarea {
    margin: 16px 0;
    resize: vertical;
}

.newsletter {
    align-items: center;
    background: #15111f;
    color: var(--white);
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, .9fr);
    padding: 70px 7vw;
}

.newsletter > div {
    align-items: center;
    display: flex;
    gap: 26px;
}

.newsletter h2,
.newsletter p {
    margin: 0;
}

.mail-icon {
    background: var(--purple);
    border-radius: 50%;
    height: 72px;
    width: 72px;
}

.newsletter form {
    display: flex;
}

.newsletter input {
    border: 0;
    border-radius: 14px 0 0 14px;
}

.newsletter button {
    background: linear-gradient(135deg, var(--red), var(--purple));
    border: 0;
    border-radius: 0 14px 14px 0;
    color: var(--white);
    font-weight: 900;
    padding: 0 28px;
}

.footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: var(--white);
    display: grid;
    gap: 38px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 42px 7vw 70px;
}

.footer a,
.footer p {
    color: #cbc5dc;
    display: block;
    margin: 12px 0;
}

.modal-open {
    overflow: hidden;
}

.video-modal {
    display: none;
    inset: 0;
    position: fixed;
    z-index: 50;
}

.video-modal[aria-hidden="false"] {
    display: block;
}

.confirm-modal {
    display: none;
    inset: 0;
    position: fixed;
    z-index: 70;
}

.confirm-modal[aria-hidden="false"] {
    display: block;
}

.confirm-modal__backdrop {
    background: rgba(18, 14, 28, .62);
    inset: 0;
    position: absolute;
}

.confirm-modal__dialog {
    background: #ffffff;
    border: 1px solid rgba(31, 27, 45, .08);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
    left: 50%;
    max-width: 440px;
    padding: 28px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(92vw, 440px);
}

.confirm-modal__dialog h2 {
    font-size: 30px;
}

.confirm-modal__dialog p:not(.eyebrow) {
    color: var(--muted);
}

.confirm-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 22px;
}

.video-modal__backdrop {
    background: rgba(18, 14, 28, .74);
    inset: 0;
    position: absolute;
}

.video-modal__dialog {
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
    left: 50%;
    max-width: 760px;
    padding: 22px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(92vw, 760px);
}

.video-modal__close {
    background: var(--dark);
    border: 0;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    font-size: 18px;
    height: 38px;
    position: absolute;
    right: -12px;
    top: -12px;
    width: 38px;
}

.video-frame {
    align-items: center;
    background:
        linear-gradient(180deg, rgba(31, 27, 45, .16), rgba(31, 27, 45, .84)),
        linear-gradient(135deg, #a894b6, #4b4453);
    border-radius: 18px;
    color: var(--white);
    display: grid;
    min-height: 330px;
    place-items: center;
    text-align: center;
}

.video-frame iframe {
    border: 0;
    border-radius: 18px;
    height: 380px;
    width: 100%;
}

.video-frame__play {
    align-items: center;
    background: var(--purple);
    border-radius: 50%;
    display: flex;
    height: 86px;
    justify-content: center;
    width: 86px;
}

.video-frame__play::before {
    border-bottom: 15px solid transparent;
    border-left: 22px solid var(--white);
    border-top: 15px solid transparent;
    content: "";
    margin-left: 6px;
}

.video-frame p {
    font-weight: 900;
    margin-top: -80px;
}

.video-copy {
    color: var(--muted);
}

.live-chat-widget {
    bottom: 22px;
    display: grid;
    gap: 12px;
    justify-items: end;
    position: fixed;
    right: 22px;
    z-index: 40;
}

.live-chat-toggle {
    background: linear-gradient(135deg, var(--purple), var(--teal));
    border: 0;
    border-radius: 999px;
    box-shadow: 0 18px 40px rgba(31, 27, 45, .22);
    color: var(--white);
    cursor: pointer;
    font-weight: 900;
    padding: 14px 20px;
}

.live-chat-box {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(31, 27, 45, .2);
    display: none;
    gap: 10px;
    max-width: min(360px, calc(100vw - 44px));
    padding: 18px;
    width: 360px;
}

.live-chat-widget.is-open .live-chat-box {
    display: grid;
}

.live-chat-box textarea {
    margin: 0;
}

.auth-page {
    background: var(--soft);
    display: grid;
    min-height: calc(100vh - 140px);
    padding: 54px 7vw;
    place-items: center;
}

.auth-split {
    align-items: center;
    background:
        radial-gradient(circle at 18% 20%, rgba(109, 77, 242, .14), transparent 28%),
        linear-gradient(135deg, #ffffff, #f6fffe);
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 460px);
}

.auth-visual-panel {
    max-width: 720px;
}

.auth-visual-panel h1 {
    font-size: 54px;
}

.auth-visual-panel p {
    color: var(--muted);
    font-size: 18px;
}

.auth-mini-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.auth-mini-stats span {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 900;
    padding: 10px 14px;
}

.auth-card {
    box-shadow: 0 28px 70px rgba(31, 27, 45, .14);
}

.form-card,
.panel,
.card {
    padding: 28px;
}

.form-card {
    max-width: 460px;
    width: 100%;
}

.check {
    align-items: center;
    display: flex;
    font-weight: 400;
}

.check input {
    width: auto;
}

.dashboard {
    background: #c3c3c3;
    padding: 54px 7vw;
}

.admin-shell {
    background: #c3c3c3;
    display: grid;
    gap: 24px;
    grid-template-columns: 292px minmax(0, 1fr);
    min-height: calc(100vh - 140px);
    padding: 24px;
}

.admin-sidebar {
    align-self: start;
    background: #171421;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(31, 27, 45, .18);
    display: grid;
    gap: 6px;
    max-height: calc(100vh - 48px);
    overflow: auto;
    padding: 18px;
    position: sticky;
    top: 24px;
}

.admin-brand {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
    padding: 4px 4px 18px;
}

.admin-brand > span {
    background: linear-gradient(135deg, var(--purple), var(--teal));
    border-radius: 14px;
    color: var(--white);
    display: grid;
    flex: 0 0 42px;
    font-size: 22px;
    font-weight: 900;
    height: 42px;
    place-items: center;
    text-transform: lowercase;
}

.admin-brand strong {
    color: var(--white);
    display: block;
    font-size: 18px;
    line-height: 1.1;
    margin: 0;
}

.admin-brand small {
    color: #aca5bf;
    display: block;
    font-weight: 800;
    margin-top: 4px;
}

.admin-sidebar a {
    border: 1px solid transparent;
    border-radius: 12px;
    color: #d9d4e7;
    font-weight: 800;
    padding: 11px 12px;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.admin-sidebar-group {
    display: grid;
    gap: 0;
    margin: 6px 0;
}

.admin-sidebar-toggle {
    align-items: center;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 12px;
    color: #d9d4e7;
    cursor: pointer;
    display: flex;
    font: inherit;
    font-weight: 900;
    justify-content: space-between;
    letter-spacing: 0;
    padding: 11px 12px;
    text-transform: uppercase;
    transition: background .18s ease, border-color .18s ease, color .18s ease;
    width: 100%;
}

.admin-sidebar-toggle span {
    font-size: 12px;
}

.admin-sidebar-toggle b {
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    transition: transform .18s ease;
    width: 8px;
}

.admin-sidebar-group.is-open .admin-sidebar-toggle b {
    transform: rotate(225deg);
}

.admin-sidebar-toggle:hover,
.admin-sidebar-group.is-open .admin-sidebar-toggle {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .12);
    color: var(--white);
}

.admin-sidebar-submenu {
    display: none;
    gap: 5px;
    padding: 6px 0 4px;
}

.admin-sidebar-group.is-open .admin-sidebar-submenu {
    display: grid;
}

.admin-sidebar-group a {
    color: #c8c1d8;
    padding-left: 22px;
}

.admin-sidebar a.active,
.admin-sidebar a:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .14);
    color: var(--white);
    transform: translateX(2px);
}

.admin-sidebar a.active {
    background: linear-gradient(135deg, var(--purple), var(--teal));
    box-shadow: 0 12px 28px rgba(109, 77, 242, .28);
}

.chat-thread-list {
    display: grid;
    gap: 20px;
}

.chat-thread-header {
    align-items: start;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.chat-thread-header span {
    color: var(--muted);
    display: block;
}

.chat-messages {
    background: var(--soft);
    border-radius: 14px;
    display: grid;
    gap: 12px;
    margin: 18px 0;
    max-height: 360px;
    overflow: auto;
    padding: 16px;
}

.chat-message {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px 14px 14px 4px;
    max-width: 78%;
    padding: 12px;
}

.chat-message.team {
    background: #eefcf9;
    border-color: #cbeee8;
    justify-self: end;
}

.chat-message span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.chat-message p {
    margin: 4px 0 0;
}

.chat-reply-form {
    display: grid;
    gap: 12px;
}

.admin-content {
    min-width: 0;
}

.admin-topbar {
    align-items: center;
    background: rgba(248, 248, 250, .94);
    border: 1px solid rgba(31, 27, 45, .08);
    border-radius: 16px;
    box-shadow: 0 14px 32px rgba(31, 27, 45, .08);
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 22px;
    padding: 16px 18px;
}

.admin-topbar strong {
    display: block;
    font-size: 17px;
}

.admin-topbar span {
    color: var(--muted);
    display: block;
    font-size: 13px;
    font-weight: 800;
}

.page-title {
    align-items: flex-end;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 8px 2px;
}

.page-title h1 {
    font-size: clamp(32px, 3.6vw, 48px);
    letter-spacing: 0;
    margin-bottom: 0;
}

.page-title .eyebrow {
    margin-bottom: 8px;
}

.panel,
.card,
.form-card {
    background: #f8f8fa;
    border: 1px solid rgba(31, 27, 45, .08);
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(31, 27, 45, .08);
}

.admin-panel {
    max-width: 1120px;
}

.admin-panel label,
.admin-actions label {
    margin-bottom: 10px;
}

.admin-panel input,
.admin-panel select,
.admin-panel textarea,
.admin-actions input,
.admin-actions select,
.admin-actions textarea {
    background: #ffffff;
}

.split {
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
}

.application {
    background: #f8f8fa;
    border: 1px solid rgba(31, 27, 45, .08);
    border-radius: 16px;
    display: grid;
    gap: 14px;
    margin-bottom: 16px;
    padding: 20px;
}

.application:first-of-type {
    border-top: 1px solid rgba(31, 27, 45, .08);
}

.application.wide {
    align-items: start;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
}

.application span {
    color: var(--muted);
}

.application-stepper {
    align-items: stretch;
    background: #ffffff;
    border: 1px solid rgba(31, 27, 45, .08);
    border-radius: 16px;
    display: grid;
    gap: 0;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    margin: 16px 0;
    overflow: hidden;
}

.application-step {
    align-items: center;
    border-right: 1px solid rgba(31, 27, 45, .08);
    color: var(--muted);
    display: flex;
    gap: 10px;
    min-height: 64px;
    padding: 12px;
    position: relative;
}

.application-step:last-child {
    border-right: 0;
}

.application-step span {
    align-items: center;
    background: #f2f2f4;
    border: 2px solid #d2d2d8;
    border-radius: 50%;
    color: #777181;
    display: flex;
    flex: 0 0 34px;
    font-size: 13px;
    font-weight: 900;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.application-step strong {
    font-size: 13px;
    line-height: 1.25;
}

.application-step.completed {
    background: #eeeeef;
    color: #8a8792;
}

.application-step.completed span {
    background: #cfcfd4;
    border-color: #cfcfd4;
    color: #ffffff;
}

.application-step.current {
    background: #ffffff;
    color: var(--ink);
    box-shadow: inset 0 -4px 0 var(--purple);
}

.application-step.current span {
    background: linear-gradient(135deg, var(--purple), var(--teal));
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(109, 77, 242, .24);
}

.process-tracker {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.process-step {
    background: #ffffff;
    border: 1px solid rgba(31, 27, 45, .08);
    border-left: 5px solid var(--purple);
    border-radius: 12px;
    padding: 14px;
}

.process-step.completed {
    border-left-color: var(--teal);
}

.process-step.blocked {
    border-left-color: var(--red);
}

.process-step.pending-approval {
    background: #fff8e8;
    border-left-color: var(--yellow);
}

.process-step span {
    color: var(--muted);
    display: block;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.process-step p {
    margin: 6px 0 0;
}

.file-list {
    background: #eeeef2;
    border: 1px solid rgba(31, 27, 45, .08);
    border-radius: 14px;
    display: grid;
    gap: 10px;
    margin: 16px 0;
    padding: 14px;
}

.passport-summary {
    background: #ffffff;
    border: 1px solid rgba(31, 27, 45, .08);
    border-radius: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0;
    padding: 12px;
}

.passport-summary strong {
    flex-basis: 100%;
}

.passport-summary span,
.passport-summary a {
    background: #f3f3f6;
    border-radius: 999px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    padding: 7px 10px;
}

.passport-read-box {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
}

.passport-read-box span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.application-form {
    display: grid;
    gap: 0;
    padding: 26px;
}

.application-form label {
    color: #413b51;
    font-size: 13px;
    gap: 9px;
    letter-spacing: .01em;
    margin-bottom: 0;
}

.application-form input,
.application-form select,
.application-form textarea {
    border-color: #c3c3c3;
    border-radius: 13px;
    box-shadow: 0 1px 0 rgba(31, 27, 45, .03);
    min-height: 56px;
    padding: 15px 16px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
    background: #ffffff;
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(109, 77, 242, .12);
    outline: 0;
}

.application-form textarea {
    margin: 0;
    min-height: 132px;
}

.application-form input[type="file"] {
    align-items: center;
    display: flex;
    min-height: 58px;
    padding: 10px;
}

.application-form input[type="file"]::file-selector-button {
    background: #f1f1f5;
    border: 1px solid #c3c3c3;
    border-radius: 10px;
    color: var(--ink);
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    margin-right: 12px;
    padding: 10px 14px;
}

.form-section {
    border-top: 1px solid rgba(31, 27, 45, .1);
    display: grid;
    gap: 18px;
    padding: 26px 0 0;
}

.form-section + .form-section {
    margin-top: 26px;
}

.form-section.first {
    border-top: 0;
    padding-top: 0;
}

.form-section-title {
    align-items: flex-start;
    display: flex;
    gap: 13px;
}

.form-section-title span {
    align-items: center;
    background: linear-gradient(135deg, var(--purple), var(--teal));
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    flex: 0 0 34px;
    font-size: 14px;
    font-weight: 900;
    height: 34px;
    justify-content: center;
    margin-top: 1px;
    width: 34px;
}

.form-section-title h2 {
    font-size: 22px;
    line-height: 1.2;
    margin: 0 0 4px;
}

.form-section-title p {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
    margin: 0;
}

.application-form .form-grid {
    gap: 18px 20px;
}

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

.passport-upload-panel {
    align-items: end;
    background: #f0f0f3;
    border: 1px solid rgba(31, 27, 45, .08);
    border-radius: 15px;
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .75fr);
    padding: 16px;
}

.passport-fields {
    margin-top: 2px;
}

.form-actions {
    align-items: center;
    border-top: 1px solid rgba(31, 27, 45, .1);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 28px;
    padding-top: 22px;
}

.file-item {
    align-items: center;
    background: var(--white);
    border: 1px solid rgba(31, 27, 45, .08);
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    padding: 10px 12px;
}

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

.stats span {
    background: #f8f8fa;
    border: 1px solid rgba(31, 27, 45, .08);
    border-radius: 16px;
    color: var(--ink);
    display: inline-block;
    font-weight: 900;
    padding: 14px 16px;
    width: max-content;
}

.status {
    background: #fff4d4;
    border-radius: 999px;
    color: #8a5c00;
    display: inline-block;
    font-weight: 900;
    padding: 6px 12px;
    width: max-content;
}

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

.stats span {
    box-shadow: 0 14px 32px rgba(31, 27, 45, .08);
    width: auto;
}

.stats strong {
    color: var(--purple);
    display: block;
    font-size: 30px;
    line-height: 1;
    margin-bottom: 6px;
}

.admin-actions {
    display: grid;
    gap: 14px;
}

.admin-dashboard {
    display: grid;
    gap: 28px;
}

.admin-overview {
    margin-bottom: 24px;
}

.admin-link-card {
    color: var(--ink);
    display: grid;
    gap: 12px;
    min-height: 158px;
    overflow: hidden;
    position: relative;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.admin-link-card::after {
    background: linear-gradient(135deg, rgba(109, 77, 242, .09), rgba(31, 183, 166, .12));
    content: "";
    height: 88px;
    position: absolute;
    right: -26px;
    top: -26px;
    transform: rotate(18deg);
    width: 88px;
}

.admin-link-card:hover {
    border-color: rgba(109, 77, 242, .28);
    box-shadow: 0 22px 50px rgba(31, 27, 45, .13);
    transform: translateY(-3px);
}

.admin-link-card > span {
    align-items: center;
    background: #f3efff;
    border-radius: 12px;
    color: var(--purple);
    display: flex;
    font-size: 13px;
    font-weight: 900;
    height: 38px;
    justify-content: center;
    width: 44px;
}

.admin-link-card strong {
    font-size: 22px;
    line-height: 1.18;
}

.admin-link-card small {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

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

.admin-panel {
    align-self: start;
}

.two-col,
.inline-editor,
.content-row,
.form-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.inline-editor {
    background: #efeff3;
    border: 1px solid rgba(31, 27, 45, .08);
    border-radius: 14px;
    margin-bottom: 20px;
    padding: 16px;
}

.content-row {
    align-items: end;
    background: #ffffff;
    border: 1px solid rgba(31, 27, 45, .08);
    border-radius: 14px;
    margin-top: 12px;
    padding: 16px;
}

.content-row.stacked,
.stack-form {
    display: grid;
    gap: 12px;
}

.user-form-grid,
.user-row {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.muted-note {
    color: var(--muted);
    font-size: 14px;
    margin: 4px 0 12px;
}

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

.admin-list-row {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(31, 27, 45, .08);
    border-radius: 14px;
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(260px, 1fr) 110px 110px 180px;
    padding: 14px 16px;
}

.admin-list-row.category-list-row {
    grid-template-columns: minmax(240px, 1fr) 90px 100px 110px 180px;
}

.admin-list-head {
    background: #efeff3;
    color: #565166;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-list-row strong,
.admin-list-row small {
    display: block;
}

.admin-list-row small {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    margin-top: 4px;
}

.row-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.row-actions form {
    margin: 0;
}

.settings-preview {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(31, 27, 45, .08);
    border-radius: 16px;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 18px;
}

.settings-preview > div {
    align-items: center;
    display: flex;
    gap: 14px;
}

.settings-logo-preview {
    background: linear-gradient(135deg, var(--purple), var(--teal));
    border-radius: 14px;
    color: var(--white);
    display: grid;
    font-size: 22px;
    font-weight: 900;
    height: 52px;
    overflow: hidden;
    place-items: center;
    text-transform: lowercase;
    width: 52px;
}

.settings-logo-preview img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.settings-preview strong,
.settings-preview small {
    display: block;
}

.settings-preview small {
    color: var(--muted);
    font-weight: 800;
}

.settings-favicon-preview {
    border: 1px solid #c3c3c3;
    border-radius: 10px;
    height: 42px;
    object-fit: contain;
    padding: 6px;
    width: 42px;
}

.link-danger {
    background: none;
    border: 0;
    color: #b91c1c;
    cursor: pointer;
    font-weight: 800;
    margin: 4px 0 12px;
    padding: 0;
}

@media (max-width: 1100px) {
    .stats,
    .admin-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .story-grid,
    .destination-grid,
    .discipline-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .site-header,
    .top-market,
    .page-title,
    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .top-market {
        display: flex;
        gap: 8px;
    }

    .site-header {
        position: relative;
    }

    .menu-toggle {
        display: grid;
        position: absolute;
        right: 6vw;
        top: 22px;
    }

    nav {
        display: none;
        gap: 14px;
        padding-top: 18px;
        width: 100%;
    }

    nav.is-open {
        display: flex;
        flex-direction: column;
    }

    .edu-hero,
    .auth-split,
    .service-strip,
    .about-section,
    .faq-section,
    .newsletter,
    .footer,
    .split,
    .admin-shell,
    .application.wide,
    .passport-upload-panel,
    .blog-grid,
    .steps-row,
    .admin-grid,
    .stats,
    .admin-list-row,
    .two-col,
    .inline-editor,
    .content-row,
    .form-grid,
    .user-form-grid,
    .user-row {
        grid-template-columns: 1fr;
    }

    .admin-shell {
        padding: 16px;
    }

    .admin-sidebar {
        max-height: none;
        position: static;
    }

    .admin-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .consult-grid,
    .story-grid,
    .destination-grid,
    .discipline-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 32px;
    }

    .student-art {
        min-height: 420px;
    }

    .blob {
        height: 330px;
        left: 50%;
        right: auto;
        top: 54px;
        transform: translateX(-50%) rotate(7deg);
        width: min(330px, 82vw);
    }

    .student-card {
        left: 50%;
        max-width: min(300px, 82vw);
        right: auto;
        top: 184px;
        transform: translateX(-50%);
    }

    .plane {
        right: 10vw;
        top: 82px;
    }

    .pin {
        bottom: 58px;
        right: 58vw;
    }
}

@media (max-width: 560px) {
    .consult-grid,
    .story-grid,
    .destination-grid,
    .discipline-grid {
        grid-template-columns: 1fr;
    }

    .newsletter form {
        display: grid;
    }

    .newsletter input,
    .newsletter button {
        border-radius: 10px;
    }

    .live-chat-widget {
        bottom: 14px;
        right: 14px;
    }

    .chat-thread-header {
        display: grid;
    }

    .chat-message {
        max-width: 100%;
    }

    .edu-hero {
        padding-bottom: 52px;
    }

    .student-art {
        min-height: 360px;
    }

    .student-card {
        align-items: flex-start;
        padding: 15px;
        top: 160px;
    }

    .face {
        flex-basis: 48px;
        height: 48px;
        width: 48px;
    }

    .student-card strong {
        font-size: 15px;
    }

    .orbit {
        padding: 12px;
    }
}
