:root {
  --blue: #0b5fff;
  --blue-dark: #063b9e;
  --blue-soft: #e9f1ff;
  --black: #05070b;
  --ink: #111827;
  --muted: #5d6678;
  --line: #dbe3f0;
  --white: #ffffff;
  --surface: #f7f9fc;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(5, 7, 11, 0.14);
  --container-gutter: clamp(1rem, 4vw, 2rem);
  --section-y: clamp(4rem, 8vw, 6.5rem);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  min-width: 320px;
  text-rendering: optimizeLegibility;
}

body.is-loading {
  overflow: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 50;
  background: var(--black);
  color: var(--white);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1180px, calc(100% - (var(--container-gutter) * 2)));
  margin: 0 auto;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.site-loader::before {
  position: absolute;
  inset: auto -10vw 0 -10vw;
  height: 38vh;
  background: var(--black);
  content: "";
  transform: skewY(-5deg) translateY(32%);
}

.site-loader::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 95, 255, 0.08), transparent 42%);
  content: "";
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  color: var(--black);
  text-align: center;
}

.loader-mark {
  position: relative;
  display: grid;
  width: 142px;
  height: 142px;
  place-items: center;
}

.loader-mark::before {
  position: absolute;
  inset: 0;
  border: 4px solid var(--blue-soft);
  border-top-color: var(--blue);
  border-radius: 50%;
  content: "";
  animation: loader-spin 1s linear infinite;
}

.loader-mark img {
  width: 110px;
  height: 110px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(5, 7, 11, 0.16);
  animation: loader-pulse 1.5s ease-in-out infinite;
}

.loader-inner p {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
}

.loader-inner span {
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loader-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .loader-mark::before,
  .loader-mark img {
    animation: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem max(var(--container-gutter), calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(219, 227, 240, 0.92);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(5, 7, 11, 0.05);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--black);
  font-weight: 800;
  text-decoration: none;
}

.brand-logo,
.footer-logo {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  object-fit: cover;
}

.brand-logo {
  width: 56px;
  height: 56px;
}

.footer-logo {
  width: 44px;
  height: 44px;
}

.brand-name {
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.primary-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: var(--radius);
  padding: 0.55rem 0.78rem;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.primary-nav .nav-cta {
  background: var(--black);
  color: var(--white);
}

.primary-nav .nav-cta:hover,
.primary-nav .nav-cta:focus-visible,
.primary-nav .nav-cta[aria-current="page"] {
  background: var(--blue);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--black);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-home {
  min-height: clamp(560px, 76svh, 780px);
  display: grid;
  align-items: center;
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/campus-hero.png");
  background-position: center right;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(5, 7, 11, 0.82) 0%, rgba(5, 7, 11, 0.58) 48%, rgba(5, 7, 11, 0.32) 100%);
}

.hero-content {
  width: min(1180px, calc(100% - (var(--container-gutter) * 2)));
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.hero-content h1,
.page-hero-content h1 {
  max-width: 760px;
  margin: 0;
  font-size: 4.4rem;
  line-height: 1.02;
}

.hero-copy,
.page-hero-content p:not(.eyebrow) {
  max-width: 650px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.motto-line {
  display: inline-flex;
  margin: 1rem 0 0;
  border-left: 4px solid var(--blue);
  padding: 0.25rem 0 0.25rem 0.9rem;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 900;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.75rem 1.05rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-dark);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--white);
  color: var(--black);
}

.button-ghost {
  border-color: var(--line);
  background: var(--white);
  color: var(--black);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--blue);
  color: var(--blue-dark);
}

.section {
  padding: var(--section-y) 0;
}

.section-band {
  background: var(--surface);
}

.section-intro {
  padding: 3.2rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.intro-grid,
.split-layout,
.faq-grid,
.timeline,
.application-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.intro-grid {
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #bcd4ff;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  color: var(--black);
  font-size: 2.15rem;
  line-height: 1.15;
}

h3 {
  margin: 0;
  color: var(--black);
  font-size: 1.2rem;
  line-height: 1.25;
}

p {
  margin: 0.85rem 0 0;
}

.feature-grid,
.values-grid,
.academics-grid,
.program-grid,
.life-grid,
.level-grid,
.process-grid,
.impact-stats {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
}

.feature-grid,
.academics-grid,
.level-grid,
.values-grid,
.program-grid,
.life-grid,
.process-grid,
.impact-stats {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

.feature-card,
.value-card,
.level-card,
.process-card,
.program-card,
.life-grid article,
.academics-grid article,
.notice-panel,
.quote-panel,
.application-card,
.application-aside,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-card,
.value-card,
.level-card,
.process-card,
.program-card,
.life-grid article,
.academics-grid article {
  padding: clamp(1.15rem, 2.5vw, 1.6rem);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) {
  .feature-card:hover,
  .value-card:hover,
  .level-card:hover,
  .process-card:hover,
  .program-card:hover,
  .life-grid article:hover,
  .academics-grid article:hover,
  .impact-stats article:hover {
    border-color: rgba(11, 95, 255, 0.32);
    box-shadow: 0 18px 46px rgba(5, 7, 11, 0.1);
    transform: translateY(-3px);
  }
}

.feature-number,
.process-card span,
.program-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-weight: 900;
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.text-panel p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 0.6rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--ink);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.text-link {
  display: inline-flex;
  margin-top: 1.4rem;
  color: var(--blue-dark);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.home-impact {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--black);
  color: var(--white);
}

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

.home-impact-grid article {
  min-height: 132px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  padding: clamp(1.1rem, 3vw, 1.6rem);
}

.home-impact-grid article:last-child {
  border-right: 0;
}

.home-impact-grid strong {
  display: block;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.home-impact-grid span {
  display: block;
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.home-story-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(11, 95, 255, 0.09), transparent 40%),
    var(--white);
}

.home-story-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.home-story-card {
  display: grid;
  justify-items: center;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
}

.home-story-card img {
  width: min(230px, 70vw);
  border-radius: 50%;
}

.home-story-card p {
  margin: 0;
  color: var(--black);
  font-weight: 900;
  text-align: center;
}

.home-story-copy p:not(.eyebrow) {
  color: var(--muted);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.35rem);
}

.experience-grid article {
  position: relative;
  overflow: hidden;
  min-height: 255px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(1.2rem, 2.5vw, 1.6rem);
}

.experience-grid article::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border: 22px solid var(--blue-soft);
  border-radius: 50%;
  content: "";
}

.experience-grid span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  padding: 0.25rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 900;
}

.experience-grid h3,
.experience-grid p {
  position: relative;
  z-index: 1;
}

.experience-grid h3 {
  margin-top: 1rem;
}

.experience-grid p {
  color: var(--muted);
}

.awards-section {
  background: var(--black);
  color: var(--white);
}

.awards-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.awards-intro {
  position: sticky;
  top: 6.5rem;
}

.awards-intro h2 {
  color: var(--white);
}

.awards-intro p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.awards-intro .button {
  margin-top: 1.4rem;
}

.awards-grid {
  display: grid;
  gap: 1rem;
}

.award-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  padding: clamp(1.2rem, 3vw, 1.65rem);
}

.award-card::after {
  position: absolute;
  right: -36px;
  top: -36px;
  width: 110px;
  height: 110px;
  border: 18px solid rgba(11, 95, 255, 0.22);
  border-radius: 50%;
  content: "";
}

.featured-award {
  background: linear-gradient(135deg, rgba(11, 95, 255, 0.38), rgba(255, 255, 255, 0.08));
}

.award-badge {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
}

.award-year {
  margin-top: 1rem;
  color: #bcd4ff;
  font-weight: 900;
}

.award-card h3 {
  color: var(--white);
}

.award-card p {
  color: rgba(255, 255, 255, 0.74);
}

.award-body {
  color: var(--white);
  font-weight: 800;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: var(--black);
  color: var(--white);
}

.cta-panel h2 {
  color: var(--white);
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  min-height: 430px;
  display: grid;
  align-items: end;
}

.page-hero-media {
  filter: saturate(0.9);
}

.page-hero-content {
  padding: clamp(4.5rem, 8vw, 6rem) 0 clamp(3.5rem, 6vw, 4.5rem);
}

.quote-panel,
.notice-panel,
.application-aside {
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.quote-panel {
  background: var(--black);
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.35;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.team-photo-placeholder {
  display: grid;
  min-height: 260px;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(11, 95, 255, 0.18), rgba(5, 7, 11, 0.08)),
    var(--blue-soft);
  color: var(--blue-dark);
  font-size: 2.6rem;
  font-weight: 900;
}

.team-card h3,
.team-card p {
  margin-left: 1.2rem;
  margin-right: 1.2rem;
}

.team-card h3 {
  margin-top: 0.35rem;
}

.team-card p:last-child {
  margin-bottom: 1.2rem;
  color: var(--muted);
}

.team-role {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  padding: 0.2rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.story-section {
  background: var(--black);
  color: var(--white);
}

.story-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.story-intro {
  position: sticky;
  top: 6.5rem;
}

.story-intro h2 {
  color: var(--white);
}

.story-intro p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.story-timeline {
  display: grid;
  gap: 1rem;
}

.story-timeline article {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: clamp(0.9rem, 2vw, 1.3rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: clamp(1rem, 2.5vw, 1.35rem);
}

.story-timeline span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
}

.story-timeline h3 {
  color: var(--white);
}

.story-timeline p {
  color: rgba(255, 255, 255, 0.76);
}

.notice-panel {
  box-shadow: var(--shadow);
}

.impact-section {
  background: var(--white);
}

.impact-heading {
  max-width: 760px;
}

.impact-heading p:not(.eyebrow) {
  color: var(--muted);
}

.impact-stats {
  margin-top: 2rem;
}

.impact-stats article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(1.2rem, 2.5vw, 1.6rem);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.impact-stats strong {
  display: block;
  color: var(--blue);
  font-size: 2.35rem;
  line-height: 1;
}

.impact-stats h3 {
  margin-top: 0.85rem;
}

.impact-stats p {
  color: var(--muted);
}

.leadership-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
  margin-top: clamp(1rem, 2vw, 1.35rem);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  padding: clamp(1.35rem, 3vw, 2.1rem);
}

.leadership-panel h2 {
  color: var(--white);
}

.leadership-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.leadership-panel .check-list li {
  color: var(--white);
}

.notice-panel .button {
  margin-top: 1.2rem;
}

.timeline-list {
  display: grid;
  gap: 1rem;
}

.timeline-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 1rem;
  align-items: start;
  border-left: 3px solid var(--blue);
  padding: 0.4rem 0 1.4rem 1.2rem;
}

.timeline-list span {
  grid-row: span 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1rem 1.1rem;
}

summary {
  color: var(--black);
  font-weight: 900;
  cursor: pointer;
}

.application-section {
  background: var(--surface);
}

.application-layout {
  grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.25fr);
}

.application-aside {
  position: sticky;
  top: 6rem;
}

.application-card {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.application-form {
  display: grid;
  gap: 1.4rem;
  padding: clamp(1.15rem, 3vw, 1.6rem);
}

fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}

legend {
  margin-bottom: 1rem;
  color: var(--black);
  font-size: 1.25rem;
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  color: var(--black);
  font-size: 0.95rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 0.8rem 0.9rem;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(11, 95, 255, 0.28);
  outline-offset: 2px;
}

.checkbox-label {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-top: 1rem;
  font-weight: 700;
}

.checkbox-label input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 0.25rem;
  accent-color: var(--blue);
}

.application-result {
  border-top: 1px solid var(--line);
  padding: 1.5rem;
  background: var(--black);
  color: var(--white);
}

.application-result h2 {
  color: var(--white);
}

.application-result p {
  color: rgba(255, 255, 255, 0.8);
}

#referenceNumber {
  color: #bcd4ff;
}

.admin-section {
  background: var(--surface);
}

.admin-login,
.admin-dashboard,
.application-detail,
.empty-state {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.admin-login {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.55fr) auto;
  gap: 1rem;
  align-items: end;
  padding: clamp(1.2rem, 3vw, 1.7rem);
  box-shadow: 0 18px 44px rgba(5, 7, 11, 0.08);
}

.admin-message {
  min-height: 1.5rem;
  margin: 1rem 0;
  color: var(--muted);
  font-weight: 800;
}

.admin-message.success {
  color: #14743f;
}

.admin-message.warning {
  color: #9a6200;
}

.admin-message.error {
  color: #b42318;
}

.admin-dashboard {
  padding: clamp(1rem, 3vw, 1.5rem);
}

.admin-toolbar,
.detail-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.admin-stats article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1rem;
}

.admin-stats strong {
  display: block;
  color: var(--blue);
  font-size: 2rem;
  line-height: 1;
}

.admin-stats span {
  color: var(--muted);
  font-weight: 900;
}

.application-review-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 1rem;
  align-items: start;
}

.application-list {
  display: grid;
  gap: 0.75rem;
  max-height: 740px;
  overflow-y: auto;
}

.application-list-item {
  display: grid;
  gap: 0.35rem;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1rem;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.application-list-item.is-active,
.application-list-item:hover,
.application-list-item:focus-visible {
  border-color: var(--blue);
  box-shadow: 0 14px 32px rgba(5, 7, 11, 0.08);
}

.application-list-item small {
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  width: max-content;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0.18rem 0.7rem;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: capitalize;
}

.status-pill.approved {
  background: #e7f7ed;
  color: #14743f;
}

.status-pill.rejected {
  background: #feeceb;
  color: #b42318;
}

.application-detail {
  padding: clamp(1.15rem, 3vw, 1.5rem);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.detail-grid p,
.detail-notes p,
.email-log p {
  color: var(--muted);
}

.detail-notes,
.email-log,
.decision-notes {
  display: block;
  margin-top: 1.2rem;
}

.empty-state {
  padding: 1.25rem;
}

.site-footer {
  padding: 3rem 0;
  background: var(--black);
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 2rem;
}

.footer-brand,
.site-footer h2,
.site-footer a {
  color: var(--white);
}

.site-footer h2 {
  margin: 0 0 0.8rem;
  font-size: 1rem;
}

.site-footer strong {
  color: var(--white);
}

.site-footer a:not(.footer-brand) {
  display: block;
  margin-top: 0.45rem;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

.footer-bottom {
  width: min(1180px, calc(100% - (var(--container-gutter) * 2)));
  margin: 2rem auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
  text-align: center;
}

@media (max-width: 980px) {
  .site-header {
    padding-top: 0.62rem;
    padding-bottom: 0.62rem;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .primary-nav {
    position: fixed;
    inset: 78px var(--container-gutter) auto var(--container-gutter);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100svh - 96px);
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    padding: 0.7rem;
    box-shadow: 0 24px 70px rgba(5, 7, 11, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .primary-nav a {
    justify-content: center;
    min-height: 48px;
  }

  .hero-content h1,
  .page-hero-content h1 {
    font-size: 3rem;
  }

  .intro-grid,
  .split-layout,
  .faq-grid,
  .timeline,
  .story-layout,
  .home-story-layout,
  .awards-layout,
  .leadership-panel,
  .admin-login,
  .application-review-layout,
  .application-layout {
    grid-template-columns: 1fr;
  }

  .story-intro,
  .awards-intro {
    position: static;
  }

  .feature-grid,
  .values-grid,
  .academics-grid,
  .impact-stats,
  .home-impact-grid,
  .experience-grid,
  .admin-stats,
  .program-grid,
  .life-grid,
  .level-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .application-aside {
    position: static;
  }
}

@media (max-width: 680px) {
  :root {
    --container-gutter: 1rem;
    --section-y: 3.75rem;
  }

  .site-header {
    gap: 0.75rem;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    max-width: 170px;
    white-space: normal;
    line-height: 1.1;
  }

  .hero-home {
    min-height: 620px;
  }

  .hero-media,
  .page-hero-media {
    background-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(5, 7, 11, 0.58) 0%, rgba(5, 7, 11, 0.86) 100%);
  }

  .hero-content {
    padding: 4.5rem 0 3.75rem;
  }

  .hero-content h1,
  .page-hero-content h1 {
    font-size: 2.45rem;
  }

  .hero-copy,
  .page-hero-content p:not(.eyebrow) {
    font-size: 1.05rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section {
    padding: var(--section-y) 0;
  }

  .feature-grid,
  .values-grid,
  .academics-grid,
  .impact-stats,
  .home-impact-grid,
  .experience-grid,
  .admin-stats,
  .program-grid,
  .life-grid,
  .level-grid,
  .process-grid,
  .footer-grid,
  .form-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .home-impact-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .home-impact-grid article:last-child {
    border-bottom: 0;
  }

  .home-story-card {
    order: -1;
  }

  .button {
    width: 100%;
  }

  .quote-panel {
    font-size: 1.15rem;
  }

  .story-timeline article {
    grid-template-columns: 1fr;
  }

  .image-panel {
    aspect-ratio: 1 / 1;
  }

  .application-result {
    padding: 1.2rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 430px) {
  .site-header {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    max-width: 138px;
    font-size: 0.95rem;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .primary-nav {
    inset: 70px var(--container-gutter) auto var(--container-gutter);
  }

  .hero-home {
    min-height: 590px;
  }

  .hero-content h1,
  .page-hero-content h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.55rem;
  }
}

@media print {
  .site-loader,
  .site-header,
  .page-hero,
  .application-aside,
  .application-form,
  .site-footer,
  .form-actions {
    display: none;
  }

  body {
    background: var(--white);
    color: var(--black);
  }

  .application-section,
  .section {
    padding: 0;
    background: var(--white);
  }

  .application-layout {
    display: block;
  }

  .application-card,
  .application-result {
    border: 0;
    box-shadow: none;
    background: var(--white);
    color: var(--black);
  }

  .application-result h2,
  .application-result p {
    color: var(--black);
  }
}
