/* =========================================================
   Edugild — Premium Education Design System
   Inspired by UniVet Red One
   ========================================================= */

:root {
  --brand: #E31C25;
  --brand-dark: #B8141C;
  --brand-soft: #FFF1F2;
  --brand-mid: #FCE8E9;
  --navy: #0B1220;
  --navy-2: #151C2C;
  --ink: #0F172A;
  --ink-2: #475569;
  --ink-3: #94A3B8;
  --line: #E8EBF2;
  --surface: #FFFFFF;
  --surface-2: #F7F8FC;
  --surface-3: #EEF1F6;
  --shadow-sm: 0 4px 16px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 12px 36px rgba(15, 23, 42, 0.09);
  --shadow-lg: 0 24px 56px rgba(15, 23, 42, 0.12);
  --shadow-brand: 0 16px 40px rgba(227, 28, 37, 0.28);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --max: 90%;
  --max-mobile: 95%;
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Legacy aliases used in pages */
  --primary: var(--navy);
  --primary-light: var(--brand);
  --primary-gradient: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  --secondary: var(--brand);
  --bg-main: var(--surface-2);
  --bg-card: var(--surface);
  --bg-section: var(--surface-3);
  --bg-dark: var(--navy);
  --text-dark: var(--ink);
  --text-muted: var(--ink-2);
  --text-light: #F1F5F9;
  --warm: var(--brand);
  --serif: var(--font-display);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

img, video, svg, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 4.8vw, 3.75rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.75rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; color: var(--ink-2); }
a { color: inherit; text-decoration: none; transition: color var(--transition), transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition); }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  user-select: none;
}

/* Layout */
.wrap {
  width: var(--max);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
}

@media (max-width: 990px) {
  .wrap {
    width: var(--max-mobile);
    max-width: var(--max-mobile);
  }
}

section { padding: clamp(64px, 8vw, 104px) 0; position: relative; overflow: hidden; }
.section-alt { background: var(--surface-2); }
.section-dark { background: var(--navy); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: #94A3B8; }

.section-head,
.section-head-premium {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.eyebrow,
.ul-eyebrow,
.pr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.lede { font-size: 1.125rem; color: var(--ink-2); line-height: 1.7; }
.text-center { text-align: center; }
.mt-8 { margin-top: 2rem; }
.mb-8 { margin-bottom: 2rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--brand);
  color: #fff !important;
  box-shadow: var(--shadow-brand);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition);
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.28) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease);
  z-index: -1;
}

.btn:hover {
  background: var(--brand-dark);
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(227, 28, 37, 0.35);
}

.btn:hover::after { transform: translateX(120%); }

.btn.ghost {
  background: transparent;
  color: var(--ink) !important;
  border-color: var(--line);
  box-shadow: none;
}

.btn.ghost:hover {
  background: var(--brand);
  color: #fff !important;
  border-color: var(--brand);
}

.btn.lg { padding: 16px 34px; font-size: 1rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Topbar */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar-inner {
  width: var(--max);
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 990px) {
  .topbar-inner {
    width: var(--max-mobile);
    max-width: var(--max-mobile);
  }
}

.topbar-left, .topbar-right, .social-links { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,0.85); display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: #fff; }
.topbar-icon { width: 15px; height: 15px; }
.social-links a {
  width: 30px; height: 30px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); font-size: 0.7rem; font-weight: 700;
}
.social-links a:hover { background: var(--brand); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  width: var(--max);
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 990px) {
  .nav-inner {
    width: var(--max-mobile);
    max-width: var(--max-mobile);
  }
}

.logo, .footer-grid-premium .brand {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.logo span, .footer-grid-premium .brand span { color: var(--brand); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px 26px;
  flex-wrap: wrap;
}

.nav-links a:not(.btn) {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--brand);
  transition: width var(--transition);
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active { color: var(--brand); }
.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after { width: 100%; }

.nav-toggle {
  display: none;
  background: var(--surface-2);
  border: 1px solid var(--line);
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  color: var(--navy);
  cursor: pointer;
}

@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    border-top: 1px solid var(--line);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links a:not(.btn) { padding: 12px 14px; border-radius: var(--radius-sm); }
  .nav-links a:not(.btn)::after { display: none; }
  .nav-links a:not(.btn):hover,
  .nav-links a:not(.btn).active { background: var(--brand-soft); }
  .nav-links .btn { width: 100%; margin-top: 8px; }
  .topbar-left span:not(:first-child) { display: none; }
}

/* Hero slider — UniVet-style full-bleed */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 860px;
  height: calc(100svh - 118px);
  overflow: hidden;
  background: #1a1a1a;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1);
  transition: opacity 0.85s ease, visibility 0.85s ease;
  z-index: 1;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  animation: heroKenBurns 7s ease-out forwards;
}

.hero-slide.is-leaving {
  opacity: 0;
  visibility: visible;
  z-index: 2;
  animation: none;
}

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 12, 18, 0.35) 0%, rgba(10, 12, 18, 0.45) 45%, rgba(10, 12, 18, 0.72) 100%);
  pointer-events: none;
}

.hero-slide-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 120px;
  color: #fff;
}

.hero-slide-eyebrow {
  font-family: var(--font-body), 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5.2vw, 4.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  max-width: 900px;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease 0.12s, transform 0.65s ease 0.12s;
}

.hero-slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #8B1538;
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-body), 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(139, 21, 56, 0.35);
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease 0.22s,
    transform 0.6s ease 0.22s,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-slide-btn .material-symbols-outlined {
  font-size: 18px;
}

.hero-slide-btn:hover {
  background: #6E0F2B;
  box-shadow: 0 14px 32px rgba(139, 21, 56, 0.45);
}

.hero-slide.is-active .hero-slide-eyebrow,
.hero-slide.is-active .hero-slide-content h1,
.hero-slide.is-active .hero-slide-btn {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide.is-active .hero-slide-btn:hover {
  transform: translateY(-2px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border: 0;
  background: #8B1538;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  padding: 0;
}

.hero-arrow .material-symbols-outlined {
  font-size: 28px;
  font-weight: 300;
}

.hero-arrow:hover {
  background: #6E0F2B;
}

.hero-arrow--prev { left: 0; }
.hero-arrow--next { right: 0; }

.hero-bottom-bars {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.hero-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 16px 12px;
  background: rgba(28, 28, 28, 0.92);
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.25s ease, color 0.25s ease;
}

.hero-bar:hover {
  background: #8B1538;
  color: #fff;
}

@media (max-width: 990px) {
  .hero-slider {
    min-height: 720px;
    height: calc(100svh - 100px);
  }

  .hero-slide-content {
    padding: 64px 56px 110px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-arrow .material-symbols-outlined {
    font-size: 24px;
  }

  .hero-bar {
    min-height: 56px;
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  .hero-slider {
    min-height: 640px;
    height: calc(100svh - 90px);
  }

  .hero-slide-content {
    padding: 48px 48px 100px;
  }

  .hero-slide-content h1 {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }

  .hero-bar {
    min-height: 48px;
    padding: 10px 6px;
    font-size: 0.78rem;
    line-height: 1.25;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide-eyebrow,
  .hero-slide-content h1,
  .hero-slide-btn {
    transition: none !important;
    animation: none !important;
  }

  .hero-slide.is-active .hero-slide-eyebrow,
  .hero-slide.is-active .hero-slide-content h1,
  .hero-slide.is-active .hero-slide-btn {
    opacity: 1;
    transform: none;
  }
}

/* Marquee */
.marquee-section {
  background: var(--brand);
  padding: 18px 0;
  overflow: hidden;
  color: #fff;
}

.marquee-track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee-content { display: flex; gap: 2.5rem; padding-right: 2.5rem; white-space: nowrap; }
.marquee-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
}
.marquee-item::after { content: '◆'; color: rgba(255,255,255,0.55); font-size: 0.65rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* About Edugild — UniVet-style */
.about-uv {
  position: relative;
  padding: clamp(64px, 8vw, 100px) 0 clamp(56px, 7vw, 88px);
  background: #F7F4EF;
  overflow: hidden;
}

.about-uv-decor {
  position: absolute;
  right: 2%;
  top: 18%;
  width: min(220px, 18vw);
  color: rgba(139, 21, 56, 0.1);
  pointer-events: none;
  z-index: 0;
}

.about-uv-decor svg { width: 100%; height: auto; display: block; }

.about-uv .wrap { position: relative; z-index: 1; }

.about-uv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

.about-uv-media {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: none;
  width: 100%;
}

.about-uv-img {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.about-uv-img img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.about-uv-img--top img { height: 340px; }
.about-uv-img--bottom img { height: 300px; }

.about-uv-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #8B1538;
  border: 6px solid #F7F4EF;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 12px 28px rgba(139, 21, 56, 0.35);
  z-index: 2;
}

.about-uv-badge-icon {
  width: 52px;
  height: 58px;
}

.about-uv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #8B1538;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-uv-eyebrow .material-symbols-outlined {
  font-size: 20px;
}

.about-uv-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  font-weight: 700;
  line-height: 1.2;
  color: #151C2C;
  margin: 0 0 16px;
  max-width: 18ch;
}

.about-uv-lede {
  color: #64748B;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 22px;
  max-width: 52ch;
}

.about-uv-tabs {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid #E5E7EB;
  margin-bottom: 0;
}

.about-uv-tab {
  appearance: none;
  background: none;
  border: 0;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  padding: 10px 2px 12px;
  font-family: var(--font-body), sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #94A3B8;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.about-uv-tab.is-active,
.about-uv-tab:hover {
  color: #8B1538;
}

.about-uv-tab.is-active {
  border-bottom-color: #8B1538;
}

.about-uv-panels {
  margin-top: 16px;
  margin-bottom: 24px;
}

.about-uv-panel {
  background: #fff;
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.about-uv-panel[hidden] { display: none; }

.about-uv-panel p {
  margin: 0;
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-uv-checks {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}

.about-uv-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1E293B;
  line-height: 1.4;
}

.about-uv-checks .material-symbols-outlined {
  color: #8B1538;
  font-size: 20px;
  font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 24;
  flex-shrink: 0;
  margin-top: 1px;
}

.about-uv-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid #D1D5DB;
  background: #fff;
  color: #1E293B;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.about-uv-btn .material-symbols-outlined { font-size: 18px; color: #8B1538; }

.about-uv-btn:hover {
  border-color: #8B1538;
  color: #8B1538;
  box-shadow: 0 8px 20px rgba(139, 21, 56, 0.12);
}

.about-uv-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(40px, 5vw, 64px);
}

.about-uv-stat {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.about-uv-stat-icon {
  font-size: 52px;
  color: #1E293B;
  flex-shrink: 0;
}

.about-uv-stat h3 {
  margin: 0 0 8px;
  font-family: var(--font-display), sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #151C2C;
  line-height: 1.25;
}

.about-uv-stat p {
  margin: 0;
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.45;
  white-space: nowrap;
}

.about-uv-stat--accent {
  background: #8B1538;
  box-shadow: 0 14px 32px rgba(139, 21, 56, 0.28);
}

.about-uv-stat--accent .about-uv-stat-icon,
.about-uv-stat--accent h3,
.about-uv-stat--accent p {
  color: #fff;
}

.about-uv-stat--accent p { opacity: 0.9; }

/* Programs — UniVet-style dark cards */
.programs-uv {
  position: relative;
  padding: clamp(64px, 8vw, 100px) 0;
  background: #1A1D24;
  overflow: hidden;
  color: #fff;
}

.programs-uv-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.programs-uv-decor--diploma {
  left: 1%;
  top: 8%;
  width: min(180px, 14vw);
  color: rgba(255, 255, 255, 0.06);
}

.programs-uv-decor--diploma svg { width: 100%; height: auto; display: block; }

.programs-uv-decor--rings {
  right: -80px;
  top: 40%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 0 28px rgba(255, 255, 255, 0.03),
    0 0 0 56px rgba(255, 255, 255, 0.02);
}

.programs-uv .wrap { position: relative; z-index: 1; }

.programs-uv-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.programs-uv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.programs-uv-eyebrow .material-symbols-outlined {
  font-size: 20px;
  color: #E31C25;
}

.programs-uv-head h2 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.programs-uv-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 14px 26px;
  border-radius: 999px;
  background: #8B1538;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.programs-uv-explore .material-symbols-outlined { font-size: 18px; }

.programs-uv-explore:hover {
  background: #6E0F2B;
  transform: translateY(-1px);
}

.programs-uv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.programs-uv-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #242830;
  border-radius: 22px;
  overflow: hidden;
  min-height: 280px;
  transition:
    background 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.programs-uv-card:hover {
  background: #8B1538;
  box-shadow: 0 24px 52px rgba(139, 21, 56, 0.38);
  transform: translateY(-4px);
}

.programs-uv-card-media {
  position: relative;
  min-height: 100%;
}

.programs-uv-card-media img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transition:
    top 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    right 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    bottom 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    left 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.programs-uv-card:hover .programs-uv-card-media img {
  top: 18px;
  right: 8px;
  bottom: 18px;
  left: 18px;
  border-radius: 18px;
}

.programs-uv-card-body {
  position: relative;
  z-index: 2;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}

.programs-uv-card-body h3 {
  margin: 0 0 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.programs-uv-card-body > p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.45s ease;
}

.programs-uv-card:hover .programs-uv-card-body > p {
  color: rgba(255, 255, 255, 0.95);
}

.programs-uv-card-body ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.programs-uv-card-body li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
  transition: color 0.45s ease;
}

.programs-uv-card:hover .programs-uv-card-body li {
  color: #fff;
}

.programs-uv-card-body li .material-symbols-outlined {
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
}

.programs-uv-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-start;
  padding: 11px 22px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition:
    background 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.35s ease,
    transform 0.35s ease;
}

.programs-uv-apply .material-symbols-outlined {
  font-size: 16px;
  transition: color 0.35s ease;
}

.programs-uv-card:hover .programs-uv-apply {
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.9);
  background: transparent;
}

.programs-uv-apply:hover {
  background: #fff !important;
  color: #8B1538;
  border-color: #fff !important;
}

.programs-uv-apply:hover .material-symbols-outlined {
  color: #8B1538;
}

@media (prefers-reduced-motion: reduce) {
  .programs-uv-card,
  .programs-uv-card-media img,
  .programs-uv-apply,
  .programs-uv-card-body > p,
  .programs-uv-card-body li {
    transition: none;
  }

  .programs-uv-card:hover {
    transform: none;
  }
}

@media (max-width: 1100px) {
  .programs-uv-card-body > p { white-space: normal; }
}

@media (max-width: 990px) {
  .programs-uv-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .programs-uv-grid {
    grid-template-columns: 1fr;
  }

  .programs-uv-decor--diploma,
  .programs-uv-decor--rings { opacity: 0.45; }
}

@media (max-width: 640px) {
  .programs-uv-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .programs-uv-card-media {
    min-height: 200px;
  }

  .programs-uv-card-media img {
    position: relative;
    height: 200px;
  }
}

@media (max-width: 990px) {
  .about-uv-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-uv-media {
    max-width: 520px;
    margin: 0 auto;
  }

  .about-uv-content h2 { max-width: none; }

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

  .about-uv-decor { display: none; }
}

@media (max-width: 640px) {
  .about-uv-checks { grid-template-columns: 1fr; }
  .about-uv-tabs { gap: 18px; }
  .about-uv-img img,
  .about-uv-img--top img,
  .about-uv-img--bottom img { height: 240px; }
  .about-uv-badge { width: 96px; height: 96px; }
  .about-uv-badge-icon { width: 40px; height: 46px; }
}

/* Trust strip */
.strip-premium { padding: 48px 0; background: #fff; text-align: center; }
.strip-label {
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.logos-strip { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.logos-strip img { max-width: min(920px, 100%); opacity: 0.7; filter: grayscale(1); transition: var(--transition); margin: 0 auto; }
.logos-strip img:hover { opacity: 1; filter: none; }

/* Split */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.split-section.reverse .split-content { order: 2; }
.split-section.reverse .split-image { order: 1; }
.split-image { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split-image img { width: 100%; transition: transform 0.7s var(--ease); }
.split-image:hover img { transform: scale(1.04); }

@media (max-width: 990px) {
  .split-section, .split-section.reverse { grid-template-columns: 1fr; }
  .split-section.reverse .split-content,
  .split-section.reverse .split-image { order: unset; }
}

/* Pillar / feature cards */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.pillar-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  display: block;
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.pillar-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: var(--brand-soft);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.pillar-card:hover .pillar-icon { background: var(--brand); color: #fff; }
.pillar-card .num {
  position: absolute; top: 16px; right: 18px;
  font-family: var(--font-display);
  font-size: 2.75rem; font-weight: 800;
  color: rgba(15,23,42,0.04); line-height: 1;
}
.pillar-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.pillar-card p { margin: 0; font-size: 0.95rem; }

@media (max-width: 1200px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pillars-grid { grid-template-columns: 1fr; } }

/* Stats */
.stats-premium {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.stat-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  background: rgba(227,28,37,0.08);
}

.stat-card .counter {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3vw, 3.25rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-card .label { color: #CBD5E1; font-weight: 600; font-size: 0.95rem; margin: 0; }

@media (max-width: 1080px) { .stats-premium { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .stats-premium { grid-template-columns: repeat(2, 1fr); } }

/* Steps */
.steps-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.step-num {
  width: 56px; height: 56px; margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: var(--shadow-brand);
}
.step-card h3 { font-size: 1.15rem; color: var(--navy); }

@media (max-width: 900px) { .steps-premium { grid-template-columns: 1fr; } }

/* Startup cards (index + portfolio) */
.startup-cards,
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.startup-card,
.startup-x {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.startup-card:hover,
.startup-x:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.startup-card h3,
.startup-x h3,
.sx-title h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.startup-card .meta,
.sx-meta {
  font-size: 0.875rem;
  color: var(--ink-2);
  font-weight: 500;
  margin-bottom: 14px;
}

.startup-tags,
.sx-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }

.startup-tag,
.sx-tag {
  background: var(--brand-soft);
  color: var(--brand-dark);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sx-line, .startup-card p { margin: 0; flex-grow: 1; font-size: 0.95rem; }
.sx-head { margin-bottom: 4px; }

@media (max-width: 1080px) {
  .startup-cards, .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .startup-cards, .grid-3 { grid-template-columns: 1fr; }
}

/* Testimonials */
.testimonial-slider { max-width: 920px; margin: 0 auto; }
.testimonial-viewport {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(28px, 5vw, 56px);
}
.testimonial-track { display: flex; transition: transform 0.55s var(--ease); }
.testimonial-slide { min-width: 100%; padding: 0 4px; }
.testimonial-slide blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 28px;
  position: relative;
}
.testimonial-slide blockquote::before {
  content: '“';
  position: absolute;
  top: -28px; left: -8px;
  font-size: 4rem;
  color: var(--brand-mid);
  font-family: var(--font-display);
  line-height: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; border: 3px solid var(--brand-soft);
}
.testimonial-author strong { display: block; color: var(--navy); font-size: 1.05rem; }
.testimonial-author span { font-size: 0.85rem; color: var(--ink-2); }

.slider-controls { display: flex; justify-content: center; align-items: center; gap: 14px; margin-top: 28px; }
.slider-prev, .slider-next {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff;
  cursor: pointer; color: var(--navy); font-size: 1.1rem;
  transition: var(--transition);
}
.slider-prev:hover, .slider-next:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 9px; height: 9px; border-radius: 50%;
  border: none; background: #D1D5DB; cursor: pointer; transition: var(--transition);
}
.slider-dot.is-active { background: var(--brand); transform: scale(1.25); }

/* FAQ */
.faq-preview, .faq-list, .faq-grid { max-width: 860px; margin: 0 auto; }

.faq-item,
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover,
.faq-list details:hover { box-shadow: var(--shadow-sm); }

.faq-item summary,
.faq-list details summary {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.faq-item summary::after,
.faq-list details summary::after {
  content: '+';
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 500;
  transition: var(--transition);
}

.faq-item[open] summary::after,
.faq-list details[open] summary::after {
  content: '−';
  background: var(--brand);
  color: #fff;
}

.faq-item .answer,
.faq-list details .answer {
  padding: 0 24px 22px;
  color: var(--ink-2);
  line-height: 1.75;
}

.faq-group {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand);
  display: inline-block;
}

.faq-search {
  max-width: 860px;
  margin: 0 auto 32px;
  position: relative;
}

.faq-search input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  border: 2px solid var(--line);
  border-radius: var(--radius-full);
  background: #fff;
  transition: var(--transition);
}

.faq-search input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(227,28,37,0.12);
}

.faq-search .material-symbols-outlined {
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  color: var(--ink-3);
}

/* CTA */
.cta-premium,
.cta-band {
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(227,28,37,0.35), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, #1A2336 100%);
  color: #fff;
  text-align: center;
  padding: clamp(72px, 9vw, 110px) 0;
}

.cta-premium h2,
.cta-band h2 { color: #fff; max-width: 780px; margin: 0 auto 16px; }
.cta-premium p,
.cta-band p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 620px; margin: 0 auto 32px; }
.cta-premium .eyebrow,
.cta-band .eyebrow {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.cta-premium .btn.ghost,
.cta-band .btn.ghost {
  color: #fff !important;
  border-color: rgba(255,255,255,0.35);
}
.cta-premium .btn.ghost:hover,
.cta-band .btn.ghost:hover {
  background: #fff;
  color: var(--navy) !important;
  border-color: #fff;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  display: none;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
}

.sticky-cta a {
  background: var(--brand);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  .footer-premium { margin-bottom: 56px; }
}

/* Footer */
.footer-premium {
  background: var(--navy);
  color: #fff;
  padding: 80px 0 36px;
  position: relative;
  z-index: 10;
}

.footer-grid-premium {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  margin-bottom: 48px;
}

.footer-grid-premium .brand { color: #fff; display: inline-block; margin-bottom: 16px; }
.footer-grid-premium p { color: #94A3B8; max-width: 320px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  color: #CBD5E1; margin-bottom: 12px; font-size: 0.925rem;
}
.footer-contact-item svg { color: var(--brand); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: #CBD5E1; }
.footer-contact-item a:hover { color: #fff; }
.footer-grid-premium h4 {
  color: #fff; font-size: 1.05rem; margin-bottom: 18px; font-weight: 700;
}
.footer-grid-premium li { margin-bottom: 10px; }
.footer-grid-premium a { color: #94A3B8; font-size: 0.925rem; }
.footer-grid-premium a:hover { color: var(--brand); transform: translateX(3px); display: inline-block; }
.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #64748B;
  font-size: 0.875rem;
}
.footer-copy a { color: #94A3B8; }
.footer-copy a:hover { color: #fff; }

@media (max-width: 990px) { .footer-grid-premium { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .footer-grid-premium { grid-template-columns: 1fr; }
  .footer-copy { flex-direction: column; text-align: center; }
}

/* Inner page heroes */
.page-header,
.page-hero,
.page-intro.page-hero {
  background:
    radial-gradient(ellipse 55% 70% at 90% 10%, rgba(227,28,37,0.28), transparent 55%),
    linear-gradient(135deg, var(--navy) 0%, #1C2538 100%);
  color: #fff;
  padding: clamp(72px, 10vw, 120px) 0 clamp(56px, 7vw, 88px);
  position: relative;
  overflow: hidden;
}

.page-hero h1,
.page-header h1,
.page-intro.page-hero h1 { color: #fff; max-width: 900px; }
.page-hero .lede,
.page-header p,
.pi-lede { color: rgba(255,255,255,0.78); }
.page-hero .eyebrow { background: rgba(255,255,255,0.12); color: #fff; }

.pi-body,
.it-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin-top: 12px;
}

.pi-image-wrap,
.it-row__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pi-image-wrap img,
.it-row__img img { width: 100%; transition: transform 0.7s var(--ease); }
.pi-image-wrap:hover img,
.it-row__img:hover img { transform: scale(1.04); }

@media (max-width: 990px) {
  .pi-body, .it-row { grid-template-columns: 1fr; }
  .page-hero h1 { white-space: normal !important; }
}

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 1200px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 990px) { .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .grid-4 { grid-template-columns: 1fr; } }

/* Program pillars */
.pillar {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
  height: 100%;
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: #fff;
  border-color: transparent;
}

.pillar .num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--brand);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.pillar h3 { color: var(--navy); font-size: 1.25rem; }
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  justify-content: center;
}

.filter-btn {
  padding: 10px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--ink-2);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.program-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 18px;
}

.program-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--surface-3);
  padding: 6px 12px;
  border-radius: var(--radius-full);
}

/* Mentors */
.mentor {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mentor:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.mentor-image {
  width: 128px; height: 128px;
  margin: 0 auto 18px;
  border-radius: 50%;
  padding: 4px;
  border: 2px solid var(--brand-mid);
  transition: var(--transition);
  overflow: hidden;
}

.mentor:hover .mentor-image {
  border-color: var(--brand);
  transform: scale(1.04);
}

.mentor-image img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 50%;
}

.mentor h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 4px; }
.mentor .role { color: var(--brand); font-weight: 700; font-size: 0.85rem; margin-bottom: 12px; }
.mentor .bio { font-size: 0.9rem; margin: 0; flex-grow: 1; }

.mentor-socials {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.mentor-socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.mentor-socials a:hover { background: var(--brand); color: #fff; }

.event-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 24px 0 8px;
}

.event-tab {
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
  color: var(--ink-2);
  cursor: pointer;
  transition: var(--transition);
}

.event-tab:hover { color: var(--brand); border-color: var(--brand); }
.event-tab.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: var(--shadow-brand);
}

[data-panel] { display: none; animation: fadeUp 0.45s var(--ease); }
[data-panel].active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Events */
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.event-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  color: inherit;
  height: 100%;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.event-card .cover {
  position: relative;
  height: 200px;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--navy) 0%, #2A3548 60%, var(--brand-dark) 100%);
}

.event-card .cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.event-card:hover .cover img { transform: scale(1.06); }

.event-card .cover::after {
  content: attr(data-date);
  position: absolute;
  top: 14px; left: 14px;
  background: var(--brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-full);
}

.event-card .body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-card h3 { font-size: 1.1rem; color: var(--navy); line-height: 1.35; }
.event-card .host {
  color: var(--brand);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.event-card .desc { margin: 0; flex-grow: 1; font-size: 0.925rem; }

@media (max-width: 1080px) { .event-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .event-grid { grid-template-columns: 1fr; } }

/* About leadership */
.lp-section {
  width: var(--max);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 96px) 0;
}

@media (max-width: 990px) {
  .lp-section {
    width: var(--max-mobile);
    max-width: var(--max-mobile);
  }
}

.lp-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.lp-row--reverse { grid-template-columns: 1.1fr 0.9fr; }
.lp-row--reverse .lp-portrait { order: 2; }
.lp-row--reverse .lp-bio { order: 1; }

.lp-portrait {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.lp-portrait__img { width: 100%; object-fit: cover; }
.lp-namecard {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  padding: 18px 20px;
  text-align: center;
  border-top: 3px solid var(--brand);
}
.lp-namecard__name {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.lp-namecard__title { font-size: 0.85rem; color: var(--ink-2); margin: 0; }
.lp-bio__text { font-size: 1.05rem; line-height: 1.8; margin: 0; }

@media (max-width: 990px) {
  .lp-row, .lp-row--reverse { grid-template-columns: 1fr; }
  .lp-row--reverse .lp-portrait,
  .lp-row--reverse .lp-bio { order: unset; }
}

.ul-section { background: var(--surface-2); padding: clamp(64px, 8vw, 104px) 0; }
.ul-head { text-align: center; max-width: 760px; margin: 0 auto 48px; padding: 0; }
.ul-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  width: var(--max);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
}

@media (max-width: 990px) {
  .ul-grid {
    width: var(--max-mobile);
    max-width: var(--max-mobile);
  }
}

.ul-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.ul-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.ul-card__avatar {
  width: 112px; height: 112px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--brand-soft);
}
.ul-card__name { font-weight: 800; color: var(--navy); font-size: 1.1rem; margin-bottom: 6px; }
.ul-card__role { font-size: 0.875rem; color: var(--ink-2); margin: 0; }

.pr-section { padding: clamp(64px, 8vw, 104px) 0; background: #fff; }
.pr-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.pr-header h2 { margin-bottom: 0; }
.pr-header__img-wrap img {
  border-radius: var(--radius-md);
  max-width: min(280px, 100%);
  box-shadow: var(--shadow-md);
}

.feature-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 1.05rem;
}
.feature-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 2px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* Forms */
.apply-section,
.contact-form-wrap {
  background: var(--surface-2);
}

#applyForm,
.form-plain {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-sm);
}

#applyForm .full,
.form-plain .full,
#applyForm .submit-row { grid-column: 1 / -1; }

#applyForm label,
.form-plain label,
.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 8px;
}

#applyForm input,
#applyForm select,
#applyForm textarea,
.form-plain input,
.form-plain select,
.form-plain textarea,
.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  color: var(--ink);
  transition: var(--transition);
}

#applyForm input:focus,
#applyForm select:focus,
#applyForm textarea:focus,
.form-plain input:focus,
.form-plain select:focus,
.form-plain textarea:focus,
.form-control:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(227,28,37,0.12);
}

#applyForm textarea,
.form-plain textarea { min-height: 120px; resize: vertical; }

.submit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
}

.privacy { font-size: 0.85rem; color: var(--ink-2); max-width: 480px; margin: 0; }

.apply-steps {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 8px;
}

.apply-step {
  flex: 1;
  min-width: 140px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-2);
}

.apply-step.is-active {
  background: var(--brand-soft);
  border-color: var(--brand);
  color: var(--brand-dark);
}

.apply-step span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brand);
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  #applyForm, .form-plain { grid-template-columns: 1fr; }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: start;
}

.contact-info {
  background: var(--navy);
  color: #fff;
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(227,28,37,0.25);
  top: -60px; right: -40px;
}

.contact-info h3 { color: #fff; position: relative; }
.contact-info p { color: rgba(255,255,255,0.75); position: relative; }
.info-item { display: flex; gap: 14px; margin-bottom: 24px; position: relative; }
.info-item .material-symbols-outlined,
.info-item svg { color: var(--brand); flex-shrink: 0; }
.info-item h4 { color: #fff; font-size: 1rem; margin-bottom: 4px; }
.info-item a { color: rgba(255,255,255,0.8); }
.info-item a:hover { color: #fff; }

.map-placeholder {
  margin-top: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  text-align: center;
  padding: 24px;
  position: relative;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
}

.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

@media (max-width: 990px) { .contact-grid { grid-template-columns: 1fr; } }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.blog-img {
  width: 100%; height: 210px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy), var(--brand-dark));
}
.blog-content { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-meta {
  color: var(--brand);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.blog-title { font-size: 1.2rem; margin-bottom: 12px; }
.blog-title a:hover { color: var(--brand); }
.read-more {
  margin-top: auto;
  font-weight: 700;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.coming-soon {
  text-align: center;
  padding: 48px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  max-width: 640px;
  margin: 24px auto 0;
}

.coming-soon p { color: rgba(255,255,255,0.75); margin: 0; }

@media (max-width: 990px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* Reveal animations */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js [data-reveal="left"] { transform: translateX(-28px); }
.js [data-reveal="right"] { transform: translateX(28px); }
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-visual img { animation: none; }
  .marquee-track { animation: none; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* Utilities / overflow guards */
.site-header .nav { position: relative; }
body > .nav { display: none; }

.is-hidden { display: none !important; }

@media (max-width: 425px) {
  .btn.lg { width: 100%; }
  .cta-row { width: 100%; }
  .cta-row .btn { width: 100%; }
}
