:root {
  color-scheme: light;
  --navy: #07152f;
  --navy-2: #0d2447;
  --cyan: #12c7f3;
  --magenta: #d33fff;
  --gold: #d7a83f;
  --ink: #0c1830;
  --muted: #647085;
  --line: #dce3ef;
  --soft: #f5f7fb;
  --white: #ffffff;
  --shadow: 0 20px 48px rgba(7, 21, 47, 0.14);
}

.dashboard-body .button-ghost-dark {
  color: var(--navy);
  background: rgba(7, 21, 47, 0.04);
  border: 1px solid rgba(7, 21, 47, 0.12);
}

/* Dashboard */

.dashboard-body {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(18, 199, 243, 0.16), transparent 32vw),
    radial-gradient(circle at top right, rgba(211, 63, 255, 0.1), transparent 30vw),
    linear-gradient(180deg, #f7f9fd 0%, #eef3fa 100%);
}

.dashboard-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 42px;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(7, 21, 47, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 21, 47, 0.09);
  backdrop-filter: blur(18px);
}

.dashboard-brand {
  width: min(320px, 52vw);
}

.dashboard-brand img {
  width: 100%;
  height: 38px;
  object-fit: contain;
  object-position: left center;
}

.dashboard-topbar__meta {
  display: grid;
  justify-items: end;
  gap: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.dashboard-topbar__meta strong {
  color: var(--navy);
  font-size: 13px;
}

.dashboard-auth,
.dashboard-view {
  margin-top: 22px;
}

.dashboard-auth {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
  gap: 28px;
  min-height: calc(100vh - 160px);
  padding: clamp(28px, 6vw, 72px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 252, 255, 0.82)),
    url("assets/curated/parent-trust-guided-classroom.webp") center/cover;
  background-blend-mode: screen;
  border: 1px solid rgba(7, 21, 47, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.dashboard-auth h1,
.dashboard-heading h2 {
  margin: 8px 0 12px;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}

.dashboard-auth p {
  max-width: 680px;
  margin: 0;
  color: #40506a;
}

.dashboard-auth-card,
.dashboard-panel,
.dashboard-metric {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(7, 21, 47, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 21, 47, 0.08);
}

.dashboard-auth-card {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.dashboard-auth-card label,
.dashboard-toolbar label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.dashboard-auth-row {
  display: grid;
  gap: 10px;
}

.dashboard-auth input,
.dashboard-toolbar input,
.dashboard-toolbar select {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  background: var(--white);
  border: 1px solid rgba(7, 21, 47, 0.14);
  border-radius: 8px;
  outline: none;
}

.dashboard-auth input:focus,
.dashboard-toolbar input:focus,
.dashboard-toolbar select:focus {
  border-color: rgba(18, 199, 243, 0.74);
  box-shadow: 0 0 0 3px rgba(18, 199, 243, 0.16);
}

.dashboard-help {
  color: var(--muted);
  font-size: 13px;
}

.dashboard-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.dashboard-heading h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.dashboard-actions,
.dashboard-toolbar,
.dashboard-breakdown {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dashboard-body .button-secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(7, 21, 47, 0.14);
  box-shadow: 0 12px 28px rgba(7, 21, 47, 0.08);
}

.button-ghost-dark {
  color: var(--navy);
  background: rgba(7, 21, 47, 0.04);
  border: 1px solid rgba(7, 21, 47, 0.12);
}

.dashboard-alert {
  min-height: 24px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.dashboard-alert[data-type="success"] {
  color: #087f5b;
}

.dashboard-alert[data-type="error"] {
  color: #b42318;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.dashboard-metric {
  display: grid;
  gap: 6px;
  min-height: 132px;
  padding: 20px;
}

.dashboard-metric span,
.dashboard-metric small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.dashboard-metric strong {
  color: var(--navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.dashboard-panel {
  margin-top: 14px;
  padding: 18px;
}

.dashboard-toolbar {
  align-items: end;
}

.dashboard-toolbar label:first-child {
  flex: 1 1 360px;
}

.dashboard-toolbar label:not(:first-child) {
  flex: 1 1 180px;
}

.dashboard-breakdown {
  margin-top: 14px;
}

.dashboard-chip,
.dashboard-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  color: #0b3b65;
  font-size: 12px;
  font-weight: 800;
  background: rgba(18, 199, 243, 0.12);
  border: 1px solid rgba(18, 199, 243, 0.28);
  border-radius: 999px;
}

.dashboard-chip--muted {
  color: var(--muted);
  background: rgba(7, 21, 47, 0.04);
  border-color: rgba(7, 21, 47, 0.1);
}

.dashboard-status {
  color: #5f3f00;
  background: rgba(215, 168, 63, 0.16);
  border-color: rgba(215, 168, 63, 0.32);
}

.dashboard-table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.dashboard-table-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
}

.dashboard-table-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.dashboard-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(7, 21, 47, 0.08);
  border-radius: 8px;
}

.dashboard-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  background: var(--white);
}

.dashboard-table th,
.dashboard-table td {
  padding: 13px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(7, 21, 47, 0.08);
}

.dashboard-table th {
  color: #42526b;
  font-size: 12px;
  font-weight: 900;
  background: #f6f8fc;
}

.dashboard-table td {
  color: #24324a;
  font-size: 13px;
  line-height: 1.55;
}

.dashboard-table td strong,
.dashboard-table td span {
  display: block;
}

.dashboard-table td strong {
  color: var(--navy);
  font-size: 14px;
}

.dashboard-table td span {
  color: var(--muted);
}

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

@media (max-width: 860px) {
  .dashboard-shell {
    width: min(100% - 22px, 1180px);
    padding-top: 12px;
  }

  .dashboard-topbar,
  .dashboard-heading {
    align-items: start;
    flex-direction: column;
  }

  .dashboard-topbar__meta {
    justify-items: start;
  }

  .dashboard-auth {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 24px;
  }

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

@media (max-width: 560px) {
  .dashboard-auth h1,
  .dashboard-heading h2 {
    font-size: 30px;
  }

  .dashboard-actions {
    width: 100%;
  }

  .dashboard-actions .button {
    width: 100%;
  }

  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .dashboard-metric {
    min-height: 0;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Noto Sans Thai", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px 44px;
  color: var(--navy);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 252, 255, 0.9) 54%, rgba(252, 246, 255, 0.9) 100%);
  border-bottom: 1px solid rgba(22, 55, 103, 0.12);
  box-shadow: 0 12px 32px rgba(7, 21, 47, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: clamp(210px, 25vw, 360px);
  min-width: 0;
}

.brand-logo {
  width: 100%;
  height: 40px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(7, 21, 47, 0.66);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a,
.header-cta {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: #0b52c8;
}

.header-cta {
  padding: 10px 16px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, #008ee8 0%, var(--cyan) 52%, #f238b9 100%);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(18, 199, 243, 0.22);
}

.header-cta:hover {
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(242, 56, 185, 0.2);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(7, 21, 47, 0.18);
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(7, 21, 47, 0.08);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--navy);
  border-radius: 999px;
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 8px);
  right: 18px;
  display: none;
  width: min(260px, calc(100vw - 36px));
  padding: 10px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(7, 21, 47, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(7, 21, 47, 0.18);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 12px 14px;
  color: rgba(7, 21, 47, 0.76);
  font-weight: 800;
  border-radius: 8px;
}

.mobile-nav a:hover {
  color: #0b52c8;
  background: rgba(18, 199, 243, 0.12);
}

/* ── Hero: Full-bleed Immersive ── */

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

@keyframes heroPulse {
  0%, 100% { opacity: 0.25; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.15); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(10px); opacity: 1; }
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(7, 21, 47, 0.96) 0%,
      rgba(7, 21, 47, 0.88) 28%,
      rgba(7, 21, 47, 0.55) 48%,
      rgba(7, 21, 47, 0.2) 62%,
      rgba(7, 21, 47, 0.05) 78%,
      transparent 100%),
    linear-gradient(180deg,
      rgba(7, 21, 47, 0.15) 0%,
      transparent 20%,
      transparent 80%,
      rgba(7, 21, 47, 0.25) 100%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  background-image: radial-gradient(circle, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 180px;
  content: "";
  background: linear-gradient(180deg, transparent, var(--white));
  z-index: 3;
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(120px);
  animation: heroPulse 6s ease-in-out infinite;
  z-index: 2;
}

.hero-glow-cyan {
  width: 500px;
  height: 500px;
  top: 5%;
  left: 20%;
  background: var(--cyan);
  opacity: 0.2;
}

.hero-glow-magenta {
  width: 400px;
  height: 400px;
  right: 10%;
  bottom: 15%;
  background: var(--magenta);
  opacity: 0.15;
  animation-delay: 2s;
}

.hero-glow-gold {
  width: 300px;
  height: 300px;
  left: 40%;
  bottom: 5%;
  background: var(--gold);
  opacity: 0.1;
  animation-delay: 4s;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 680px;
  padding: 160px 56px 180px;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 28px;
  padding: 10px 22px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  animation: heroFadeUp 0.8s ease both;
}

h1 {
  margin-bottom: 20px;
  font-size: 82px;
  line-height: 0.92;
  letter-spacing: -0.01em;
  animation: heroFadeUp 0.8s ease 0.15s both;
}

h1 span {
  display: block;
  width: fit-content;
  margin-top: 4px;
  color: transparent;
  font-size: 96px;
  background: linear-gradient(135deg, #aaf4ff 0%, var(--cyan) 35%, #57b7ff 60%, var(--magenta) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-subtitle {
  max-width: 560px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.4;
  animation: heroFadeUp 0.8s ease 0.3s both;
}

.hero-copy {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  line-height: 1.8;
  animation: heroFadeUp 0.8s ease 0.4s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: heroFadeUp 0.8s ease 0.5s both;
}

.button-lg {
  min-height: 54px;
  padding: 14px 28px;
  font-size: 16px;
}

.hero .button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero .button-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.36);
}

.hero .button-ghost {
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
  border: 1px solid transparent;
}

.hero .button-ghost:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  animation: heroFadeUp 0.8s ease 0.6s both;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.proof-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.proof-dot--cyan {
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(18, 199, 243, 0.7);
}

.proof-dot--magenta {
  background: var(--magenta);
  box-shadow: 0 0 10px rgba(211, 63, 255, 0.7);
}

.proof-dot--gold {
  background: var(--gold);
  box-shadow: 0 0 10px rgba(215, 168, 63, 0.7);
}

/* Scroll hint */

.hero-scroll-hint {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-hint span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  position: relative;
}

.hero-scroll-hint span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

/* ── Remove old split-screen classes ── */

.hero-container,
.hero-visual,
.hero-image-frame,
.hero-visual-note {
  display: contents;
}

/* ── Global typography & components ── */

.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 36px;
  line-height: 1.22;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.32;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.button-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--cyan), #8de9ff);
  box-shadow: 0 16px 38px rgba(18, 199, 243, 0.2);
}

.button-primary:hover {
  box-shadow: 0 20px 48px rgba(18, 199, 243, 0.32);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.final-cta .interest-form {
  display: grid;
  gap: 16px;
}

.section {
  padding: 94px 56px;
}

.section-origin {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fe 100%);
}

.section-grid,
.partner-panel,
.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 52px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.section-lead,
.section-heading p,
.trust-layout > div > p,
.final-copy p {
  max-width: 720px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.origin-visual {
  display: grid;
  gap: 16px;
}

.origin-visual > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(7, 21, 47, 0.16);
}

.timeline-item,
.partner-card,
.trust-grid article,
.interest-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 8px 18px;
  padding: 22px;
}

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

.origin-visual .timeline-item {
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 18px;
}

.timeline-item span {
  grid-row: span 2;
  color: var(--cyan);
  font-size: 22px;
  font-weight: 800;
}

.origin-visual .timeline-item span {
  grid-row: auto;
}

.timeline-item strong {
  font-size: 18px;
}

.timeline-item p {
  margin: 0;
}

.section-student,
.outcomes {
  background: var(--soft);
}

#pathways {
  background:
    radial-gradient(circle at 12% 12%, rgba(18, 199, 243, 0.12), transparent 26%),
    radial-gradient(circle at 88% 20%, rgba(211, 63, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 72%, #f9f1ff 100%);
}

#pathways .section-heading h2 {
  width: fit-content;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  color: transparent;
  background: linear-gradient(90deg, #0645ad 0%, #2e63d7 32%, var(--magenta) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

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

.interest-grid,
.pathway-grid,
.program-grid {
  display: grid;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

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

.interest-grid article,
.pathway-card,
.program-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(7, 21, 47, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.interest-grid article:hover,
.pathway-card:hover,
.program-card:hover {
  border-color: rgba(18, 199, 243, 0.36);
  box-shadow: 0 24px 58px rgba(7, 21, 47, 0.14);
  transform: translateY(-4px);
}

.interest-grid img,
.pathway-card img,
.program-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.interest-grid article > h3,
.interest-grid article > p,
.program-card > h3,
.program-card > p,
.program-card > span {
  padding-right: 22px;
  padding-left: 22px;
}

.interest-grid article > h3,
.program-card > h3 {
  margin-top: 22px;
}

.interest-grid article > p,
.program-card > p {
  margin-bottom: 24px;
}

.partnership {
  background: linear-gradient(135deg, #ffffff 0%, #f7f9fe 100%);
}

.partner-panel {
  padding: 36px;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1.18fr);
  background:
    radial-gradient(circle at 80% 12%, rgba(0, 174, 239, 0.13), transparent 30%),
    radial-gradient(circle at 94% 92%, rgba(215, 168, 63, 0.18), transparent 28%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.partner-card {
  padding: 28px;
  display: grid;
  gap: 18px;
}

.partner-logo {
  width: min(320px, 100%);
}

.partner-proof {
  display: grid;
  gap: 10px;
}

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

.partner-proof-main,
.partner-proof-grid img {
  overflow: hidden;
  border: 1px solid rgba(19, 45, 84, 0.12);
  border-radius: 8px;
  background: #eef5ff;
}

.partner-proof-main {
  aspect-ratio: 16 / 8.2;
}

.partner-proof-main img {
  object-position: center 48%;
}

.partner-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.partner-proof-grid img {
  aspect-ratio: 16 / 9;
}

.partner-proof-grid img:first-child {
  object-position: center 48%;
}

.partner-proof-grid img:last-child {
  object-position: center 58%;
}

.partner-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.partner-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.partner-card li {
  padding-left: 20px;
  color: var(--muted);
  border-left: 3px solid var(--gold);
}

.pathway-card {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  min-height: 190px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.92));
}

.pathway-media {
  position: relative;
  min-height: 190px;
  padding: 16px;
  overflow: hidden;
}

.pathway-media::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.82;
}

.pathway-ai .pathway-media::before {
  background: linear-gradient(135deg, #006ddf, #15d9ff);
}

.pathway-entrepreneur .pathway-media::before {
  background: linear-gradient(135deg, #ff4ab6, #ffd4ec);
}

.pathway-global .pathway-media::before {
  background: linear-gradient(135deg, #4d38e8, #b898ff);
}

.pathway-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 158px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(7, 21, 47, 0.22);
}

.pathway-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.pathway-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--magenta);
  font-weight: 800;
}

.pathway-card h3 {
  color: #11349b;
}

.pathway-card p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.64;
}

.pathway-card a {
  width: fit-content;
  color: #2157d4;
  font-size: 14px;
  font-weight: 800;
}

.pathway-entrepreneur h3,
.pathway-entrepreneur span,
.pathway-entrepreneur a {
  color: #d72c9d;
}

.programs {
  padding-top: 112px;
  padding-bottom: 116px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(18, 199, 243, 0.18), transparent 26%),
    radial-gradient(circle at 16% 18%, rgba(50, 72, 190, 0.36), transparent 30%),
    radial-gradient(circle at 84% 14%, rgba(211, 63, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #050c2b 0%, #07152f 44%, #061126 100%);
}

.programs-heading {
  max-width: 1120px;
  margin-bottom: 38px;
}

.programs .section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.34em;
}

.programs .section-kicker::before,
.programs .section-kicker::after {
  flex: 0 0 72px;
  height: 1px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(18, 199, 243, 0.7), transparent);
}

.programs .section-heading h2 {
  max-width: 1050px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(38px, 4.8vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.programs .section-heading p {
  max-width: 1000px;
  margin: 0 auto;
  color: rgba(232, 239, 255, 0.82);
  font-size: clamp(16px, 1.55vw, 18px);
  line-height: 1.75;
}

.programs .program-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  max-width: 1280px;
  margin-top: 42px;
}

.programs .program-card {
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(180deg, rgba(8, 22, 52, 0.96), rgba(8, 24, 58, 0.98));
  border: 1px solid rgba(147, 168, 228, 0.34);
  border-radius: 18px;
  box-shadow: 0 22px 52px rgba(2, 7, 18, 0.32);
}

.programs .program-card:nth-child(4),
.programs .program-card:nth-child(5) {
  grid-column: span 3;
}

.programs .program-card-media {
  position: relative;
  isolation: isolate;
}

.programs .program-card-media img {
  width: 100%;
  height: 254px;
  object-fit: cover;
  object-position: center;
}

.programs .program-card-media::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 92px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(6, 14, 35, 0.12));
  pointer-events: none;
}

.programs .program-icon {
  position: absolute;
  left: 16px;
  bottom: -28px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.programs .program-icon svg {
  width: 26px;
  height: 26px;
}

.programs .program-icon-university {
  background: linear-gradient(135deg, #2ea0ff, #5dd7ff);
}

.programs .program-icon-ai {
  background: linear-gradient(135deg, #486cf5, #8db3ff);
}

.programs .program-icon-entrepreneur {
  background: linear-gradient(135deg, #b264ff, #f188dd);
}

.programs .program-icon-creative {
  background: linear-gradient(135deg, #14d2c1, #8ef0de);
}

.programs .program-icon-global {
  background: linear-gradient(135deg, #8f74ff, #c8a8ff);
}

.programs .program-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  padding: 36px 22px 24px;
  background: linear-gradient(180deg, rgba(10, 26, 58, 0.98), rgba(7, 23, 52, 0.98));
}

.programs .program-card h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(20px, 1.45vw, 24px);
  line-height: 1.22;
}

.programs .program-card p {
  margin: 0;
  color: rgba(232, 239, 255, 0.82);
  font-size: 15px;
  line-height: 1.68;
}

.programs .program-card-body > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--cyan);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.programs .program-card-body > span svg {
  width: 18px;
  height: 18px;
  flex: none;
}

.programs .program-card:hover {
  border-color: rgba(18, 199, 243, 0.48);
  box-shadow: 0 26px 60px rgba(2, 7, 18, 0.42);
  transform: translateY(-4px);
}

.programs .program-card.is-active {
  border-color: rgba(18, 199, 243, 0.82);
  box-shadow: 0 26px 60px rgba(18, 199, 243, 0.12);
}

.program-card:focus-visible,
.gallery-tabs button:focus-visible {
  outline: 3px solid rgba(18, 199, 243, 0.72);
  outline-offset: 4px;
}

.program-gallery-section {
  background:
    radial-gradient(circle at 9% 0%, rgba(18, 199, 243, 0.08), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(211, 63, 255, 0.06), transparent 20%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.gallery-shell {
  max-width: 1188px;
  margin: 0 auto;
}

.gallery-copy {
  max-width: 1060px;
  margin-bottom: 22px;
}

.gallery-copy .section-kicker {
  color: #c79200;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.gallery-copy h2 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: clamp(38px, 4.4vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.gallery-copy > p {
  max-width: 1030px;
  color: #667084;
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.68;
}

.gallery-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.gallery-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 11px 16px 11px 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid #d6dfed;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(7, 21, 47, 0.06);
}

.gallery-highlights svg {
  flex: none;
  width: 24px;
  height: 24px;
  color: #2e58c7;
}

.gallery-highlights b {
  font-size: 16px;
  font-weight: 800;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  margin-bottom: 12px;
}

.gallery-tabs button {
  min-height: 42px;
  padding: 9px 18px;
  color: #1f2d4d;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  background: var(--white);
  border: 1px solid #d8e1ef;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(7, 21, 47, 0.04);
  cursor: pointer;
}

.gallery-tabs button.is-active {
  color: var(--white);
  background: linear-gradient(135deg, #006ddf, var(--cyan));
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(18, 199, 243, 0.18);
}

.gallery-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 14px;
  margin-bottom: 18px;
  color: #5a6477;
  font-size: 13px;
  font-weight: 700;
  background: #f3f7fd;
  border: 1px solid #d9e3f2;
  border-radius: 999px;
}

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

.gallery-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #d9e2ef;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(7, 21, 47, 0.06);
}

.gallery-item img {
  width: 100%;
  height: 226px;
  object-fit: cover;
  object-position: center;
}

.gallery-item span {
  display: block;
  padding: 11px 14px 13px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.outcomes {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 12%, rgba(18, 199, 243, 0.13), transparent 28%),
    radial-gradient(circle at 92% 14%, rgba(211, 63, 255, 0.09), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.outcomes::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -2;
  height: 34%;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.18), rgba(248, 251, 255, 0.92)),
    url("assets/curated/student-creative-project-board.webp") center 44% / cover no-repeat;
  opacity: 0.28;
}

.outcomes::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 3% 36%, rgba(18, 199, 243, 0.18) 0 2px, transparent 3px) 0 0 / 22px 22px,
    linear-gradient(115deg, transparent 0 54%, rgba(255, 255, 255, 0.48) 54% 100%);
  opacity: 0.55;
  pointer-events: none;
}

.outcome-lead {
  max-width: 510px;
  margin-left: auto;
}

.outcome-lead h2 {
  position: relative;
  margin-bottom: 24px;
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: 1.08;
}

.outcome-lead h2::after {
  content: "";
  display: block;
  width: 168px;
  height: 6px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), #7f6bff 48%, var(--magenta));
}

.outcome-lead > p {
  margin: 0;
  color: #34425d;
  font-size: 18px;
  line-height: 1.78;
}

.outcome-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.outcome-tags span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 10px 18px;
  color: var(--navy);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 199, 243, 0.22);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(7, 21, 47, 0.06);
  backdrop-filter: blur(10px);
}

.outcome-tags svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--accent, var(--cyan));
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.outcome-tags span:nth-child(2) {
  --accent: #ef2f8e;
}

.outcome-tags span:nth-child(3) {
  --accent: #13c4b8;
}

.outcome-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.outcome-card {
  --accent: var(--cyan);
  --accent-soft: rgba(18, 199, 243, 0.12);
  position: relative;
  min-height: 278px;
  padding: 30px 28px 28px;
  background:
    radial-gradient(circle at 24% 18%, var(--accent-soft), transparent 30%),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(170, 188, 215, 0.58);
  border-radius: 8px;
  box-shadow: 0 24px 52px rgba(7, 21, 47, 0.09);
  backdrop-filter: blur(12px);
}

.outcome-check {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--accent) 34%, transparent);
}

.outcome-check::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 7px;
  width: 10px;
  height: 6px;
  border-left: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  transform: rotate(-45deg);
}

.outcome-icon {
  display: inline-grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin-bottom: 18px;
  color: var(--accent);
  background:
    radial-gradient(circle at 36% 30%, rgba(255, 255, 255, 0.88), transparent 34%),
    var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, white);
  border-radius: 999px;
  box-shadow:
    inset 0 -12px 24px rgba(255, 255, 255, 0.42),
    0 16px 28px color-mix(in srgb, var(--accent) 18%, transparent);
}

.outcome-icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.outcome-card h3 {
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 16px;
  color: var(--navy);
  font-size: clamp(21px, 1.7vw, 28px);
  line-height: 1.18;
}

.outcome-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}

.outcome-card p {
  margin: 0;
  color: #34425d;
  font-size: 16px;
  line-height: 1.62;
}

.outcome-card-blue {
  --accent: #2588ee;
  --accent-soft: rgba(37, 136, 238, 0.13);
}

.outcome-card-violet {
  --accent: #8f62ee;
  --accent-soft: rgba(143, 98, 238, 0.14);
}

.outcome-card-pink {
  --accent: #ef2f8e;
  --accent-soft: rgba(239, 47, 142, 0.13);
}

.outcome-card-green {
  --accent: #19c85f;
  --accent-soft: rgba(25, 200, 95, 0.13);
}

.outcome-card-gold {
  --accent: #f0a800;
  --accent-soft: rgba(240, 168, 0, 0.14);
}

.outcome-card-teal {
  --accent: #14bfb8;
  --accent-soft: rgba(20, 191, 184, 0.14);
}

.upcoming-projects {
  position: relative;
  overflow: hidden;
  padding-top: 92px;
  padding-bottom: 104px;
  background:
    radial-gradient(circle at 14% 14%, rgba(49, 120, 255, 0.16), transparent 24%),
    radial-gradient(circle at 88% 16%, rgba(171, 95, 255, 0.14), transparent 26%),
    radial-gradient(circle at 50% 118%, rgba(28, 190, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, #edf4ff 100%);
}

.upcoming-projects::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(76, 118, 214, 0.11) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.45;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.58), transparent 88%);
}

.upcoming-projects-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.upcoming-projects-copy {
  grid-column: 1 / -1;
  align-self: center;
  max-width: 820px;
  margin: 0 auto 12px;
  padding: 0;
  text-align: center;
}

.upcoming-projects-copy .section-kicker {
  color: #2563eb;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.24em;
}

.upcoming-projects-copy h2 {
  max-width: 18ch;
  margin-right: auto;
  margin-left: auto;
  margin-top: 14px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.upcoming-projects-copy p {
  max-width: 42rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 18px;
  color: #55637f;
  font-size: 18px;
  line-height: 1.72;
}

.upcoming-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  grid-column: 1 / -1;
  margin-bottom: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(168, 186, 217, 0.58);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(7, 21, 47, 0.08);
  backdrop-filter: blur(16px);
}

.upcoming-timeline span {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 64px;
  padding: 12px 18px 12px 48px;
  color: #465875;
  font-size: 13px;
  line-height: 1.35;
}

.upcoming-timeline span::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 22px;
  width: 16px;
  height: 16px;
  border: 4px solid #eef4ff;
  border-radius: 50%;
  background: var(--accent, #2563eb);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.18);
}

.upcoming-timeline span + span {
  border-left: 1px solid rgba(168, 186, 217, 0.55);
}

.upcoming-timeline span:nth-child(2) {
  --accent: #d7a83f;
}

.upcoming-timeline span:nth-child(3) {
  --accent: #7a5cff;
}

.upcoming-timeline b {
  color: var(--navy);
  font-size: 15px;
}

.upcoming-tags {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.upcoming-tags span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 12px 14px;
  color: #10264d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(168, 186, 217, 0.7);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(7, 21, 47, 0.06);
  backdrop-filter: blur(12px);
}

.upcoming-tags svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--accent, #2563eb);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.upcoming-tags span:nth-child(2) {
  --accent: #ef4b8a;
}

.upcoming-tags span:nth-child(3) {
  --accent: #7a5cff;
}

.upcoming-tags span:nth-child(4) {
  --accent: #27bfa8;
}

.upcoming-card {
  --accent: #1d73e8;
  --accent-soft: rgba(29, 115, 232, 0.14);
  position: relative;
  display: grid;
  overflow: hidden;
  width: 100%;
  padding: 0;
  color: var(--navy);
  font: inherit;
  text-align: left;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(168, 186, 217, 0.62);
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(7, 21, 47, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.upcoming-card:hover {
  border-color: rgba(29, 115, 232, 0.34);
  box-shadow: 0 36px 80px rgba(7, 21, 47, 0.14);
  transform: translateY(-4px);
}

.upcoming-projects-layout > .upcoming-card-featured {
  grid-column: 1 / -1;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
}

.upcoming-projects-layout > .upcoming-card-secondary {
  grid-column: 1 / -1;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
}

.upcoming-card-media {
  position: relative;
}

.upcoming-card img {
  display: block;
  width: 100%;
  height: 248px;
  object-fit: cover;
}

.upcoming-card-featured img {
  height: 332px;
}

.upcoming-card-featured .upcoming-card-media,
.upcoming-card-secondary .upcoming-card-media {
  order: 2;
}

.upcoming-card-featured .upcoming-card-body,
.upcoming-card-secondary .upcoming-card-body {
  order: 1;
}

.upcoming-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 14px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, rgba(29, 115, 232, 0.96), rgba(122, 92, 255, 0.96));
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(29, 115, 232, 0.24);
}

.upcoming-card-body {
  display: grid;
  gap: 10px;
  padding: 20px 24px 26px;
  align-content: center;
}

.upcoming-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.upcoming-card h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.upcoming-card p {
  margin: 0;
  color: #50607b;
  font-size: 17px;
  line-height: 1.68;
}

.upcoming-card-tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 7px;
  color: #667794;
  font-size: 12px;
  font-weight: 800;
}

.upcoming-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
}

.upcoming-card-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.upcoming-card-arrow {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(29, 115, 232, 0.96), rgba(103, 91, 242, 0.96));
  border-radius: 50%;
  box-shadow: 0 16px 30px rgba(29, 115, 232, 0.22);
}

.upcoming-card-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.upcoming-card-blue {
  --accent: #1d73e8;
  --accent-soft: rgba(29, 115, 232, 0.16);
}

.upcoming-card-teal {
  --accent: #15b6a8;
  --accent-soft: rgba(21, 182, 168, 0.16);
}

.upcoming-card-violet {
  --accent: #7a5cff;
  --accent-soft: rgba(122, 92, 255, 0.16);
}

.program-detail-page {
  color: #10264d;
  background:
    radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 28%, #f7faff 100%);
}

.program-detail-page .site-header {
  position: sticky;
  top: 14px;
  width: min(1240px, calc(100% - 36px));
  min-height: 74px;
  margin: 16px auto 0;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(7, 21, 47, 0.1);
}

.detail-page-main {
  width: min(1240px, calc(100% - 36px));
  margin: 22px auto 52px;
}

.detail-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
  color: #6b7894;
  font-size: 13px;
  font-weight: 700;
}

.detail-crumbs a {
  color: #284a82;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  min-height: 390px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(168, 186, 217, 0.58);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(7, 21, 47, 0.08);
}

.detail-hero-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 42px 46px;
}

.detail-track {
  margin: 0;
  color: #d48500;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.detail-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.03;
}

.detail-subtitle {
  margin: 0;
  color: var(--navy);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  line-height: 1.22;
}

.detail-lead {
  margin: 0;
  color: #52617d;
  font-size: 16px;
  line-height: 1.7;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-meta span,
.detail-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  color: #173766;
  font-size: 13px;
  font-weight: 800;
  background: #f1f6ff;
  border: 1px solid rgba(168, 186, 217, 0.76);
  border-radius: 999px;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  font-weight: 900;
  border: 1px solid transparent;
  border-radius: 8px;
}

.detail-button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #06265c, #0b3d8f);
  box-shadow: 0 18px 34px rgba(7, 38, 92, 0.22);
}

.detail-button-secondary {
  color: #10264d;
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(168, 186, 217, 0.78);
}

.detail-hero-media {
  position: relative;
  min-height: 390px;
}

.detail-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-section {
  margin-top: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(168, 186, 217, 0.58);
  border-radius: 8px;
  box-shadow: 0 20px 58px rgba(7, 21, 47, 0.06);
}

.detail-section h2 {
  margin: 0 0 20px;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.2;
}

.detail-card-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 4), minmax(0, 1fr));
  gap: 14px;
}

.detail-card {
  display: grid;
  gap: 8px;
  min-height: 136px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(168, 186, 217, 0.58);
  border-radius: 8px;
}

.detail-card-marker {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--accent, #1d73e8);
  font-size: 19px;
  font-weight: 900;
  background: var(--accent-soft, rgba(29, 115, 232, 0.12));
  border-radius: 50%;
}

.detail-card strong {
  color: var(--navy);
  font-size: 17px;
  line-height: 1.25;
}

.detail-card p,
.detail-side-card p,
.detail-city-card p,
.detail-faq p {
  margin: 0;
  color: #53627e;
  font-size: 14px;
  line-height: 1.62;
}

.detail-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  margin-top: 18px;
}

.detail-side-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(168, 186, 217, 0.58);
  border-radius: 8px;
  box-shadow: 0 20px 58px rgba(7, 21, 47, 0.06);
}

.detail-side-card h2,
.detail-side-card h3 {
  margin: 0;
  color: var(--navy);
}

.detail-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.detail-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.detail-step {
  display: grid;
  gap: 8px;
  min-height: 126px;
  padding: 18px 14px;
  text-align: center;
  background: #fbfdff;
  border: 1px solid rgba(168, 186, 217, 0.58);
  border-radius: 8px;
}

.detail-step span {
  color: #d48500;
  font-weight: 900;
}

.detail-step strong {
  color: var(--navy);
  line-height: 1.24;
}

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

.detail-city-card,
.detail-gallery-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(168, 186, 217, 0.58);
  border-radius: 8px;
}

.detail-city-card img,
.detail-gallery-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.detail-city-card div,
.detail-gallery-card div {
  padding: 18px;
}

.detail-city-card h3,
.detail-gallery-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 22px;
}

.detail-fit {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: center;
}

.detail-fit img {
  width: 100%;
  border-radius: 8px;
}

.detail-check-list {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.detail-check-list li {
  position: relative;
  padding-left: 24px;
  color: #34466a;
  line-height: 1.55;
}

.detail-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 10px;
  height: 10px;
  background: #0b3d8f;
  border-radius: 50%;
}

.detail-faq {
  display: grid;
  gap: 10px;
}

.detail-faq details {
  padding: 15px 18px;
  background: #fbfdff;
  border: 1px solid rgba(168, 186, 217, 0.7);
  border-radius: 8px;
}

.detail-faq summary {
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.detail-cta {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 20px;
  padding: 24px 32px;
  background:
    radial-gradient(circle at 8% 40%, rgba(215, 168, 63, 0.22), transparent 28%),
    linear-gradient(90deg, #fff7ea, #ffffff 72%);
  border: 1px solid rgba(215, 168, 63, 0.24);
  border-radius: 8px;
}

.detail-cta img {
  width: 130px;
}

.detail-cta h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 28px;
}

.detail-cta p {
  margin: 0;
  color: #52617d;
  line-height: 1.65;
}

.global-page {
  --accent: #15b6a8;
  --accent-soft: rgba(21, 182, 168, 0.13);
}

.creative-page {
  --accent: #7a5cff;
  --accent-soft: rgba(122, 92, 255, 0.13);
}

.mock-program-page {
  --mock-navy: #09245b;
  --mock-text: #24416f;
  --mock-muted: #627495;
  --mock-line: rgba(157, 177, 210, 0.42);
  --mock-gold: #d78314;
  --mock-card: rgba(255, 255, 255, 0.96);
  --mock-shadow: 0 16px 44px rgba(15, 35, 75, 0.08);
  min-height: 100vh;
  color: var(--mock-text);
  background:
    radial-gradient(circle at 8% 4%, rgba(34, 120, 255, 0.08), transparent 26%),
    radial-gradient(circle at 92% 8%, rgba(238, 147, 58, 0.08), transparent 28%),
    linear-gradient(180deg, #f9fbff 0%, #ffffff 42%, #f7fbff 100%);
}

.mock-program-shell {
  width: min(1440px, calc(100% - 18px));
  margin: 6px auto 28px;
}

.mock-program-creative {
  margin-top: 2px;
}

.mock-crumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 12px 52px;
  color: #315281;
  font-size: 14px;
  font-weight: 700;
}

.mock-crumbs a {
  color: #315281;
}

.mock-hero,
.mock-panel,
.mock-cta {
  background: var(--mock-card);
  border: 1px solid var(--mock-line);
  border-radius: 8px;
  box-shadow: var(--mock-shadow);
}

.mock-hero {
  display: grid;
  grid-template-columns: minmax(450px, 0.78fr) minmax(620px, 1.22fr);
  min-height: 415px;
  overflow: hidden;
}

.mock-hero-creative {
  grid-template-columns: minmax(520px, 0.82fr) minmax(620px, 1.18fr);
}

.mock-hero-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 38px 54px;
}

.mock-track {
  margin: 0;
  color: var(--mock-gold);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.mock-hero h1 {
  max-width: 12.8ch;
  margin: 0;
  color: var(--mock-navy);
  font-size: clamp(42px, 4.5vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.mock-program-university .mock-hero h1 {
  max-width: 15ch;
  font-size: clamp(42px, 4vw, 58px);
}

.mock-subtitle {
  margin: 0;
  color: var(--mock-navy);
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: 900;
  line-height: 1.18;
}

.mock-lead {
  max-width: 560px;
  margin: 0;
  color: var(--mock-text);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.62;
}

.mock-meta-row,
.mock-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.mock-meta-row span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 18px;
  color: #09245b;
  font-size: 16px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(157, 177, 210, 0.58);
  border-radius: 12px;
}

.mock-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 28px;
  color: var(--mock-navy);
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  border: 1px solid rgba(157, 177, 210, 0.68);
  border-radius: 8px;
}

.mock-button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #08265f, #0b3a87);
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(8, 38, 95, 0.2);
}

.mock-button-secondary {
  background: rgba(255, 255, 255, 0.82);
}

.mock-download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 10px;
  background: linear-gradient(135deg, #f8fbff, #ffffff 62%, #fff8ed);
}

.mock-download-panel h2 {
  margin-bottom: 10px;
}

.mock-download-panel p {
  margin: 0;
  color: var(--mock-text);
  font-weight: 600;
}

.mock-download-row,
.mock-download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.mock-download-row {
  justify-content: flex-end;
}

.mock-download-actions .mock-button {
  min-height: 48px;
  padding: 12px 18px;
  font-size: 14px;
}

.mock-hero-image {
  min-height: 415px;
}

.mock-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mock-hero-university .mock-hero-image img {
  object-position: center;
}

.mock-hero-global .mock-hero-image img {
  object-position: center top;
}

.mock-panel {
  margin-top: 10px;
  padding: 20px 36px 24px;
}

.mock-panel h2 {
  margin: 0 0 16px;
  color: var(--mock-navy);
  font-size: 26px;
  line-height: 1.18;
}

.mock-five-grid,
.mock-four-grid,
.mock-three-grid,
.mock-two-mini-grid {
  display: grid;
  gap: 18px;
}

.mock-five-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

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

.mock-two-mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mock-info-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 126px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(157, 177, 210, 0.42);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(15, 35, 75, 0.05);
}

.mock-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--mock-accent, #1d73e8);
  font-size: 12px;
  font-weight: 900;
  background: var(--mock-accent-soft, rgba(29, 115, 232, 0.1));
  border: 1px solid rgba(157, 177, 210, 0.2);
  border-radius: 999px;
}

.mock-info-card h3,
.mock-city-card h3,
.mock-gallery-card h3,
.mock-fit-content h3 {
  margin: 0;
  color: var(--mock-navy);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.25;
}

.mock-info-card h3 {
  padding-right: 36px;
}

.mock-info-card p,
.mock-city-card p,
.mock-gallery-card p,
.mock-fit-content p,
.mock-fit-list,
.mock-faq-list p,
.mock-cta p {
  margin: 0;
  color: var(--mock-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.mock-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 10px;
}

.mock-global-middle {
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.92fr);
}

.mock-creative-middle {
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
}

.mock-two-column-bottom {
  grid-template-columns: minmax(0, 1.38fr) minmax(300px, 0.62fr);
}

.mock-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding-top: 8px;
}

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

.mock-timeline::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 30px;
  height: 2px;
  background: linear-gradient(90deg, rgba(10, 45, 110, 0.15), rgba(10, 45, 110, 0.68), rgba(10, 45, 110, 0.15));
}

.mock-timeline article {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.mock-timeline span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--mock-gold);
  font-size: 13px;
  font-weight: 900;
  background: #ffffff;
  border: 1px solid rgba(215, 131, 20, 0.42);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(215, 131, 20, 0.12);
}

.mock-timeline h3 {
  margin: 0;
  color: var(--mock-navy);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.18;
}

.mock-timeline p {
  max-width: 130px;
  margin: 0;
  color: var(--mock-text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

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

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

.mock-city-card,
.mock-gallery-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(157, 177, 210, 0.42);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(15, 35, 75, 0.05);
}

.mock-city-card img {
  display: block;
  width: 100%;
  height: 188px;
  object-fit: cover;
}

.mock-gallery-card img {
  display: block;
  width: 100%;
  height: 96px;
  object-fit: cover;
}

.mock-city-card div,
.mock-gallery-card {
  padding: 16px;
}

.mock-gallery-card img {
  margin: -16px -16px 12px;
  width: calc(100% + 32px);
}

.mock-city-card h3 span {
  display: block;
  margin-top: 2px;
  font-size: 18px;
}

.mock-fit-content {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  align-items: center;
}

.mock-fit-content-vertical {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: left;
}

.mock-fit-content img {
  width: 100%;
  max-width: 170px;
  border-radius: 8px;
}

.mock-fit-content-vertical img {
  max-width: 190px;
}

.mock-fit-content ul,
.mock-fit-list {
  display: grid;
  gap: 9px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.mock-fit-content li,
.mock-fit-list li {
  position: relative;
  padding-left: 24px;
  color: var(--mock-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.mock-fit-content li::before,
.mock-fit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  background: #0a3a86;
  border-radius: 50%;
}

.mock-faq-list {
  display: grid;
  gap: 9px;
}

.mock-faq-list details {
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid rgba(157, 177, 210, 0.58);
  border-radius: 8px;
}

.mock-faq-list summary {
  color: var(--mock-navy);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.mock-cta {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  margin-top: 10px;
  padding: 18px 56px;
  background: linear-gradient(90deg, #fff8ed, #ffffff 72%);
  border-color: rgba(223, 169, 84, 0.34);
}

.mock-cta img {
  width: 165px;
  max-height: 92px;
  object-fit: contain;
}

.mock-cta h2 {
  margin: 0 0 6px;
  color: var(--mock-navy);
  font-size: 30px;
  line-height: 1.15;
}

.mock-program-university {
  --mock-accent: #1d73e8;
  --mock-accent-soft: rgba(29, 115, 232, 0.1);
}

.mock-program-global {
  --mock-accent: #1f5f9c;
  --mock-accent-soft: rgba(31, 95, 156, 0.1);
}

.mock-program-creative {
  --mock-accent: #f08212;
  --mock-accent-soft: rgba(240, 130, 18, 0.11);
}

.mock-program-creative .mock-hero {
  min-height: 402px;
}

.mock-program-creative .mock-hero-image {
  min-height: 402px;
}

.mock-program-creative .mock-hero h1 {
  max-width: 11.5ch;
}

.mock-program-creative .mock-four-grid-tight {
  gap: 14px;
}

.mock-program-creative .mock-four-grid-tight .mock-info-card {
  min-height: 122px;
  padding: 15px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  max-width: none;
  padding: 94px 56px 104px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(32, 170, 255, 0.18), transparent 22%),
    radial-gradient(circle at 82% 12%, rgba(176, 95, 255, 0.2), transparent 22%),
    radial-gradient(circle at 68% 84%, rgba(44, 104, 255, 0.18), transparent 26%),
    linear-gradient(180deg, #05112a 0%, #071a3d 48%, #08102a 100%);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(120, 180, 255, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.38;
  pointer-events: none;
}

.final-cta-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

.final-cta-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  grid-template-areas:
    "copy art"
    "form form";
  gap: 28px;
  align-content: start;
}

.final-copy {
  grid-area: copy;
  width: auto;
  margin-left: 0;
  padding-top: 2px;
}

.final-copy .section-kicker {
  color: #20c7f3;
  font-size: 12px;
  letter-spacing: 0.24em;
}

.final-copy h2 {
  max-width: 10ch;
  margin-top: 12px;
  color: var(--white);
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.final-copy h2 span {
  background: linear-gradient(90deg, #8dd8ff 0%, #7a72ff 48%, #ff5ac8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.final-copy > p {
  max-width: 520px;
  margin-top: 18px;
  color: rgba(235, 241, 255, 0.82);
  font-size: 18px;
  line-height: 1.72;
}

.final-illustration {
  grid-area: art;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 4px;
}

.final-illustration svg {
  width: min(100%, 360px);
  height: auto;
  filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.28));
}

.interest-form {
  grid-area: form;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 16px;
  width: 100%;
  padding: 24px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 251, 255, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.interest-form-header {
  grid-column: 1 / -1;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 2px;
}

.interest-form-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  color: #2467f2;
  background: radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.96), rgba(237, 243, 255, 0.98));
  border: 1px solid rgba(104, 136, 255, 0.22);
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(18, 31, 78, 0.08);
}

.interest-form-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.interest-form-header h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.16;
}

.interest-form-header p {
  margin: 8px 0 0;
  color: #667794;
  font-size: 15px;
  line-height: 1.6;
}

.interest-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.interest-form input,
.interest-form select,
.interest-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  background: #f9fbff;
  border: 1px solid #d6deee;
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.interest-form textarea {
  min-height: 118px;
  resize: vertical;
}

.interest-form .button-secondary {
  color: var(--navy);
  background: #ffffff;
  border-color: rgba(130, 148, 182, 0.48);
}

.final-form-wide {
  grid-column: 1 / -1;
}

.final-form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #53637f;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.final-form-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
  accent-color: #2467f2;
}

.final-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.final-form-actions .button {
  min-height: 54px;
  padding-inline: 24px;
  border-radius: 16px;
}

.final-form-actions .button-primary {
  background: linear-gradient(90deg, #2f74ff 0%, #2e7af3 30%, #b950ff 72%, #ef53b8 100%);
  box-shadow: 0 18px 34px rgba(47, 116, 255, 0.24);
}

.final-form-actions .button-primary svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.final-form-actions .button-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(125, 146, 184, 0.54);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(84, 99, 123, 0.92);
  font-size: 13px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 56px;
  color: rgba(255, 255, 255, 0.72);
  background: #050c1d;
}

@media (max-width: 1040px) {
  .site-header {
    padding-right: 24px;
    padding-left: 24px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content {
    padding: 140px 32px 160px;
  }

  h1 {
    font-size: 62px;
  }

  h1 span {
    font-size: 72px;
  }

  h2 {
    font-size: 31px;
  }

  .section,
  .final-cta {
    padding-right: 32px;
    padding-left: 32px;
  }

  .section-grid,
  .partner-panel,
  .outcomes {
    grid-template-columns: 1fr;
  }

  .outcome-lead,
  .final-copy {
    max-width: 760px;
    margin-left: 0;
  }

  .final-cta-shell {
    grid-template-columns: 1fr;
  }

  .final-cta-main {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
    gap: 22px;
  }

  .final-illustration svg {
    width: min(100%, 300px);
  }

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

  .interest-grid,
  .pathway-grid,
  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .programs .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: grid;
  }

  .programs .program-card,
  .programs .program-card:nth-child(4),
  .programs .program-card:nth-child(5) {
    grid-column: auto;
  }

  .upcoming-projects {
    padding-top: 80px;
    padding-bottom: 88px;
  }

  .upcoming-projects-layout {
    gap: 18px;
  }

  .upcoming-projects-copy {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .upcoming-projects-layout > .upcoming-card-featured {
    grid-column: 1 / -1;
  }

  .upcoming-projects-layout > .upcoming-card-secondary {
    grid-column: span 6;
  }

  .upcoming-card-featured img {
    height: 300px;
  }

  .upcoming-projects-layout > .upcoming-card-featured,
  .upcoming-projects-layout > .upcoming-card-secondary {
    grid-template-columns: 1fr;
  }

  .upcoming-card-featured .upcoming-card-media,
  .upcoming-card-featured .upcoming-card-body,
  .upcoming-card-secondary .upcoming-card-media,
  .upcoming-card-secondary .upcoming-card-body {
    order: initial;
  }

  .upcoming-card img {
    height: 228px;
  }

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

  .final-cta {
    padding-top: 76px;
    padding-bottom: 84px;
  }

  .interest-form {
    padding: 22px;
  }

  .interest-form-header h3 {
    font-size: 20px;
  }

  .interest-form-header p {
    font-size: 14px;
  }

  .final-form-actions .button {
    min-height: 52px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: auto;
    padding: 12px 18px;
  }

  .brand {
    width: min(260px, calc(100vw - 92px));
  }

  .brand-logo {
    height: 32px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-content {
    padding: 100px 20px 140px;
    max-width: 100%;
  }

  .hero-bg img {
    object-position: 60% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(7, 21, 47, 0.95) 0%,
        rgba(7, 21, 47, 0.85) 40%,
        rgba(7, 21, 47, 0.5) 70%,
        rgba(7, 21, 47, 0.3) 100%);
  }

  .hero-badge {
    font-size: 12px;
    padding: 7px 16px;
  }

  .hero-scroll-hint {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  h1 span {
    font-size: 52px;
  }

  h2 {
    font-size: 27px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .section,
  .final-cta {
    padding: 68px 20px;
  }

  .programs {
    padding-top: 84px;
    padding-bottom: 90px;
  }

  .programs-heading {
    margin-bottom: 28px;
  }

  .programs .section-kicker {
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.24em;
  }

  .programs .section-kicker::before,
  .programs .section-kicker::after {
    flex-basis: 34px;
  }

  .partner-panel {
    padding: 24px;
  }

  .interest-grid,
  .pathway-grid,
  .program-grid,
  .trust-grid,
  .origin-visual .timeline,
  .interest-form {
    grid-template-columns: 1fr;
  }

  .programs .program-grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }

  .program-grid {
    gap: 14px;
    margin-top: 30px;
  }

  .programs .program-card {
    width: 100%;
  }

  .programs .program-card:nth-child(4),
  .programs .program-card:nth-child(5) {
    width: 100%;
  }

  .gallery-copy {
    margin-bottom: 18px;
  }

  .gallery-copy h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .gallery-copy > p {
    font-size: 14px;
    line-height: 1.62;
  }

  .gallery-highlights {
    gap: 10px;
    margin-top: 16px;
  }

  .gallery-highlights span {
    min-height: 48px;
    padding: 9px 12px;
  }

  .gallery-highlights svg {
    width: 20px;
    height: 20px;
  }

  .gallery-highlights b {
    font-size: 14px;
  }

  .gallery-tabs {
    margin-top: 14px;
    margin-bottom: 10px;
  }

  .gallery-tabs button {
    min-height: 38px;
    padding: 8px 14px;
    font-size: 13px;
  }

  .gallery-badge {
    margin-bottom: 14px;
  }

  .interest-grid img,
  .pathway-card img {
    height: 210px;
  }

  .pathway-card {
    grid-template-columns: 118px 1fr;
    min-height: 150px;
  }

  .pathway-media {
    min-height: 150px;
    padding: 12px;
  }

  .pathway-media img {
    height: 100%;
    min-height: 126px;
  }

  .pathway-body {
    padding: 16px;
  }

  .pathway-card h3 {
    font-size: 18px;
  }

  .pathway-card p {
    font-size: 13px;
  }

  .programs .program-card-media img {
    height: 190px;
  }

  .programs .program-card-body {
    gap: 12px;
    padding: 30px 18px 18px;
  }

  .programs .program-card h3 {
    font-size: 18px;
  }

  .programs .program-card p {
    font-size: 13px;
    line-height: 1.62;
  }

  .programs .program-icon {
    left: 14px;
    bottom: -24px;
    width: 52px;
    height: 52px;
  }

  .programs .program-icon svg {
    width: 23px;
    height: 23px;
  }

  .programs .program-card-body > span {
    font-size: 14px;
  }

  .programs .program-card-body > span svg {
    width: 16px;
    height: 16px;
  }

  .gallery-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .gallery-tabs::-webkit-scrollbar {
    display: none;
  }

  .gallery-tabs button {
    flex: 0 0 auto;
  }

  .program-gallery-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-shell {
    gap: 18px;
  }

  .final-cta-main {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "art"
      "form";
    gap: 18px;
  }

  .final-illustration {
    justify-content: center;
    padding-top: 0;
  }

  .final-cta {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .final-copy h2 {
    max-width: 12ch;
  }

  .final-copy > p {
    margin-top: 14px;
  }

  .final-illustration svg {
    width: min(100%, 280px);
  }

  .interest-form {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 24px;
    gap: 12px;
  }

  .interest-form-header {
    gap: 12px;
  }

  .interest-form-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .interest-form-header h3 {
    font-size: 18px;
  }

  .interest-form-header p {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.55;
  }

  .interest-form input,
  .interest-form select,
  .interest-form textarea {
    min-height: 44px;
    padding: 11px 12px;
    border-radius: 12px;
  }

  .interest-form textarea {
    min-height: 104px;
  }

  .final-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .final-form-actions .button {
    width: 100%;
  }

  .final-form-actions .button-primary {
    justify-content: center;
  }

  .upcoming-projects {
    padding-top: 66px;
    padding-bottom: 76px;
  }

  .upcoming-projects-layout {
    gap: 16px;
  }

  .upcoming-projects-copy {
    padding-right: 0;
  }

  .upcoming-projects-copy h2 {
    max-width: 13ch;
  }

  .upcoming-projects-copy p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.65;
  }

  .upcoming-timeline {
    grid-template-columns: 1fr;
    padding: 8px;
  }

  .upcoming-timeline span {
    min-height: 56px;
    padding: 10px 14px 10px 42px;
  }

  .upcoming-timeline span + span {
    border-top: 1px solid rgba(168, 186, 217, 0.55);
    border-left: 0;
  }

  .upcoming-tags {
    gap: 8px;
    margin-top: 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .upcoming-tags span {
    min-height: 58px;
    padding: 10px 8px;
    border-radius: 16px;
    font-size: 12px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 8px;
  }

  .upcoming-tags svg {
    width: 22px;
    height: 22px;
  }

  .upcoming-projects-layout > .upcoming-card-featured,
  .upcoming-projects-layout > .upcoming-card-secondary {
    grid-column: 1 / -1;
  }

  .upcoming-card img,
  .upcoming-card-featured img {
    height: 208px;
  }

  .upcoming-card-body {
    padding: 16px 16px 20px;
  }

  .upcoming-card h3 {
    font-size: 20px;
  }

  .upcoming-card p {
    font-size: 15px;
    line-height: 1.58;
  }

  .upcoming-card-link {
    font-size: 14px;
  }

  .upcoming-card-tags {
    font-size: 11px;
    line-height: 1.45;
  }

  .upcoming-card-arrow {
    right: 14px;
    bottom: 14px;
    width: 38px;
    height: 38px;
  }

  .gallery-item img {
    height: 220px;
  }

  .outcomes {
    gap: 28px;
  }

  .outcomes::before {
    height: 22%;
  }

  .outcome-lead h2 {
    margin-bottom: 18px;
    font-size: 34px;
  }

  .outcome-lead h2::after {
    width: 132px;
    height: 5px;
    margin-top: 12px;
  }

  .outcome-lead > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .outcome-tags {
    gap: 10px;
    margin-top: 22px;
  }

  .outcome-tags span {
    min-height: 44px;
    padding: 8px 13px;
    font-size: 13px;
  }

  .outcome-tags svg {
    width: 21px;
    height: 21px;
  }

  .outcome-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .outcome-card {
    min-height: 0;
    padding: 22px;
  }

  .outcome-icon {
    width: 74px;
    height: 74px;
    margin-bottom: 14px;
  }

  .outcome-icon svg {
    width: 42px;
    height: 42px;
  }

  .outcome-check {
    top: 18px;
    right: 18px;
    width: 26px;
    height: 26px;
  }

  .outcome-check::before {
    left: 8px;
    top: 6px;
    width: 9px;
    height: 6px;
  }

  .outcome-card h3 {
    margin-bottom: 14px;
    padding-bottom: 12px;
    font-size: 22px;
  }

  .outcome-card p {
    font-size: 14px;
  }

  .site-footer {
    flex-direction: column;
    padding: 22px 20px;
  }
}

@media (max-width: 1040px) {
  .program-detail-page .site-header {
    width: min(100% - 28px, 1240px);
    padding-right: 24px;
    padding-left: 24px;
  }

  .detail-page-main {
    width: min(100% - 28px, 1240px);
  }

  .detail-hero,
  .detail-split,
  .detail-cta {
    grid-template-columns: 1fr;
  }

  .detail-hero-media {
    min-height: 320px;
  }

  .detail-card-grid,
  .detail-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .detail-cta {
    text-align: center;
  }

  .detail-cta img {
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .program-detail-page .site-header {
    top: 8px;
    width: min(100% - 20px, 1240px);
    min-height: 62px;
    padding: 12px 16px;
  }

  .detail-page-main {
    width: min(100% - 20px, 1240px);
    margin-top: 16px;
  }

  .detail-crumbs {
    gap: 7px;
    font-size: 12px;
  }

  .detail-hero-copy,
  .detail-section,
  .detail-side-card,
  .detail-cta {
    padding: 20px;
  }

  .detail-track {
    font-size: 11px;
    letter-spacing: 0.22em;
  }

  .detail-hero h1 {
    font-size: 34px;
  }

  .detail-subtitle {
    font-size: 21px;
  }

  .detail-lead {
    font-size: 15px;
  }

  .detail-actions,
  .detail-meta {
    gap: 9px;
  }

  .detail-button {
    width: 100%;
    min-height: 48px;
  }

  .detail-hero-media {
    min-height: 220px;
  }

  .detail-card-grid,
  .detail-benefit-grid,
  .detail-steps,
  .detail-city-grid,
  .detail-gallery-grid,
  .detail-fit {
    grid-template-columns: 1fr;
  }

  .detail-card,
  .detail-step {
    min-height: 0;
  }

  .detail-city-card img,
  .detail-gallery-card img {
    height: 170px;
  }

  .detail-cta img {
    width: 112px;
  }
}

@media (max-width: 1180px) {
  .mock-hero-copy {
    padding: 30px 32px;
  }

  .mock-panel {
    padding: 20px 24px;
  }

  .mock-hero,
  .mock-hero-creative {
    grid-template-columns: 1fr;
  }

  .mock-hero-image,
  .mock-program-creative .mock-hero-image {
    min-height: 360px;
  }

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

  .mock-info-card {
    min-height: 112px;
  }

  .mock-two-column,
  .mock-global-middle,
  .mock-creative-middle,
  .mock-two-column-bottom,
  .mock-download-panel {
    grid-template-columns: 1fr;
  }

  .mock-download-row {
    justify-content: stretch;
  }

  .mock-cta {
    grid-template-columns: 150px 1fr;
  }

  .mock-cta .mock-button,
  .mock-download-row .mock-button {
    width: 100%;
  }
}

@media (max-width: 780px) {
  .mock-program-shell {
    width: min(100% - 16px, 1440px);
    margin-top: 8px;
  }

  .mock-crumbs {
    margin-left: 4px;
    font-size: 12px;
  }

  .mock-hero-copy,
  .mock-panel,
  .mock-cta {
    padding: 16px;
  }

  .mock-track {
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  .mock-hero h1,
  .mock-program-university .mock-hero h1 {
    max-width: 100%;
    font-size: 38px;
  }

  .mock-subtitle {
    font-size: 22px;
  }

  .mock-lead,
  .mock-meta-row span,
  .mock-button {
    font-size: 14px;
  }

  .mock-hero-image,
  .mock-program-creative .mock-hero-image {
    min-height: 230px;
  }

  .mock-five-grid,
  .mock-four-grid,
  .mock-three-grid,
  .mock-two-mini-grid,
  .mock-city-grid,
  .mock-gallery-grid,
  .mock-fit-content,
  .mock-cta,
  .mock-download-panel {
    grid-template-columns: 1fr;
  }

  .mock-info-card {
    min-height: 0;
    padding: 14px 14px 14px;
  }

  .mock-info-card h3 {
    padding-right: 34px;
    font-size: 17px;
  }

  .mock-info-card p,
  .mock-city-card p,
  .mock-gallery-card p,
  .mock-fit-content p,
  .mock-fit-list,
  .mock-faq-list p,
  .mock-cta p {
    font-size: 13px;
  }

  .mock-timeline,
  .mock-timeline-four {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mock-timeline::before {
    left: 17px;
    right: auto;
    top: 14px;
    bottom: 14px;
    width: 2px;
    height: auto;
  }

  .mock-timeline article {
    grid-template-columns: 36px 1fr;
    justify-items: start;
    column-gap: 12px;
    text-align: left;
  }

  .mock-timeline span {
    grid-row: span 2;
  }

  .mock-timeline p {
    max-width: none;
  }

  .mock-city-card img,
  .mock-gallery-card img {
    height: 150px;
  }

  .mock-fit-content,
  .mock-fit-content-vertical {
    justify-items: start;
    text-align: left;
  }

  .mock-cta img {
    width: 128px;
    max-height: 64px;
  }

  .mock-cta h2 {
    font-size: 24px;
  }
}
