:root {
  --navy: #1a3c5e;
  --deep: #071626;
  --orange: #e87a20;
  --whatsapp: #25d366;
  --ink: #1b2430;
  --muted: #667085;
  --line: #dce3ec;
  --paper: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 16px 42px rgba(7, 22, 38, 0.12);
  --radius: 12px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2));
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 26px rgba(7, 22, 38, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0 42%, transparent 42%),
    linear-gradient(315deg, var(--orange) 0 48%, #f6c276 48% 66%, #ffffff 66%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--orange);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 14px 32px;
  font-weight: 800;
  cursor: pointer;
}

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 12px 22px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 4px;
  background: var(--white);
}

.nav-toggle span:first-child {
  transform: translateY(-5px);
}

.nav-toggle span:last-child {
  transform: translateY(5px);
}

.button.primary {
  background: var(--orange);
  color: var(--white);
}

.button.outline {
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--white);
}

.button.whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  padding: 120px 22px 80px;
  color: var(--white);
  text-align: center;
}

.hero::before,
.cta-band::before,
.media-hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 22, 38, 0.42), rgba(7, 22, 38, 0.58));
  content: "";
}

.hero-bg,
.cta-bg,
.media-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p {
  margin: 18px auto 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.38rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 32px;
}

.section {
  padding: 70px max(22px, calc((100vw - var(--max)) / 2));
}

.section.light {
  background: var(--paper);
}

.section.dark {
  background: var(--navy);
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h1,
.section-heading h2,
.page-title h1,
.cta-band h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p,
.page-title p,
.card p,
.value-card p,
.program-card p,
.contact-line p,
.story-card p {
  color: var(--muted);
}

.dark .section-heading p,
.dark .card p {
  color: rgba(255, 255, 255, 0.78);
}

.trust-grid,
.service-grid,
.university-grid,
.story-grid,
.advantages-grid,
.support-grid {
  display: grid;
  gap: 24px;
}

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

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

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

.card,
.trust-card,
.program-card,
.story-card,
.university-card,
.value-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-card {
  min-height: 160px;
  padding: 28px;
  text-align: center;
}

.trust-card strong {
  display: block;
  color: var(--orange);
  font-size: 3rem;
  line-height: 1;
}

.trust-card span {
  display: block;
  margin-top: 10px;
  color: #333;
  font-weight: 800;
}

.trust-card small {
  color: #666;
}

.card,
.value-card {
  min-height: 250px;
  padding: 30px;
}

.card-icon {
  display: block;
  margin-bottom: 18px;
  font-size: 2.6rem;
}

.card h3,
.value-card h3,
.program-card h2,
.university-card h3,
.story-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
}

.learn-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--orange);
  font-weight: 800;
}

.why-layout,
.contact-layout,
.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 46px;
  align-items: center;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.feature-list article h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.feature-list article p {
  margin: 0;
  color: var(--muted);
}

.rounded-image {
  width: 100%;
  min-height: 360px;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-card {
  overflow: hidden;
}

.story-card img,
.program-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.story-content,
.program-content {
  padding: 26px;
}

.story-country {
  display: block;
  margin-bottom: 16px;
  color: #777;
  font-size: 0.88rem;
  font-weight: 700;
}

.quote {
  font-style: italic;
  color: #555;
}

.campus-marquee-section {
  overflow: hidden;
  padding: 64px 0;
  background: var(--white);
}

.campus-marquee {
  overflow: hidden;
}

.campus-track {
  display: flex;
  width: max-content;
  gap: 22px;
  padding-inline: 22px;
  animation: campus-scroll 44s linear infinite;
}

.campus-marquee:hover .campus-track {
  animation-play-state: paused;
}

.campus-track img {
  width: clamp(260px, 32vw, 430px);
  height: clamp(190px, 24vw, 300px);
  flex: 0 0 auto;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

@keyframes campus-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 11px));
  }
}

@keyframes support-image-in {
  from {
    transform: scale(1.08);
    filter: saturate(0.72) contrast(0.92);
  }

  to {
    transform: scale(1);
    filter: saturate(1) contrast(1);
  }
}

.cta-band {
  position: relative;
  display: grid;
  min-height: 400px;
  place-items: center;
  overflow: hidden;
  padding: 70px 22px;
  color: var(--white);
  text-align: center;
}

.cta-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.cta-band h2 {
  color: var(--orange);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
}

.page-title {
  padding: 128px max(22px, calc((100vw - var(--max)) / 2)) 56px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.page-title p {
  max-width: 780px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.82);
}

.university-grid {
  grid-template-columns: repeat(4, 1fr);
}

.university-card {
  overflow: hidden;
  text-align: center;
}

.university-logo {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  margin: 22px auto 14px;
  border-radius: 50%;
  background: #eef3f8;
  color: var(--navy);
  font-size: 1.6rem;
  font-weight: 900;
}

.university-card img {
  width: 100%;
  height: 155px;
  object-fit: cover;
}

.university-card h3 {
  padding: 0 18px;
  font-size: 1rem;
}

.university-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.resource-layout {
  display: grid;
  gap: 28px;
}

.resource-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.resource-card:nth-child(even) img {
  order: 2;
}

.resource-card:nth-child(even) .resource-content {
  order: 1;
}

.resource-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  transition: transform 520ms ease;
}

.resource-card:hover img {
  transform: scale(1.04);
}

.resource-content {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 52px);
}

.resource-content h2,
.framework-callout h2 {
  margin: 8px 0 16px;
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.resource-content p,
.framework-callout p {
  margin: 0;
  color: var(--muted);
}

.institution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.institution-card {
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.institution-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 520ms ease;
}

.institution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgba(7, 22, 38, 0.16);
}

.institution-card:hover img {
  transform: scale(1.05);
}

.institution-body {
  display: grid;
  min-height: 82px;
  place-items: center;
  padding: 18px 20px 22px;
}

.institution-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
}

.university-orbit-section {
  overflow: hidden;
  padding: 86px 0 96px;
  background: #edf2f6;
}

.university-orbit-heading {
  width: min(780px, calc(100% - 44px));
  margin: 0 auto 34px;
  text-align: center;
}

.university-orbit-heading h2 {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.university-orbit-shell {
  --orbit-card-height: 210px;
  --orbit-card-width: 270px;
  --orbit-duration: 48s;
  --orbit-radius: 470px;
  position: relative;
  width: min(1180px, 100%);
  min-height: 520px;
  margin: 0 auto;
  perspective: 1450px;
  perspective-origin: 50% 46%;
}

.university-orbit-scene {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}

.university-orbit-track {
  position: relative;
  width: var(--orbit-card-width);
  height: var(--orbit-card-height);
  transform-style: preserve-3d;
  animation: university-orbit-spin var(--orbit-duration) linear infinite;
  will-change: transform;
}

.university-orbit-slot {
  position: absolute;
  inset: 0;
  transform: rotateY(var(--orbit-angle)) translateZ(var(--orbit-radius));
  transform-style: preserve-3d;
}

.university-orbit-card {
  width: 100%;
  height: 100%;
  margin: 0;
  animation: university-orbit-counter-spin var(--orbit-duration) linear infinite;
  transform-style: preserve-3d;
  will-change: transform;
}

.university-orbit-surface {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(26, 60, 94, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(7, 22, 38, 0.18);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.university-orbit-surface img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.university-orbit-surface figcaption {
  display: grid;
  min-height: 60px;
  place-items: center;
  padding: 10px 16px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.university-orbit-shell:hover .university-orbit-track,
.university-orbit-shell:hover .university-orbit-card {
  animation-play-state: paused;
}

.university-orbit-card:hover .university-orbit-surface {
  transform: scale(1.06);
  box-shadow: 0 24px 58px rgba(7, 22, 38, 0.24);
}

.orbit-campus-strip {
  position: absolute;
  right: 0;
  bottom: -24px;
  left: 0;
  z-index: 4;
  overflow: hidden;
  padding: 8px 0 12px;
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.orbit-campus-strip-track {
  display: flex;
  width: max-content;
  animation: orbit-campus-strip-scroll 36s linear infinite;
  will-change: transform;
}

.orbit-campus-strip-group {
  display: flex;
  flex-shrink: 0;
  gap: 14px;
  padding-right: 14px;
}

.orbit-campus-strip img {
  display: block;
  width: 136px;
  height: 86px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 1px solid rgba(26, 60, 94, 0.12);
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(7, 22, 38, 0.14);
}

.orbit-campus-strip:hover .orbit-campus-strip-track {
  animation-play-state: paused;
}

@keyframes university-orbit-spin {
  to {
    transform: rotateY(1turn);
  }
}

@keyframes university-orbit-counter-spin {
  from {
    transform: rotateY(var(--counter-angle));
  }

  to {
    transform: rotateY(calc(var(--counter-angle) - 1turn));
  }
}

@keyframes orbit-campus-strip-scroll {
  to {
    transform: translateX(-50%);
  }
}

.framework-callout {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  border-radius: var(--radius);
  background: var(--navy);
  padding: clamp(30px, 5vw, 54px);
  color: var(--white);
  box-shadow: var(--shadow);
}

.framework-callout .eyebrow,
.framework-callout h2,
.framework-callout p {
  color: var(--white);
}

.framework-callout p {
  color: rgba(255, 255, 255, 0.82);
}

.source-note,
.company-note {
  max-width: 860px;
  margin: 34px auto 0;
  color: #888;
  font-size: 0.82rem;
  text-align: center;
}

.program-list {
  display: grid;
  gap: 40px;
}

.program-card {
  overflow: hidden;
}

.business-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.business-card:nth-child(even) img {
  order: 2;
}

.business-card:nth-child(even) .program-content {
  order: 1;
}

.business-card img {
  height: 100%;
  min-height: 390px;
  transform: scale(1.04);
  filter: saturate(0.86) contrast(0.96);
  transition:
    transform 900ms ease,
    filter 900ms ease;
}

.business-card.visible img {
  animation: support-image-in 900ms ease forwards;
}

.business-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.04) contrast(1.02);
}

.business-number {
  display: inline-flex;
  min-width: 52px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 999px;
  background: #fff3e0;
  color: var(--orange);
  font-weight: 900;
}

.program-content h2 {
  font-size: 1.5rem;
}

.program-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.program-meta div,
.fee-box {
  border-radius: 10px;
  background: #f4f7fa;
  padding: 16px;
}

.fee-box {
  margin-top: 18px;
  background: #fff3e0;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  margin: 9px 0;
  color: #344054;
}

.program-details-box h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.05rem;
}

.admission-pathways {
  margin-top: 22px;
  border-top: 1px solid rgba(232, 122, 32, 0.28);
  padding-top: 20px;
}

.admission-pathway {
  display: grid;
  grid-template-columns: minmax(150px, 0.48fr) minmax(0, 1.52fr);
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid rgba(26, 60, 94, 0.12);
}

.admission-pathway h4,
.admission-pathway p,
.pathway-note {
  margin: 0;
}

.admission-pathway h4 {
  color: var(--orange);
  font-size: 0.95rem;
}

.admission-pathway p {
  color: #344054;
}

.pathway-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  font-style: italic;
}

.fees-exclusions {
  margin-top: 20px;
  border-top: 1px solid rgba(232, 122, 32, 0.28);
  padding-top: 20px;
}

.fees-exclusions ul {
  margin: 0;
  padding-left: 20px;
  color: #344054;
}

.fees-exclusions li + li {
  margin-top: 10px;
}

.mission {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.mission p {
  max-width: 860px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
}

.value-hero {
  padding: 136px max(22px, calc((100vw - var(--max)) / 2)) 84px;
  background:
    linear-gradient(rgba(26, 60, 94, 0.9), rgba(26, 60, 94, 0.94)),
    url("assets/images/site/group-study.webp") center/cover;
  color: var(--white);
}

.value-hero h1 {
  max-width: 860px;
  margin: 10px 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.value-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.value-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-map::before {
  position: absolute;
  top: 44px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232, 122, 32, 0.7), transparent);
  content: "";
}

.value-node {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 30px;
  box-shadow: var(--shadow);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.value-node:hover {
  border-color: rgba(232, 122, 32, 0.38);
  box-shadow: 0 24px 58px rgba(7, 22, 38, 0.16);
  transform: translateY(-8px);
}

.value-node:nth-child(2) {
  margin-top: 28px;
}

.value-node:nth-child(3) {
  margin-top: 56px;
}

.value-node span,
.significance-item span {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #fff3e0;
  color: var(--orange);
  font-weight: 900;
  transition:
    background-color 260ms ease,
    color 260ms ease,
    transform 260ms ease,
    box-shadow 260ms ease;
}

.value-node:hover span {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(232, 122, 32, 0.28);
  transform: scale(1.08);
}

.value-node h2 {
  margin: 24px 0 14px;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.16;
}

.value-node p {
  margin: 0;
  color: var(--muted);
}

.significance-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.significance-heading h2 {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.significance-flow {
  display: grid;
  gap: 30px;
}

.significance-item {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  width: min(980px, 100%);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.significance-item.offset {
  margin-left: auto;
}

.significance-item img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 520ms ease;
}

.significance-item:hover img {
  transform: scale(1.05);
}

.significance-item > div {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 48px);
}

.significance-item h3 {
  margin: 20px 0 14px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.14;
}

.significance-item p {
  margin: 0;
  color: var(--muted);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: 134px max(22px, calc((100vw - var(--max)) / 2)) 72px;
  background:
    linear-gradient(120deg, rgba(26, 60, 94, 0.96), rgba(7, 22, 38, 0.94)),
    radial-gradient(circle at 80% 10%, rgba(232, 122, 32, 0.22), transparent 34%);
  color: var(--white);
}

.about-hero-copy {
  max-width: 720px;
}

.about-hero h1 {
  margin: 10px 0 18px;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.about-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
}

.about-hero img,
.strategy-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero img {
  min-height: 430px;
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.strategy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.8fr);
  gap: 26px;
  align-items: stretch;
}

.strategy-panel {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.strategy-panel.primary {
  border-left: 8px solid var(--orange);
  padding: clamp(30px, 5vw, 56px);
}

.strategy-panel.primary h2 {
  margin: 10px 0 18px;
  color: var(--navy);
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
  line-height: 1.05;
}

.strategy-panel.primary p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.strategy-panel.image-panel {
  min-height: 360px;
}

.advantage-stair {
  display: grid;
  gap: 22px;
}

.advantage-intro {
  max-width: 740px;
}

.advantage-intro h2 {
  margin: 8px 0 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.advantage-step {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  width: min(980px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow);
}

.advantage-step:nth-child(3) {
  margin-left: min(7vw, 86px);
}

.advantage-step:nth-child(4) {
  margin-left: min(14vw, 172px);
}

.advantage-step strong {
  color: var(--orange);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 0.9;
}

.advantage-step h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.35rem;
}

.advantage-step p {
  margin: 0;
  color: var(--muted);
}

.company-details-section {
  padding: 78px max(22px, calc((100vw - var(--max)) / 2));
  background: var(--white);
}

.company-details-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
  border-top: 3px solid var(--navy);
  padding-top: 34px;
}

.company-details-intro {
  position: sticky;
  top: 112px;
}

.company-details-intro h2 {
  max-width: 430px;
  margin: 8px 0 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.06;
}

.company-details-list {
  margin: 0;
}

.company-detail {
  display: grid;
  grid-template-columns: minmax(150px, 0.62fr) minmax(0, 1.38fr);
  gap: 24px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.company-detail:first-child {
  padding-top: 3px;
}

.company-detail dt {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.45;
  text-transform: uppercase;
}

.company-detail dd {
  min-width: 0;
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.support-panel {
  padding: 30px;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pathway-card {
  min-height: 420px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.pathway-card h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.35rem;
}

.pathway-card h3 {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 1rem;
}

.pathway-card p {
  color: var(--muted);
}

.support-feature-list {
  display: grid;
  gap: 34px;
}

.support-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.support-feature.reverse img {
  order: 2;
}

.support-feature.reverse .support-feature-content {
  order: 1;
}

.support-feature img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(0.86) contrast(0.96);
  transition:
    transform 900ms ease,
    filter 900ms ease;
}

.support-feature.visible img {
  animation: support-image-in 900ms ease forwards;
}

.support-feature:hover img {
  transform: scale(1.07);
  filter: saturate(1.04) contrast(1.02);
}

.support-feature-content {
  align-self: center;
  max-height: 100%;
  overflow-y: auto;
  padding: clamp(28px, 5vw, 54px);
}

.support-feature-content h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.12;
}

.support-feature-content h3 {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 1.05rem;
}

.support-feature-content p {
  color: var(--muted);
}

.details-toggle {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  border: 0;
  border-radius: 8px;
  background: #fff3e0;
  color: var(--orange);
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
}

.details-arrow {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.details-toggle[aria-expanded="true"] .details-arrow {
  transform: rotate(180deg);
}

.details-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 240ms ease,
    opacity 180ms ease,
    margin-top 180ms ease;
}

.details-panel[hidden] {
  display: none;
}

.details-panel.open {
  grid-template-rows: 1fr;
  margin-top: 12px;
  opacity: 1;
}

.details-panel > .check-list {
  overflow: hidden;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 680ms ease,
    transform 680ms ease,
    box-shadow 220ms ease;
}

.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.js-ready .value-node.reveal {
  transform: translateY(34px) scale(0.98);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.js-ready .value-node.reveal.visible {
  transform: translateY(0) scale(1);
}

.js-ready .value-node.reveal.visible:hover {
  transform: translateY(-8px) scale(1.01);
}

.timeline-step:hover,
.support-feature:hover,
.support-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgba(7, 22, 38, 0.16);
}

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

.timeline-step {
  position: relative;
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.support-process-section {
  background: var(--paper);
}

.support-process-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.support-process-heading h2 {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
}

.support-timeline {
  position: relative;
}

.support-timeline::before {
  position: absolute;
  z-index: 0;
  top: 46px;
  right: 5%;
  left: 5%;
  height: 2px;
  background: rgba(232, 122, 32, 0.3);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1) 180ms;
}

.support-timeline.timeline-visible::before {
  transform: scaleX(1);
}

.support-timeline .timeline-step {
  z-index: 1;
  min-height: 250px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.support-timeline h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.3;
}

.support-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.js-ready .support-timeline .step-dot {
  opacity: 0;
  transform: scale(0.72);
  transition:
    opacity 360ms ease,
    transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js-ready .support-timeline .timeline-step.visible .step-dot {
  opacity: 1;
  transform: scale(1);
}

.js-ready .support-timeline .timeline-step:nth-child(2) .step-dot {
  transition-delay: 70ms;
}

.js-ready .support-timeline .timeline-step:nth-child(3) .step-dot {
  transition-delay: 140ms;
}

.js-ready .support-timeline .timeline-step:nth-child(4) .step-dot {
  transition-delay: 210ms;
}

.js-ready .support-timeline .timeline-step:nth-child(5) .step-dot {
  transition-delay: 280ms;
}

.js-ready .support-timeline .timeline-step.visible:hover .step-dot {
  transform: scale(1.1);
  transition-delay: 0ms;
}

.step-dot {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
}

.contact-layout {
  align-items: start;
}

.application-main {
  background: var(--paper);
}

.application-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: start;
  padding: 138px max(22px, calc((100vw - var(--max)) / 2)) 82px;
}

.application-intro {
  position: sticky;
  top: 112px;
  padding: clamp(30px, 5vw, 52px);
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}

.application-intro h1 {
  margin: 8px 0 18px;
  font-size: clamp(2.35rem, 4vw, 3rem);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.application-intro > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.application-support-list {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.application-support-list div {
  display: grid;
  gap: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 18px;
}

.application-support-list strong {
  color: var(--white);
}

.application-support-list span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

.application-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: clamp(28px, 5vw, 52px);
  box-shadow: 0 24px 58px rgba(7, 22, 38, 0.1);
}

.application-form-heading {
  max-width: 660px;
  margin-bottom: 30px;
}

.application-form-heading h2 {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3.5vw, 2.65rem);
  line-height: 1.1;
}

.application-form-heading > p {
  margin: 14px 0 0;
  color: var(--muted);
}

.application-progress {
  height: 4px;
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 4px;
  background: #e8edf3;
}

.application-progress span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
  transition: width 260ms ease;
}

.application-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}

.application-steps li {
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 7px;
  color: #8993a1;
  font-size: 0.72rem;
  text-align: center;
}

.application-steps li span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #d6dde6;
  border-radius: 50%;
  background: var(--white);
  color: #7b8492;
  font-weight: 800;
  transition: 180ms ease;
}

.application-steps li strong {
  overflow-wrap: anywhere;
}

.application-steps li.active,
.application-steps li.complete {
  color: var(--navy);
}

.application-steps li.active span,
.application-steps li.complete span {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.application-step[hidden],
.postgraduate-documents[hidden],
[data-accessibility-details][hidden],
[data-phd-document][hidden] {
  display: none;
}

.application-step-heading {
  margin-bottom: 24px;
}

.application-step-heading > span,
.application-step-heading > div > span {
  display: block;
  margin-bottom: 4px;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.application-step-heading h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.2;
}

.application-step-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.application-step-heading.compact {
  margin-bottom: 18px;
}

.application-step-heading.compact h3 {
  font-size: 1.15rem;
}

.application-step-note {
  margin: -10px 0 20px;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.application-fields label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
}

.application-fields input,
.application-fields select,
.application-fields textarea {
  width: 100%;
  border: 1px solid #d7dee7;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
  font: inherit;
  font-weight: 400;
}

.application-fields input,
.application-fields select {
  min-height: 48px;
}

.application-fields textarea {
  resize: vertical;
}

.application-fields input:focus,
.application-fields select:focus,
.application-fields textarea:focus {
  border-color: var(--orange);
  outline: 3px solid rgba(232, 122, 32, 0.14);
}

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

.application-choice-group,
.education-record {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.application-choice-group legend,
.education-record legend {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
}

.application-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.application-fields .application-choice,
.application-declaration-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-weight: 600;
}

.application-fields .application-choice {
  min-width: 94px;
  border: 1px solid #d7dee7;
  border-radius: 6px;
  padding: 11px 14px;
}

.application-fields .application-choice input,
.application-declaration-check input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--orange);
}

.education-records {
  display: grid;
  gap: 18px;
}

.education-record {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fbfcfd;
}

.education-record > legend {
  margin-bottom: 18px;
  padding: 0 7px;
  font-size: 1rem;
}

.application-add-button,
.education-remove-button,
.application-back-button {
  min-height: 42px;
  border: 1px solid #cfd7e2;
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  padding: 9px 15px;
  font-weight: 800;
  cursor: pointer;
}

.education-remove-button {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 36px;
  padding: 7px 11px;
  color: #9c3d2d;
  font-size: 0.78rem;
}

.application-add-button:hover,
.application-back-button:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.application-upload-list {
  display: grid;
  gap: 14px;
}

.application-upload-list > label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.8fr);
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 0 0 14px;
}

.application-upload-list > label > span {
  display: grid;
  gap: 3px;
}

.application-upload-list strong {
  color: var(--navy);
  font-size: 0.9rem;
}

.application-upload-list small {
  color: var(--muted);
  line-height: 1.45;
}

.application-upload-list input[type="file"] {
  width: 100%;
  min-width: 0;
  border: 1px solid #d7dee7;
  border-radius: 6px;
  background: var(--white);
  padding: 8px;
  color: var(--muted);
  font-size: 0.8rem;
}

.postgraduate-documents {
  margin-top: 30px;
  border: 1px solid #f2c79f;
  border-radius: 8px;
  background: #fff8f1;
  padding: 22px;
}

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

.application-review-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fbfcfd;
}

.application-review-section h4 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 0.95rem;
}

.application-review-section dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.application-review-section dl div {
  display: grid;
  gap: 1px;
}

.application-review-section dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.application-review-section dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 0.88rem;
}

.application-declaration {
  display: grid;
  gap: 22px;
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.application-declaration-check {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.55;
}

.application-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 30px;
}

.application-actions [hidden] {
  display: none;
}

.application-actions .button,
.application-actions .application-back-button {
  min-width: 132px;
}

.application-submit {
  width: auto;
  margin-top: 0;
}

.application-submit:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.application-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.application-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #98a2b3;
}

.application-error {
  margin: 14px 0 0;
  border-left: 3px solid #b5473a;
  background: #fff2f0;
  color: #8e3026;
  padding: 10px 12px;
  font-size: 0.84rem;
}

.application-section {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

.identity-upload {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  border: 1px dashed #aeb9c7;
  border-radius: 8px;
  background: #fbfcfd;
  padding: 20px;
  color: var(--navy);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.identity-upload:hover,
.identity-upload:focus-within {
  border-color: var(--orange);
  background: #fff8f1;
}

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

.identity-upload-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 500;
}

.identity-upload > span:last-child {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.identity-upload strong {
  overflow-wrap: anywhere;
}

.identity-upload small,
.sensitive-data-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.sensitive-data-note {
  margin: 10px 0 0;
}

.sensitive-data-note strong {
  color: var(--navy);
}

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

.document-checklist li {
  position: relative;
  padding-left: 25px;
  color: #445166;
  font-size: 0.9rem;
}

.document-checklist li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid #afbac8;
  border-radius: 4px;
  color: var(--orange);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 900;
}

.application-fee-panel {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  border-left: 4px solid var(--orange);
  background: #fff5eb;
  padding: 20px 22px;
}

.application-fee-panel div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.application-fee-panel span {
  color: var(--navy);
  font-weight: 800;
}

.application-fee-panel strong {
  color: var(--orange);
  font-size: 1.55rem;
}

.application-fee-panel p {
  margin: 0;
  color: #6b5949;
  font-size: 0.84rem;
}

.application-consent {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fbfcfd;
}

.application-result {
  margin-top: 16px;
  border-left: 3px solid #25835d;
  background: #effaf5;
  color: #176142;
  padding: 12px 14px;
  font-size: 0.88rem;
  line-height: 1.55;
}

.application-result[data-type="pending"] {
  border-left-color: var(--orange);
  background: #fff5eb;
  color: #80501e;
}

.application-status.ready span {
  background: #25835d;
}

.admin-body {
  min-height: 100vh;
  background: #f3f6f9;
}

.admin-header {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(22px, calc((100vw - 1400px) / 2));
  background: var(--navy);
  color: var(--white);
}

.admin-header > div {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}

.admin-text-button {
  border: 0;
  background: transparent;
  color: var(--white);
  padding: 8px 0;
  font-weight: 800;
  cursor: pointer;
}

.admin-main {
  width: min(1400px, calc(100% - 44px));
  margin: 0 auto;
  padding: 52px 0 72px;
}

.admin-login {
  width: min(480px, 100%);
  margin: 6vh auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: clamp(26px, 5vw, 44px);
  box-shadow: var(--shadow);
}

.admin-login h1,
.admin-toolbar h1 {
  margin: 4px 0 10px;
  color: var(--navy);
  line-height: 1.1;
}

.admin-login > p {
  margin: 0;
  color: var(--muted);
}

.admin-login form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.admin-login label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 700;
}

.admin-login input,
.admin-filters input,
.admin-filters select,
.admin-status-form select {
  min-height: 44px;
  border: 1px solid #d1d9e3;
  border-radius: 6px;
  background: var(--white);
  padding: 9px 12px;
}

.admin-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 26px;
}

.admin-toolbar h1 {
  margin-bottom: 0;
}

.admin-filters {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(160px, 0.7fr) auto;
  gap: 10px;
  width: min(670px, 100%);
}

.admin-filters button,
.admin-status-form button,
.admin-download-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 17px;
  font-weight: 800;
  cursor: pointer;
}

.admin-workspace {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(7, 22, 38, 0.08);
}

.admin-list-panel {
  border-right: 1px solid var(--line);
  background: #fafbfd;
}

.admin-list-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 18px 20px;
  color: var(--navy);
}

.admin-list-summary span {
  color: var(--muted);
  font-size: 0.78rem;
}

.admin-application-list {
  display: grid;
}

.admin-application-row {
  display: grid;
  gap: 6px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 17px 20px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.admin-application-row:hover,
.admin-application-row.selected {
  background: #fff5eb;
}

.admin-application-row > span:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-application-row small,
.admin-status-badge {
  border-radius: 20px;
  background: #eaf0f6;
  color: var(--navy);
  padding: 4px 8px;
  font-size: 0.68rem;
  font-weight: 800;
}

.admin-application-row > span:nth-child(2),
.admin-application-row time {
  color: var(--muted);
  font-size: 0.76rem;
}

.admin-detail-panel {
  padding: clamp(24px, 4vw, 40px);
}

.admin-empty-state {
  display: grid;
  min-height: 180px;
  place-content: center;
  gap: 5px;
  color: var(--muted);
  text-align: center;
}

.admin-empty-state strong {
  color: var(--navy);
}

.admin-detail-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
}

.admin-detail-header span:first-child {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 800;
}

.admin-detail-header h2 {
  margin: 4px 0 0;
  color: var(--navy);
  font-size: 1.65rem;
}

.admin-detail-section {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.admin-detail-section h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 1rem;
}

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

.admin-detail-section dl div {
  min-width: 0;
}

.admin-detail-section dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-detail-section dd {
  margin: 2px 0 0;
  overflow-wrap: anywhere;
  font-size: 0.87rem;
}

.admin-download-button {
  margin-top: 8px;
  background: var(--orange);
}

.admin-status-form {
  display: flex;
  gap: 10px;
}

.admin-status-form select {
  flex: 1;
}

@media (max-width: 900px) {
  .admin-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-workspace {
    grid-template-columns: 1fr;
  }

  .admin-list-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .document-checklist,
  .admin-detail-section dl {
    grid-template-columns: 1fr;
  }

  .application-fee-panel div,
  .admin-header,
  .admin-detail-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-main {
    width: min(100% - 28px, 1400px);
    padding-top: 30px;
  }

  .admin-filters {
    grid-template-columns: 1fr;
  }

  .admin-status-form {
    display: grid;
  }
}

.contact-line {
  display: grid;
  gap: 5px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-line:last-child {
  border-bottom: 0;
}

.contact-line strong {
  color: var(--navy);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form-heading {
  margin-bottom: 4px;
}

.contact-form-heading h2 {
  margin: 4px 0 8px;
  color: var(--navy);
  font-size: 1.65rem;
  line-height: 1.15;
}

.contact-form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #333;
  font-size: 0.92rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px;
  color: var(--ink);
}

.lead-form textarea {
  resize: vertical;
}

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

.lead-form .button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.form-note.success {
  color: #176142;
}

.form-note.error {
  color: #9a3025;
}

.contact-apply-prompt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-apply-prompt .button {
  min-height: 42px;
  flex: 0 0 auto;
  background: var(--navy);
  color: var(--white);
  padding: 10px 20px;
}

@media (max-width: 520px) {
  .contact-apply-prompt {
    align-items: stretch;
    flex-direction: column;
  }
}

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.95fr;
  gap: 38px;
  padding: 44px max(22px, calc((100vw - var(--max)) / 2));
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 12px;
  color: var(--white);
}

.site-footer h2 {
  font-size: 1.25rem;
}

.site-footer p {
  margin: 8px 0;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: var(--white);
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-small {
  color: #999;
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .university-orbit-shell {
    --orbit-card-height: 196px;
    --orbit-card-width: 232px;
    --orbit-radius: 330px;
    min-height: 470px;
    perspective: 1100px;
  }

  .university-orbit-surface img {
    height: 136px;
  }

  .orbit-campus-strip img {
    width: 116px;
    height: 74px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    display: none;
    width: min(330px, calc(100vw - 36px));
    padding: 18px;
    border-radius: var(--radius);
    background: var(--deep);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .trust-grid,
  .service-grid,
  .university-grid,
  .story-grid,
  .advantages-grid,
  .support-grid,
  .why-layout,
  .contact-layout,
  .about-split,
  .about-hero,
  .strategy-layout,
  .application-shell,
  .value-map,
  .significance-item,
  .business-card,
  .resource-card,
  .institution-grid,
  .framework-callout,
  .advantage-step,
  .support-feature,
  .program-meta,
  .pathway-grid,
  .timeline,
  .feature-list,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .support-timeline::before {
    display: none;
  }

  .support-timeline .timeline-step {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .university-orbit-section {
    padding: 60px 0 70px;
  }

  .university-orbit-heading {
    margin-bottom: 22px;
  }

  .university-orbit-shell {
    --orbit-card-height: 178px;
    --orbit-card-width: 190px;
    --orbit-radius: 218px;
    min-height: 410px;
    perspective: 840px;
  }

  .university-orbit-surface img {
    height: 122px;
  }

  .university-orbit-surface figcaption {
    min-height: 56px;
    padding: 8px 11px;
    font-size: 0.8rem;
  }

  .orbit-campus-strip {
    bottom: -22px;
  }

  .orbit-campus-strip-group {
    gap: 10px;
    padding-right: 10px;
  }

  .orbit-campus-strip img {
    width: 100px;
    height: 64px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section {
    padding-block: 56px;
  }

  .value-map::before {
    display: none;
  }

  .value-node {
    min-height: auto;
  }

  .value-node:nth-child(2),
  .value-node:nth-child(3) {
    margin-top: 0;
  }

  .significance-item.offset {
    margin-left: 0;
  }

  .significance-item img {
    min-height: 240px;
  }

  .about-hero {
    padding-top: 116px;
  }

  .about-hero img {
    min-height: 280px;
  }

  .strategy-panel.image-panel {
    min-height: 260px;
  }

  .advantage-step,
  .advantage-step:nth-child(3),
  .advantage-step:nth-child(4) {
    margin-left: 0;
  }

  .advantage-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .company-details-shell,
  .company-detail {
    grid-template-columns: 1fr;
  }

  .company-details-shell {
    gap: 32px;
  }

  .company-details-intro {
    position: static;
  }

  .application-intro {
    position: static;
  }

  .company-detail {
    gap: 7px;
  }

  .admission-pathway {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .application-fields {
    grid-template-columns: 1fr;
  }

  .application-field-wide {
    grid-column: auto;
  }

  .application-shell {
    padding-top: 106px;
  }

  .application-form {
    padding: 26px 20px;
  }

  .application-form-heading {
    margin-bottom: 24px;
  }

  .application-steps {
    margin-bottom: 30px;
  }

  .application-steps li strong {
    display: none;
  }

  .application-steps li span {
    width: 30px;
    height: 30px;
  }

  .application-step-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .education-record {
    padding: 18px 15px;
  }

  .application-upload-list > label,
  .application-review {
    grid-template-columns: 1fr;
  }

  .application-upload-list > label {
    gap: 10px;
  }

  .postgraduate-documents {
    padding: 18px 15px;
  }

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

  .application-actions .button,
  .application-actions .application-back-button {
    width: 100%;
  }

  .business-card:nth-child(even) img,
  .business-card:nth-child(even) .program-content,
  .resource-card:nth-child(even) img,
  .resource-card:nth-child(even) .resource-content,
  .support-feature.reverse img,
  .support-feature.reverse .support-feature-content {
    order: initial;
  }

  .resource-card img {
    min-height: 240px;
  }

  .support-feature {
    height: auto;
  }

  .support-feature-content {
    max-height: none;
    overflow: visible;
  }

  .business-card img,
  .support-feature img {
    height: 240px;
    min-height: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-campus-strip-track {
    animation: none;
  }

  .university-orbit-track {
    animation: none;
  }

  .university-orbit-card {
    animation: none;
    transform: rotateY(var(--counter-angle));
  }

  .university-orbit-surface {
    transition: none;
  }

  .js-ready .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .timeline-step:hover,
  .support-feature:hover,
  .support-panel:hover {
    transform: none;
  }

  .support-timeline::before,
  .support-timeline.timeline-visible::before {
    transform: scaleX(1);
    transition: none;
  }

  .js-ready .support-timeline .step-dot,
  .js-ready .support-timeline .timeline-step.visible:hover .step-dot {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .support-feature img,
  .support-feature.visible img,
  .support-feature:hover img,
  .business-card img,
  .business-card.visible img,
  .business-card:hover img {
    animation: none;
    transform: none;
    filter: none;
  }

  .details-arrow,
  .details-panel {
    transition: none;
  }
}
