:root {
  --white: #ffffff;
  --bg: #fbfbf8;
  --text: #1f1f21;
  --muted: #6c7280;
  --gold: #eea62d;
  --gold-deep: #d78f18;
  --gold-soft: #f7e7bf;
  --line: #eed7b1;
  --navy: #203f6c;
  --gray: #959dad;
  --dark-gray: #646b78;
  --header-height: 106px;
  --navbar-offset: 116px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
  padding-top: var(--header-height);
}

body.form-modal-open {
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}

.navbar {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-strip {
  flex: 1 1 420px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo-slot {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
}

.logo-slot img {
  display: block;
  max-height: 68px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid #d9dfe8;
  border-radius: 12px;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #1f2f57;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: #5a5a5a;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}

.apply-btn,
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease;
}

.apply-btn {
  min-width: 154px;
  padding: 17px 26px;
}

.apply-btn:hover,
.hero-cta:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
}

.hero-banner {
  position: fixed;
  top: var(--navbar-offset);
  left: 0;
  width: 100%;
  z-index: 40;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 14px 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.hero-content {
  margin-top: 78px;
}

.hero-banner p {
  font-size: 1.1rem;
  font-weight: 800;
}

.countdown {
  display: flex;
  gap: 10px;
}

.time-box {
  min-width: 60px;
  padding: 8px 10px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-box strong {
  font-size: 1.55rem;
  line-height: 1;
}

.time-box span {
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-content {
  position: relative;
  min-height: 690px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.62)),
    linear-gradient(135deg, #cfd7e6 0%, #bcc7d8 38%, #a9b6c4 60%, #d9ddd7 100%);
  overflow: hidden;
}

.hero-content::after {
  content: "";
  position: absolute;
  inset: auto -5% -10% 18%;
  height: 65%;
  background:
    radial-gradient(circle at 30% 30%, rgba(92, 99, 90, 0.45), transparent 45%),
    radial-gradient(circle at 50% 40%, rgba(112, 116, 106, 0.55), transparent 40%),
    radial-gradient(circle at 70% 30%, rgba(78, 88, 80, 0.45), transparent 43%),
    linear-gradient(180deg, rgba(74, 73, 71, 0.15) 0%, rgba(74, 73, 71, 0.55) 100%);
  border-radius: 80px 0 0 0;
  transform: perspective(900px) rotateX(62deg);
  opacity: 0.65;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.55), transparent 26%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.45), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(243, 241, 233, 0.45) 100%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 42px 32px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 36px;
  align-items: start;
}

.register-card {
  width: 100%;
  max-width: 360px;
  justify-self: end;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(238, 166, 45, 0.28);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  scroll-margin-top: 220px;
}

.register-card form {
  display: grid;
  gap: 14px;
}

.register-card h2 {
  font-size: 1.55rem;
  line-height: 1.2;
  margin-bottom: 6px;
  color: var(--text);
}

.register-card input,
.register-card select {
  width: 100%;
  border: 1px solid #dddfe6;
  border-radius: 12px;
  padding: 14px 16px;
  background: #ffffff;
  color: #2f2f2f;
  font: inherit;
}

.register-card input:focus,
.register-card select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(238, 166, 45, 0.14);
}

.register-card button {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 16px 18px;
  background: var(--gold);
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.register-card button:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
}

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.form-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.form-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 23, 34, 0.56);
  backdrop-filter: blur(6px);
}

.form-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.form-modal__content {
  width: 100%;
}

.register-card--modal {
  max-width: 100%;
  justify-self: stretch;
  margin: 0;
  background: #ffffff;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
}

.form-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 34, 59, 0.08);
  color: #152238;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-sticky-actions {
  display: none;
}

.hero-panel {
  position: relative;
  max-width: 760px;
  padding: 24px 24px 24px 8px;
}

.hero-panel h1 {
  font-size: clamp(2.7rem, 4vw, 4.55rem);
  line-height: 1.02;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.program-chip,
.approval-bar {
  max-width: 560px;
  border-radius: 8px;
  border: 2px solid var(--gold);
  background: rgba(255, 246, 219, 0.92);
}

.program-chip {
  padding: 13px 18px;
  text-align: center;
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.approval-bar {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 18px;
  margin-bottom: 34px;
  color: #44433f;
  font-weight: 800;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 26px;
  max-width: 560px;
  margin-bottom: 38px;
}

.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.stat-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.stat-item strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.stat-item p {
  color: #4e4e4e;
  font-size: 0.98rem;
}

.hero-cta {
  min-width: 200px;
  padding: 18px 28px;
  font-size: 1.1rem;
}

.section {
  padding: 84px 24px;
}

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

.mustard-section {
  background: #edae38;
}

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

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3.05rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.section-heading p {
  max-width: 1180px;
  margin: 0 auto;
  color: #777777;
  font-size: 1.18rem;
}

.section-heading.compact {
  margin-bottom: 32px;
}

.card-grid,
.placement-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  gap: 30px;
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-col {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.mini-card,
.community-card {
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 34px;
}

.card-icon {
  color: var(--gold);
  font-size: 2.35rem;
  line-height: 1;
  margin-bottom: 30px;
}

.info-card h3,
.mini-card h3,
.community-card h3,
.program-copy h3,
.person-body h3 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 18px;
}

.info-card ul {
  list-style: none;
  display: grid;
  gap: 16px;
  color: #566585;
  font-size: 1rem;
}

.info-card li {
  position: relative;
  padding-left: 22px;
}

.info-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.two-column,
.program-layout {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.copy-block h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 28px;
}

.copy-block p,
.program-copy p,
.mini-card p,
.community-card p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #394456;
  margin-bottom: 18px;
}

.video-card {
  display: flex;
  justify-content: center;
}

.video-frame {
  width: 100%;
  min-height: 380px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.18);
}

.video-frame iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

.program-layout {
  align-items: stretch;
}

.program-outcomes-banner {
  max-width: 1440px;
  margin: 40px auto 0;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

.program-outcomes-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.program-copy {
  padding-right: 12px;
}

.program-copy h3 {
  color: var(--gold);
  font-size: 2rem;
}

.program-meta {
  color: #7b7b7b;
  font-weight: 700;
}

.program-copy h4 {
  margin: 26px 0 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555;
}

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

.feature-grid span {
  position: relative;
  padding-left: 22px;
  color: #384252;
}

.feature-grid span::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 800;
}

.program-image {
  min-height: 720px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.program-image img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  display: block;
}

.placement-grid {
  grid-template-columns: repeat(5, minmax(260px, 1fr));
  gap: 24px;
}

.media-carousel {
  max-width: 1720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  gap: 12px;
}

.person-card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #d9d9d9;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.person-photo {
  height: 210px;
  background: #f3f3f3;
}

.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.person-body {
  padding: 18px 18px 20px;
  text-align: center;
}

.person-body p {
  min-height: 44px;
  color: #6a6a6a;
  margin-bottom: 18px;
}

.person-body span {
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.mini-card {
  text-align: center;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mini-card h3 {
  font-size: 1.55rem;
}

.mini-card p {
  margin-bottom: 0;
  color: #5c6886;
}

.community-card {
  min-height: 560px;
}

.rounded-mustard-section {
  background: #f0ad35;
  border-radius: 88px;
  max-width: 1980px;
  margin: 0 auto;
}

.eligibility-grid {
  align-items: stretch;
}

.eligibility-card,
.process-card,
.scholarship-card,
.faculty-stat-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.03);
  padding: 38px 40px;
}

.eligibility-card h3,
.process-card h3,
.scholarship-card h3 {
  font-size: 1.35rem;
  margin-bottom: 28px;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 18px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 700;
  color: #3f3f40;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  border: 2px solid #494949;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
}

.selection-process {
  max-width: 1560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 60px minmax(0, 1fr) 60px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.process-card {
  border-color: var(--line);
  background: #fffdfa;
  min-height: 340px;
}

.step-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 28px;
}

.process-card p {
  color: #55627e;
  font-size: 1rem;
  line-height: 1.6;
}

.process-arrow {
  color: var(--gold);
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
}

.scholarship-section {
  background: #fdf9ef;
}

.scholarship-grid {
  max-width: 1700px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.scholarship-card {
  border-color: var(--line);
  background: #fffaf0;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.scholarship-card .card-icon {
  margin-bottom: 24px;
}

.center-cta {
  display: flex;
  justify-content: center;
}

.scholarship-btn {
  min-width: 260px;
}

.floating-apply-btn {
  position: fixed;
  right: 0;
  top: 58%;
  transform: translateY(-50%);
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 168px;
  padding: 18px 14px;
  border-radius: 18px 0 0 18px;
  background: #0f1e6a;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 18px 32px rgba(15, 30, 106, 0.22);
  transition: background 0.2s ease, transform 0.2s ease;
}

.floating-apply-btn span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.floating-apply-btn:hover {
  background: #162a87;
  transform: translateY(-50%) translateX(-4px);
}

.alumni-heading p {
  font-weight: 600;
}

.alumni-grid,
.faculty-stats {
  max-width: 1680px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.alumni-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.alumni-card {
  border: 2px solid #3f3f3f;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
}

.alumni-photo {
  height: 180px;
  background: #f3f3f3;
}

.alumni-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.alumni-body {
  padding: 14px 14px 16px;
}

.alumni-body h3 {
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.alumni-body p {
  color: #646464;
  line-height: 1.4;
  min-height: 46px;
  margin-bottom: 10px;
  font-size: 0.92rem;
}

.alumni-body span {
  font-weight: 800;
  font-size: 0.92rem;
}

.faculty-stats {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px;
}

.faculty-stat-card {
  border-color: var(--line);
  background: #fffdf8;
  min-height: 274px;
}

.faculty-stat-card strong {
  display: block;
  color: var(--gold);
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1;
  margin-bottom: 24px;
  font-weight: 800;
}

.faculty-stat-card p {
  font-size: 1.15rem;
  line-height: 1.25;
  color: #2f2f2f;
}

.student-life-heading h2 {
  display: inline-block;
  padding-bottom: 14px;
  border-bottom: 4px solid #f6923a;
}

.student-life-strip {
  max-width: 1680px;
}

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

.life-card {
  height: 300px;
  border-radius: 18px;
}

.life-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.life-arrow {
  width: 50px;
  height: 50px;
  border: 3px solid #f6923a;
  border-radius: 50%;
  background: #050505;
  color: #f6923a;
  font-size: 2.2rem;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.mobile-carousel {
  min-width: 0;
}

.employers-section {
  border-top: 1px solid #efefef;
}

.recruiter-slider {
  max-width: 1720px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.recruiter-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: recruiter-scroll 28s linear infinite;
}

.recruiter-logo {
  flex: 0 0 auto;
  width: 230px;
  height: 110px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.recruiter-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

@keyframes recruiter-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.faq-section {
  padding-top: 88px;
}

.faq-heading h2 {
  display: inline-block;
  padding-bottom: 14px;
  border-bottom: 4px solid #f6923a;
  color: var(--text);
}

.faq-list {
  max-width: 1760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ececec;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 800;
  color: #2d4377;
}

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

.faq-arrow {
  flex: 0 0 auto;
  font-size: 2rem;
  line-height: 1;
  color: #303030;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-arrow {
  transform: rotate(90deg);
}

.faq-answer {
  padding: 0 0 24px;
  max-width: 1380px;
}

.faq-answer p {
  color: #616161;
  font-size: 1rem;
  line-height: 1.7;
}

.site-footer {
  background: #f8e8cb;
  color: #111111;
}

.footer-main {
  max-width: 100%;
  margin: 0 auto;
  padding: 62px 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 38px;
  align-items: start;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  width: min(100%, 340px);
  height: auto;
  display: block;
}

.footer-anniversary {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #3b3b3b;
}

.footer-anniversary__number {
  font-size: clamp(2.35rem, 4vw, 3.4rem);
  line-height: 0.95;
  font-weight: 800;
  color: #f3a510;
}

.footer-anniversary__text {
  font-size: 0.82rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-details {
  display: grid;
  gap: 24px;
  max-width: 1180px;
}

.footer-item {
  display: grid;
  gap: 8px;
}

.footer-label {
  color: #8e8679;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.2;
}

.footer-value {
  color: #101010;
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  line-height: 1.45;
  font-weight: 500;
}

.footer-bottom {
  background: #050505;
  padding: 18px 24px 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  text-align: center;
}

.bar-chart {
  height: 170px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 34px 0 14px;
}

.bar {
  flex: 1;
  border-radius: 10px 10px 0 0;
  position: relative;
}

.bar span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-weight: 800;
}

.tall { height: 125px; }
.navy { height: 116px; }
.mid { height: 112px; }
.small { height: 52px; }
.tiny { height: 46px; }
.orange { background: #f6923a; }
.gray { background: #9ca4b4; }
.dark { background: #666d7a; }
.bar:not(.orange):not(.gray):not(.dark) { background: var(--navy); }

.bar-labels {
  display: flex;
  justify-content: space-between;
  color: #7a7a7a;
  font-weight: 700;
  gap: 10px;
}

.gender-split {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  min-height: 260px;
}

.gender-item {
  text-align: center;
}

.gender-symbol {
  font-size: 7rem;
  line-height: 1;
  margin-bottom: 10px;
}

.male .gender-symbol {
  color: #f6923a;
}

.female .gender-symbol {
  color: var(--navy);
}

.gender-item strong {
  display: block;
  font-size: 2.8rem;
}

.gender-item span {
  color: #666;
  font-size: 1.15rem;
}

.progress-list {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.progress-row {
  display: grid;
  grid-template-columns: 48px 1fr 46px;
  align-items: center;
  gap: 14px;
}

.progress-row span,
.progress-row strong {
  color: #555;
}

.track {
  height: 18px;
  background: #e6e8ee;
  border-radius: 999px;
  overflow: hidden;
}

.fill {
  height: 100%;
  border-radius: inherit;
}

.orange-fill { background: #f6923a; }
.navy-fill { background: var(--navy); }
.gray-fill { background: #8e919a; }
.light-fill { background: #c7cad2; }

@media (max-width: 1280px) {
  .nav-inner,
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .four-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scholarship-grid,
  .faculty-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 1100px) {
  :root {
    --header-height: 170px;
    --navbar-offset: 190px;
  }

  .nav-inner,
  .two-column,
  .program-layout {
    grid-template-columns: 1fr;
    display: grid;
  }

  .nav-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .apply-btn {
    align-self: center;
  }

  .three-col,
  .placement-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .selection-process {
    grid-template-columns: 1fr;
  }

  .process-arrow {
    transform: rotate(90deg);
  }

  .hero-panel {
    padding: 40px 24px 52px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .program-outcomes-banner {
    margin-top: 28px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .scholarship-grid,
  .alumni-grid,
  .faculty-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 78px;
    --navbar-offset: 88px;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .nav-inner {
    position: relative;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
  }

  .logo-strip {
    flex: 1 1 auto;
    justify-content: flex-start;
    gap: 10px;
  }

  .logo-slot img {
    max-height: 32px;
  }

  .menu-toggle {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 9px;
    gap: 4px;
  }

  .menu-toggle span {
    width: 16px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #ececec;
    border-radius: 18px;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.1);
  }

  .navbar.nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    font-size: 1rem;
    color: #243b69;
  }

  .apply-btn {
    display: none;
  }

  .hero-banner {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px 8px;
  }

  .countdown {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    width: 100%;
  }

  .hero-banner p {
    width: 100%;
    max-width: 100%;
    font-size: 0.78rem;
    line-height: 1.15;
    white-space: normal;
    word-break: break-word;
  }

  .time-box {
    min-width: 48px;
    padding: 5px 6px;
    border-radius: 6px;
  }

  .time-box strong {
    font-size: 0.98rem;
  }

  .time-box span {
    font-size: 0.62rem;
  }

  .logo-strip,
  .three-col,
  .four-col,
  .feature-grid,
  .scholarship-grid,
  .faculty-stats {
    grid-template-columns: 1fr;
  }

  .nav-links {
    gap: 18px;
  }

  .hero-content {
    min-height: auto;
    margin-top: 96px;
  }

  .hero-layout {
    padding: 20px 12px 36px;
    gap: 18px;
  }

  .program-outcomes-banner {
    margin-top: 22px;
    border-radius: 22px;
  }

  .hero-panel h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .section-heading p {
    font-size: 1rem;
  }

  .approval-bar {
    gap: 14px;
    flex-wrap: wrap;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .community-card {
    min-height: auto;
  }

  .gender-split {
    flex-direction: column;
    gap: 22px;
  }

  .progress-row {
    grid-template-columns: 48px 1fr 42px;
  }

  .rounded-mustard-section {
    border-radius: 34px;
  }

  .eligibility-card,
  .process-card,
  .scholarship-card,
  .faculty-stat-card {
    padding: 28px 24px;
  }

  .media-carousel {
    position: relative;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    overflow: hidden;
    padding-inline: 0;
  }

  .placement-grid,
  .alumni-grid,
  .life-gallery {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 28px 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
    min-width: 0;
  }

  .placement-grid::-webkit-scrollbar,
  .alumni-grid::-webkit-scrollbar,
  .life-gallery::-webkit-scrollbar {
    display: none;
  }

  .person-card,
  .alumni-card,
  .life-card {
    flex: 0 0 calc(100% - 56px);
    max-width: calc(100% - 56px);
    scroll-snap-align: start;
  }

  .person-photo {
    height: 180px;
  }

  .alumni-photo {
    height: 180px;
  }

  .life-card {
    height: 220px;
  }

  .life-arrow,
  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 34px;
    height: 34px;
    font-size: 1.35rem;
  }

  .media-carousel .carousel-arrow:first-child {
    left: 4px;
  }

  .media-carousel .carousel-arrow:last-child {
    right: 4px;
  }

  .alumni-card,
  .person-card {
    border-radius: 16px;
  }

  .alumni-body,
  .person-body {
    padding: 14px 14px 18px;
  }

  .recruiter-logo {
    width: 180px;
    height: 96px;
    padding: 14px 18px;
  }

  .faq-item summary {
    padding: 22px 0;
    font-size: 1rem;
  }

  .faq-arrow {
    font-size: 1.7rem;
  }

  .register-card {
    max-width: 100%;
    justify-self: stretch;
    padding: 18px 16px;
  }

  .mobile-sticky-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
    background: rgba(251, 251, 248, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.08);
  }

  .mobile-sticky-actions__btn {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 12px;
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    font-size: 0.98rem;
    font-weight: 800;
  }

  .mobile-sticky-actions__btn--primary {
    background: #16366a;
  }

  .mobile-sticky-actions__btn--secondary {
    background: #26b2dc;
  }

  .form-modal {
    align-items: flex-end;
    padding: 12px;
  }

  .form-modal__dialog {
    width: 100%;
    max-height: calc(100vh - 24px);
  }

  .register-card--modal {
    border-radius: 24px 24px 18px 18px;
  }

  .floating-apply-btn {
    top: 58%;
    bottom: auto;
    right: 8px;
    min-height: 0;
    padding: 14px 10px;
    border-radius: 14px 14px 0 0;
    transform: translateY(-50%);
  }

  .floating-apply-btn span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.86rem;
  }

  .floating-apply-btn:hover {
    transform: translateY(calc(-50% - 2px));
  }

  .footer-main {
    padding: 42px 16px 34px;
    gap: 20px;
  }

  .footer-brand-row {
    gap: 14px;
  }

  .footer-logo {
    width: min(100%, 220px);
  }

  .footer-anniversary__number {
    font-size: 2rem;
  }

  .footer-anniversary__text {
    font-size: 0.72rem;
  }

  .footer-details {
    gap: 18px;
  }

  .footer-label {
    font-size: 0.98rem;
  }

  .footer-value {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  body {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }
}
