
:root {
  --navy-950: #031522;
  --navy-900: #061d30;
  --navy-850: #08243a;
  --navy-800: #0a2e49;
  --navy-700: #10486b;
  --gold-500: #d6ad5c;
  --gold-400: #e2c071;
  --gold-300: #f0d694;
  --cream: #f7f4ed;
  --paper: #fffdf8;
  --ink: #142330;
  --muted: #667783;
  --line: rgba(8, 36, 58, 0.12);
  --success: #16a36a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.site-shell {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--navy-900);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.utility-bar {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.03em;
}

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

.utility-contact,
.utility-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.utility-contact i {
  width: 3px;
  height: 3px;
  border-radius: 99px;
  background: var(--gold-400);
}

.utility-links a {
  transition: color 0.2s ease;
}

.utility-links a:hover,
.utility-links a:focus-visible {
  color: var(--gold-300);
}

.masthead {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
}

.masthead-inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 17px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(214, 173, 92, 0.72);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(145deg, var(--navy-700), var(--navy-950));
  color: #fff;
  box-shadow: 0 9px 26px rgba(6, 29, 48, 0.16), inset 0 0 0 4px #fff,
    inset 0 0 0 5px rgba(214, 173, 92, 0.7);
}

.brand-mark span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark small {
  margin-top: 2px;
  color: var(--gold-300);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.brand-logo-wrap {
  overflow: hidden;
  padding: 7px;
  background: #fff;
}

.brand-logo-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 50%;
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.brand-copy > small {
  margin-bottom: 5px;
  color: var(--gold-500);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.brand-copy strong {
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 700;
  line-height: 1.1;
}

.brand-copy > span {
  margin-top: 6px;
  color: #697783;
  font-size: 12px;
}

.accreditation {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  max-width: 310px;
  flex-wrap: wrap;
}

.accreditation span {
  padding: 8px 10px;
  border: 1px solid rgba(214, 173, 92, 0.35);
  border-radius: 999px;
  background: #fffdf7;
  color: var(--navy-800);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, var(--navy-950), var(--navy-800), var(--navy-950));
  color: #fff;
  box-shadow: 0 8px 30px rgba(2, 18, 30, 0.16);
}

.nav-inner {
  min-height: 50px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.nav-inner a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 22px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 580;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-inner a::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  height: 2px;
  background: var(--gold-400);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-inner a:hover,
.nav-inner a:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.nav-inner a:hover::after,
.nav-inner a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 615px;
  overflow: hidden;
  background:
    linear-gradient(112deg, rgba(3, 21, 34, 0.99) 0%, rgba(6, 35, 56, 0.98) 54%, rgba(8, 52, 78, 0.96) 100%);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

.hero-pattern {
  position: absolute;
  inset: 0 0 0 48%;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  transform: skewX(-8deg);
  transform-origin: bottom;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  top: -230px;
  right: -160px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(226, 192, 113, 0.18);
  box-shadow: 0 0 0 80px rgba(226, 192, 113, 0.025),
    0 0 0 160px rgba(226, 192, 113, 0.018);
}

.hero-glow-two {
  bottom: -330px;
  left: 18%;
  width: 540px;
  height: 540px;
  background: rgba(16, 72, 107, 0.3);
  filter: blur(80px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(350px, 0.72fr);
  gap: clamp(54px, 7vw, 95px);
  align-items: center;
  padding-block: 64px 72px;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--gold-300);
}

.live-pill {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 8px 12px;
  border: 1px solid rgba(240, 214, 148, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-300);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.live-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d899;
  box-shadow: 0 0 0 5px rgba(52, 216, 153, 0.1);
}

.live-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(52, 216, 153, 0.4);
  border-radius: 50%;
  animation: live-pulse 2s infinite;
}

.eyebrow {
  margin: 0 0 11px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 670px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(49px, 5.7vw, 80px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  margin-top: 7px;
  color: var(--gold-300);
  font-style: italic;
}

.hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.button {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.015em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--navy-950);
  box-shadow: 0 11px 28px rgba(214, 173, 92, 0.17);
}

.button-gold:hover,
.button-gold:focus-visible {
  box-shadow: 0 15px 34px rgba(214, 173, 92, 0.25);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.19);
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  backdrop-filter: blur(8px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.09);
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.45);
}

.trust-line p {
  margin: 0;
  font-size: 10px;
  line-height: 1.5;
}

.trust-mark {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 214, 148, 0.35);
  border-radius: 50%;
  color: var(--gold-300);
  font-size: 11px;
}

.status-card {
  position: relative;
  padding: 27px;
  border: 1px solid rgba(240, 214, 148, 0.25);
  border-radius: 22px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.status-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 34px;
  left: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-300), transparent);
}

.status-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.status-card-top p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-card-top h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 500;
}

.status-badge {
  padding: 7px 10px;
  border: 1px solid rgba(52, 216, 153, 0.3);
  border-radius: 999px;
  background: rgba(52, 216, 153, 0.1);
  color: #65ecb3;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.deadline-card {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(3, 21, 34, 0.38);
}

.deadline-card > p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.countdown-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.countdown-row > strong {
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 45px;
  font-weight: 500;
  line-height: 0.95;
}

.countdown-row div {
  display: flex;
  flex-direction: column;
}

.countdown-row span {
  font-size: 13px;
  font-weight: 700;
}

.countdown-row small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
}

.mini-timeline {
  position: relative;
  display: grid;
  gap: 16px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.mini-timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 15px;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.mini-timeline li {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 13px;
}

.mini-timeline li > span {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: var(--navy-850);
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
}

.mini-timeline li.done > span {
  border-color: rgba(52, 216, 153, 0.32);
  background: #0a4c3b;
  color: #7ff4c4;
}

.mini-timeline li.active > span {
  border-color: var(--gold-400);
  background: var(--gold-400);
  color: var(--navy-950);
  box-shadow: 0 0 0 5px rgba(226, 192, 113, 0.08);
}

.mini-timeline li div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mini-timeline strong {
  font-size: 11px;
  font-weight: 650;
}

.mini-timeline small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
}

.status-cta {
  min-height: 47px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border-radius: 9px;
  background: #fff;
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 730;
  transition: background 0.2s ease, transform 0.2s ease;
}

.status-cta:hover,
.status-cta:focus-visible {
  background: var(--gold-300);
  transform: translateY(-1px);
}

.status-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: 8px;
  line-height: 1.5;
  text-align: center;
}

.ticker {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid rgba(214, 173, 92, 0.23);
  background: #fff;
  box-shadow: 0 8px 26px rgba(3, 21, 34, 0.05);
}

.ticker-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.ticker-label {
  padding: 5px 9px;
  border-radius: 5px;
  background: var(--navy-900);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ticker p {
  flex: 1;
  margin: 0;
  color: #4c5e6c;
  font-size: 11px;
}

.ticker a {
  color: var(--navy-700);
  font-size: 10px;
  font-weight: 730;
}

.quick-overview {
  padding: 36px 0 80px;
  background:
    linear-gradient(180deg, #f7f4ed, #f3f0e9);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(8, 36, 58, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 45px rgba(10, 46, 73, 0.06);
}

.overview-grid article {
  position: relative;
  display: flex;
  min-height: 126px;
  flex-direction: column;
  justify-content: center;
  padding: 25px 30px;
}

.overview-grid article + article {
  border-left: 1px solid rgba(8, 36, 58, 0.1);
}

.overview-grid article > span {
  margin-bottom: 6px;
  color: #86929a;
  font-size: 8px;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.overview-grid strong {
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 500;
}

.overview-grid small {
  margin-top: 4px;
  color: #7c898f;
  font-size: 9px;
}

.section {
  padding: 96px 0;
}

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

.section-kicker {
  margin: 0 0 13px;
  color: #ae8540;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-heading h2,
.fee-panel h2,
.merit-panel h2,
.documents-copy h2,
.reporting-copy h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(37px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1.07;
}

.section-heading > p:last-child,
.documents-copy > p,
.fee-panel > p,
.merit-panel > div > p:not(.section-kicker) {
  max-width: 660px;
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.heading-row {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.heading-row > div:first-child {
  max-width: 710px;
}

.updated-card {
  width: 195px;
  flex: 0 0 195px;
  display: flex;
  flex-direction: column;
  padding: 17px 19px;
  border: 1px solid rgba(214, 173, 92, 0.25);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.updated-card span {
  color: #8b979e;
  font-size: 7px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.updated-card strong {
  margin-top: 7px;
  color: var(--navy-900);
  font-size: 12px;
}

.updated-card small {
  margin-top: 3px;
  color: #919ba1;
  font-size: 8px;
}

.schedule-section {
  position: relative;
  background:
    linear-gradient(180deg, #f7f4ed, #fffdf9 38%, #fff);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 48px;
  margin-top: 58px;
}

.schedule-item {
  position: relative;
  min-height: 132px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 17px;
  align-items: flex-start;
  padding: 23px 0;
  border-top: 1px solid rgba(8, 36, 58, 0.1);
}

.schedule-item:nth-child(1),
.schedule-item:nth-child(2) {
  border-top-color: rgba(8, 36, 58, 0.15);
}

.schedule-marker {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 36, 58, 0.12);
  border-radius: 50%;
  background: #fff;
  color: #839098;
}

.schedule-marker span {
  font-size: 9px;
  font-weight: 750;
}

.schedule-item.active .schedule-marker {
  border-color: var(--gold-500);
  background: var(--navy-900);
  color: var(--gold-300);
  box-shadow: 0 0 0 6px rgba(214, 173, 92, 0.08);
}

.schedule-copy time {
  display: block;
  margin-bottom: 7px;
  color: #a07837;
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-copy h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 680;
}

.schedule-copy p {
  margin: 7px 0 0;
  color: #7c8990;
  font-size: 10px;
  line-height: 1.5;
}

.now-tag {
  align-self: center;
  padding: 6px 8px;
  border: 1px solid rgba(22, 163, 106, 0.2);
  border-radius: 999px;
  background: rgba(22, 163, 106, 0.08);
  color: #138b5d;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.source-banner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 17px;
  align-items: center;
  margin-top: 24px;
  padding: 16px 20px;
  border: 1px solid rgba(214, 173, 92, 0.28);
  border-radius: 12px;
  background: #fffaf0;
}

.source-seal {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(174, 133, 64, 0.4);
  border-radius: 50%;
  color: #9b7435;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
}

.source-banner p {
  margin: 0;
  color: #6e6250;
  font-size: 10px;
  line-height: 1.6;
}

.source-banner a {
  color: var(--navy-800);
  font-size: 9px;
  font-weight: 750;
  white-space: nowrap;
}

.resources-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: #fff;
}

.resources-section::before,
.resources-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.resources-section::before {
  top: -340px;
  right: -260px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(226, 192, 113, 0.13);
  box-shadow: 0 0 0 100px rgba(226, 192, 113, 0.018);
}

.resources-section::after {
  bottom: -260px;
  left: -180px;
  width: 520px;
  height: 520px;
  background: rgba(16, 72, 107, 0.28);
  filter: blur(80px);
}

.resources-section .site-shell {
  position: relative;
  z-index: 2;
}

.centered-heading {
  margin-inline: auto;
  text-align: center;
}

.resources-section .section-heading h2 {
  color: #fff;
}

.resources-section .section-heading > p:last-child {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.51);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 54px;
}

.resource-card {
  min-height: 254px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  transition: transform 0.22s ease, border-color 0.22s ease,
    background 0.22s ease;
}

.resource-card:hover,
.resource-card:focus-visible {
  border-color: rgba(240, 214, 148, 0.43);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  transform: translateY(-4px);
}

.resource-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.resource-number {
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.resource-tag {
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 7px;
  font-weight: 740;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.resource-card h3 {
  margin: 27px 0 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.resource-card > p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  line-height: 1.65;
}

.resource-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.resource-footer small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 8px;
  font-weight: 650;
}

.resource-footer > span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 214, 148, 0.3);
  border-radius: 50%;
  color: var(--gold-300);
  font-size: 10px;
}

.guidance-section {
  background: #fff;
}

.guidance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 58px;
  align-items: start;
}

.compact-heading {
  max-width: 590px;
}

.journey-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin-top: 42px;
}

.journey-card {
  min-height: 352px;
  display: flex;
  flex-direction: column;
  padding: 23px;
  border: 1px solid rgba(8, 36, 58, 0.1);
  border-radius: 13px;
  background: #fbfaf7;
}

.journey-card.active {
  border-color: rgba(214, 173, 92, 0.42);
  background: linear-gradient(155deg, #fffcf3, #fbf7eb);
  box-shadow: 0 17px 40px rgba(8, 36, 58, 0.06);
}

.journey-step {
  width: fit-content;
  padding: 5px 7px;
  border-radius: 4px;
  background: var(--navy-900);
  color: var(--gold-300);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey-card:not(.active) .journey-step {
  background: #e9e8e3;
  color: #71818c;
}

.journey-card h3 {
  margin: 23px 0 0;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
}

.journey-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.journey-card li {
  position: relative;
  padding-left: 16px;
  color: #697982;
  font-size: 9px;
  line-height: 1.5;
}

.journey-card li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 5px;
  height: 5px;
  border: 1px solid #b58d49;
  border-radius: 50%;
}

.journey-card > a,
.journey-availability {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 0 12px;
  border-radius: 7px;
  background: var(--navy-900);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
}

.journey-availability {
  border: 1px solid rgba(8, 36, 58, 0.1);
  background: #fff;
  color: #7f8c93;
  justify-content: center;
}

.college-profile {
  position: sticky;
  top: 24px;
  overflow: hidden;
  padding: 26px;
  border-radius: 17px;
  background:
    linear-gradient(158deg, var(--navy-800), var(--navy-950));
  color: #fff;
  box-shadow: 0 24px 54px rgba(3, 21, 34, 0.18);
}

.college-profile::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(240, 214, 148, 0.17);
  border-radius: 50%;
}

.college-profile-head,
.footer-brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 13px;
}

.mini-crest {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 214, 148, 0.48);
  border-radius: 50%;
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.04);
}

.college-profile-head p {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 7px;
  font-weight: 730;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.college-profile-head h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
}

.college-intro {
  position: relative;
  z-index: 1;
  margin: 25px 0 0;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
  line-height: 1.7;
}

.college-profile dl {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
}

.college-profile dl > div {
  display: flex;
  flex-direction: column;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.college-profile dl > div:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  padding-right: 13px;
}

.college-profile dl > div:nth-child(even) {
  padding-left: 13px;
}

.college-profile dt {
  color: rgba(255, 255, 255, 0.4);
  font-size: 7px;
  text-transform: uppercase;
}

.college-profile dd {
  margin: 5px 0 0;
  color: #fff;
  font-size: 11px;
  font-weight: 650;
}

.profile-links {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  margin-top: 20px;
}

.profile-links a {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 8px;
  transition: background 0.2s ease;
}

.profile-links a:hover,
.profile-links a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.admission-section {
  border-top: 1px solid rgba(8, 36, 58, 0.08);
  background: #f5f1e8;
}

.admission-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 19px;
}

.fee-panel,
.merit-panel {
  min-height: 470px;
  border-radius: 18px;
}

.fee-panel {
  padding: 40px;
  border: 1px solid rgba(8, 36, 58, 0.1);
  background: #fff;
  box-shadow: 0 20px 50px rgba(8, 36, 58, 0.06);
}

.panel-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-label span {
  color: #a17835;
  font-size: 8px;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel-label em {
  padding: 6px 8px;
  border-radius: 999px;
  background: #eef8f3;
  color: #16845d;
  font-size: 7px;
  font-style: normal;
  font-weight: 770;
}

.fee-panel h2 {
  max-width: 520px;
  margin-top: 20px;
  font-size: clamp(32px, 3.2vw, 44px);
}

.fee-lines {
  margin-top: 29px;
  border-top: 1px solid rgba(8, 36, 58, 0.1);
}

.fee-lines > div {
  min-height: 47px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(8, 36, 58, 0.1);
}

.fee-lines span {
  color: #6d7b84;
  font-size: 9px;
}

.fee-lines strong {
  color: var(--navy-800);
  font-size: 9px;
  font-weight: 700;
  text-align: right;
}

.fee-panel > a,
.merit-panel a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 0 14px;
  border-radius: 7px;
  background: var(--navy-900);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
}

.merit-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  background:
    linear-gradient(150deg, #0e4b6c 0%, #061d30 62%, #031522 100%);
  color: #fff;
}

.merit-panel::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -170px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(240, 214, 148, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(240, 214, 148, 0.018),
    0 0 0 130px rgba(240, 214, 148, 0.012);
}

.merit-panel > div:last-child {
  position: relative;
  z-index: 2;
  max-width: 440px;
}

.merit-panel h2 {
  color: #fff;
  font-size: clamp(33px, 3.4vw, 46px);
}

.merit-panel > div > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.52);
}

.merit-panel a {
  width: fit-content;
  gap: 36px;
  background: var(--gold-300);
  color: var(--navy-950);
}

.merit-orbit {
  position: absolute;
  z-index: 1;
  top: 46px;
  right: 48px;
  width: 110px;
  height: 110px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(240, 214, 148, 0.37);
  border-radius: 50%;
  text-align: center;
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.025);
}

.merit-orbit span {
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 39px;
  line-height: 0.85;
}

.merit-orbit small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.17em;
}

.documents-section {
  background: #fff;
}

.documents-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 72px;
  align-items: center;
}

.documents-copy h2 {
  margin-top: 12px;
}

.document-note {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-top: 28px;
  padding: 16px;
  border-left: 2px solid var(--gold-500);
  background: #fbf8ef;
}

.document-note > span {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
}

.document-note p {
  margin: 0;
  color: #716957;
  font-size: 9px;
  line-height: 1.6;
}

.checklist-card {
  overflow: hidden;
  border: 1px solid rgba(8, 36, 58, 0.11);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(8, 36, 58, 0.08);
}

.checklist-head {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  background: var(--navy-900);
  color: #fff;
}

.checklist-head > div {
  display: flex;
  flex-direction: column;
}

.checklist-head span {
  color: var(--gold-300);
  font-size: 7px;
  font-weight: 770;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.checklist-head strong {
  margin-top: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
}

.checklist-head small {
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 7px;
}

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

.checklist-item {
  min-height: 57px;
  display: grid;
  grid-template-columns: 23px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(8, 36, 58, 0.08);
}

.checklist-item:nth-child(odd) {
  border-right: 1px solid rgba(8, 36, 58, 0.08);
}

.checklist-item > span {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(22, 163, 106, 0.25);
  border-radius: 50%;
  background: rgba(22, 163, 106, 0.06);
  color: #168d60;
  font-size: 9px;
}

.checklist-item p {
  margin: 0;
  color: #5f707a;
  font-size: 8px;
  line-height: 1.45;
}

.checklist-item small {
  color: #bcc2c6;
  font-family: Consolas, "Courier New", monospace;
  font-size: 7px;
}

.reporting-section {
  position: relative;
  overflow: hidden;
  padding: 66px 0;
  background: linear-gradient(110deg, var(--navy-950), var(--navy-800));
  color: #fff;
}

.reporting-section::after {
  content: "";
  position: absolute;
  top: -220px;
  right: 6%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(240, 214, 148, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(240, 214, 148, 0.018);
}

.reporting-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.reporting-copy p {
  margin: 0 0 11px;
  color: var(--gold-300);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.reporting-copy h2 {
  max-width: 650px;
  color: #fff;
  font-size: clamp(34px, 3.7vw, 49px);
}

.reporting-copy span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
}

.reporting-actions {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.faq-section {
  background: #f6f3ec;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 80px;
  align-items: start;
}

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

.faq-list details {
  overflow: hidden;
  border: 1px solid rgba(8, 36, 58, 0.1);
  border-radius: 10px;
  background: #fff;
}

.faq-list summary {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 36, 58, 0.13);
  border-radius: 50%;
  color: #8a979e;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-list details[open] summary i {
  background: var(--navy-900);
  color: var(--gold-300);
  transform: rotate(45deg);
}

.faq-list details > p {
  margin: 0;
  padding: 0 20px 21px;
  color: #6d7c84;
  font-size: 10px;
  line-height: 1.7;
}

.site-footer {
  padding: 42px 0 20px;
  background: var(--navy-950);
  color: #fff;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand strong {
  max-width: 440px;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
}

.footer-brand p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.37);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-300);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 33px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.29);
  font-size: 7px;
}

.footer-bottom p {
  margin: 0;
}

.floating-pin {
  position: fixed;
  z-index: 50;
  top: 48%;
  right: 0;
  width: 102px;
  min-height: 142px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 17px 9px 13px;
  border: 1px solid rgba(240, 214, 148, 0.5);
  border-right: 0;
  border-radius: 17px 0 0 17px;
  background:
    linear-gradient(160deg, rgba(16, 72, 107, 0.98), rgba(3, 21, 34, 0.99));
  color: #fff;
  box-shadow: -9px 16px 42px rgba(3, 21, 34, 0.24);
  transform: translateY(-50%);
  transition: width 0.25s ease, background 0.25s ease;
}

.floating-pin:hover,
.floating-pin:focus-visible {
  width: 112px;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-950));
}

.pin-signal {
  position: absolute;
  top: 13px;
  right: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4be2a5;
  box-shadow: 0 0 0 4px rgba(75, 226, 165, 0.12);
}

.pin-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 214, 148, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
}

.pin-copy {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 10px;
}

.pin-copy small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.pin-copy strong {
  margin-top: 2px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.pin-copy em {
  margin-top: 5px;
  padding: 3px 6px;
  border-radius: 999px;
  background: var(--gold-400);
  color: var(--navy-950);
  font-size: 6px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.11em;
}

@keyframes live-pulse {
  0% {
    transform: scale(0.7);
    opacity: 1;
  }
  75%,
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@media (max-width: 1050px) {
  .accreditation {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 40px;
  }

  .nav-inner a {
    padding-inline: 15px;
  }

  .guidance-grid {
    grid-template-columns: 1fr;
  }

  .college-profile {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 0 28px;
  }

  .college-profile-head,
  .college-intro,
  .profile-links {
    grid-column: 1;
  }

  .college-profile dl {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: stretch;
  }

  .documents-grid {
    gap: 42px;
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(100% - 32px, 680px);
  }

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

  .utility-links {
    display: none;
  }

  .masthead-inner {
    min-height: 100px;
  }

  .brand-copy > small,
  .brand-copy > span {
    display: none;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-mark {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }

  .main-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-block: 44px 60px;
  }

  .hero {
    min-height: auto;
  }

  .breadcrumbs {
    margin-bottom: 28px;
  }

  .status-card {
    max-width: 470px;
  }

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

  .overview-grid article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(8, 36, 58, 0.1);
  }

  .overview-grid article:nth-child(4) {
    border-top: 1px solid rgba(8, 36, 58, 0.1);
  }

  .section {
    padding: 72px 0;
  }

  .heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .schedule-item:nth-child(2) {
    border-top-color: rgba(8, 36, 58, 0.1);
  }

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

  .journey-cards {
    grid-template-columns: 1fr;
  }

  .journey-card {
    min-height: 310px;
  }

  .college-profile {
    display: block;
  }

  .admission-grid,
  .documents-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .documents-grid,
  .faq-grid {
    gap: 44px;
  }

  .reporting-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .reporting-actions {
    justify-content: flex-start;
  }

  .footer-grid,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-bottom {
    gap: 7px;
  }

  .floating-pin {
    top: auto;
    right: 14px;
    bottom: 15px;
    width: auto;
    min-height: 54px;
    flex-direction: row;
    gap: 10px;
    padding: 7px 11px 7px 8px;
    border-right: 1px solid rgba(240, 214, 148, 0.5);
    border-radius: 999px;
    transform: none;
  }

  .floating-pin:hover,
  .floating-pin:focus-visible {
    width: auto;
  }

  .pin-signal {
    top: 5px;
    right: 5px;
  }

  .pin-icon {
    width: 39px;
    height: 39px;
  }

  .pin-copy {
    align-items: flex-start;
    margin-top: 0;
  }

  .pin-copy em {
    position: absolute;
    top: -8px;
    right: 3px;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 24px, 520px);
  }

  .utility-contact {
    gap: 9px;
    font-size: 9px;
  }

  .masthead-inner {
    min-height: 88px;
  }

  .brand {
    gap: 11px;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .brand-mark span {
    font-size: 16px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .hero-grid {
    padding-block: 35px 48px;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    justify-content: space-between;
  }

  .status-card {
    padding: 21px;
    border-radius: 18px;
  }

  .ticker-inner {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px 12px;
    padding-block: 13px;
  }

  .ticker p {
    min-width: calc(100% - 70px);
    line-height: 1.5;
  }

  .ticker a {
    margin-left: 61px;
  }

  .overview-grid {
    grid-template-columns: 1fr;
  }

  .overview-grid article + article,
  .overview-grid article:nth-child(3) {
    border-top: 1px solid rgba(8, 36, 58, 0.1);
    border-left: 0;
  }

  .overview-grid article {
    min-height: 104px;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading h2,
  .fee-panel h2,
  .merit-panel h2,
  .documents-copy h2,
  .reporting-copy h2 {
    font-size: 34px;
  }

  .schedule-grid {
    margin-top: 39px;
  }

  .schedule-item {
    min-height: 122px;
    grid-template-columns: 39px 1fr;
    gap: 13px;
  }

  .schedule-marker {
    width: 34px;
    height: 34px;
  }

  .now-tag {
    grid-column: 2;
    justify-self: start;
    align-self: start;
    margin-top: -17px;
  }

  .source-banner {
    grid-template-columns: auto 1fr;
  }

  .source-banner a {
    grid-column: 2;
  }

  .resource-grid {
    grid-template-columns: 1fr;
  }

  .resource-card {
    min-height: 232px;
  }

  .college-profile {
    padding: 22px;
  }

  .fee-panel,
  .merit-panel {
    min-height: auto;
    padding: 27px 22px;
  }

  .fee-lines > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    padding-block: 10px;
  }

  .fee-lines strong {
    text-align: left;
  }

  .merit-panel {
    min-height: 480px;
  }

  .merit-orbit {
    top: 29px;
    right: 25px;
    width: 88px;
    height: 88px;
  }

  .merit-orbit span {
    font-size: 31px;
  }

  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .checklist-item:nth-child(odd) {
    border-right: 0;
  }

  .reporting-section {
    padding: 52px 0 76px;
  }

  .reporting-actions {
    width: 100%;
    flex-direction: column;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
