/* ============================================
   1% ELITE MINDS — DESIGN SYSTEM
   Premium Institutional Dark Theme
   ============================================ */

/* ---------- IMPORTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

/* ---------- CSS VARIABLES ---------- */
:root {
  /* Colors */
  --bg-primary: #000000;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --border-subtle: #2d2d2d;
  --border-hover: #3a3a3a;
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0A0;
  --text-muted: #666666;
  --accent-silver: #C0C0C0;
  --accent-gold: #C9A84C;
  --accent-gold-dim: rgba(201, 168, 76, 0.15);
  --gradient-silver: linear-gradient(135deg, #C0C0C0, #FFFFFF);
  --gradient-hero: linear-gradient(135deg, #0A0A0A 0%, #000000 50%, #0A0A0A 100%);
  --glow-silver: 0 0 30px rgba(192, 192, 192, 0.1);
  --glow-hover: 0 8px 40px rgba(192, 192, 192, 0.15);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  --fs-hero: clamp(3rem, 6vw, 5.5rem);
  --fs-h1: clamp(2.2rem, 4vw, 3.5rem);
  --fs-h2: clamp(1.6rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.5rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-caption: 0.75rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 900px;
  --nav-height: 72px;
  --card-radius: 14px;
  --btn-radius: 8px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 300;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section--alt {
  background: #FFFFFF;
  color: #111;
}

.section--alt .section__title {
  color: #000;
}

.section--alt .section__label {
  color: #444;
}

.section--alt .section__label::after {
  background: linear-gradient(135deg, #333, #888);
}

.section--alt .section__subtitle {
  color: #555;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section__label {
  display: inline-block;
  font-size: var(--fs-caption);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-silver);
  margin-bottom: var(--space-sm);
  position: relative;
}

.section__label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gradient-silver);
  margin: 0.75rem auto 0;
}

.section__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.section__subtitle {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
}

.nav.scrolled {
  border-bottom-color: var(--border-subtle);
  background: rgba(0, 0, 0, 0.95);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gradient-silver);
  border-radius: 8px;
  color: #000;
  font-weight: 900;
  font-size: 0.85rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--text-primary);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text-primary);
  transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  margin-left: var(--space-sm);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: var(--fs-small);
  font-weight: 500;
  border-radius: var(--btn-radius);
  transition: all var(--transition-base);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(to bottom right, #ffffff, #e0e0e0);
  color: var(--bg-primary);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.btn--primary:hover {
  box-shadow: 0 6px 35px rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
  background: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}

.btn--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn--large {
  padding: 1.1rem 2.8rem;
  font-size: var(--fs-body);
}

.btn--gold {
  background: linear-gradient(135deg, #CFB53B, #C5A028, #E6D98D);
  color: #000;
  font-weight: 700;
  border: 1px solid #C5A028;
}

.btn--gold:hover {
  box-shadow: 0 0 35px rgba(201, 168, 76, 0.4);
  transform: translateY(-1px);
}

/* ---------- CARDS ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
}

.card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glow-hover);
  transform: translateY(-4px);
}

.card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}

.card__body {
  padding: var(--space-md);
}

.card__title {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.01em;
}

.card__desc {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.card__tag {
  font-size: var(--fs-caption);
  padding: 0.3rem 0.7rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

/* ---------- STAT CARDS ---------- */
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.stat-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: var(--glow-silver);
  transform: translateY(-2px);
}

.stat-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
}

.stat-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-silver);
  fill: none;
  stroke-width: 1.5;
}

.stat-card__number {
  font-size: var(--fs-h1);
  font-weight: 700;
  background: var(--gradient-silver);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--space-xs);
}

.stat-card__label {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  font-weight: 400;
}

/* ---------- GRID ---------- */
.grid {
  display: grid;
  gap: var(--space-md);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid--auto {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) var(--space-xl);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(192, 192, 192, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(192, 192, 192, 0.04) 0%, transparent 60%);
}

.hero__bg::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(192, 192, 192, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 6s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  font-size: var(--fs-caption);
  font-weight: 500;
  color: var(--accent-silver);
  margin-bottom: var(--space-lg);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero__title {
  font-family: var(--font-primary);
  font-size: var(--fs-hero);
  font-weight: 900;
  font-style: normal;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--space-md);
}

.hero__title span {
  color: #FFFFFF;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: var(--fs-caption);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.hero__scroll-line {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
}

/* ---------- PROGRAMME CARDS ---------- */
.programme-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: all var(--transition-base);
}

.programme-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: var(--glow-hover);
  transform: translateY(-6px);
}

.programme-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  position: relative;
  overflow: hidden;
}

.programme-card__image-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}

.programme-card__body {
  padding: var(--space-md) var(--space-md) var(--space-lg);
}

.programme-card__name {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 700;
  font-style: italic;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.01em;
}

.programme-card__desc {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.programme-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.programme-card__detail {
  font-size: var(--fs-caption);
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ---------- PILLAR CARDS ---------- */
.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.pillar-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: var(--glow-silver);
  transform: translateY(-3px);
}

.pillar-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(192, 192, 192, 0.06);
  border: 1px solid var(--border-subtle);
}

.pillar-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-silver);
  fill: none;
  stroke-width: 1.5;
}

.pillar-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: 700;
  font-style: italic;
  margin-bottom: var(--space-xs);
}

.pillar-card__desc {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- EXECUTION CULTURE ---------- */
.execution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.execution-item {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--card-radius);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  transition: all var(--transition-base);
  border: 1px solid var(--border-subtle);
}

.execution-item:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  box-shadow: var(--glow-hover);
}

.execution-item__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.execution-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.execution-item__content {
  position: relative;
  z-index: 2;
  padding: var(--space-md);
}

.execution-item__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 700;
  font-style: italic;
  margin-bottom: 0.25rem;
}

.execution-item__desc {
  font-size: var(--fs-small);
  color: var(--text-secondary);
}

/* ---------- COMMUNITY ---------- */
.community-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.community-feature {
  background: #111111;
  border: 1px solid #2a2a2a;
  border-radius: var(--card-radius);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  color: #fff;
}

.community-feature:hover {
  border-color: #3a3a3a;
  background: #1a1a1a;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.community-feature__icon {
  width: 44px;
  height: 44px;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid #333;
}

.community-feature__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-silver);
  fill: none;
  stroke-width: 1.5;
}

.community-feature__title {
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: 700;
  font-style: italic;
  margin-bottom: 0.3rem;
}

.community-feature__desc {
  font-size: var(--fs-small);
  color: #aaa;
  line-height: 1.6;
}

/* ---------- CERTIFICATION BADGES ---------- */
.badge-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
}

.badge-item {
  text-align: center;
  padding: var(--space-md) var(--space-lg);
  position: relative;
  flex: 1;
  min-width: 160px;
}

.badge-item::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 40px;
  height: 1px;
  background: var(--border-subtle);
  transform: translateX(50%);
}

.badge-item:last-child::after {
  display: none;
}

.badge-item__rank {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 800;
  transition: all var(--transition-base);
}

.badge-item:nth-child(1) .badge-item__rank {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

.badge-item:nth-child(2) .badge-item__rank {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-hover);
  color: var(--text-secondary);
}

.badge-item:nth-child(3) .badge-item__rank {
  background: rgba(192, 192, 192, 0.08);
  border: 1px solid #3a3a3a;
  color: var(--accent-silver);
}

.badge-item:nth-child(4) .badge-item__rank {
  background: rgba(192, 192, 192, 0.12);
  border: 1px solid var(--accent-silver);
  color: var(--text-primary);
}

.badge-item:nth-child(5) .badge-item__rank {
  background: linear-gradient(135deg, var(--accent-gold), #E8C964);
  border: none;
  color: #000;
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.3);
}

.badge-item__name {
  font-size: var(--fs-small);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.badge-item__level {
  font-size: var(--fs-caption);
  color: var(--text-muted);
}

/* ---------- CAMPUS SECTION ---------- */
.campus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.campus-card {
  background: #111111;
  border: 1px solid #2a2a2a;
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: all var(--transition-base);
  color: #fff;
}

.campus-card:hover {
  border-color: #3a3a3a;
  background: #1a1a1a;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.campus-card__visual {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.campus-card__body {
  padding: var(--space-md);
}

.campus-card__name {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 700;
  font-style: italic;
  margin-bottom: 0.3rem;
}

.campus-card__status {
  font-size: var(--fs-caption);
  color: var(--accent-gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.campus-card__status-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
  animation: blink 2s infinite;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  text-align: center;
  padding: var(--space-3xl) var(--space-md);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.final-cta__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
  position: relative;
}

.final-cta__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  position: relative;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #000000;
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-xl) 0 var(--space-lg);
  color: var(--text-secondary);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.footer__brand {
  max-width: 300px;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.footer__brand-desc {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.6;
}

.footer__links-group {
  display: flex;
  gap: var(--space-xl);
}

.footer__col-title {
  font-size: var(--fs-caption);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.footer__col a {
  display: block;
  font-size: var(--fs-small);
  color: var(--text-muted);
  padding: 0.25rem 0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: var(--text-primary);
  font-weight: 500;
}

.footer__bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer__copy {
  font-size: var(--fs-caption);
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  flex-wrap: wrap;
}

.footer__legal a {
  font-size: var(--fs-caption);
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 1px;
}

.footer__legal a:hover {
  color: #d4af37;
  border-bottom-color: #d4af37;
}

/* ---------- PAGE HERO (Inner pages) ---------- */
.page-hero {
  padding: calc(var(--nav-height) + var(--space-3xl)) var(--space-md) var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(192, 192, 192, 0.05) 0%, transparent 70%);
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
  position: relative;
}

.page-hero__desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}

/* ---------- FORM (Apply page) ---------- */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  padding: var(--space-xl);
  max-width: 640px;
  margin: 0 auto;
  transition: all var(--transition-base);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-secondary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--btn-radius);
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent-silver);
  box-shadow: 0 0 0 3px rgba(192, 192, 192, 0.08);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-color: #111;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23A0A0A0' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-select option {
  background: #111;
  color: #fff;
  padding: 0.5rem;
}

/* ---------- PROGRAMME DETAIL (Programmes Page) ---------- */
.programme-detail {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  overflow: hidden;
  margin-bottom: var(--space-lg);
  transition: all var(--transition-base);
}

.programme-detail__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
}

.programme-detail__visual {
  position: relative;
  overflow: hidden;
}

.programme-detail__info {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.programme-detail__name {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 700;
  font-style: italic;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.01em;
}

.programme-detail__desc {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.programme-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.programme-detail__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.programme-detail__meta-label {
  font-size: var(--fs-caption);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.programme-detail__meta-value {
  font-size: var(--fs-small);
  font-weight: 600;
}

/* Module list */
.programme-detail__modules {
  padding: var(--space-lg) var(--space-xl);
  border-top: 1px solid var(--border-subtle);
}

.programme-detail__modules-title {
  font-size: var(--fs-body);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.module-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xs);
}

.module-item {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.module-item::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--accent-silver);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- CURRICULUM DETAIL ---------- */
.curriculum-pillar {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border-subtle);
}

.curriculum-pillar:last-child {
  border-bottom: none;
}

.curriculum-pillar__header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.curriculum-pillar__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(192, 192, 192, 0.06);
  border: 1px solid var(--border-subtle);
}

.curriculum-pillar__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-silver);
  fill: none;
  stroke-width: 1.5;
}

.curriculum-pillar__name {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
}

.curriculum-pillar__desc {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: 1.7;
}

.curriculum-pillar__modules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.curriculum-module {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  padding: var(--space-md);
  transition: all var(--transition-base);
}

.curriculum-module:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.curriculum-module__title {
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.curriculum-module__desc {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- VISUAL PLACEHOLDERS ---------- */
.visual-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.visual-placeholder--founder {
  background: linear-gradient(145deg, #0d0d0d, #1a1a1a, #0d0d0d);
}

.visual-placeholder--ai {
  background: linear-gradient(145deg, #0a0f12, #121a20, #0a0f12);
}

.visual-placeholder--sales {
  background: linear-gradient(145deg, #120d0a, #1a1510, #120d0a);
}

.visual-placeholder--youth {
  background: linear-gradient(145deg, #0a0d12, #10141a, #0a0d12);
}

.visual-placeholder--campus {
  background: linear-gradient(145deg, #0d100a, #141a10, #0d100a);
}

.visual-placeholder__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(192, 192, 192, 0.3) 0px, transparent 50px),
    radial-gradient(circle at 80% 70%, rgba(192, 192, 192, 0.2) 0px, transparent 40px),
    radial-gradient(circle at 50% 50%, rgba(192, 192, 192, 0.15) 0px, transparent 60px);
}

.visual-placeholder__label {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  font-size: var(--fs-caption);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* ---------- FOUNDER PAGE ---------- */

/* Founder Profile */
.founder-profile {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: center;
}

.founder-profile__visual {
  position: relative;
}

.founder-profile__image-wrap {
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  aspect-ratio: 3 / 4;
}

.founder-profile__image {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.founder-profile__name-badge {
  position: absolute;
  bottom: 20px;
  right: -15px;
  z-index: 2;
}

.founder-profile__monogram {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-gold), #E8C964);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: #000;
  box-shadow: 0 0 35px rgba(201, 168, 76, 0.3);
  border: 3px solid var(--bg-primary);
}

.founder-profile__info {
  padding: var(--space-md) 0;
}

.founder-profile__info .section__label {
  text-align: left;
}

.founder-profile__info .section__label::after {
  margin: 0.75rem 0 0;
}

.founder-profile__name {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}

.founder-profile__legal-name {
  font-size: var(--fs-caption);
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-sm);
}

.founder-profile__legal-name strong {
  color: var(--accent-silver);
  font-weight: 600;
}

.founder-profile__role {
  font-size: var(--fs-small);
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: var(--space-md);
  letter-spacing: 0.5px;
}

.founder-profile__bio {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.founder-profile__bio strong {
  color: var(--text-primary);
  font-weight: 600;
}

.founder-profile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.founder-tag {
  font-size: var(--fs-caption);
  padding: 0.4rem 0.85rem;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 6px;
  color: var(--accent-gold);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Founder Vision */
.founder-vision__quote {
  margin-bottom: var(--space-xl);
}

.founder-blockquote {
  background: #111;
  border-left: 3px solid var(--accent-gold);
  padding: var(--space-lg) var(--space-xl);
  border-radius: 0 var(--card-radius) var(--card-radius) 0;
  position: relative;
}

.founder-blockquote p {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-style: italic;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: var(--space-sm);
}

.founder-blockquote cite {
  font-size: var(--fs-small);
  color: #999;
  font-style: normal;
  font-weight: 600;
}

.founder-vision__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.vision-card {
  background: #f8f8f8;
  border: 1px solid #e5e5e5;
  border-radius: var(--card-radius);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.vision-card:hover {
  border-color: #ccc;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.vision-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid #e0e0e0;
}

.vision-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: #333;
  fill: none;
  stroke-width: 1.5;
}

.vision-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: 700;
  font-style: italic;
  color: #111;
  margin-bottom: var(--space-xs);
}

.vision-card__desc {
  font-size: var(--fs-small);
  color: #555;
  line-height: 1.65;
}

/* Philosophy Cards */
.philosophy-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.philosophy-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: var(--glow-silver);
  transform: translateY(-4px);
}

.philosophy-card__number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.15), rgba(192, 192, 192, 0.03));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.03em;
}

.philosophy-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: 700;
  font-style: italic;
  margin-bottom: var(--space-xs);
}

.philosophy-card__desc {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Timeline */
.founder-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: var(--space-xl);
}

.founder-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ddd;
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-xl);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item__marker {
  position: absolute;
  left: calc(-1 * var(--space-xl) + 3px);
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e0e0e0;
  border: 3px solid #fff;
  z-index: 1;
}

.timeline-item--active .timeline-item__marker {
  background: linear-gradient(135deg, var(--accent-gold), #E8C964);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.4);
}

.timeline-item__year {
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: #888;
  margin-bottom: 0.25rem;
}

.timeline-item--active .timeline-item__year {
  color: var(--accent-gold);
}

.timeline-item__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 700;
  font-style: italic;
  color: #111;
  margin-bottom: var(--space-xs);
}

.timeline-item__desc {
  font-size: var(--fs-small);
  color: #555;
  line-height: 1.7;
}

/* Founder Message */
.founder-message {
  text-align: center;
  padding: var(--space-xl) 0;
}

.founder-message__icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--accent-gold), #E8C964);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
}

.founder-message__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 700;
  font-style: italic;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.01em;
}

.founder-message__text {
  text-align: left;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.founder-message__text p {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.founder-message__text p:last-child {
  margin-bottom: 0;
}

.founder-message__text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ---------- ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

.fade-in-delay-4 {
  transition-delay: 0.4s;
}

.fade-in-delay-5 {
  transition-delay: 0.5s;
}

/* ---------- DIVIDER ---------- */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border-subtle);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .programme-detail__header {
    grid-template-columns: 1fr;
  }

  .programme-detail__visual {
    min-height: 250px;
  }

  .founder-profile {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .founder-vision__content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-lg);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    z-index: 999;
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1.2rem;
  }

  .nav__cta {
    margin-left: 0;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav__hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .nav__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .grid--2,
  .grid--3,
  .grid--4,
  .grid--5 {
    grid-template-columns: 1fr;
  }

  .execution-grid {
    grid-template-columns: 1fr;
  }

  .community-features {
    grid-template-columns: 1fr;
  }

  .campus-grid {
    grid-template-columns: 1fr;
  }

  .badge-track {
    flex-direction: column;
  }

  .badge-item::after {
    top: auto;
    bottom: 0;
    right: 50%;
    width: 1px;
    height: 20px;
    transform: translateY(100%);
  }

  .footer__inner {
    flex-direction: column;
  }

  .footer__links-group {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .hero__title {
    font-size: clamp(2.4rem, 7vw, 4rem);
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .form-card {
    padding: var(--space-md);
  }

  .founder-profile {
    grid-template-columns: 1fr;
  }

  .founder-profile__image {
    min-height: 300px;
  }

  .founder-vision__content {
    grid-template-columns: 1fr;
  }

  .founder-timeline {
    padding-left: var(--space-lg);
  }

  .founder-timeline::before {
    left: 7px;
  }

  .timeline-item__marker {
    left: calc(-1 * var(--space-lg) + 0px);
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .programme-card__details {
    flex-direction: column;
  }
}

/* ---------- SCROLL REVEAL ANIMATIONS ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Base state: hidden before scroll */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

/* Revealed state */
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for sequential reveals */
.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

.fade-in-delay-4 {
  transition-delay: 0.4s;
}

.fade-in-delay-5 {
  transition-delay: 0.5s;
}

.fade-in-delay-6 {
  transition-delay: 0.6s;
}

/* Hero entrance animation (plays on page load) */
.hero__content {
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero__badge {
  animation: fadeInScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero__title {
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

.hero__subtitle {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}

.hero__actions {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
}

.hero__scroll-indicator {
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.4s both;
}

/* Card hover micro-animations */
.programme-card,
.philosophy-card,
.vision-card,
.form-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease;
}

.programme-card:hover,
.philosophy-card:hover,
.vision-card:hover {
  transform: translateY(-4px);
}

/* Section label slide-in */
.section__label {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__content,
  .hero__badge,
  .hero__title,
  .hero__subtitle,
  .hero__actions,
  .hero__scroll-indicator {
    animation: none;
  }
}