/* ============================================================
   SANCTUARY TECH — Design System
   lasallecollege.ac.ke
   Built on the Sanctuary Tech design tokens (DESIGN.md)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

/* ── Design Tokens ── */
:root {
  --st-primary:            #011550;
  --st-primary-container:  #1b2c65;
  --st-crimson:            #950329;
  --st-crimson-light:      #f97a8a;
  --st-gold:               #fdc74c;
  --st-surface:            #faf8ff;
  --st-surface-low:        #f3f2ff;
  --st-surface-container:  #ebedff;
  --st-surface-high:       #e4e7ff;
  --st-surface-highest:    #dce1ff;
  --st-on-surface:         #121a37;
  --st-on-surface-variant: #454650;
  --st-outline:            #757681;
  --st-outline-variant:    #c5c5d1;
  --st-white:              #ffffff;

  --st-font-display: 'Plus Jakarta Sans', sans-serif;
  --st-font-body:    'Inter', sans-serif;

  --st-section-gap:   120px;
  --st-container:     1280px;
  --st-gutter-desk:   64px;
  --st-gutter-mob:    20px;

  --st-shadow-serene: 0px 4px 40px rgba(14,22,51,0.08);
  --st-transition:    all 0.3s ease;
}

/* ── Material Symbols ── */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-variation-settings: 'FILL' 0,'wght' 400,'GRAD' 0,'opsz' 24;
  vertical-align: middle;
}

/* ── Reset & Base ── */
.st-page *, .st-page *::before, .st-page *::after { box-sizing: border-box; margin: 0; padding: 0; }
.st-page { font-family: var(--st-font-body); color: var(--st-on-surface); background: var(--st-surface); overflow-x: hidden; line-height: 1.6; }
.st-page a { text-decoration: none; color: inherit; transition: var(--st-transition); }
.st-page img { max-width: 100%; height: auto; display: block; }
.st-page ul { list-style: none; }

/* ── Container ── */
.st-container {
  max-width: var(--st-container);
  margin: 0 auto;
  padding: 0 var(--st-gutter-mob);
}
@media (min-width: 768px) {
  .st-container { padding: 0 var(--st-gutter-desk); }
}

/* ── Utility: clip-path angles (from design system) ── */
.st-clip-tr    { clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%); border-radius: 0; }
.st-clip-tr-lg { clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 0 100%); border-radius: 0; }
.st-clip-tr-xl { clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 48px, 100% 100%, 0 100%); border-radius: 0; }

/* ── Organic shapes ── */
.st-organic-1 { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
.st-organic-2 { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }

/* ── Section spacing ── */
.st-section { padding: var(--st-section-gap) 0; }

/* ── Typography scale ── */
.st-display   { font-family: var(--st-font-display); font-size: 56px; font-weight: 700; line-height: 64px; letter-spacing: -0.02em; }
.st-headline  { font-family: var(--st-font-display); font-size: 32px; font-weight: 600; line-height: 40px; }
.st-headline-md { font-family: var(--st-font-display); font-size: 24px; font-weight: 600; line-height: 32px; }
.st-body-lg   { font-family: var(--st-font-body); font-size: 18px; font-weight: 400; line-height: 28px; }
.st-body-md   { font-family: var(--st-font-body); font-size: 16px; font-weight: 400; line-height: 24px; }
.st-label-md  { font-family: var(--st-font-body); font-size: 14px; font-weight: 500; line-height: 20px; letter-spacing: 0.01em; }
.st-label-sm  { font-family: var(--st-font-body); font-size: 12px; font-weight: 600; line-height: 16px; letter-spacing: 0.05em; }

@media (max-width: 768px) {
  .st-display { font-size: 36px; line-height: 44px; }
  .st-headline { font-size: 24px; line-height: 32px; }
}

/* ── Buttons ── */
.st-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-family: var(--st-font-body); font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
  border: none; transition: var(--st-transition);
}
.st-btn-primary { background: var(--st-primary); color: #fff; }
.st-btn-primary:hover { filter: brightness(1.15); }
.st-btn-crimson { background: var(--st-crimson); color: #fff; }
.st-btn-crimson:hover { filter: brightness(1.1); }
.st-btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.8); }
.st-btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.st-btn-outline-navy { background: transparent; color: var(--st-primary); border: 2px solid var(--st-primary); }
.st-btn-outline-navy:hover { background: var(--st-primary); color: #fff; }
.st-btn-outline-crimson { background: transparent; color: var(--st-crimson); border: 2px solid var(--st-crimson); }
.st-btn-outline-crimson:hover { background: var(--st-crimson); color: #fff; }
.st-btn-ghost { background: transparent; color: var(--st-primary); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; padding: 0; border: none; cursor: pointer; transition: gap 0.3s ease; }
.st-btn-ghost:hover { gap: 16px; color: var(--st-crimson); }

/* ── Cards ── */
.st-card {
  background: var(--st-white);
  border: 1px solid rgba(197,197,209,0.4);
  box-shadow: var(--st-shadow-serene);
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.st-card:hover { transform: translateY(-4px); box-shadow: 0 8px 48px rgba(14,22,51,0.12); }
.st-card-accent { border-left: 4px solid var(--st-primary); }
.st-card-dark { background: var(--st-primary-container); color: #fff; }

/* ── Chips / Tags ── */
.st-chip { display: inline-block; padding: 4px 14px; border-radius: 9999px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.st-chip-navy { background: var(--st-surface-highest); color: var(--st-primary); }
.st-chip-crimson { background: var(--st-crimson); color: #fff; }
.st-chip-open { background: #d1fae5; color: #065f46; }

/* ── Section label ── */
.st-section-label { font-family: var(--st-font-body); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--st-crimson); display: block; margin-bottom: 12px; }

/* ── Editorial rule ── */
.st-rule { height: 1px; background: linear-gradient(to right, var(--st-primary) 0%, transparent 100%); margin: 24px 0; }

/* ── Grid helpers ── */
.st-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.st-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.st-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
@media (max-width: 1024px) {
  .st-grid-3 { grid-template-columns: repeat(2,1fr); }
  .st-grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .st-grid-2, .st-grid-3, .st-grid-4 { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
.st-nav { position: sticky; top: 0; z-index: 1000; width: 100%; }

/* Tier 1 — utility bar */
.st-nav__utility {
  background: var(--st-primary);
  height: 40px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--st-gutter-mob);
}
@media (min-width: 768px) { .st-nav__utility { padding: 0 var(--st-gutter-desk); } }

.st-nav__utility-links { display: flex; height: 100%; }
.st-nav__utility-link {
  color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
  display: flex; align-items: center; padding: 0 20px; height: 100%;
  border-right: 1px solid rgba(255,255,255,0.15); transition: var(--st-transition);
}
.st-nav__utility-link:hover { color: rgba(255,255,255,0.8); }
.st-nav__utility-link--active { background: var(--st-crimson); }

.st-nav__utility-icons { display: flex; align-items: center; height: 100%; }
.st-nav__icon { padding: 0 14px; height: 100%; display: flex; align-items: center; border-left: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); transition: var(--st-transition); }
.st-nav__icon:hover { color: #fff; }

/* Tier 2 — main nav */
.st-nav__main {
  background: #fff;
  border-bottom: 1px solid rgba(197,197,209,0.3);
  height: 88px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--st-gutter-mob);
  box-shadow: 0 2px 20px rgba(14,22,51,0.05);
}
@media (min-width: 768px) { .st-nav__main { padding: 0 var(--st-gutter-desk); } }

.st-nav__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.st-nav__logo-mark {
  width: 48px; height: 48px; background: var(--st-primary); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}
.st-nav__logo-mark span { color: #fff; font-family: var(--st-font-display); font-weight: 800; font-size: 18px; }
.st-nav__brand-text { display: none; }
@media (min-width: 480px) { .st-nav__brand-text { display: block; } }
.st-nav__brand-name { font-family: var(--st-font-display); font-weight: 700; font-size: 14px; color: var(--st-primary); line-height: 1.2; }
.st-nav__brand-sub { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--st-crimson); }

.st-nav__links { display: none; align-items: center; gap: 36px; }
@media (min-width: 1024px) { .st-nav__links { display: flex; } }
.st-nav__link {
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--st-primary); padding: 6px 0;
  border-bottom: 2px solid transparent; transition: var(--st-transition);
}
.st-nav__link:hover, .st-nav__link.active { color: var(--st-crimson); border-bottom-color: var(--st-crimson); }

.st-nav__ctas { display: none; align-items: center; gap: 12px; }
@media (min-width: 768px) { .st-nav__ctas { display: flex; } }

.st-nav__hamburger { display: flex; align-items: center; cursor: pointer; color: var(--st-primary); background: none; border: none; }
@media (min-width: 1024px) { .st-nav__hamburger { display: none; } }

/* Mobile drawer */
.st-nav__drawer {
  display: none; background: #fff; border-top: 1px solid rgba(197,197,209,0.3);
  padding: 24px var(--st-gutter-mob);
  box-shadow: 0 8px 24px rgba(14,22,51,0.1);
}
.st-nav__drawer.open { display: block; }
.st-nav__drawer-link { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--st-primary); padding: 12px 0; border-bottom: 1px solid rgba(197,197,209,0.3); }
.st-nav__drawer-link:hover { color: var(--st-crimson); }
.st-nav__drawer-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.st-footer { background: var(--st-primary); color: #fff; padding: 80px 0 32px; }
.st-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
@media (max-width: 768px) { .st-footer__grid { grid-template-columns: 1fr; gap: 40px; } }

.st-footer__brand-name { font-family: var(--st-font-display); font-weight: 700; font-size: 18px; line-height: 1.4; color: #fff; margin-bottom: 16px; }
.st-footer__brand-body { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 24px; max-width: 340px; }
.st-footer__socials { display: flex; gap: 12px; }
.st-footer__social { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); transition: var(--st-transition); }
.st-footer__social:hover { background: rgba(255,255,255,0.1); color: #fff; }

.st-footer__col-heading { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--st-crimson-light); margin-bottom: 20px; }
.st-footer__link { display: block; font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 12px; transition: var(--st-transition); }
.st-footer__link:hover { color: #fff; }

.st-footer__divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }

/* TVETA statement box */
.st-footer__tveta {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px; border-radius: 4px; display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 24px;
}
.st-footer__tveta-text { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.6; }
.st-footer__tveta-text strong { color: #fff; }

.st-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; }
.st-footer__copy { font-size: 12px; color: rgba(255,255,255,0.35); }
.st-footer__bottom-links { display: flex; gap: 24px; }
.st-footer__bottom-link { font-size: 12px; color: rgba(255,255,255,0.35); transition: var(--st-transition); }
.st-footer__bottom-link:hover { color: rgba(255,255,255,0.7); }

/* ════════════════════════════════════════════
   HOMEPAGE
════════════════════════════════════════════ */

/* Hero */
.st-hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.st-hero__bg { position: absolute; inset: 0; background: linear-gradient(135deg, #011550 0%, #1b2c65 60%, #011550 100%); }
.st-hero__overlay {
  position: absolute; inset: 0;
  background: #011550;
  clip-path: polygon(0 0, 62% 0, 42% 100%, 0 100%);
  opacity: 0.92;
}
.st-hero__content { position: relative; z-index: 10; padding: 100px 0; max-width: 680px; }
.st-hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px; border-radius: 9999px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 28px;
}
.st-hero__badge .material-symbols-outlined { font-size: 18px; color: var(--st-crimson-light); }
.st-hero__h1 { color: #fff; margin-bottom: 24px; }
.st-hero__h1 .accent { color: var(--st-crimson-light); }
.st-hero__body { font-size: 18px; color: rgba(255,255,255,0.85); line-height: 1.7; max-width: 520px; margin-bottom: 40px; }
.st-hero__ctas { display: flex; flex-wrap: wrap; gap: 20px; }
.st-hero__scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); animation: bounce 2s infinite; }
.st-hero__scroll-label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* Stats banner */
.st-stats { background: var(--st-primary); padding: 64px 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.st-stats__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; }
@media (max-width: 640px) { .st-stats__grid { grid-template-columns: 1fr; gap: 32px; } }
.st-stats__item { text-align: center; }
.st-stats__value { font-family: var(--st-font-display); font-size: 56px; font-weight: 700; line-height: 64px; letter-spacing: -0.02em; color: var(--st-crimson-light); display: block; transition: transform 0.3s ease; }
.st-stats__item:hover .st-stats__value { transform: scale(1.08); }
.st-stats__label { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; display: block; margin-top: 8px; }
.st-stats__divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); }
@media (min-width: 641px) {
  .st-stats__item:nth-child(2) { border-left: 1px solid rgba(255,255,255,0.1); border-right: 1px solid rgba(255,255,255,0.1); }
}

/* Dual split gate */
.st-split { background: var(--st-surface-low); padding: var(--st-section-gap) 0; overflow: hidden; }
.st-split__heading { text-align: center; margin-bottom: 64px; }
.st-split__inner { position: relative; }
@media (min-width: 1024px) { .st-split__inner { height: 760px; } }

.st-split__card {
  background: #fff; border: 1px solid rgba(197,197,209,0.3); overflow: hidden;
  box-shadow: var(--st-shadow-serene); display: flex;
  transition: transform 0.5s ease, z-index 0s, box-shadow 0.3s ease;
}
.st-split__card:hover { transform: translateY(-6px); box-shadow: 0 16px 64px rgba(14,22,51,0.14); }

.st-split__card--tech {
  width: 100%;
  clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 48px, 100% 100%, 0 100%);
  margin-bottom: 32px;
  flex-direction: column;
}
@media (min-width: 768px) { .st-split__card--tech { flex-direction: row; } }
@media (min-width: 1024px) {
  .st-split__card--tech {
    position: absolute; top: 0; left: 0;
    width: 60%; height: 600px;
    margin-bottom: 0; z-index: 10;
  }
  .st-split__card--tech:hover { z-index: 30; }
}

.st-split__card--vision {
  background: var(--st-primary); color: #fff; width: 100%;
  clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 48px, 100% 100%, 0 100%);
  flex-direction: column-reverse;
}
@media (min-width: 768px) { .st-split__card--vision { flex-direction: row-reverse; } }
@media (min-width: 1024px) {
  .st-split__card--vision {
    position: absolute; bottom: 0; right: 0;
    width: 60%; height: 600px;
    z-index: 20;
  }
  .st-split__card--vision:hover { z-index: 30; }
}

.st-split__image { width: 100%; height: 260px; overflow: hidden; position: relative; flex-shrink: 0; }
@media (min-width: 768px) { .st-split__image { width: 50%; height: auto; } }
.st-split__image-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--st-surface-high); }
.st-split__image-inner .material-symbols-outlined { font-size: 120px; color: rgba(1,21,80,0.15); }
.st-split__card--vision .st-split__image-inner { background: rgba(255,255,255,0.05); }
.st-split__card--vision .st-split__image-inner .material-symbols-outlined { color: rgba(255,255,255,0.08); }

.st-split__body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 768px) { .st-split__body { width: 50%; } }
.st-split__tag { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--st-crimson); }
.st-split__card--vision .st-split__tag { color: var(--st-crimson-light); }
.st-split__h2 { font-family: var(--st-font-display); font-size: 28px; font-weight: 600; line-height: 1.3; color: var(--st-primary); margin-bottom: 16px; }
.st-split__card--vision .st-split__h2 { color: #fff; }
.st-split__p { font-size: 15px; color: var(--st-on-surface-variant); line-height: 1.7; margin-bottom: 28px; }
.st-split__card--vision .st-split__p { color: rgba(255,255,255,0.72); }

/* Quote section */
.st-quote { background: #fff; padding: var(--st-section-gap) 0; text-align: center; position: relative; overflow: hidden; }
.st-quote__bg { position: absolute; width: 400px; height: 400px; }
.st-quote__bg--tl { top: -100px; left: -100px; background: var(--st-surface-low); }
.st-quote__bg--br { bottom: -100px; right: -100px; background: rgba(1,21,80,0.04); }
.st-quote__inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; padding: 0 24px; }
.st-quote__icon { font-size: 64px; color: rgba(1,21,80,0.15); margin-bottom: 24px; display: block; }
.st-quote__text { font-family: var(--st-font-display); font-size: 28px; font-weight: 600; color: var(--st-primary); line-height: 1.5; font-style: italic; margin-bottom: 32px; }
@media (max-width: 640px) { .st-quote__text { font-size: 22px; } }
.st-quote__rule { width: 64px; height: 4px; background: var(--st-crimson); margin: 0 auto 16px; }
.st-quote__attr { font-size: 12px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--st-on-surface-variant); }

/* CTA band */
.st-cta-band { background: var(--st-crimson); padding: 80px 0; }
.st-cta-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 32px; }
.st-cta-band__title { font-family: var(--st-font-display); font-size: 32px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 8px; }
.st-cta-band__body { color: rgba(255,255,255,0.82); font-size: 16px; max-width: 480px; }
.st-cta-band__actions { display: flex; flex-wrap: wrap; gap: 16px; flex-shrink: 0; }

/* ════════════════════════════════════════════
   WHY LTTI GRID
════════════════════════════════════════════ */
.st-why { background: #fff; padding: var(--st-section-gap) 0; }
.st-why__card { padding: 32px; }
.st-why__icon { font-size: 36px; color: var(--st-crimson); margin-bottom: 16px; display: block; transition: transform 0.3s ease; }
.st-why__card:hover .st-why__icon { transform: scale(1.1); }
.st-why__title { font-family: var(--st-font-display); font-size: 16px; font-weight: 700; color: var(--st-primary); margin-bottom: 10px; }
.st-why__body { font-size: 14px; color: var(--st-on-surface-variant); line-height: 1.7; }

/* ════════════════════════════════════════════
   STUDY FORMATS
════════════════════════════════════════════ */
.st-formats { background: var(--st-primary); padding: var(--st-section-gap) 0; }
.st-formats__card { padding: 40px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); position: relative; transition: background 0.3s ease; clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%); }
.st-formats__card:hover { background: rgba(255,255,255,0.1); }
.st-formats__num { position: absolute; top: 20px; right: 28px; font-family: var(--st-font-display); font-size: 72px; font-weight: 700; color: rgba(255,255,255,0.07); line-height: 1; user-select: none; }
.st-formats__icon { font-size: 40px; color: var(--st-crimson-light); margin-bottom: 20px; display: block; }
.st-formats__title { font-family: var(--st-font-display); font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.st-formats__body { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.7; }

/* ════════════════════════════════════════════
   ADMISSION TRACKS
════════════════════════════════════════════ */
.st-admission { background: var(--st-surface); padding: var(--st-section-gap) 0; }
.st-track { padding: 40px; }
.st-track--light { background: #fff; border: 1px solid rgba(197,197,209,0.35); box-shadow: var(--st-shadow-serene); }
.st-track--dark { background: var(--st-primary); color: #fff; }
.st-track__badge { display: inline-block; padding: 6px 16px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%); margin-bottom: 24px; }
.st-track__badge--navy { background: var(--st-primary); color: #fff; }
.st-track__badge--crimson { background: var(--st-crimson); color: #fff; }
.st-track__title { font-family: var(--st-font-display); font-size: 24px; font-weight: 600; margin-bottom: 24px; }
.st-track--light .st-track__title { color: var(--st-primary); }
.st-track--dark .st-track__title { color: #fff; }
.st-track__row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
.st-track__row .material-symbols-outlined { font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.st-track--light .st-track__row .material-symbols-outlined { color: var(--st-crimson); }
.st-track--dark .st-track__row .material-symbols-outlined { color: var(--st-crimson-light); }
.st-track__row-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 4px; }
.st-track--light .st-track__row-label { color: var(--st-primary); }
.st-track--dark .st-track__row-label { color: rgba(255,255,255,0.6); }
.st-track__row-val { font-size: 15px; }
.st-track--light .st-track__row-val { color: var(--st-on-surface-variant); }
.st-track--dark .st-track__row-val { color: rgba(255,255,255,0.88); }

/* Checklist box */
.st-checklist-box { background: var(--st-surface-container); border: 1px solid rgba(197,197,209,0.4); padding: 28px 32px; display: flex; align-items: flex-start; gap: 16px; margin-top: 48px; }
.st-checklist-box .material-symbols-outlined { font-size: 28px; color: var(--st-primary); flex-shrink: 0; margin-top: 2px; }
.st-checklist-box__title { font-family: var(--st-font-display); font-weight: 700; font-size: 15px; color: var(--st-primary); margin-bottom: 8px; }
.st-checklist-box__body { font-size: 14px; color: var(--st-on-surface-variant); line-height: 1.7; }

/* ════════════════════════════════════════════
   COURSE CARDS (program listing)
════════════════════════════════════════════ */
.st-course-card { padding: 32px; background: var(--st-surface); border: 1px solid rgba(197,197,209,0.35); }
.st-course-card__icon { font-size: 44px; color: var(--st-crimson); margin-bottom: 20px; display: block; transition: transform 0.3s ease; }
.st-course-card:hover .st-course-card__icon { transform: scale(1.1); }
.st-course-card__level { margin-bottom: 12px; }
.st-course-card__title { font-family: var(--st-font-display); font-size: 20px; font-weight: 600; color: var(--st-primary); margin-bottom: 14px; }
.st-course-card__body { font-size: 14px; color: var(--st-on-surface-variant); line-height: 1.7; margin-bottom: 24px; }

/* ════════════════════════════════════════════
   COURSE DETAIL PAGE
════════════════════════════════════════════ */
.st-course-hero { padding: 80px 0 var(--st-section-gap); background: var(--st-surface); position: relative; overflow: hidden; }
.st-course-hero::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: radial-gradient(circle at top right, rgba(149,3,41,0.05), transparent 60%); pointer-events: none; }
.st-curriculum-list { list-style: none; }
.st-curriculum-list li { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(197,197,209,0.3); font-size: 15px; color: var(--st-on-surface-variant); }
.st-curriculum-list li:last-child { border-bottom: none; }
.st-curriculum-list li .material-symbols-outlined { font-size: 18px; color: var(--st-crimson); margin-top: 2px; flex-shrink: 0; }
.st-careers-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
@media (max-width: 640px) { .st-careers-grid { grid-template-columns: 1fr; } }
.st-career-pill { background: var(--st-surface-container); border: 1px solid rgba(197,197,209,0.4); padding: 14px 20px; font-size: 14px; font-weight: 600; color: var(--st-primary); display: flex; align-items: center; gap: 10px; }
.st-career-pill .material-symbols-outlined { font-size: 18px; color: var(--st-crimson); }

/* Application form */
.st-form { background: #fff; border: 1px solid rgba(197,197,209,0.35); padding: 40px; box-shadow: var(--st-shadow-serene); }
.st-form__title { font-family: var(--st-font-display); font-size: 22px; font-weight: 700; color: var(--st-primary); margin-bottom: 24px; }
.st-form__group { margin-bottom: 20px; }
.st-form__label { display: block; font-size: 13px; font-weight: 600; color: var(--st-primary); margin-bottom: 6px; letter-spacing: 0.03em; }
.st-form__input, .st-form__select, .st-form__textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--st-outline-variant); background: var(--st-surface);
  font-family: var(--st-font-body); font-size: 15px; color: var(--st-on-surface);
  outline: none; transition: border 0.2s ease, box-shadow 0.2s ease;
}
.st-form__input:focus, .st-form__select:focus, .st-form__textarea:focus { border-color: var(--st-primary); box-shadow: 0 0 0 3px rgba(1,21,80,0.08); }
.st-form__textarea { min-height: 120px; resize: vertical; }
.st-form__notice { font-size: 12px; color: var(--st-on-surface-variant); margin-top: 16px; }
.st-form__success { display: none; background: #d1fae5; border: 1px solid #6ee7b7; padding: 16px 20px; color: #065f46; font-size: 14px; font-weight: 600; margin-bottom: 20px; }

/* ════════════════════════════════════════════
   PARTNER PAGE
════════════════════════════════════════════ */
.st-partner-hero { background: linear-gradient(135deg, var(--st-primary) 0%, var(--st-primary-container) 100%); padding: 100px 0; color: #fff; }
.st-opportunity-card { padding: 28px 32px; background: var(--st-surface-low); border: 1px solid rgba(197,197,209,0.35); display: flex; align-items: flex-start; gap: 16px; }
.st-opportunity-card .material-symbols-outlined { font-size: 28px; color: var(--st-crimson); flex-shrink: 0; margin-top: 2px; }
.st-opportunity-card__title { font-family: var(--st-font-display); font-size: 16px; font-weight: 700; color: var(--st-primary); margin-bottom: 6px; }
.st-opportunity-card__body { font-size: 14px; color: var(--st-on-surface-variant); line-height: 1.7; }

/* ════════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════════ */
.st-timeline { position: relative; padding-left: 32px; }
.st-timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--st-primary), var(--st-crimson)); }
.st-timeline__item { position: relative; padding-bottom: 48px; }
.st-timeline__dot { position: absolute; left: -40px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--st-crimson); border: 3px solid var(--st-surface); }
.st-timeline__phase { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--st-crimson); margin-bottom: 6px; }
.st-timeline__title { font-family: var(--st-font-display); font-size: 18px; font-weight: 600; color: var(--st-primary); margin-bottom: 8px; }
.st-timeline__body { font-size: 14px; color: var(--st-on-surface-variant); line-height: 1.7; }

/* ════════════════════════════════════════════
   RESPONSIVE HELPERS
════════════════════════════════════════════ */
@media (max-width: 768px) {
  .st-section { padding: 80px 0; }
  .st-hero__content { padding: 80px 0; }
}
