.pillars__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}
.pillars__head .eyebrow {
  margin-bottom: var(--sp-2);
}
.pillars__head .body-md {
  max-width: 34ch;
}
.pillars__signal {
  position: relative;
  width: 100%;
  height: 52px;
  margin-bottom: var(--sp-4);
  overflow: hidden;
}
.pillars__signal svg {
  width: 100%;
  height: 100%;
  display: block;
}
.pillars__signal-path {
  fill: none;
  stroke: url(#pillarSignalGradient);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.75;
}
@media (max-width: 560px) {
  .pillars__signal {
    height: 36px;
  }
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--sp-4);
}
.pillar {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: var(--sp-6) var(--sp-4) var(--sp-5);
  background: var(--surface-raised);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 2px rgba(10, 23, 38, 0.05);
  transition: transform var(--dur-med) var(--ease-out),
    box-shadow var(--dur-med) var(--ease-out),
    border-color var(--dur-med) var(--ease-out);
}
.pillar:nth-child(1) { --accent: var(--blue-600); }
.pillar:nth-child(2) { --accent: var(--sage-600); }
.pillar:nth-child(3) { --accent: var(--gold-500); }
.pillar:nth-child(4) { --accent: var(--ink-700); }
.pillar:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border-hair));
  box-shadow: 0 34px 64px -30px color-mix(in srgb, var(--accent) 45%, rgba(10, 23, 38, 0.35));
}
.pillar__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 20%),
      color-mix(in srgb, var(--accent) 16%, transparent), transparent 68%);
  transition: opacity var(--dur-fast) var(--ease-out);
  pointer-events: none;
}
.pillar:hover .pillar__glow {
  opacity: 1;
}
.pillar__ghost {
  position: absolute;
  right: -0.25rem;
  bottom: -1.35rem;
  z-index: 0;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 3rem + 4.5vw, 7rem);
  font-weight: 600;
  line-height: 1;
  color: var(--accent);
  opacity: 0.07;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}
.pillar:hover .pillar__ghost {
  opacity: 0.13;
  transform: translateY(-4px);
}
.pillar__icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  margin-bottom: var(--sp-5);
  flex-shrink: 0;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.pillar__icon svg {
  width: 24px;
  height: 24px;
}
.pillar__icon-ring {
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 1.5px solid var(--accent);
  opacity: 0;
}
.pillar:hover .pillar__icon-ring {
  animation: pillarRingPulse 1.5s var(--ease-out) infinite;
}
@keyframes pillarRingPulse {
  0% {
    opacity: 0.55;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}
.pillar:hover .pillar__icon {
  background: var(--accent);
  color: var(--bone-100);
}
.pillar__index {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--grey-500);
  margin-bottom: var(--sp-3);
}
.pillar__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.pillar__desc {
  position: relative;
  z-index: 1;
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.pillar__bar {
  position: relative;
  z-index: 1;
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: auto;
  padding-top: var(--sp-4);
  background-clip: content-box;
  transition: width var(--dur-med) var(--ease-out);
}
.pillar:hover .pillar__bar {
  width: 48px;
}
@media (max-width: 900px) {
  .pillars__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .pillars__head .body-md {
    max-width: none;
  }
  .pillars__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .pillars__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }
  .pillar {
    padding: var(--sp-5) var(--sp-4);
  }
  .pillar__ghost {
    font-size: 4rem;
  }
}
.compare {
  position: relative;
  margin-top: var(--sp-8);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-raised);
  box-shadow: 0 30px 60px -30px rgba(10, 23, 38, 0.16);
}
.compare__ribbon {
  position: absolute;
  top: var(--sp-4);
  right: calc(-1 * var(--sp-6));
  z-index: 4;
  transform: rotate(38deg);
  background: linear-gradient(100deg,
      var(--sage-600) 0%, var(--sage-500) 45%, var(--sage-600) 100%);
  background-size: 220% 100%;
  animation: ribbonShine 3.4s linear infinite;
  color: var(--bone-100);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 3.25rem;
  box-shadow: 0 4px 12px rgba(10, 23, 38, 0.2);
}
@keyframes ribbonShine {
  0% { background-position: 0% 0; }
  100% { background-position: -220% 0; }
}
.compare__row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  border-top: 1px solid var(--border-hair);
}
.compare__row:first-child {
  border-top: none;
}
.compare__row--head {
  background: var(--bone-200);
}
.compare__label,
.compare__col {
  padding: var(--sp-4) var(--sp-4);
  font-size: 0.92rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
}
.compare__label {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.96rem;
}
.compare__row--head .compare__col {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.compare__col--typical {
  color: var(--text-secondary);
}
.compare__row--head .compare__col--typical {
  color: var(--grey-500);
}
.compare__col--sugam {
  position: relative;
  color: var(--ink-900);
  font-weight: 500;
  background: color-mix(in srgb, var(--sage-500) 8%, transparent);
  box-shadow:
    inset 1px 0 0 color-mix(in srgb, var(--sage-500) 30%, transparent),
    6px 0 24px -12px color-mix(in srgb, var(--sage-600) 55%, transparent);
}
.compare__row:first-child .compare__col--sugam {
  border-top-right-radius: var(--radius-md);
}
.compare__row:last-child .compare__col--sugam {
  border-bottom-right-radius: var(--radius-md);
}
.compare__row--head .compare__col--sugam {
  color: var(--sage-600);
  background: color-mix(in srgb, var(--sage-500) 14%, transparent);
}
.compare__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin-right: 0.7em;
}
.compare__icon svg {
  width: 13px;
  height: 13px;
}
.compare__col--typical .compare__icon {
  color: var(--grey-500);
  background: color-mix(in srgb, var(--grey-500) 16%, transparent);
}
.compare__col--sugam .compare__icon {
  color: var(--bone-100);
  background: var(--sage-600);
}
.compare__row--head .compare__icon {
  display: none;
}
@media (max-width: 720px) {
  .compare__row {
    grid-template-columns: 1fr;
    padding: var(--sp-4) 0;
    row-gap: 0.4rem;
  }
  .compare__row--head {
    display: none;
  }
  .compare__label,
  .compare__col {
    padding: 0 var(--sp-4);
  }
  .compare__label {
    color: var(--grey-500);
    font-size: 0.74rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
  }
  .compare__col--sugam {
    box-shadow: none;
    border-radius: var(--radius-sm);
  }
  .compare__row:first-child .compare__col--sugam,
  .compare__row:last-child .compare__col--sugam {
    border-radius: var(--radius-sm);
  }
  .compare__ribbon {
    top: var(--sp-3);
    right: calc(-1 * var(--sp-5));
    padding: 0.26rem 2.75rem;
    font-size: 0.6rem;
  }
}
.why-sugam__cta {
  position: relative;
  margin-top: var(--sp-7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-hair);
  background: linear-gradient(120deg, var(--bone-200) 0%, var(--surface-raised) 65%);
  overflow: hidden;
}
.why-sugam__cta-text {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
}
.why-sugam__cta-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
@media (max-width: 560px) {
  .why-sugam__cta {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--sp-5) var(--sp-4);
  }
  .why-sugam__cta-actions {
    width: 100%;
  }
  .why-sugam__cta-actions .btn {
    flex: 1;
    justify-content: center;
  }
}
.outcomes {
  background: var(--ink-900);
  color: var(--bone-100);
  position: relative;
  overflow: hidden;
}
.outcomes::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(116, 168, 84, 0.18), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(63, 139, 196, 0.16), transparent 50%);
  pointer-events: none;
}
.outcomes__inner {
  position: relative;
  z-index: 1;
}
.outcomes__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--sp-5);
  margin-bottom: var(--sp-7);
}
.outcomes__head p {
  max-width: 38ch;
  color: var(--text-on-dark-muted);
  text-align: right;
}
.outcomes__dash {
  display: grid;
  grid-template-columns: 0.95fr 1.4fr;
  gap: var(--sp-5);
  align-items: stretch;
}
.outcomes__hero {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border-hair-dark);
  border-radius: var(--radius-lg);
  padding: var(--sp-6) var(--sp-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-5);
}
.outcomes__ring-wrap {
  position: relative;
  width: 160px;
  height: 160px;
}
.outcomes__ring {
  width: 160px;
  height: 160px;
  transform: rotate(-90deg);
}
.outcomes__ring-track {
  fill: none;
  stroke: var(--border-hair-dark);
  stroke-width: 10;
}
.outcomes__ring-fill {
  fill: none;
  stroke: var(--gold-300);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 427;
  stroke-dashoffset: 427;
  transition: stroke-dashoffset 1.6s var(--ease-out);
}
.outcomes__ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}
.outcomes__ring-num {
  font-family: var(--font-mono);
  font-size: clamp(2.2rem, 1.8rem + 1.5vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--bone-100);
  display: flex;
  align-items: baseline;
  gap: 0.05rem;
}
.outcomes__ring-num .unit {
  font-size: 1.2rem;
  color: var(--gold-300);
}
.outcomes__ring-tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}
.outcomes__hero-kicker {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-300);
  display: block;
  margin-bottom: 0.6rem;
}
.outcomes__hero-desc {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--text-on-dark-muted);
}
.outcomes__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.outcomes__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-hair-dark);
  border-radius: var(--radius-md);
  padding: var(--sp-5) var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.outcomes__card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.22);
}
.outcomes__card-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-hair-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  margin-bottom: var(--sp-2);
}
.outcomes__card-icon svg {
  width: 16px;
  height: 16px;
}
.outcomes__card-num {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  color: var(--bone-100);
}
.outcomes__card-num .unit {
  font-size: 1rem;
  color: var(--gold-300);
}
.outcomes__card-label {
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
  line-height: 1.4;
}
.outcomes__card--quote {
  background: rgba(201, 154, 61, 0.08);
  border-color: rgba(201, 154, 61, 0.22);
  justify-content: space-between;
}
.outcomes__card-quote-mark {
  width: 22px;
  height: 22px;
  color: var(--gold-300);
  opacity: 0.6;
}
.outcomes__card-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--bone-200);
}
.outcomes__card-quote-by {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}
.outcomes__journey {
  margin-top: var(--sp-7);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border-hair-dark);
}
.outcomes__journey-label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  display: block;
  margin-bottom: var(--sp-5);
}
.outcomes__journey-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-4);
}
.outcomes__journey-step {
  position: relative;
  padding-top: var(--sp-4);
  border-top: 2px solid var(--border-hair-dark);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.outcomes__journey-step::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--gold-300);
}
.outcomes__journey-step-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold-300);
}
.outcomes__journey-step-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--bone-100);
}
.outcomes__journey-step-desc {
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
  line-height: 1.45;
}
.outcomes__journey-step--final .outcomes__journey-step-title {
  color: var(--gold-300);
}
.outcomes__partners {
  position: relative;
  margin-top: var(--sp-7);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border-hair-dark);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-5);
}
.outcomes__partners-label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  flex-shrink: 0;
}
.outcomes__partners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.outcomes__partner-tag {
  font-size: 0.84rem;
  color: var(--bone-200);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-hair-dark);
  border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .outcomes__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .outcomes__head p {
    text-align: left;
  }
  .outcomes__dash {
    grid-template-columns: 1fr;
  }
  .outcomes__journey-track {
    grid-template-columns: 1fr 1fr;
  }
  .outcomes__partners {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 560px) {
  .outcomes__cards {
    grid-template-columns: 1fr;
  }
  .outcomes__journey-track {
    grid-template-columns: 1fr;
  }
  .outcomes__partner-tag {
    font-size: 0.78rem;
    padding: 0.45rem 0.85rem;
  }
}
.alumni__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--sp-5);
  margin-bottom: var(--sp-7);
}
.alumni__track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.alumni__track {
  display: flex;
  gap: var(--sp-5);
  width: max-content;
  padding-left: clamp(1.25rem, 4vw, 3.5rem);
  padding-right: clamp(1.25rem, 4vw, 3.5rem);
}
.alumni__track.is-dragging { user-select: none; -webkit-user-select: none; }
.alumni__track.is-dragging .alumni-card { pointer-events: none; }

.alumni-card {
  flex-shrink: 0;
  width: min(420px, 86vw);
  background: var(--surface-raised);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.alumni-card__quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--text-primary);
}
.alumni-card__person {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border-hair);
}
.alumni-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink-900);
  flex-shrink: 0;
}
.alumni-card__name {
  font-weight: 600;
  font-size: 0.92rem;
}
.alumni-card__role {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
}
@media (max-width: 900px) {
  .alumni__top {
    flex-direction: column;
    align-items: flex-start;
  }
}
.final-cta {
  background: linear-gradient(135deg, var(--ink-900) 0%, #122a3f 60%, #173d2c 100%);
  color: var(--bone-100);
  border-radius: var(--radius-lg);
  margin: 0 var(--container-pad);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 154, 61, 0.18), transparent 60%);
  pointer-events: none;
}
.final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}
.final-cta__title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.05;
}
.final-cta__sub {
  color: var(--text-on-dark-muted);
  font-size: 1.05rem;
  max-width: 46ch;
}
.final-cta__ctas {
  display: flex;
  gap: var(--sp-4);
  margin-top: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 640px) {
  .final-cta {
    margin: 0 var(--sp-3);
    padding: var(--sp-7) var(--sp-4);
    border-radius: var(--radius-md);
  }
}
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-6);
  align-items: center;
}
.about-teaser__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--blue-600), var(--sage-600));
}
.about-teaser__visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.about-teaser__copy p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-primary);
}
.about-teaser__copy .em {
  font-style: italic;
  color: var(--blue-600);
}
.about-teaser__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--sp-5);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  border-bottom: 1px solid var(--text-primary);
  padding-bottom: 0.2rem;
  transition: gap var(--dur-fast) var(--ease-out);
}
.about-teaser__link:hover {
  gap: 0.8rem;
}
.about-teaser__link svg {
  width: 14px;
  height: 14px;
}
@media (max-width: 800px) {
  .about-teaser {
    grid-template-columns: 1fr;
  }
  .about-teaser__visual {
    aspect-ratio: 16/9;
  }
}
.footer {
  background: var(--ink-900);
  color: var(--bone-100);
  padding-top: var(--sp-8);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr 1fr;
  gap: var(--sp-5);
  padding-bottom: var(--sp-7);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: var(--sp-4);
}
.footer__brand img {
  height: 36px;
  width: 36px;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}
.footer__tagline {
  color: var(--text-on-dark-muted);
  font-size: 0.92rem;
  max-width: 30ch;
  line-height: 1.6;
}
.footer__col-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-300);
  margin-bottom: var(--sp-4);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__links a {
  font-size: 0.92rem;
  color: var(--text-on-dark-muted);
  transition: color var(--dur-fast) var(--ease-out);
}
.footer__links a:hover {
  color: var(--bone-100);
}
.footer__newsletter-form {
  display: flex;
  border: 1px solid var(--border-hair-dark);
  border-radius: 999px;
  padding: 0.3rem 0.3rem 0.3rem 1.1rem;
  align-items: center;
  margin-top: var(--sp-3);
}
.footer__newsletter-form input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--bone-100);
  font-size: 0.88rem;
  flex: 1;
  min-width: 0;
}
.footer__newsletter-form input::placeholder {
  color: var(--text-on-dark-muted);
}
.footer__newsletter-form button {
  background: var(--gold-500);
  color: var(--ink-900);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-fast) var(--ease-out);
}
.footer__newsletter-form button:hover {
  background: var(--gold-300);
}
.footer__newsletter-form button svg {
  width: 14px;
  height: 14px;
}
.footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: var(--sp-4) 0;
  border-top: 1px solid var(--border-hair-dark);
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
  gap: var(--sp-3);
}
.footer__socials {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}
.footer__socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-hair-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.footer__socials a:hover {
  border-color: var(--bone-100);
  background: rgba(255, 255, 255, 0.06);
}
.footer__socials a svg {
  width: 15px;
  height: 15px;
  stroke: var(--bone-100);
}
.footer__credit {
  text-align: right;
  justify-self: end;
}
.footer__credit a {
  color: var(--text-on-dark-muted);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color var(--dur-fast) var(--ease-out);
}
.footer__credit a:hover {
  color: var(--bone-100);
}
@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: var(--sp-3);
  }
  .footer__credit {
    justify-self: center;
    text-align: center;
  }
}
@media (max-width: 400px) {
  .footer__newsletter-form {
    flex-direction: column;
    border-radius: var(--radius-md);
    padding: 0.8rem 1rem;
    gap: 0.75rem;
    align-items: stretch;
  }
  .footer__newsletter-form button {
    width: 100%;
    height: 40px;
    border-radius: var(--radius-sm);
  }
}
.nav__brand-tag {
    margin-top: 0.5rem;
}
.notice-bar {
  position: relative;
  z-index: 210;
  background: var(--ink-900);
  color: var(--bone-100);
  overflow: hidden;
  max-height: 44px;
  transition: max-height var(--dur-med) var(--ease-in-out),
    opacity var(--dur-fast) var(--ease-out);
}
@media (max-width: 720px) {
  .notice-bar {
    max-height: 140px;
  }
}
.notice-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 50%, rgba(201, 154, 61, 0.16), transparent 60%),
    radial-gradient(circle at 88% 50%, rgba(63, 139, 196, 0.14), transparent 60%);
  pointer-events: none;
}
.notice-bar.is-dismissed {
  max-height: 0;
  opacity: 0;
}
.notice-bar__inner {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: var(--sp-4);
  height: 44px;
}
@media (max-width: 720px) {
  .notice-bar__inner {
    height: auto;
    min-height: 44px;
  }
}
.notice-bar__tag {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0 var(--sp-4);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-300);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}
.notice-bar__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 0 rgba(201, 154, 61, 0.6);
  animation: notice-pulse 2.2s ease-out infinite;
  flex-shrink: 0;
}
@keyframes notice-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 154, 61, 0.55);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(201, 154, 61, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201, 154, 61, 0);
  }
}
.notice-bar__viewport {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-width: 0;
}
.notice-bar__item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--dur-med) var(--ease-out),
    transform var(--dur-med) var(--ease-out);
  pointer-events: none;
}
.notice-bar__item.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.notice-bar__item-label {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage-300);
  background: rgba(116, 168, 84, 0.14);
  border: 1px solid rgba(116, 168, 84, 0.28);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}
.notice-bar__item-text {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--bone-100);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.notice-bar__item-text a {
  color: var(--gold-300);
  text-decoration: underline;
  text-decoration-color: rgba(227, 199, 133, 0.4);
  text-underline-offset: 2px;
  transition: text-decoration-color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.notice-bar__item-text a:hover {
  text-decoration-color: var(--gold-300);
}
.notice-bar__dots {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-right: var(--sp-2);
}
.notice-bar__dots button {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: background var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out);
  padding: 0;
}
.notice-bar__dots button.is-active {
  background: var(--gold-500);
  transform: scale(1.3);
}
.notice-bar__dots button:hover {
  background: var(--bone-100);
}
.notice-bar__close {
  flex-shrink: 0;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-on-dark-muted);
  transition: color var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out);
}
.notice-bar__close:hover {
  color: var(--bone-100);
  background: rgba(255, 255, 255, 0.06);
}
.notice-bar__close svg {
  width: 14px;
  height: 14px;
}
.nav {
  top: var(--notice-offset, 0px);
  transition: top var(--dur-fast) var(--ease-out),
    padding var(--dur-fast) var(--ease-out);
}
.nav.is-scrolled {
  top: 0;
}
@media (max-width: 720px) {
  .notice-bar__tag {
    padding: 0 var(--sp-3);
    font-size: 0.62rem;
  }
  .notice-bar__item-label {
    display: none;
  }
  .notice-bar__viewport {
    padding-left: 0;
  }
  .notice-bar__dots {
    display: none;
  }
  .notice-bar__viewport {
    position: relative;
    overflow: visible;
  }
  .notice-bar__item {
    position: absolute;
    align-items: flex-start;
    padding: 0.5rem 0;
  }
  .notice-bar__item.is-active {
    position: relative;
  }
  .notice-bar__item-text {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.4;
    display: block;
  }
  .notice-bar__item-text a {
    white-space: normal;
  }
}
@media (max-width: 720px) {
  .notice-bar__inner {
    align-items: flex-start;
  }
  .notice-bar__tag {
    padding-top: 0.5rem;
  }
  .notice-bar__close {
    align-self: flex-start;
    margin-top: 0.2rem;
  }
}
@media (max-width: 480px) {
  .notice-bar__inner {
    gap: var(--sp-2);
  }
  .notice-bar__item-text {
    font-size: 0.78rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .notice-bar__tag-dot {
    animation: none;
  }
}
.depth-section {
  --blur: 0px;
  --dim: 1;
  filter: blur(var(--blur));
  opacity: var(--dim);
  will-change: filter, opacity;
  transform: translateZ(0);
}
.depth-section {
  filter: blur(0px);
  opacity: 1;
}
.js-depth-ready .depth-section {
  filter: blur(var(--blur));
  opacity: var(--dim);
}
@media (prefers-reduced-motion: reduce) {
  .depth-section {
    filter: none !important;
    opacity: 1 !important;
  }
}
.depth-section {
  isolation: isolate;
}
.about-pro {
  position: relative;
}
.about-pro__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: flex-start;
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--border-hair);
}
.about-pro__header-left .eyebrow {
  margin-bottom: var(--sp-4);
}
.about-pro__title {
  max-width: 18ch;
  margin-bottom: 0;
}
.about-pro__title em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--blue-600);
}
.about-pro__intro-text {
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--text-secondary);
  max-width: 46ch;
  margin-bottom: var(--sp-5);
}
.about-pro__accreditation {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.about-pro__acc-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
}
.about-pro__acc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.about-pro__acc-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-hair);
  background: var(--bone-200);
  color: var(--text-secondary);
}
.about-pro__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: flex-start;
}
.about-pro__media {
  position: relative;
}
.about-pro__img-primary {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 24px 64px rgba(10, 23, 38, 0.14);
}
.about-pro__img-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.about-pro__img-primary:hover img {
  transform: scale(1.03);
}
.about-pro__img-primary::before {
  content: "";
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  width: 32px;
  height: 32px;
  border-top: 2px solid var(--gold-300);
  border-left: 2px solid var(--gold-300);
  opacity: 0.85;
  pointer-events: none;
  z-index: 2;
}
.about-pro__img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 23, 38, 0.82) 0%, transparent 100%);
  padding: var(--sp-5) var(--sp-4) var(--sp-4);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 1;
}
.about-pro__img-label-loc {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(250, 249, 245, 0.85);
  letter-spacing: 0.04em;
}
.about-pro__img-label-loc svg {
  width: 12px;
  height: 12px;
  stroke: var(--gold-300);
  flex-shrink: 0;
}
.about-pro__img-label-year {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(250, 249, 245, 0.55);
  letter-spacing: 0.08em;
}
.about-pro__img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 42%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--surface);
  box-shadow: 0 12px 32px rgba(10, 23, 38, 0.18);
  z-index: 2;
}
.about-pro__img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-pro__float-card {
  position: absolute;
  top: 1.75rem;
  right: -2.5rem;
  background: var(--surface-raised);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  box-shadow: 0 8px 28px rgba(10, 23, 38, 0.12);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  z-index: 3;
  min-width: 180px;
}
.about-pro__float-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-pro__float-icon svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
}
.about-pro__float-body {
  display: flex;
  flex-direction: column;
}
.about-pro__float-num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink-900);
  line-height: 1;
}
.about-pro__float-text {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.35;
  margin-top: 2px;
}
.about-pro__float-text span {
  color: var(--grey-500);
}
.about-pro__content {
  display: flex;
  flex-direction: column;
  padding-top: var(--sp-4);
}
.about-pro__tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border-hair);
  margin-bottom: var(--sp-6);
}
.about-pro__tab {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.65rem 1.25rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.about-pro__tab.is-active {
  color: var(--blue-600);
  border-bottom-color: var(--blue-600);
}
.about-pro__tab:hover:not(.is-active) {
  color: var(--text-primary);
}
.about-pro__panel {
  display: none;
  flex-direction: column;
  gap: var(--sp-4);
}
.about-pro__panel.is-active {
  display: flex;
  animation: panel-fade 0.35s var(--ease-out) both;
}
@keyframes panel-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-pro__panel-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 1vw, 1.6rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.about-pro__panel p {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text-secondary);
}
.about-pro__panel em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--blue-600);
  font-weight: 500;
}
.about-pro__mission-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
}
.about-pro__mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.about-pro__mission-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.about-pro__mission-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--sage-500);
  fill: none;
}
.about-pro__faculty-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
}
.about-pro__faculty-card {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-md);
  background: var(--bone-200);
  transition: border-color var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out);
}
.about-pro__faculty-card:hover {
  border-color: var(--blue-300);
  background: var(--surface-raised);
}
.about-pro__faculty-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink-800);
  color: var(--gold-300);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.about-pro__faculty-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}
.about-pro__faculty-role {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
}
.about-pro__panel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-600);
  margin-top: var(--sp-3);
  transition: gap var(--dur-fast) var(--ease-out);
}
.about-pro__panel-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.about-pro__panel-link:hover {
  gap: 0.9rem;
}
.about-pro__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: var(--sp-5);
  margin-top: var(--sp-3);
}
.about-pro__timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--blue-500), var(--sage-500));
}
.about-pro__tl-item {
  position: relative;
  padding: 0 0 var(--sp-5) 0;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--sp-3);
  align-items: flex-start;
}
.about-pro__tl-item::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--sp-5) - 5px);
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-500);
  border: 2px solid var(--surface);
  box-shadow: 0 0 0 3px rgba(63, 139, 196, 0.2);
}
.about-pro__tl-item:last-child {
  padding-bottom: 0;
}
.about-pro__tl-year {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-600);
  padding-top: 4px;
}
.about-pro__tl-body strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.about-pro__tl-body p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}
.about-pro__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: var(--sp-6);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bone-200);
}
.about-pro__stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: var(--sp-4) var(--sp-4);
  border-right: 1px solid var(--border-hair);
  position: relative;
}
.about-pro__stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.about-pro__stat:nth-child(1)::before {
  background: var(--blue-500);
}
.about-pro__stat:nth-child(2)::before {
  background: var(--sage-500);
}
.about-pro__stat:nth-child(3)::before {
  background: var(--gold-500);
}
.about-pro__stat:last-child {
  border-right: none;
}
.about-pro__stat-num {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  line-height: 1;
}
.about-pro__stat-num span {
  color: var(--gold-500);
  font-size: 0.8em;
}
.about-pro__stat-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
@media (max-width: 1100px) {
  .about-pro__float-card {
    right: -1rem;
  }
  .about-pro__img-secondary {
    right: -1rem;
  }
}
@media (max-width: 900px) {
  .about-pro__header {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }
  .about-pro__body {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
  }
  .about-pro__media {
    max-width: 560px;
  }
  .about-pro__img-primary {
    aspect-ratio: 16 / 11;
  }
  .about-pro__img-secondary {
    bottom: -1.5rem;
    right: -0.5rem;
    width: 38%;
  }
  .about-pro__float-card {
    top: 1rem;
    right: 0.5rem;
  }
}
@media (max-width: 640px) {
  .about-pro__tabs {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .about-pro__tabs::-webkit-scrollbar {
    display: none;
  }
  .about-pro__tab {
    font-size: 0.8rem;
    padding: 0.6rem 0.9rem;
    white-space: nowrap;
  }
  .about-pro__tabs {
    justify-content: center;
  }
  .about-pro__stats {
    grid-template-columns: 1fr 1fr;
  }
  .about-pro__stat:nth-child(2) {
    border-right: none;
  }
  .about-pro__stat:nth-child(3) {
    grid-column: 1 / -1;
    border-right: none;
    border-top: 1px solid var(--border-hair);
  }
  .about-pro__img-secondary {
    display: none;
  }
  .about-pro__float-card {
    position: static;
    margin-top: var(--sp-4);
    width: 100%;
  }
}
.notice-board {
  background: var(--surface);
  position: relative;
}
.notice-board__header {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-7);
  align-items: flex-end;
  margin-bottom: var(--sp-7);
}
.notice-board__header-left .eyebrow {
  margin-bottom: var(--sp-4);
}
.notice-board__title {
  margin-bottom: 0;
}
.notice-board__header-right p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 44ch;
  margin-bottom: var(--sp-4);
}
.notice-board__live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border-hair);
  border-radius: 999px;
  background: var(--bone-200);
}
.notice-board__live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage-500);
  box-shadow: 0 0 0 0 rgba(116, 168, 84, 0.5);
  animation: notice-pulse 2.4s ease-out infinite;
  flex-shrink: 0;
}
.notice-board__filters {
  display: flex;
  gap: 0.5rem;
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;
}
.nb-filter {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border-hair);
  color: var(--text-secondary);
  background: var(--bone-200);
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out);
}
.nb-filter.is-active,
.nb-filter:hover {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: var(--bone-100);
}
.notice-board__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-7);
}
.nb-card {
  background: var(--surface-raised);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: box-shadow var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.nb-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border-hair);
  transition: background var(--dur-fast) var(--ease-out);
}
.nb-card:hover {
  box-shadow: 0 8px 32px rgba(10, 23, 38, 0.1);
  transform: translateY(-2px);
  border-color: var(--blue-300);
}
.nb-card:hover::before {
  background: var(--blue-500);
}
.nb-card--urgent {
  border-color: rgba(201, 100, 61, 0.3);
  background: rgba(255, 250, 245, 0.8);
}
.nb-card--urgent::before {
  background: #c9623d;
}
.nb-card--urgent:hover {
  border-color: rgba(201, 100, 61, 0.6);
}
.nb-card--urgent:hover::before {
  background: #c9623d;
}
.nb-card--highlight {
  border-color: rgba(116, 168, 84, 0.3);
  background: rgba(245, 251, 240, 0.8);
}
.nb-card--highlight::before {
  background: var(--sage-500);
}
.nb-card--highlight:hover {
  border-color: rgba(116, 168, 84, 0.6);
}
.nb-card--highlight:hover::before {
  background: var(--sage-500);
}
.nb-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-3);
}
.nb-card__badges {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.nb-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-weight: 600;
}
.nb-badge--urgent {
  background: rgba(201, 98, 61, 0.12);
  color: #a84a2a;
  border: 1px solid rgba(201, 98, 61, 0.3);
}
.nb-badge__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c9623d;
  animation: notice-pulse 2s ease-out infinite;
  flex-shrink: 0;
}
.nb-badge--cat {
  background: rgba(63, 139, 196, 0.1);
  color: var(--blue-600);
  border: 1px solid rgba(63, 139, 196, 0.25);
}
.nb-badge--exam {
  background: rgba(201, 154, 61, 0.12);
  color: #8a6520;
  border: 1px solid rgba(201, 154, 61, 0.3);
}
.nb-badge--placement {
  background: rgba(116, 168, 84, 0.12);
  color: var(--sage-600);
  border: 1px solid rgba(116, 168, 84, 0.3);
}
.nb-badge--event {
  background: rgba(122, 134, 153, 0.1);
  color: var(--grey-500);
  border: 1px solid rgba(122, 134, 153, 0.25);
}
.nb-badge--new {
  background: var(--ink-900);
  color: var(--gold-300);
  border: none;
}
.nb-card__date {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--grey-500);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.nb-card__title {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  margin: 0;
}
.nb-card__body {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-secondary);
  flex: 1;
  margin: 0;
}
.nb-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border-hair);
  margin-top: auto;
}
.nb-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-600);
  letter-spacing: 0.01em;
  transition: gap var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out);
}
.nb-card__link svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.nb-card__link:hover {
  gap: 0.7rem;
  color: var(--ink-900);
}
.nb-card--urgent .nb-card__link {
  color: #a84a2a;
}
.nb-card--highlight .nb-card__link {
  color: var(--sage-600);
}
.nb-card__ref {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--grey-300);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.notice-board__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  padding: var(--sp-5) var(--sp-6);
  background: var(--bone-200);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-md);
}
.notice-board__footer p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0;
}
@media (max-width: 1024px) {
  .notice-board__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .notice-board__header {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }
}
@media (max-width: 640px) {
  .notice-board__grid {
    grid-template-columns: 1fr;
  }
  .notice-board__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-4);
  }
}
@media (max-width: 480px) {
  .notice-board__filters {
    gap: 0.4rem;
  }
  .nb-filter {
    font-size: 0.78rem;
    padding: 0.4rem 0.9rem;
  }
}
.nb-card.is-hidden {
  display: none;
}
.crumb-band {
  padding-top: calc(var(--sp-7) + 3.25rem);
  padding-bottom: var(--sp-3);
}
.crumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--grey-500);
}
.crumb a {
  color: var(--text-secondary);
  transition: color var(--dur-fast) var(--ease-out);
}
.crumb a:hover {
  color: var(--blue-600);
}
.crumb svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  stroke: var(--grey-300);
}
.crumb__current {
  color: var(--blue-600);
  font-weight: 600;
}
.page-hero {
  position: relative;
  padding-top: var(--sp-9);
  padding-bottom: var(--sp-8);
  overflow: hidden;
}
.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  opacity: 0.35;
  pointer-events: none;
}
.page-hero::before {
  width: 420px;
  height: 420px;
  top: -160px;
  right: -120px;
  background: var(--blue-300);
}
.page-hero::after {
  width: 460px;
  height: 460px;
  bottom: -220px;
  left: -160px;
  background: var(--gold-300);
  opacity: 0.28;
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--sp-8);
  align-items: center;
}
.page-hero__eyebrow {
  margin-bottom: var(--sp-4);
}
.page-hero__title {
  max-width: 14ch;
  margin-bottom: var(--sp-5);
}
.page-hero__title em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--blue-600);
}
.page-hero__lede {
  max-width: 48ch;
  margin-bottom: var(--sp-6);
}
.page-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.page-hero__stats {
  margin-top: var(--sp-7);
}
.page-hero__media {
  position: relative;
}
@media (max-width: 980px) {
  .page-hero__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
  }
  .page-hero__title {
    max-width: none;
  }
  .page-hero__media {
    max-width: 480px;
    margin: 0 auto;
  }
}
@media (max-width: 560px) {
  .crumb-band {
    padding-top: calc(var(--sp-6) + 3rem);
  }
}
.story__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--sp-8);
  align-items: center;
}
.story__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 64px rgba(10, 23, 38, 0.14);
}
.story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story__media-tag {
  position: absolute;
  left: var(--sp-4);
  bottom: var(--sp-4);
  background: rgba(10, 23, 38, 0.78);
  backdrop-filter: blur(6px);
  color: var(--bone-100);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}
.story__content .eyebrow {
  margin-bottom: var(--sp-4);
}
.story__title {
  margin-bottom: var(--sp-5);
  max-width: 16ch;
}
.story__content p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: var(--sp-4);
}
.story__content p:last-of-type {
  margin-bottom: 0;
}
.story__quote {
  margin-top: var(--sp-6);
  padding: var(--sp-5) var(--sp-5) var(--sp-5) var(--sp-6);
  border-left: 3px solid var(--gold-500);
  background: var(--bone-200);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.story__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
}
.story__quote-by {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-secondary);
}
.story__quote-by::before {
  content: "";
  width: 18px;
  height: 1.5px;
  background: var(--gold-500);
  display: inline-block;
}
@media (max-width: 900px) {
  .story__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
  .story__media {
    aspect-ratio: 16 / 10;
    max-width: 560px;
  }
}
.mv__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: flex-end;
  margin-bottom: var(--sp-7);
}
.mv__head .eyebrow {
  margin-bottom: var(--sp-4);
}
.mv__head p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 44ch;
}
.mv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-7);
}
.mv__card {
  background: var(--surface-raised);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  position: relative;
  overflow: hidden;
}
.mv__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.mv__card--mission::before {
  background: var(--blue-500);
}
.mv__card--vision::before {
  background: var(--sage-500);
}
.mv__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
}
.mv__card--mission .mv__icon {
  background: rgba(63, 139, 196, 0.12);
}
.mv__card--vision .mv__icon {
  background: rgba(116, 168, 84, 0.12);
}
.mv__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke-width: 1.8;
}
.mv__card--mission .mv__icon svg {
  stroke: var(--blue-600);
}
.mv__card--vision .mv__icon svg {
  stroke: var(--sage-600);
}
.mv__card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: var(--sp-3);
  color: var(--text-primary);
}
.mv__card p {
  font-size: 0.9875rem;
  line-height: 1.7;
  color: var(--text-secondary);
}
.values__subhead {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.1rem + 0.6vw, 1.7rem);
  font-weight: 600;
  margin-bottom: var(--sp-5);
  color: var(--text-primary);
}
@media (max-width: 900px) {
  .mv__head,
  .mv__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }
}
.milestones__head {
  text-align: center;
  max-width: 56ch;
  margin: 0 auto var(--sp-8);
}
.milestones__head .eyebrow {
  justify-content: center;
  margin-bottom: var(--sp-4);
}
.milestones__head p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: var(--sp-4);
}
.milestones {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}
.milestones::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1.5px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, var(--blue-500), var(--sage-500), var(--gold-500));
}
.milestone {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: var(--sp-5);
  align-items: center;
  margin-bottom: var(--sp-6);
}
.milestone:last-child {
  margin-bottom: 0;
}
.milestone__dot {
  grid-column: 2;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--surface-raised);
  border: 3px solid var(--blue-500);
  justify-self: center;
  z-index: 1;
  box-shadow: 0 0 0 5px var(--surface);
}
.milestone:nth-child(2n) .milestone__dot {
  border-color: var(--sage-500);
}
.milestone:nth-child(3n) .milestone__dot {
  border-color: var(--gold-500);
}
.milestone__card {
  grid-column: 1;
  background: var(--surface-raised);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  text-align: right;
  transition: box-shadow var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.milestone:nth-child(2n) .milestone__card {
  grid-column: 3;
  text-align: left;
}
.milestone__card:hover {
  box-shadow: 0 12px 32px rgba(10, 23, 38, 0.1);
  transform: translateY(-2px);
}
.milestone__spacer {
  grid-column: 3;
}
.milestone:nth-child(2n) .milestone__spacer {
  grid-column: 1;
}
.milestone__year {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--blue-600);
  background: rgba(63, 139, 196, 0.1);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  margin-bottom: var(--sp-3);
}
.milestone__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.milestone__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
}
@media (max-width: 760px) {
  .milestones::before {
    left: 7px;
  }
  .milestone {
    grid-template-columns: 16px 1fr;
    gap: var(--sp-4);
  }
  .milestone__dot {
    grid-column: 1;
    box-shadow: 0 0 0 4px var(--surface);
  }
  .milestone__card,
  .milestone:nth-child(2n) .milestone__card {
    grid-column: 2;
    text-align: left;
  }
  .milestone__spacer,
  .milestone:nth-child(2n) .milestone__spacer {
    display: none;
  }
}
.leader-spotlight {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-6);
  align-items: center;
  background: var(--ink-900);
  border-radius: var(--radius-lg);
  padding: var(--sp-7);
  margin-bottom: var(--sp-8);
  position: relative;
  overflow: hidden;
}
.leader-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(201, 154, 61, 0.16), transparent 55%);
  pointer-events: none;
}
.leader-spotlight__avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--blue-600), var(--ink-700));
  color: var(--gold-300);
  font-family: var(--font-mono);
  font-size: 2.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 3px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.leader-spotlight__body {
  position: relative;
  z-index: 1;
}
.leader-spotlight__quote-mark {
  width: 30px;
  height: 30px;
  fill: var(--gold-500);
  opacity: 0.7;
  margin-bottom: var(--sp-3);
}
.leader-spotlight__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.4rem);
  line-height: 1.5;
  color: var(--bone-100);
  margin-bottom: var(--sp-4);
}
.leader-spotlight__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--bone-100);
}
.leader-spotlight__role {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold-300);
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
}
@media (max-width: 760px) {
  .leader-spotlight {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--sp-6);
  }
  .leader-spotlight__quote-mark {
    margin-left: auto;
    margin-right: auto;
  }
}
.cred-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink-900);
  border-radius: var(--radius-lg);
  padding: var(--sp-7) var(--sp-6) var(--sp-6);
}
.cred-panel__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(520px circle at 12% -10%, rgba(63, 139, 196, 0.22), transparent 60%),
    radial-gradient(460px circle at 100% 110%, rgba(201, 154, 61, 0.16), transparent 60%);
  pointer-events: none;
}
.cred-panel__head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 42ch;
  margin: 0 auto var(--sp-6);
}
.cred-panel__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: var(--sp-2);
}
.cred-panel__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 1.15rem + 0.9vw, 1.85rem);
  color: var(--bone-100);
  line-height: 1.3;
}
.cred-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-hair-dark);
  border: 1px solid var(--border-hair-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.cred-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink-800);
  padding: var(--sp-5) var(--sp-4) var(--sp-4);
  display: flex;
  flex-direction: column;
  transition: background var(--dur-med) var(--ease-out);
}
.cred-card:nth-child(1) { --accent: var(--blue-300); }
.cred-card:nth-child(2) { --accent: var(--sage-300); }
.cred-card:nth-child(3) { --accent: var(--gold-300); }
.cred-card:nth-child(4) { --accent: #d7c7f2; }
.cred-card:hover {
  background: var(--ink-700);
}
.cred-card__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 20%),
      color-mix(in srgb, var(--accent) 30%, transparent), transparent 70%);
  transition: opacity var(--dur-fast) var(--ease-out);
  pointer-events: none;
}
.cred-card:hover .cred-card__glow {
  opacity: 1;
}
.cred-card__ghost {
  position: absolute;
  z-index: 0;
  right: 0.4rem;
  top: 0.2rem;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 2.6rem + 3vw, 5rem);
  font-weight: 600;
  color: var(--bone-100);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-out);
}
.cred-card:hover .cred-card__ghost {
  opacity: 0.09;
}
.cred-card__icon {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  margin-bottom: var(--sp-4);
  flex-shrink: 0;
}
.cred-card__icon svg {
  width: 21px;
  height: 21px;
}
.cred-card__stat {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--sp-3);
}
.cred-card__stat .unit {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}
.cred-card__title {
  position: relative;
  z-index: 1;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--bone-100);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}
.cred-card__desc {
  position: relative;
  z-index: 1;
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
  margin-bottom: var(--sp-4);
}
.cred-card__bar {
  position: relative;
  z-index: 1;
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: auto;
  transition: width var(--dur-med) var(--ease-out);
}
.cred-card:hover .cred-card__bar {
  width: 42px;
}
.cred-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
.cred-chip {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 1 1 220px;
  padding: 0.85rem 1.1rem;
  background: var(--surface-raised);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.cred-chip:hover {
  border-color: var(--blue-300);
  transform: translateY(-2px);
}
.cred-chip svg {
  width: 18px;
  height: 18px;
  color: var(--sage-600);
  flex-shrink: 0;
}
@media (max-width: 980px) {
  .cred-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cred-panel {
    padding: var(--sp-6) var(--sp-4) var(--sp-5);
  }
}
@media (max-width: 560px) {
  .cred-grid {
    grid-template-columns: 1fr;
  }
  .cred-card__ghost {
    font-size: 3rem;
  }
  .cred-strip {
    flex-direction: column;
  }
  .cred-chip {
    flex: 1 1 auto;
  }
}
.accred__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: flex-end;
  margin-bottom: var(--sp-7);
}
.accred__head .eyebrow {
  margin-bottom: var(--sp-4);
}
.accred__head p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 44ch;
}
.accred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.accred-card {
  background: var(--surface-raised);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.accred-card:hover {
  border-color: var(--blue-300);
  transform: translateY(-2px);
}
.accred-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bone-200);
  display: flex;
  align-items: center;
  justify-content: center;
}
.accred-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue-600);
  fill: none;
  stroke-width: 1.8;
}
.accred-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
}
.accred-card__desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
@media (max-width: 980px) {
  .accred-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .accred__head {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
}
@media (max-width: 480px) {
  .accred-grid {
    grid-template-columns: 1fr;
  }
}
.gallery__head {
  margin-bottom: var(--sp-7);
}
.gallery__head .eyebrow {
  margin-bottom: var(--sp-4);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: var(--sp-4);
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--sp-4);
  background: linear-gradient(to top, rgba(10, 23, 38, 0.82), transparent);
  color: var(--bone-100);
  font-size: 0.85rem;
  font-weight: 600;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
    height: auto;
  }
}
@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item:first-child {
    grid-column: span 1;
  }
}
.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(63, 139, 196, 0.22), transparent 50%),
    radial-gradient(circle at 85% 85%, rgba(201, 154, 61, 0.16), transparent 50%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: 56ch;
  margin: 0 auto;
}
.cta-band__title {
  margin-bottom: var(--sp-4);
}
.cta-band__lede {
  color: var(--text-on-dark-muted);
  font-size: 1.0625rem;
  line-height: 1.65;
  margin-bottom: var(--sp-6);
}
.cta-band__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.courses-hero {
  position: relative;
  padding-top: var(--sp-9);
  padding-bottom: var(--sp-7);
  text-align: center;
  overflow: hidden;
}
.courses-hero::before,
.courses-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  pointer-events: none;
}
.courses-hero::before {
  width: 480px;
  height: 480px;
  top: -180px;
  right: -60px;
  background: var(--blue-300);
  opacity: 0.3;
}
.courses-hero::after {
  width: 420px;
  height: 420px;
  bottom: -180px;
  left: -80px;
  background: var(--gold-300);
  opacity: 0.22;
}
.courses-hero__inner {
  max-width: 680px;
  margin: 0 auto;
}
.courses-hero__eyebrow {
  justify-content: center;
  margin-bottom: var(--sp-4);
}
.courses-hero__title {
  margin-bottom: var(--sp-5);
}
.courses-hero__title em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--blue-600);
}
.courses-hero__lede {
  max-width: 52ch;
  margin: 0 auto var(--sp-6);
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.72;
}
.courses-hero__ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: var(--sp-7);
}
.courses-hero__stats {
  display: flex;
  justify-content: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border-hair);
}
.courses-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.courses-hero__stat-num {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}
.courses-hero__stat-num span {
  color: var(--gold-500);
}
.courses-hero__stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--grey-500);
}
.prog-tabs {
  position: relative;
}
.prog-tabs__nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: var(--sp-7);
  padding: 0.35rem;
  background: var(--bone-200);
  border-radius: 999px;
  width: max-content;
}
.prog-tab-btn {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.prog-tab-btn.is-active {
  background: var(--surface-raised);
  color: var(--ink-900);
  box-shadow: 0 2px 8px rgba(10, 23, 38, 0.12);
}
.prog-tab-btn:hover:not(.is-active) {
  color: var(--ink-900);
}
.prog-tab-panel {
  display: none;
}
.prog-tab-panel.is-active {
  display: block;
  animation: fadePanel 0.35s var(--ease-out) both;
}
@keyframes fadePanel {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.prog-detail {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--sp-7);
  align-items: start;
}
.prog-card {
  border-radius: var(--radius-lg);
  padding: var(--sp-7) var(--sp-6);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--bone-100);
  margin-bottom: var(--sp-6);
}
.prog-card--mr {
  background: linear-gradient(145deg, #173456 0%, #0c1d35 55%, #0a1726 100%);
}
.prog-card--mbbs {
  background: linear-gradient(145deg, #193825 0%, #0d2118 55%, #0a1726 100%);
}
.prog-card__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  z-index: -1;
  top: -140px;
  right: -100px;
}
.prog-card--mr .prog-card__glow {
  background: var(--blue-500);
}
.prog-card--mbbs .prog-card__glow {
  background: var(--sage-500);
}
.prog-card::after {
  content: "";
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  width: 36px;
  height: 36px;
  border-top: 2px solid var(--gold-300);
  border-right: 2px solid var(--gold-300);
  opacity: 0.6;
  pointer-events: none;
}
.prog-card__track {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 0.5rem;
}
.prog-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1.3rem + 1.8vw, 2.6rem);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: var(--sp-4);
  max-width: 20ch;
}
.prog-card__title em {
  font-style: italic;
  color: var(--gold-300);
}
.prog-card__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-on-dark-muted);
  max-width: 56ch;
  margin-bottom: var(--sp-6);
}
.prog-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: var(--sp-6);
}
.prog-card__badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--bone-200);
  background: rgba(255, 255, 255, 0.07);
  white-space: nowrap;
}
.prog-card__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.prog-modules__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
}
.prog-modules__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1rem + 0.7vw, 1.5rem);
  font-weight: 600;
  color: var(--text-primary);
}
.prog-modules__count {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--grey-500);
  white-space: nowrap;
}
.prog-modules__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.prog-module {
  background: var(--surface-raised);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  transition: border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out);
  cursor: default;
}
.prog-module:hover {
  border-color: var(--blue-300);
  box-shadow: 0 8px 24px rgba(10, 23, 38, 0.07);
  transform: translateY(-2px);
}
.prog-module__num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--grey-300);
  margin-bottom: 0.5rem;
}
.prog-module__name {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
  line-height: 1.35;
}
.prog-module__sub {
  font-size: 0.79rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
[data-prog="mr"] .prog-module {
  border-left: 3px solid var(--blue-500);
}
[data-prog="mbbs"] .prog-module {
  border-left: 3px solid var(--sage-500);
}
.prog-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  position: sticky;
  top: calc(var(--notice-offset) + 80px);
}
.sidebar-card {
  background: var(--surface-raised);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
}
.sidebar-card__title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border-hair);
}
.sidebar-rows {
  display: flex;
  flex-direction: column;
}
.sidebar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border-hair);
  gap: var(--sp-3);
}
.sidebar-row:last-child {
  border-bottom: none;
}
.sidebar-row__label {
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.sidebar-row__val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: right;
}
.sidebar-outcomes {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.sidebar-outcome {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.sidebar-outcome__icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sidebar-outcome__icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke-width: 1.8;
}
[data-prog="mr"] .sidebar-outcome__icon {
  background: color-mix(in srgb, var(--blue-500) 12%, transparent);
}
[data-prog="mr"] .sidebar-outcome__icon svg {
  stroke: var(--blue-600);
}
[data-prog="mbbs"] .sidebar-outcome__icon {
  background: color-mix(in srgb, var(--sage-500) 12%, transparent);
}
[data-prog="mbbs"] .sidebar-outcome__icon svg {
  stroke: var(--sage-600);
}
.sidebar-outcome__text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.sidebar-outcome__text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-primary);
  font-weight: 700;
}
.sidebar-enroll {
  background: var(--ink-900);
  border-color: var(--ink-800);
  text-align: center;
  padding: var(--sp-6) var(--sp-5);
  position: relative;
  overflow: hidden;
}
.sidebar-enroll::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(201, 154, 61, 0.18), transparent 55%);
  pointer-events: none;
}
.sidebar-enroll__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-300);
  display: block;
  margin-bottom: var(--sp-3);
  position: relative;
  z-index: 1;
}
.sidebar-enroll__headline {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--bone-100);
  line-height: 1.3;
  margin-bottom: var(--sp-3);
  position: relative;
  z-index: 1;
}
.sidebar-enroll__sub {
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
  line-height: 1.5;
  margin-bottom: var(--sp-5);
  position: relative;
  z-index: 1;
}
.sidebar-enroll .btn {
  width: 100%;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.compare {
  background: var(--bone-200);
  border-top: 1px solid var(--border-hair);
  border-bottom: 1px solid var(--border-hair);
}
.compare__head {
  text-align: center;
  max-width: 52ch;
  margin: 0 auto var(--sp-7);
}
.compare__head .eyebrow {
  justify-content: center;
  margin-bottom: var(--sp-4);
}
.compare__head p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: var(--sp-4);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface-raised);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-hair);
  font-size: 0.9rem;
}
.compare-table th {
  padding: var(--sp-5) var(--sp-5);
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  border-bottom: 1px solid var(--border-hair);
  background: var(--bone-200);
}
.compare-table th:first-child {
  width: 34%;
}
.compare-table th.col-mr {
  color: var(--blue-600);
}
.compare-table th.col-mbbs {
  color: var(--sage-600);
}
.compare-table td {
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--border-hair);
  color: var(--text-secondary);
  line-height: 1.45;
  vertical-align: top;
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.compare-table td:first-child {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.85rem;
}
.compare-table td.check {
  color: var(--sage-600);
  font-size: 1.1rem;
}
.compare-table .fee-regular {
  font-size: 0.85rem;
  color: var(--grey-500);
  text-decoration: line-through;
  text-decoration-color: var(--grey-500);
  margin-right: 0.35rem;
}
.compare-table .fee-deal {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--gold-500);
}
.compare-table tr:hover td {
  background: var(--bone-200);
}
.faq__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: end;
  margin-bottom: var(--sp-7);
}
.faq__head .eyebrow {
  margin-bottom: var(--sp-4);
}
.faq__head p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 42ch;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-hair);
}
.faq-item {
  border-bottom: 1px solid var(--border-hair);
}
.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-5);
  padding: var(--sp-5) 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.faq-item__q:hover {
  color: var(--blue-600);
}
.faq-item__q::-webkit-details-marker {
  display: none;
}
.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bone-200);
  border: 1px solid var(--border-hair);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out);
}
.faq-item__icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--grey-500);
  stroke-width: 2;
  transition: transform var(--dur-fast) var(--ease-out), stroke var(--dur-fast) var(--ease-out);
}
details[open] .faq-item__icon {
  background: var(--ink-900);
  border-color: var(--ink-900);
}
details[open] .faq-item__icon svg {
  stroke: var(--bone-100);
  transform: rotate(45deg);
}
.faq-item__a {
  padding: 0 0 var(--sp-5) 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 70ch;
  animation: fadeFaq 0.3s var(--ease-out) both;
}
@keyframes fadeFaq {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1040px) {
  .prog-detail {
    grid-template-columns: 1fr;
  }
  .prog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-5);
  }
  .sidebar-enroll {
    grid-column: span 2;
  }
}
@media (max-width: 760px) {
  .prog-tabs__nav {
    width: 100%;
    justify-content: center;
  }
  .prog-tab-btn {
    flex: 1;
    text-align: center;
    padding: 0.65rem 0.9rem;
  }
  .prog-modules__grid {
    grid-template-columns: 1fr;
  }
  .prog-sidebar {
    grid-template-columns: 1fr;
  }
  .sidebar-enroll {
    grid-column: span 1;
  }
  .faq__head {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }
  .compare-table {
    font-size: 0.82rem;
  }
  .compare-table th,
  .compare-table td {
    padding: var(--sp-3) var(--sp-4);
  }
  .courses-hero__stats {
    gap: var(--sp-5);
  }
}
@media (max-width: 480px) {
  .prog-card {
    padding: var(--sp-6) var(--sp-5);
  }
  .compare-table th:first-child {
    width: 28%;
  }
}
.programs-section {
  background: var(--bone-100);
  position: relative;
  overflow: hidden;
}
.programs-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-hair) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-hair) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
.programs-section .container {
  position: relative;
  z-index: 1;
}
.programs__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: var(--sp-5);
  margin-bottom: var(--sp-7);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--border-hair);
}
.programs__header-left .eyebrow {
  margin-bottom: var(--sp-3);
}
.programs__header-left .h2 {
  margin: 0;
}
.programs__header-right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  align-items: flex-end;
}
.programs__header-right p {
  max-width: 38ch;
  text-align: right;
  color: var(--text-secondary);
  font-size: var(--fs-body);
  line-height: 1.65;
  margin: 0;
}
.programs__header-stats {
  display: flex;
  gap: var(--sp-5);
}
.programs__header-stat {
  text-align: center;
}
.programs__header-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink-900);
  line-height: 1;
}
.programs__header-stat span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  font-family: var(--font-mono);
}
.programs__tabs-nav {
  display: flex;
  gap: 0;
  background: var(--bone-200);
  border-radius: var(--radius-md);
  padding: 5px;
  margin-bottom: var(--sp-6);
  border: 1px solid var(--border-hair);
  width: 100%;
}
.programs__tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-radius: calc(var(--radius-md) - 4px);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.programs__tab-btn:hover {
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.6);
}
.programs__tab-btn.is-active {
  background: var(--ink-900);
  color: var(--bone-100);
  box-shadow: 0 2px 12px rgba(10, 23, 38, 0.2);
}
.programs__tab-btn.is-active .ptab-dot--mr {
  background: var(--blue-300);
}
.programs__tab-btn.is-active .ptab-dot--qpcc {
  background: var(--gold-300);
}
.programs__tab-btn.is-active .ptab-dot--mbbs {
  background: var(--sage-300);
}
.programs__tab-btn.is-active .ptab-dot--allied {
  background: var(--grey-300);
}
.ptab-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ptab-dot--mr {
  background: var(--blue-500);
}
.ptab-dot--qpcc {
  background: var(--gold-500);
}
.ptab-dot--mbbs {
  background: var(--sage-600);
}
.ptab-dot--allied {
  background: var(--grey-500);
}
.ptab-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 2px 7px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  letter-spacing: 0.06em;
}
.programs__tab-btn:not(.is-active) .ptab-badge {
  background: var(--bone-300);
  color: var(--text-secondary);
}
.programs__panel {
  display: none;
  animation: panelIn 0.45s var(--ease-out);
}
.programs__panel.is-active {
  display: grid;
}
@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.programs__subtabs-nav {
  display: flex;
  gap: 0;
  background: var(--surface-raised);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-md);
  padding: 5px;
  margin-bottom: var(--sp-5);
  width: 100%;
}
.programs__subtab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  border-radius: calc(var(--radius-md) - 4px);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.programs__subtab-btn:hover {
  color: var(--ink-900);
  background: var(--bone-200);
}
.programs__subtab-btn.is-active {
  color: var(--ink-900);
  background: var(--bone-200);
  box-shadow: inset 0 0 0 1px var(--border-hair);
}
.programs__subtab-btn:not(.is-active) .ptab-badge {
  background: var(--bone-200);
  color: var(--text-secondary);
}
.ptab-letter {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--bone-300);
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: all var(--dur-fast) var(--ease-out);
}
.programs__subtab-btn.is-active .ptab-letter--mrct {
  background: var(--blue-500);
  color: var(--bone-100);
}
.programs__subtab-btn.is-active .ptab-letter--qpcc {
  background: var(--gold-500);
  color: var(--bone-100);
}
.programs__subpanel {
  display: none;
  animation: panelIn 0.4s var(--ease-out);
}
.programs__subpanel.is-active {
  display: grid;
}
.prog-coming-soon {
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.prog-coming-soon--mbbs {
  background: linear-gradient(135deg, #0d2410 0%, #1c3f22 50%, #28542e 100%);
}
.prog-coming-soon--allied {
  background: linear-gradient(135deg, #15202b 0%, #283744 50%, #364857 100%);
}
.prog-coming-soon::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
}
.prog-coming-soon--mbbs::after {
  background: var(--sage-500);
}
.prog-coming-soon--allied::after {
  background: var(--grey-500);
}
.prog-coming-soon__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
}
.prog-coming-soon__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--bone-100);
}
.prog-coming-soon__track {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.prog-coming-soon__track::before {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.prog-coming-soon--mbbs .prog-coming-soon__track {
  color: var(--sage-300);
}
.prog-coming-soon--allied .prog-coming-soon__track {
  color: var(--grey-300);
}
.prog-coming-soon__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
  font-weight: 600;
  color: var(--bone-100);
  line-height: 1.15;
  max-width: 26ch;
  margin-bottom: var(--sp-3);
}
.prog-coming-soon__badge {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--bone-100);
  margin-bottom: var(--sp-4);
}
.prog-coming-soon--mbbs .prog-coming-soon__badge {
  color: var(--sage-300);
}
.prog-coming-soon--allied .prog-coming-soon__badge {
  color: var(--grey-300);
}
.prog-coming-soon__msg {
  font-size: 0.98rem;
  color: rgba(250, 249, 245, 0.65);
  max-width: 46ch;
  line-height: 1.6;
  margin-bottom: var(--sp-5);
}
.prog-coming-soon__actions {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.prog-hero-banner {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: var(--sp-6) var(--sp-6);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--sp-5);
  position: relative;
  overflow: hidden;
}
.prog-hero-banner--mr {
  background: linear-gradient(135deg, #0f2138 0%, #173456 50%, #1a3d65 100%);
}
.prog-hero-banner--qpcc {
  background: linear-gradient(135deg, #2a1f0a 0%, #4a350e 50%, #5c4215 100%);
}
.prog-hero-banner--mbbs {
  background: linear-gradient(135deg, #0d2410 0%, #1c3f22 50%, #28542e 100%);
}
.prog-hero-banner::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  top: -80px;
  right: -60px;
  pointer-events: none;
}
.prog-hero-banner--mr::after {
  background: var(--blue-500);
}
.prog-hero-banner--qpcc::after {
  background: var(--gold-500);
}
.prog-hero-banner--mbbs::after {
  background: var(--sage-500);
}
.prog-banner__left {
  position: relative;
  z-index: 1;
}
.prog-banner__track {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.prog-banner__track--mr {
  color: var(--blue-300);
}
.prog-banner__track--qpcc {
  color: var(--gold-300);
}
.prog-banner__track--mbbs {
  color: var(--sage-300);
}
.prog-banner__track::before {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.prog-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1.2rem + 2vw, 2.8rem);
  font-weight: 600;
  color: var(--bone-100);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}
.prog-banner__subtitle {
  font-size: 0.98rem;
  color: rgba(250, 249, 245, 0.65);
  max-width: 44ch;
  line-height: 1.5;
}
.prog-banner__right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  align-items: flex-end;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.prog-banner__pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 40px;
  padding: 0.55rem 1.1rem;
  font-size: 0.84rem;
  color: var(--bone-100);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.prog-banner__pill svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  opacity: 0.75;
}
.prog-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: 1px solid var(--border-hair);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}
.prog-col {
  padding: var(--sp-5) var(--sp-5);
  border-right: 1px solid var(--border-hair);
}
.prog-col:last-child {
  border-right: none;
}
.prog-col__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.prog-col__label::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--border-hair);
  display: inline-block;
}
.prog-modules-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.prog-module-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.4;
}
.prog-module-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.prog-module-dot--mr {
  background: rgba(46, 111, 163, 0.12);
}
.prog-module-dot--qpcc {
  background: rgba(201, 154, 61, 0.12);
}
.prog-module-dot--mbbs {
  background: rgba(91, 140, 62, 0.12);
}
.prog-module-dot svg {
  width: 10px;
  height: 10px;
}
.prog-module-dot--mr svg {
  stroke: var(--blue-600);
}
.prog-module-dot--qpcc svg {
  stroke: var(--gold-500);
}
.prog-module-dot--mbbs svg {
  stroke: var(--sage-600);
}
.prog-details-stack {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.prog-detail-block {
  padding: var(--sp-4);
  border-radius: var(--radius-md);
  background: var(--bone-200);
  border: 1px solid var(--border-hair);
}
.prog-detail-block__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}
.prog-detail-block__value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink-900);
  line-height: 1.1;
}
.prog-detail-block__sub {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
}
.prog-eligibility {
  background: var(--surface-raised);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
}
.prog-eligibility__title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.prog-eligibility__title svg {
  width: 16px;
  height: 16px;
  stroke: var(--blue-500);
}
.prog-elig-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--bone-200);
  border: 1px solid var(--border-hair);
  color: var(--text-secondary);
  margin: 0.2rem 0.2rem 0.2rem 0;
}
.prog-cta-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--surface-raised);
}
.prog-cta__top {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.prog-fee-display {
  text-align: center;
  padding: var(--sp-4) var(--sp-3);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-hair);
  background: var(--bone-200);
}
.prog-fee-display__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}
.prog-fee-display__amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1;
}
.prog-fee-display__amount sup {
  font-size: 1rem;
  vertical-align: top;
  margin-top: 0.4rem;
  display: inline-block;
}
.prog-fee-display__emi {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.35rem;
}
.prog-fee-display__strike {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.15rem;
}
.prog-fee-display__strike s {
  color: var(--grey-500);
  text-decoration-color: var(--grey-500);
}
.prog-fee-display__amount--deal {
  font-size: 2.85rem;
  color: var(--gold-500);
}
.prog-fee-display__amount--deal sup {
  font-size: 1.35rem;
  color: var(--gold-500);
}
.prog-fee-display__save {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--sage-600);
  background: var(--sage-300);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  margin-top: 0.5rem;
}
.prog-outcomes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.prog-outcome-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.prog-outcome-row svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.prog-outcome-row--mr svg {
  stroke: var(--blue-500);
}
.prog-outcome-row--qpcc svg {
  stroke: var(--gold-500);
}
.prog-outcome-row--mbbs svg {
  stroke: var(--sage-600);
}
.prog-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border-hair);
  margin-top: var(--sp-4);
}
.prog-cta__buttons .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.career-path {
  grid-column: 1 / -1;
  position: relative;
  background: var(--ink-900);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: var(--sp-6) var(--sp-6) var(--sp-5);
  margin-top: -1px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.career-path::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 6% 100%, rgba(46, 111, 163, 0.16), transparent 55%),
    radial-gradient(circle at 96% 0%, rgba(201, 154, 61, 0.14), transparent 50%);
  pointer-events: none;
}
.career-path__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-5);
  margin-bottom: var(--sp-7);
}
.career-path__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-300);
  white-space: nowrap;
}
.career-path__kicker svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  flex-shrink: 0;
}
.career-path__sub {
  max-width: 36ch;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--text-on-dark-muted);
  text-align: right;
}
.career-path__bars {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
}
.career-path__bars::before {
  content: "";
  position: absolute;
  top: 264px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-hair-dark);
}
.career-path__trend {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 264px;
  overflow: visible;
  pointer-events: none;
}
.career-path__trend-path {
  fill: none;
  stroke: url(#careerPathGradient);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.65;
}
.career-path__step {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.45rem;
  transition: transform var(--dur-fast) var(--ease-out);
}
.career-path__step:hover {
  transform: translateY(-2px);
}
.career-path__chart {
  height: 264px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
}
.career-path__tier {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}
.career-path__salary {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--gold-300);
  background: rgba(201, 154, 61, 0.1);
  border: 1px solid rgba(201, 154, 61, 0.25);
  padding: 0.24rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}
.career-path__salary svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  flex-shrink: 0;
}
.career-path__node {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--bone-100);
  flex-shrink: 0;
  transition: transform var(--dur-fast) var(--ease-out);
}
.career-path__step:hover .career-path__node {
  transform: scale(1.08);
}
.career-path__node svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
}
.career-path__bar {
  width: 100%;
  max-width: 54px;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
}
.career-path__step:nth-of-type(1) .career-path__bar { height: 36px; }
.career-path__step:nth-of-type(2) .career-path__bar { height: 54px; }
.career-path__step:nth-of-type(3) .career-path__bar { height: 76px; }
.career-path__step:nth-of-type(4) .career-path__bar { height: 100px; }
.career-path__step:nth-of-type(5) .career-path__bar { height: 124px; }
.career-path__step:nth-of-type(6) .career-path__bar { height: 150px; }
.career-path__step:nth-of-type(1) .career-path__tier,
.career-path__step:nth-of-type(2) .career-path__tier { color: var(--blue-300); }
.career-path__step:nth-of-type(1) .career-path__node,
.career-path__step:nth-of-type(2) .career-path__node {
  border-color: rgba(63, 139, 196, 0.55);
  background: rgba(63, 139, 196, 0.14);
  color: var(--blue-300);
}
.career-path__step:nth-of-type(1) .career-path__bar,
.career-path__step:nth-of-type(2) .career-path__bar {
  background: linear-gradient(180deg, rgba(63, 139, 196, 0.35), rgba(63, 139, 196, 0.06));
  border-color: rgba(63, 139, 196, 0.3);
}
.career-path__step:nth-of-type(3) .career-path__tier,
.career-path__step:nth-of-type(4) .career-path__tier { color: var(--gold-300); }
.career-path__step:nth-of-type(3) .career-path__node,
.career-path__step:nth-of-type(4) .career-path__node {
  border-color: rgba(201, 154, 61, 0.6);
  background: rgba(201, 154, 61, 0.16);
  color: var(--gold-300);
}
.career-path__step:nth-of-type(3) .career-path__bar,
.career-path__step:nth-of-type(4) .career-path__bar {
  background: linear-gradient(180deg, rgba(201, 154, 61, 0.38), rgba(201, 154, 61, 0.07));
  border-color: rgba(201, 154, 61, 0.32);
}
.career-path__step:nth-of-type(5) .career-path__tier,
.career-path__step:nth-of-type(6) .career-path__tier { color: var(--sage-300); }
.career-path__step:nth-of-type(5) .career-path__node,
.career-path__step:nth-of-type(6) .career-path__node {
  border-color: rgba(116, 168, 84, 0.65);
  background: rgba(116, 168, 84, 0.18);
  color: var(--sage-300);
}
.career-path__step:nth-of-type(5) .career-path__bar,
.career-path__step:nth-of-type(6) .career-path__bar {
  background: linear-gradient(180deg, rgba(116, 168, 84, 0.42), rgba(116, 168, 84, 0.08));
  border-color: rgba(116, 168, 84, 0.35);
}
.career-path__meta {
  margin-top: var(--sp-3);
  max-width: 13ch;
}
.career-path__role {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.86rem;
  line-height: 1.3;
  color: var(--bone-100);
}
.career-path__step:nth-of-type(6) .career-path__role {
  color: var(--gold-300);
}


.career-path__desc {
  margin-top: 0.35rem;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--text-on-dark-muted);
}
.prog-content-grid--qpcc {
  grid-template-columns: 1fr 1fr;
}
.prog-subjects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}
.prog-subject-card {
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-sm);
  padding: var(--sp-3) var(--sp-4);
  background: var(--surface-raised);
  transition: border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
}
.prog-subject-card:hover {
  border-color: var(--sage-300);
  box-shadow: 0 4px 16px rgba(91, 140, 62, 0.1);
}
.prog-subject-card__phase {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage-600);
  margin-bottom: 0.3rem;
}
.prog-subject-card__name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-900);
  line-height: 1.3;
}
.prog-subject-card__desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
  line-height: 1.4;
}
.programs-cta {
  position: relative;
  margin-top: var(--sp-6);
  padding: var(--sp-6);
  background: linear-gradient(135deg, var(--ink-900) 0%, #122a3f 55%, #16304d 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--sp-6);
  align-items: center;
}
.programs-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--gold-500), var(--sage-500));
}
.programs-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(circle at 26% 45%, black, transparent 68%);
  mask-image: radial-gradient(circle at 26% 45%, black, transparent 68%);
  pointer-events: none;
}
.programs-cta__decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.programs-cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.32;
}
.programs-cta__orb--gold {
  width: 260px;
  height: 260px;
  background: var(--gold-500);
  top: -100px;
  right: -60px;
}
.programs-cta__orb--blue {
  width: 220px;
  height: 220px;
  background: var(--blue-500);
  bottom: -90px;
  left: 8%;
}
.programs-cta__content {
  position: relative;
  z-index: 1;
}
.programs-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-300);
  margin-bottom: var(--sp-3);
}
.programs-cta__pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-300);
  flex-shrink: 0;
  animation: ctaPulse 2s infinite;
}
@keyframes ctaPulse {
  0% { box-shadow: 0 0 0 0 rgba(227, 199, 133, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(227, 199, 133, 0); }
  100% { box-shadow: 0 0 0 0 rgba(227, 199, 133, 0); }
}
.programs-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.05rem + 1.4vw, 2.05rem);
  font-weight: 600;
  color: var(--bone-100);
  line-height: 1.2;
}
em.programs-cta__em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-300);
}
.programs-cta__sub {
  margin-top: var(--sp-3);
  max-width: 48ch;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--text-on-dark-muted);
}
.programs-cta__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.programs-cta__primary {
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  padding: 1.05rem 1.75rem;
}
.programs-cta__secondary {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.programs-cta__secondary .btn {
  flex: 1;
  min-width: 150px;
  justify-content: center;
  text-align: center;
  font-size: 0.84rem;
  padding: 0.85rem 1rem;
}
.btn-icon--lead {
  margin-right: 0.05rem;
}
.btn:hover .btn-icon--lead {
  transform: none;
}
.programs-cta__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--text-on-dark-muted);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border-hair-dark);
}
.programs-cta__meta svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold-300);
  flex-shrink: 0;
}
@media (max-width: 1100px) {
  .prog-content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .prog-col:nth-child(3) {
    border-top: 1px solid var(--border-hair);
    grid-column: 1 / -1;
    border-right: none;
  }
  .prog-content-grid--qpcc {
    grid-template-columns: 1fr;
  }
  .career-path__role {
    font-size: 0.8rem;
  }
  .career-path__desc {
    display: none;
  }
}
@media (max-width: 800px) {
  .programs__header {
    grid-template-columns: 1fr;
  }
  .programs__header-right {
    align-items: flex-start;
  }
  .programs__header-right p {
    text-align: left;
  }
  .programs__header-stats {
    justify-content: flex-start;
  }
  .programs__tabs-nav {
    flex-direction: column;
    padding: 4px;
    gap: 3px;
  }
  .programs__tab-btn {
    flex: none;
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    padding: 0.9rem 1rem;
    white-space: normal;
    font-size: 0.85rem;
    gap: 0.5rem;
  }
  .programs__tab-btn .ptab-badge {
    margin-left: auto;
    flex-shrink: 0;
  }
  .programs__subtabs-nav {
    flex-direction: column;
    padding: 4px;
    gap: 3px;
  }
  .programs__subtab-btn {
    flex: none;
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    padding: 0.8rem 0.9rem;
    white-space: normal;
    font-size: 0.84rem;
    gap: 0.55rem;
  }
  .programs__subtab-btn .ptab-badge {
    margin-left: auto;
    flex-shrink: 0;
  }
  .prog-coming-soon {
    padding: var(--sp-7) var(--sp-4);
  }
  .prog-hero-banner {
    grid-template-columns: 1fr;
  }
  .prog-banner__right {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
  .prog-content-grid {
    grid-template-columns: 1fr;
  }
  .prog-col {
    border-right: none;
    border-bottom: 1px solid var(--border-hair);
  }
  .prog-col:last-child {
    border-bottom: none;
  }
  .career-path {
    padding: var(--sp-5) var(--sp-4);
  }
  .career-path__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: var(--sp-5);
  }
  .career-path__sub {
    text-align: left;
    max-width: none;
  }
  .career-path__bars {
    flex-direction: column;
    position: relative;
    padding-left: 26px;
  }
  .career-path__bars::before {
    content: "";
    top: 20px;
    bottom: 20px;
    left: 19px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, var(--blue-500), var(--gold-500), var(--sage-500));
    opacity: 0.35;
  }
  .career-path__trend {
    display: none;
  }
  .career-path__step {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 0.7rem 0;
    width: 100%;
  }
  .career-path__chart {
    height: auto;
    width: auto;
    flex-direction: row-reverse;
    justify-content: flex-start;
    align-items: center;
    gap: 0.85rem;
  }
  .career-path__bar {
    display: none;
  }
  .career-path__tier {
    display: none;
  }
  .career-path__node {
    margin-left: -26px;
  }
  .career-path__meta {
    margin-top: 0;
    max-width: none;
    flex: 1;
  }
  .career-path__desc {
    display: block;
  }
  .career-path__step:nth-of-type(6) .career-path__role {
    color: var(--gold-300);
  }
  .programs-cta {
    grid-template-columns: 1fr;
    padding: var(--sp-5) var(--sp-4);
  }
  .programs-cta__secondary {
    flex-direction: column;
  }
  .prog-subjects-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .career-path { padding: var(--sp-5) var(--sp-4); }
  .career-path__sub { font-size: 0.82rem; }
  .career-path__bars { padding-left: 0; gap: 0.65rem; }
  .career-path__bars::before { display: none; }
  .career-path__step {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: var(--sp-4);
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-md);
  }
  .career-path__step:hover { transform: none; }
  .career-path__step:nth-of-type(1), .career-path__step:nth-of-type(2) { border-left-color: rgba(63, 139, 196, 0.65); }
  .career-path__step:nth-of-type(3), .career-path__step:nth-of-type(4) { border-left-color: rgba(201, 154, 61, 0.7); }
  .career-path__step:nth-of-type(5), .career-path__step:nth-of-type(6) { border-left-color: rgba(116, 168, 84, 0.75); }
  .career-path__chart {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--sp-3);
  }
  .career-path__node { order: 1; margin-left: 0; width: 38px; height: 38px; }
  .career-path__node svg { width: 16px; height: 16px; }
  .career-path__salary { order: 2; }
  .career-path__meta { max-width: none; }
  .career-path__role { font-size: 0.92rem; }
  .career-path__desc { display: block; font-size: 0.8rem; margin-top: 0.3rem; }
}
