:root {
  --brand: #fe6f2f;
  --brand-deep: #d94c17;
  --brand-soft: #ffb08a;
  --royal: #183f7a;
  --royal-deep: #0e2b56;
  --royal-soft: #89a7d7;
  --ink: #111111;
  --ink-2: #29303a;
  --muted: #5f6877;
  --bg: #f3eee8;
  --surface: #ffffff;
  --surface-soft: #ffffff;
  --surface-alt: #f1ece5;
  --line: rgba(17, 17, 17, 0.12);
  --line-strong: rgba(17, 17, 17, 0.22);
  --success: #137a44;
  --danger: #9f1239;
  --shadow: 0 22px 60px rgba(17, 17, 17, 0.1);
  --shadow-strong: 0 34px 90px rgba(17, 17, 17, 0.18);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1200px, calc(100% - 2rem));
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-head: "Sora", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(254, 111, 47, 0.14), transparent 24%),
    radial-gradient(circle at right 10% top 12%, rgba(17, 17, 17, 0.05), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

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

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

h1,
h2,
h3,
h4 {
  margin: 0 0 0.8rem;
  font-family: var(--font-head);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.75;
}

ul {
  margin: 0;
}

strong {
  color: var(--ink);
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(254, 111, 47, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 90;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--surface);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-soft {
  background:
    radial-gradient(circle at top right, rgba(254, 111, 47, 0.08), transparent 16%),
    linear-gradient(180deg, #f5efe8 0%, #eee7df 100%);
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: var(--surface);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 18%),
    radial-gradient(circle at left 10% bottom 10%, rgba(255, 255, 255, 0.08), transparent 16%),
    linear-gradient(145deg, #ff8d58, #fe6f2f 52%, #d94c17 100%);
}

.section-dark p,
.section-dark .section-title,
.section-dark .section-intro {
  color: rgba(255, 255, 255, 0.84);
}

.section-dark .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.section-dark::after {
  content: "";
  position: absolute;
  inset: auto -8% -3rem -8%;
  height: 180px;
  background:
    radial-gradient(140% 160% at 0% 100%, transparent 54%, rgba(255, 255, 255, 0.12) 55%, transparent 56%) 0 0 / 260px 120px repeat-x,
    radial-gradient(140% 160% at 100% 0%, transparent 54%, rgba(255, 255, 255, 0.08) 55%, transparent 56%) 0 36px / 220px 110px repeat-x;
  opacity: 0.5;
  pointer-events: none;
}

.section-dark > .container {
  position: relative;
  z-index: 1;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-title {
  max-width: 16ch;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.section-intro {
  max-width: 60ch;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--brand-deep);
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.section-kicker {
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--surface);
  background: linear-gradient(135deg, #ff8a57, var(--brand-deep));
  box-shadow: 0 18px 42px rgba(254, 111, 47, 0.34);
}

.btn-outline {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.94);
}

.btn-outline:hover {
  border-color: var(--line-strong);
}

.link-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  font-weight: 800;
}

.link-inline::after {
  content: ">";
}

.pill,
.program-tag,
.cert-code,
.status-pill,
.location-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.pill,
.program-tag,
.cert-code {
  color: var(--brand-deep);
  background: rgba(254, 111, 47, 0.11);
}

.status-pill {
  color: var(--ink);
  background: rgba(17, 17, 17, 0.06);
}

.location-chip {
  color: var(--surface);
  background: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.06);
}

.scroll-progress {
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--brand), #ffb188);
  transition: width 0.1s linear;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(17, 17, 17, 0.08);
  box-shadow: 0 20px 54px rgba(17, 17, 17, 0.08);
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, #183f7a 0%, #0e2b56 62%, #fe6f2f 100%);
  color: rgba(255, 255, 255, 0.9);
}

.topbar-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  min-height: 42px;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.9rem;
  font-weight: 600;
}

.topbar-shell a:hover {
  color: var(--surface);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 102px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-logo {
  width: auto;
  height: 72px;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
}

.brand-copy strong {
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
  max-width: 18ch;
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-menu a {
  position: relative;
  color: #333d4c;
  font-size: 0.98rem;
  font-weight: 800;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: var(--ink);
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.65rem;
  height: 2px;
  background: var(--brand);
}

.nav-menu .nav-cta {
  margin-left: 1rem;
  min-height: 58px;
  padding: 1rem 1.8rem;
  border-radius: 999px;
}

.nav-menu .nav-cta::after {
  display: none;
}

.hero {
  padding: 5rem 0 3rem;
  overflow: visible;
}

.hero-home {
  position: relative;
  overflow: visible;
  isolation: isolate;
  padding: 6.25rem 0 4.25rem;
  color: var(--surface);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.3), transparent 15%),
    radial-gradient(circle at 65% 34%, rgba(255, 255, 255, 0.14), transparent 22%),
    radial-gradient(circle at 18% 72%, rgba(255, 255, 255, 0.1), transparent 20%),
    linear-gradient(135deg, #ff9a6b 0%, #fe6f2f 44%, #d94c17 100%);
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(145% 165% at 0% 100%, transparent 53.6%, rgba(255, 255, 255, 0.16) 54.2%, rgba(255, 255, 255, 0.16) 54.8%, transparent 55.5%) 0 0 / 320px 136px repeat-x,
    radial-gradient(145% 165% at 100% 0%, transparent 53.6%, rgba(255, 255, 255, 0.12) 54.2%, rgba(255, 255, 255, 0.12) 54.8%, transparent 55.5%) 0 46px / 260px 118px repeat-x,
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.06) 52%, rgba(255, 255, 255, 0) 80%);
  opacity: 0.82;
  pointer-events: none;
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, rgba(255, 120, 62, 0.26));
  clip-path: polygon(0 38%, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero-small {
  padding-top: 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 2rem;
  align-items: center;
}

.hero-grid--tight {
  align-items: start;
}

.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  max-width: 12ch;
}

.hero-copy p {
  max-width: 62ch;
  font-size: 1.08rem;
}

.hero-home .hero-copy,
.hero-home .hero-card {
  position: relative;
  z-index: 1;
}

.hero-home .eyebrow {
  color: #fff2ea;
}

.hero-home .hero-copy p,
.hero-home .fact-card span,
.hero-home .detail-list {
  color: rgba(255, 255, 255, 0.9);
}

.hero-home .fact-card {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.hero-home .fact-card strong {
  color: var(--surface);
}

.hero-home .btn-outline {
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
}

.hero-home .btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.18);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.hero-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.hero-ribbon span {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.84rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.fact-card {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 17, 17, 0.07);
}

.fact-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-head);
  font-size: 1.1rem;
}

.hero-card,
.glass-card,
.program-card,
.campus-card,
.cert-card,
.feature-card,
.contact-channel,
.process-card,
.stat-card,
.enrollment-record {
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  box-shadow: var(--shadow);
  padding: 1.6rem;
}

.hero-card {
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -25% auto;
  width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 111, 47, 0.25), transparent 62%);
}

.hero-card h2,
.hero-card h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
}

.hero-stage {
  background:
    radial-gradient(circle at top right, rgba(254, 111, 47, 0.18), transparent 18%),
    linear-gradient(180deg, #fffaf7 0%, #fff1e8 100%);
  border-color: rgba(254, 111, 47, 0.18);
  min-height: 100%;
  color: var(--ink);
  overflow: visible;
  padding-top: 2.4rem;
}

.hero-stage h2,
.hero-stage h3,
.hero-stage strong,
.hero-stage .detail-list li,
.hero-stage .hero-stage-footer span {
  color: var(--ink);
}

.hero-stage p,
.hero-stage .detail-list {
  color: var(--muted);
}

.hero-stage-mark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-stage-logo {
  width: min(210px, 100%);
  height: auto;
}

.hero-stage-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8b57, var(--brand-deep));
  color: var(--surface);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stage-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.hero-stage-footer span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(254, 111, 47, 0.12);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.86rem;
}

.hero-satellite {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 0.15rem;
  min-width: 132px;
  padding: 0.85rem 1rem;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.18);
}

.hero-satellite strong {
  font-family: var(--font-head);
  font-size: 1.35rem;
}

.hero-satellite span {
  color: inherit;
  font-size: 0.88rem;
  line-height: 1.35;
}

.hero-satellite--one {
  top: 1rem;
  right: -0.35rem;
  background: linear-gradient(135deg, #ff955f, var(--brand-deep));
  color: var(--surface);
  animation: floatHero 6s ease-in-out infinite;
}

.hero-satellite--two {
  left: -0.35rem;
  bottom: 3rem;
  background: linear-gradient(135deg, #ffe4d4, #ffb08a);
  color: var(--ink);
  animation: floatHeroAlt 7s ease-in-out infinite;
}

.card-topline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.detail-list,
.bullet-list,
.list-clean {
  padding-left: 1.15rem;
  color: var(--muted);
}

.detail-list li,
.bullet-list li,
.list-clean li {
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

.detail-list li:last-child,
.bullet-list li:last-child,
.list-clean li:last-child {
  margin-bottom: 0;
}

.stats-grid,
.program-grid,
.campus-grid,
.cert-grid,
.feature-grid,
.chips-grid,
.process-grid,
.contact-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.campus-grid,
.feature-grid,
.process-grid,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.stat-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 2.2rem;
  font-family: var(--font-head);
}

.stats-grid .stat-card:nth-child(odd) {
  transform: translateY(-12px) rotate(-1deg);
}

.stats-grid .stat-card:nth-child(even) {
  transform: translateY(12px) rotate(1deg);
}

.program-card h3,
.campus-card h3,
.cert-card h3,
.feature-card h3,
.process-card h3,
.contact-channel h3,
.enrollment-record h3 {
  font-size: 1.22rem;
}

.program-card,
.campus-card,
.cert-card,
.feature-card,
.contact-channel,
.process-card,
.stat-card,
.glass-card,
.statement-card,
.enrollment-record {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.program-card:hover,
.campus-card:hover,
.cert-card:hover,
.feature-card:hover,
.contact-channel:hover,
.process-card:hover,
.stat-card:hover,
.glass-card:hover,
.statement-card:hover,
.enrollment-record:hover {
  transform: translateY(-6px);
  border-color: rgba(254, 111, 47, 0.28);
  box-shadow: 0 26px 70px rgba(17, 17, 17, 0.14);
}

.program-card,
.campus-card,
.cert-card,
.feature-card,
.contact-channel,
.process-card,
.enrollment-record {
  position: relative;
  overflow: hidden;
}

.program-card::before,
.campus-card::before,
.cert-card::before,
.feature-card::before,
.contact-channel::before,
.process-card::before,
.enrollment-record::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-soft));
}

.campus-card--visual {
  min-height: 360px;
  padding: 0;
  color: var(--surface);
  background: linear-gradient(145deg, #0f2548, #173968);
}

.campus-card__media,
.campus-card__overlay {
  position: absolute;
  inset: 0;
}

.campus-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 21, 41, 0.08) 0%, rgba(7, 21, 41, 0.26) 34%, rgba(7, 21, 41, 0.86) 100%),
    linear-gradient(145deg, rgba(24, 63, 122, 0.18), rgba(254, 111, 47, 0.12));
}

.campus-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.campus-card__overlay {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.45rem;
}

.campus-card__overlay h3,
.campus-card__overlay p {
  color: var(--surface);
}

.campus-card__overlay p {
  color: rgba(255, 255, 255, 0.84);
}

.campus-card__overlay .btn-outline {
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.program-card--soft {
  background:
    radial-gradient(circle at top right, rgba(254, 111, 47, 0.12), transparent 18%),
    linear-gradient(180deg, #fff8f4 0%, #ffffff 100%);
}

.program-card--dark {
  color: var(--surface);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(145deg, #161210, #2a1a12);
}

.program-card--accent {
  color: var(--surface);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(145deg, #ff915f, var(--brand-deep));
}

.program-card--dark h3,
.program-card--dark strong,
.program-card--accent h3,
.program-card--accent strong {
  color: var(--surface);
}

.program-card--dark p,
.program-card--accent p,
.program-card--dark .link-inline,
.program-card--accent .link-inline {
  color: rgba(255, 255, 255, 0.88);
}

.program-card--dark .program-meta span,
.program-card--accent .program-meta span {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.94);
}

.program-card--dark .program-tag,
.program-card--accent .program-tag {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.95);
}

.program-card--dark .status-pill,
.program-card--accent .status-pill {
  background: rgba(17, 17, 17, 0.18);
  color: rgba(255, 255, 255, 0.92);
}

.program-card--dark .btn-outline,
.program-card--accent .btn-outline {
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.program-card--dark .btn-outline:hover,
.program-card--accent .btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
}

[data-render="programs-home"].program-grid article:nth-child(1) {
  grid-column: span 2;
  background:
    radial-gradient(circle at top right, rgba(254, 111, 47, 0.12), transparent 20%),
    linear-gradient(180deg, #fff8f4 0%, #ffffff 100%);
}

[data-render="programs-home"].program-grid article:nth-child(2),
[data-render="programs-home"].program-grid article:nth-child(5) {
  transform: translateY(18px);
}

[data-render="trust-pillars"].feature-grid article:nth-child(2),
[data-render="trust-pillars"].feature-grid article:nth-child(4) {
  transform: translateY(22px);
}

[data-render="admission-steps"].process-grid article:nth-child(2) {
  transform: translateY(20px);
}

.program-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.2rem 0 1.25rem;
}

.program-meta span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.05);
  color: var(--ink-2);
  font-size: 0.87rem;
  font-weight: 700;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.institution-grid,
.statement-grid,
.split-band,
.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.statement-card {
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: var(--shadow);
}

.about-values {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 18%),
    radial-gradient(circle at left 10% bottom 12%, rgba(255, 255, 255, 0.06), transparent 16%),
    linear-gradient(145deg, #1b1613 0%, #090807 55%, #211813 100%);
}

.about-values::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(140% 160% at 0% 100%, transparent 54%, rgba(255, 255, 255, 0.11) 55%, transparent 56%) 0 0 / 250px 112px repeat-x,
    radial-gradient(140% 160% at 100% 0%, transparent 54%, rgba(255, 255, 255, 0.08) 55%, transparent 56%) 0 40px / 220px 100px repeat-x;
  opacity: 0.7;
  pointer-events: none;
}

.about-values > .container {
  position: relative;
  z-index: 1;
}

.about-stats .stats-grid .stat-card:first-child {
  color: inherit;
  background: rgba(255, 255, 255, 0.98);
}

.about-stats .stats-grid .stat-card:first-child strong,
.about-stats .stats-grid .stat-card:first-child span {
  color: inherit;
}

.about-stats {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.3), transparent 15%),
    radial-gradient(circle at 18% 72%, rgba(255, 255, 255, 0.1), transparent 20%),
    linear-gradient(135deg, #ff9a6b 0%, #fe6f2f 44%, #d94c17 100%);
}

.about-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(145% 165% at 0% 100%, transparent 53.6%, rgba(255, 255, 255, 0.16) 54.2%, rgba(255, 255, 255, 0.16) 54.8%, transparent 55.5%) 0 0 / 320px 136px repeat-x,
    radial-gradient(145% 165% at 100% 0%, transparent 53.6%, rgba(255, 255, 255, 0.12) 54.2%, rgba(255, 255, 255, 0.12) 54.8%, transparent 55.5%) 0 46px / 260px 118px repeat-x;
  opacity: 0.82;
  pointer-events: none;
}

.about-stats > .container {
  position: relative;
  z-index: 1;
}

.orange-panel,
.dark-panel {
  padding: 2rem;
  border-radius: var(--radius-lg);
  min-height: 100%;
}

.orange-panel {
  color: var(--surface);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(135deg, #ff915f, var(--brand-deep));
}

.orange-panel p {
  color: rgba(255, 255, 255, 0.88);
}

.dark-panel {
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(254, 111, 47, 0.16), transparent 18%),
    linear-gradient(145deg, #fff7f1, #ffe5d7);
}

.dark-panel p {
  color: var(--muted);
}

.logo-chip {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.85rem;
  min-height: 172px;
  padding: 1.2rem 1rem 1.1rem;
  border-radius: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.98);
  text-align: center;
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.05);
}

.logo-chip__mark {
  display: grid;
  place-items: center;
  width: 78px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(145deg, #201713 0%, #0f0c0a 100%);
  color: var(--surface);
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 30px rgba(17, 17, 17, 0.14);
}

.logo-chip__mark--image {
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    inset 0 0 0 1px rgba(17, 17, 17, 0.08),
    0 14px 30px rgba(17, 17, 17, 0.08);
}

.logo-chip__image {
  width: 64%;
  height: 64%;
  object-fit: contain;
}

.logo-chip__name {
  max-width: 16ch;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  text-wrap: balance;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 17, 17, 0.06);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.section-explore {
  position: relative;
  padding-top: 3.5rem;
}

.explore-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.15rem;
}

.explore-card {
  position: relative;
  display: block;
  min-height: 220px;
  padding: 1.7rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background:
    radial-gradient(circle at top right, rgba(254, 111, 47, 0.08), transparent 16%),
    rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.explore-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 120px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(254, 111, 47, 0.12);
}

.explore-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  border-color: rgba(254, 111, 47, 0.28);
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.14);
}

.explore-card h3 {
  font-size: clamp(1.3rem, 2vw, 2rem);
  max-width: 14ch;
}

.explore-card p {
  max-width: 32ch;
}

.explore-card--dark {
  color: var(--surface);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(145deg, #ff8d58, #d94c17);
}

.explore-card--dark p,
.explore-card--dark .section-kicker {
  color: rgba(255, 255, 255, 0.82);
}

.explore-card--dark::after {
  background: rgba(255, 255, 255, 0.08);
}

.explore-card--brand {
  color: var(--surface);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 16%),
    linear-gradient(135deg, #ff8e59, var(--brand-deep));
}

.explore-card--brand p {
  color: rgba(255, 255, 255, 0.88);
}

.explore-grid .explore-card:first-child {
  grid-row: span 2;
  min-height: 100%;
}

.explore-grid .explore-card:nth-child(2) {
  transform: translateY(30px);
}

.explore-grid .explore-card:nth-child(4) {
  transform: translateX(26px);
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field,
.field input,
.field select,
.field textarea {
  width: 100%;
}

.field label {
  font-weight: 800;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  min-height: 52px;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.35rem;
}

.form-note {
  font-size: 0.95rem;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  font-weight: 700;
}

.form-message.success {
  color: var(--success);
  background: rgba(19, 122, 68, 0.12);
}

.form-message.error {
  color: var(--danger);
  background: rgba(159, 18, 57, 0.12);
}

.contact-panel {
  display: grid;
  gap: 1.25rem;
}

.contact-panel .contact-grid {
  grid-template-columns: 1fr;
}

.contact-highlight {
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #ff905d, var(--brand-deep));
  color: var(--surface);
}

.contact-highlight p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-highlight--soft {
  background: linear-gradient(180deg, #fffaf7, #ffe9dc);
  color: var(--ink);
  border: 1px solid rgba(254, 111, 47, 0.16);
  box-shadow: var(--shadow);
}

.contact-highlight--soft p {
  color: var(--muted);
}

.process-card {
  position: relative;
  padding-top: 4.2rem;
}

.process-step {
  position: absolute;
  top: 1.3rem;
  left: 1.5rem;
  display: inline-grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: var(--brand);
  color: var(--surface);
  font-weight: 800;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background:
    radial-gradient(circle at top right, rgba(254, 111, 47, 0.12), transparent 18%),
    rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-strong);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: auto -2rem 0 auto;
  width: 180px;
  height: 120px;
  background:
    radial-gradient(140% 160% at 0% 100%, transparent 54%, rgba(254, 111, 47, 0.14) 55%, transparent 56%) 0 0 / 140px 80px repeat-x;
  pointer-events: none;
}

.empty-state {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(17, 17, 17, 0.16);
  background: rgba(255, 255, 255, 0.7);
}

.enrollment-storage {
  align-items: start;
}

.json-viewer {
  min-height: 360px;
  margin: 1rem 0 0;
  padding: 1rem;
  overflow: auto;
  border-radius: 22px;
  background: #121826;
  color: #d5def0;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.86rem;
  line-height: 1.6;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 16%),
    linear-gradient(145deg, #ff8d58, #d94c17);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: auto -6% 0 -6%;
  height: 140px;
  background:
    radial-gradient(140% 160% at 0% 100%, transparent 54%, rgba(255, 255, 255, 0.12) 55%, transparent 56%) 0 0 / 240px 110px repeat-x;
  opacity: 0.45;
  pointer-events: none;
}

.site-footer > .container {
  position: relative;
  z-index: 1;
}

.site-footer p,
.site-footer strong {
  color: inherit;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1fr;
  gap: 2rem;
}

.footer-grid h4 {
  margin-bottom: 1rem;
  color: var(--surface);
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin-bottom: 0.75rem;
}

.footer-grid a:hover {
  color: var(--surface);
}

.footer-logo {
  height: 58px;
  margin-bottom: 1rem;
}

.footer-lead {
  color: rgba(255, 255, 255, 0.88);
}

.footer-bottom {
  padding-top: 1rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatHero {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatHeroAlt {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}

@media (max-width: 1140px) {
  .stats-grid,
  .cert-grid,
  .feature-grid,
  .contact-grid,
  .campus-grid,
  .process-grid,
  .program-grid,
  .chips-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .institution-grid,
  .statement-grid,
  .split-band,
  .two-col,
  .explore-grid {
    grid-template-columns: 1fr;
  }

  [data-render="programs-home"].program-grid article:nth-child(1) {
    grid-column: span 1;
  }

  .explore-grid .explore-card:first-child {
    grid-row: span 1;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: var(--shadow-strong);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a.active::after,
  .nav-menu a:hover::after {
    bottom: -0.3rem;
  }

  .nav-shell {
    position: relative;
  }

  .nav-menu .nav-cta {
    margin-left: 0;
    width: 100%;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

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

  .hero-home {
    padding-top: 4.75rem;
  }

  .hero-stage-mark {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-satellite {
    position: static;
    margin-bottom: 0.9rem;
    animation: none;
  }

  .stats-grid .stat-card:nth-child(odd),
  .stats-grid .stat-card:nth-child(even),
  [data-render="programs-home"].program-grid article:nth-child(2),
  [data-render="programs-home"].program-grid article:nth-child(5),
  [data-render="trust-pillars"].feature-grid article:nth-child(2),
  [data-render="trust-pillars"].feature-grid article:nth-child(4),
  [data-render="admission-steps"].process-grid article:nth-child(2),
  .explore-grid .explore-card:nth-child(2),
  .explore-grid .explore-card:nth-child(4) {
    transform: none;
  }

  .cta-band,
  .section-head,
  .form-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 4.5rem 0;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-home {
    padding-top: 4rem;
  }

  .hero-ribbon {
    gap: 0.5rem;
  }

  .brand-copy small {
    display: none;
  }

  .stats-grid,
  .cert-grid,
  .feature-grid,
  .contact-grid,
  .campus-grid,
  .process-grid,
  .program-grid,
  .chips-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .topbar-shell {
    min-height: auto;
    padding: 0.65rem 0;
    font-size: 0.85rem;
  }

  .nav-shell {
    min-height: 78px;
  }

  .brand-logo {
    height: 46px;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }
}

.home-experience {
  overflow: clip;
}

.hero-home-v2 {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
}

.home-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: 2.75rem;
  align-items: center;
}

.home-hero-copy {
  position: relative;
  z-index: 2;
}

.home-hero-copy h1 {
  font-size: clamp(3.25rem, 5.9vw, 6.2rem);
  max-width: 10.4ch;
  line-height: 0.92;
}

.home-hero-copy p {
  max-width: 58ch;
  font-size: 1.08rem;
}

.hero-visual-stage {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center end;
  padding: 2rem 0 8.5rem;
}

.hero-visual-stage::before {
  content: "";
  position: absolute;
  inset: 2rem 0 5.5rem 8%;
  background:
    radial-gradient(120% 150% at 0% 100%, transparent 54%, rgba(255, 255, 255, 0.12) 55%, transparent 56%) 0 0 / 220px 112px repeat,
    radial-gradient(circle at 22% 30%, rgba(255, 255, 255, 0.13), transparent 18%),
    radial-gradient(circle at 78% 70%, rgba(255, 255, 255, 0.1), transparent 20%);
  opacity: 0.75;
  pointer-events: none;
}

.hero-main-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 500px);
  margin-left: auto;
  padding: 1.5rem;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 237, 0.96));
  box-shadow: 0 34px 90px rgba(114, 43, 10, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-main-panel__top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(254, 111, 47, 0.12);
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-chip--dark {
  color: var(--surface);
  background: rgba(17, 17, 17, 0.9);
}

.hero-brand-block {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border-radius: 28px;
  padding: 1.5rem;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.08), transparent 16%),
    linear-gradient(135deg, #2b221e 0%, #090807 55%, #1a120e 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 64px rgba(17, 17, 17, 0.22);
}

.hero-brand-block::before {
  content: "";
  position: absolute;
  inset: auto -10% -14% -10%;
  height: 120px;
  background:
    radial-gradient(145% 165% at 0% 100%, transparent 53.4%, rgba(255, 255, 255, 0.16) 54.1%, rgba(255, 255, 255, 0.16) 54.8%, transparent 55.5%) 0 0 / 170px 84px repeat-x,
    radial-gradient(145% 165% at 100% 0%, transparent 53.4%, rgba(255, 255, 255, 0.1) 54.1%, rgba(255, 255, 255, 0.1) 54.8%, transparent 55.5%) 0 38px / 150px 74px repeat-x;
  opacity: 0.92;
}

.hero-brand-logo {
  position: relative;
  z-index: 1;
  width: min(332px, 100%);
  border-radius: 24px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 18px 40px rgba(17, 17, 17, 0.24);
}

.hero-main-panel__content {
  padding: 1.4rem 0 0.4rem;
}

.hero-main-panel__content h2 {
  font-size: clamp(1.75rem, 2.55vw, 2.6rem);
  max-width: 13ch;
  line-height: 0.98;
  color: #201712;
  text-wrap: balance;
}

.hero-main-panel__content p {
  max-width: 39ch;
  color: #5e6573;
  text-align: left;
  text-wrap: pretty;
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.hero-orbit--one {
  width: 620px;
  height: 620px;
  top: 30px;
  right: 0;
}

.hero-orbit--two {
  width: 430px;
  height: 430px;
  bottom: 60px;
  left: 20px;
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-floating-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 0.35rem;
  width: 212px;
  padding: 1.05rem 1.15rem;
  border-radius: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 60px rgba(103, 35, 8, 0.22);
}

.hero-floating-card strong {
  color: inherit;
  font-family: var(--font-head);
  font-size: 1.55rem;
  line-height: 1.02;
}

.hero-floating-card span {
  color: inherit;
  font-size: 1rem;
  line-height: 1.42;
  text-align: left;
  text-wrap: pretty;
}

.hero-floating-card--stats {
  top: 104px;
  right: -6px;
  color: var(--ink);
  background: rgba(255, 238, 228, 0.95);
}

.hero-floating-card--programs {
  left: -4px;
  bottom: 84px;
  color: #fff9f4;
  background: linear-gradient(145deg, rgba(20, 17, 16, 0.98), rgba(37, 30, 27, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-floating-card--quality {
  right: 0;
  bottom: 42px;
  color: var(--surface);
  background: linear-gradient(135deg, rgba(255, 144, 92, 0.95), rgba(217, 76, 23, 0.96));
}

.home-hero-copy p {
  text-align: left;
  text-wrap: pretty;
}

.marquee-band {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
  background: #151311;
  color: rgba(255, 255, 255, 0.88);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  padding-left: 1rem;
  animation: marqueeRun 28s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.marquee-track span::after {
  content: "•";
  color: var(--brand-soft);
}

.home-signals .stats-grid .stat-card {
  background: rgba(255, 255, 255, 0.98);
}

.journey-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: start;
}

.home-journey {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 18%),
    radial-gradient(circle at left 10% bottom 12%, rgba(255, 255, 255, 0.06), transparent 16%),
    linear-gradient(145deg, #1b1613 0%, #090807 55%, #211813 100%);
}

.home-journey::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(140% 160% at 0% 100%, transparent 54%, rgba(255, 255, 255, 0.11) 55%, transparent 56%) 0 0 / 250px 112px repeat-x,
    radial-gradient(140% 160% at 100% 0%, transparent 54%, rgba(255, 255, 255, 0.08) 55%, transparent 56%) 0 40px / 220px 100px repeat-x;
  opacity: 0.7;
  pointer-events: none;
}

.home-journey > .container {
  position: relative;
  z-index: 1;
}

.journey-intro {
  position: sticky;
  top: 110px;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fffaf7, #ffe8d9);
  box-shadow: var(--shadow);
}

.journey-track {
  display: grid;
  gap: 1rem;
}

.journey-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.journey-index {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff915f, var(--brand-deep));
  color: var(--surface);
  font-family: var(--font-head);
  font-size: 1rem;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.spotlight-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 1.6rem 1.6rem 11.6rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  --spotlight-visual-start: #fff0e6;
  --spotlight-visual-end: #ffcdb1;
  --spotlight-visual-stroke: rgba(62, 32, 18, 0.18);
  --spotlight-visual-glow: rgba(254, 111, 47, 0.18);
  --spotlight-image: linear-gradient(145deg, var(--spotlight-visual-start), var(--spotlight-visual-end));
}

.spotlight-card::after {
  content: "";
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  height: 128px;
  border-radius: 34px;
  background-image:
    radial-gradient(circle at 22% 26%, rgba(255, 255, 255, 0.16), transparent 18%),
    radial-gradient(circle at 78% 72%, rgba(255, 255, 255, 0.1), transparent 22%),
    var(--spotlight-image);
  background-position: center;
  background-size: cover;
  box-shadow:
    inset 0 0 0 4px rgba(255, 255, 255, 0.55),
    inset 0 0 0 1px var(--spotlight-visual-stroke),
    0 18px 34px var(--spotlight-visual-glow);
  pointer-events: none;
}

.spotlight-card.has-image::after {
  background: none;
}

.spotlight-card__media {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  height: 128px;
  overflow: hidden;
  border-radius: 34px;
}

.spotlight-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.spotlight-card--wide {
  grid-column: span 7;
  background: linear-gradient(180deg, #fff4ec, #ffffff);
  --spotlight-visual-start: #fff1e4;
  --spotlight-visual-end: #ffc8a8;
  --spotlight-visual-stroke: rgba(217, 76, 23, 0.18);
}

.spotlight-card--tall {
  grid-column: span 5;
  background: linear-gradient(145deg, #161210, #2a1a12);
  color: var(--surface);
  --spotlight-visual-start: #3a2418;
  --spotlight-visual-end: #1d120c;
  --spotlight-visual-stroke: rgba(255, 255, 255, 0.18);
  --spotlight-visual-glow: rgba(17, 17, 17, 0.3);
}

.spotlight-card--tall p,
.spotlight-card--tall .program-meta span,
.spotlight-card--tall .link-inline {
  color: rgba(255, 255, 255, 0.84);
}

.spotlight-card--tall .btn-outline {
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.spotlight-card--accent {
  grid-column: span 5;
  background: linear-gradient(145deg, #ff915f, var(--brand-deep));
  color: var(--surface);
  --spotlight-visual-start: #ff8b57;
  --spotlight-visual-end: #dc4d17;
  --spotlight-visual-stroke: rgba(255, 255, 255, 0.24);
  --spotlight-visual-glow: rgba(103, 35, 8, 0.2);
}

.spotlight-card--accent p,
.spotlight-card--accent .program-meta span,
.spotlight-card--accent .link-inline {
  color: rgba(255, 255, 255, 0.9);
}

.spotlight-card--plain {
  grid-column: span 7;
  --spotlight-visual-start: #fff3e8;
  --spotlight-visual-end: #ffd7bf;
  --spotlight-visual-stroke: rgba(217, 76, 23, 0.16);
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.route-card {
  display: block;
  padding: 1.7rem;
  border-radius: 30px;
  background: linear-gradient(180deg, #fffaf7, #ffffff);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.route-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.14);
}

.campus-grid--immersive .campus-card:nth-child(2) {
  transform: translateY(24px);
}

.home-campuses {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 18%),
    radial-gradient(circle at left 10% bottom 12%, rgba(255, 255, 255, 0.06), transparent 16%),
    linear-gradient(145deg, #1b1613 0%, #090807 55%, #211813 100%);
}

.home-campuses::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(140% 160% at 0% 100%, transparent 54%, rgba(255, 255, 255, 0.11) 55%, transparent 56%) 0 0 / 250px 112px repeat-x,
    radial-gradient(140% 160% at 100% 0%, transparent 54%, rgba(255, 255, 255, 0.08) 55%, transparent 56%) 0 40px / 220px 100px repeat-x;
  opacity: 0.7;
  pointer-events: none;
}

.home-campuses > .container {
  position: relative;
  z-index: 1;
}

.home-campuses .section-title {
  color: var(--surface);
}

.home-campuses .eyebrow {
  color: #ff9a6b;
}

.proof-shell {
  display: grid;
  gap: 1.5rem;
}

.proof-copy {
  max-width: 58ch;
}

.cta-band--immersive {
  background: linear-gradient(180deg, #fffaf7, #fff0e6);
}

.page-variant-blue {
  background:
    radial-gradient(circle at top left, rgba(24, 63, 122, 0.1), transparent 22%),
    radial-gradient(circle at right 12% top 14%, rgba(254, 111, 47, 0.08), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.page-variant-blue .topbar {
  background: linear-gradient(90deg, #183f7a 0%, #0e2b56 62%, #fe6f2f 100%);
}

.page-variant-blue .hero-home--blue {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.28), transparent 15%),
    radial-gradient(circle at 10% 18%, rgba(24, 63, 122, 0.24), transparent 18%),
    radial-gradient(circle at 72% 82%, rgba(24, 63, 122, 0.18), transparent 18%),
    linear-gradient(135deg, #ff9869 0%, #fe6f2f 42%, var(--royal) 100%);
}

.page-variant-blue .hero-chip--dark,
.page-variant-blue .hero-floating-card--programs {
  background: linear-gradient(145deg, var(--royal) 0%, var(--royal-deep) 100%);
  color: var(--surface);
}

.page-variant-blue .marquee-band--blue {
  background: linear-gradient(90deg, var(--royal-deep), var(--royal));
}

.page-variant-blue .home-trust--blue {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 18%),
    radial-gradient(circle at left 10% bottom 10%, rgba(255, 255, 255, 0.08), transparent 16%),
    linear-gradient(145deg, #1a437f, var(--royal-deep) 52%, #091d3a 100%);
}

.page-variant-blue .home-trust--blue .feature-card {
  background:
    radial-gradient(circle at top right, rgba(24, 63, 122, 0.08), transparent 18%),
    rgba(255, 255, 255, 0.98);
  border-color: rgba(24, 63, 122, 0.08);
}

.page-variant-blue .home-trust--blue .feature-card h3,
.page-variant-blue .home-trust--blue .feature-card strong {
  color: var(--ink);
}

.page-variant-blue .home-trust--blue .feature-card p {
  color: var(--muted);
}

.page-variant-blue .home-trust--blue .feature-card .section-kicker {
  color: var(--royal);
}

.page-variant-trust-media .home-trust--blue .feature-grid--media {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.page-variant-trust-media .home-trust--blue .feature-card--media {
  min-height: 288px;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(145deg, rgba(11, 29, 56, 0.78), rgba(23, 57, 104, 0.55));
  box-shadow: 0 22px 56px rgba(4, 15, 33, 0.24);
}

.page-variant-trust-media .home-trust--blue .feature-card--media::before {
  z-index: 3;
}

.page-variant-trust-media .home-trust--blue .feature-card__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-variant-trust-media .home-trust--blue .feature-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 21, 41, 0.04) 0%, rgba(7, 21, 41, 0.12) 34%, rgba(7, 21, 41, 0.78) 100%),
    linear-gradient(145deg, rgba(24, 63, 122, 0.2), rgba(254, 111, 47, 0.08));
}

.page-variant-trust-media .home-trust--blue .feature-card__media-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0e203c;
}

.page-variant-trust-media .home-trust--blue .feature-card__caption {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: 288px;
  padding: 1.4rem 1.45rem 1.3rem;
}

.page-variant-trust-media .home-trust--blue .feature-card__caption h3 {
  margin: 0;
  max-width: 14ch;
  color: var(--surface);
  font-size: 1.3rem;
  line-height: 1.16;
  letter-spacing: -0.015em;
  text-wrap: balance;
  text-shadow: 0 10px 24px rgba(5, 10, 18, 0.35);
}

@media (max-width: 720px) {
  .page-variant-trust-media .home-trust--blue .feature-grid--media {
    grid-template-columns: 1fr;
  }

  .page-variant-trust-media .home-trust--blue .feature-card--media,
  .page-variant-trust-media .home-trust--blue .feature-card__caption {
    min-height: 236px;
  }
}

.page-variant-blue .home-journey--blue,
.page-variant-blue .home-campuses--blue {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 18%),
    radial-gradient(circle at left 10% bottom 12%, rgba(255, 255, 255, 0.06), transparent 16%),
    linear-gradient(145deg, #173968 0%, #0d2446 55%, #09192e 100%);
}

.page-variant-blue .journey-intro {
  background: linear-gradient(180deg, #f7faff, #e6eefb);
}

.page-variant-blue .home-campuses--blue .eyebrow,
.page-variant-blue .home-campuses--blue .section-title {
  color: var(--surface);
}

.page-variant-blue .surface-photo {
  position: relative;
  overflow: hidden;
}

.page-variant-blue .surface-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--surface-photo-image);
  background-size: cover;
  background-position: var(--surface-photo-position, center);
  opacity: 0.05;
  filter: blur(2px) saturate(0.82) contrast(1.02);
  transform: scale(1.04);
  pointer-events: none;
}

.page-variant-blue .surface-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 239, 232, 0.96));
  pointer-events: none;
}

.page-variant-blue .surface-photo > .container {
  position: relative;
  z-index: 1;
}

.page-variant-blue .surface-photo--safety {
  --surface-photo-image: url("../img/programas/seguridad.png");
  --surface-photo-position: center 38%;
}

.page-variant-blue .surface-photo--systems {
  --surface-photo-image: url("../img/programas/sistemas.png");
  --surface-photo-position: center 36%;
}

.page-variant-blue .surface-photo--marketing {
  --surface-photo-image: url("../img/programas/mercadeo.png");
  --surface-photo-position: center 38%;
}

.page-variant-blue .surface-photo--tribunal {
  --surface-photo-image: url("../img/programas/tribunal.png");
  --surface-photo-position: center 34%;
}

.page-variant-blue .logo-chip__mark {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(145deg, var(--royal) 0%, var(--royal-deep) 100%);
}

.page-variant-blue .cta-band--blue-eval {
  background:
    radial-gradient(circle at top right, rgba(24, 63, 122, 0.1), transparent 18%),
    linear-gradient(180deg, #f7faff 0%, #e9f0fb 100%);
  border-color: rgba(24, 63, 122, 0.1);
}

.page-variant-blue .cta-band--blue-eval::before {
  background:
    radial-gradient(140% 160% at 0% 100%, transparent 54%, rgba(24, 63, 122, 0.12) 55%, transparent 56%) 0 0 / 140px 80px repeat-x;
}

.page-variant-blue .site-footer {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 16%),
    linear-gradient(145deg, var(--royal), var(--royal-deep));
}

.page-variant-blue .site-footer::before {
  background:
    radial-gradient(140% 160% at 0% 100%, transparent 54%, rgba(255, 255, 255, 0.12) 55%, transparent 56%) 0 0 / 240px 110px repeat-x;
}

.certifications-grid-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.3), transparent 15%),
    radial-gradient(circle at 18% 72%, rgba(255, 255, 255, 0.1), transparent 20%),
    linear-gradient(135deg, #ff9a6b 0%, #fe6f2f 44%, #d94c17 100%);
}

.certifications-grid-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(145% 165% at 0% 100%, transparent 53.6%, rgba(255, 255, 255, 0.16) 54.2%, rgba(255, 255, 255, 0.16) 54.8%, transparent 55.5%) 0 0 / 320px 136px repeat-x,
    radial-gradient(145% 165% at 100% 0%, transparent 53.6%, rgba(255, 255, 255, 0.12) 54.2%, rgba(255, 255, 255, 0.12) 54.8%, transparent 55.5%) 0 46px / 260px 118px repeat-x;
  opacity: 0.82;
  pointer-events: none;
}

.certifications-grid-section > .container {
  position: relative;
  z-index: 1;
}

.certifications-support {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 18%),
    radial-gradient(circle at left 10% bottom 12%, rgba(255, 255, 255, 0.06), transparent 16%),
    linear-gradient(145deg, #1b1613 0%, #090807 55%, #211813 100%);
}

.certifications-support::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(140% 160% at 0% 100%, transparent 54%, rgba(255, 255, 255, 0.11) 55%, transparent 56%) 0 0 / 250px 112px repeat-x,
    radial-gradient(140% 160% at 100% 0%, transparent 54%, rgba(255, 255, 255, 0.08) 55%, transparent 56%) 0 40px / 220px 100px repeat-x;
  opacity: 0.72;
  pointer-events: none;
}

.certifications-support > .container {
  position: relative;
  z-index: 1;
}

.certifications-support .cta-band {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(145deg, rgba(33, 24, 19, 0.98), rgba(12, 10, 9, 0.98));
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.24);
}

.certifications-support .cta-band::before {
  background:
    radial-gradient(140% 160% at 0% 100%, transparent 54%, rgba(255, 255, 255, 0.08) 55%, transparent 56%) 0 0 / 140px 80px repeat-x;
}

.certifications-support .cta-band h2,
.certifications-support .cta-band p,
.certifications-support .cta-band .section-kicker {
  color: var(--surface);
}

.certifications-support .cta-band p {
  color: rgba(255, 255, 255, 0.82);
}

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

@media (max-width: 1140px) {
  .home-hero-shell,
  .journey-shell,
  .routes-grid {
    grid-template-columns: 1fr;
  }

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

  .spotlight-card,
  .spotlight-card--wide,
  .spotlight-card--tall,
  .spotlight-card--accent,
  .spotlight-card--plain {
    grid-column: span 1;
  }

  .hero-visual-stage {
    min-height: 620px;
    padding-bottom: 7rem;
  }
}

@media (max-width: 900px) {
  .hero-home-v2 {
    min-height: auto;
    padding-top: 5rem;
  }

  .hero-visual-stage {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 0;
  }

  .hero-orbit {
    display: none;
  }

  .hero-main-panel {
    width: 100%;
    margin-left: 0;
  }

  .hero-floating-card {
    position: static;
    width: 100%;
    margin-top: 0;
    z-index: auto;
  }

  .marquee-track {
    animation-duration: 18s;
  }

  .journey-intro {
    position: static;
  }

  .routes-grid,
  .spotlight-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-card {
    padding-bottom: 10.8rem;
  }

  .spotlight-card::after {
    height: 118px;
  }

  .spotlight-card__media {
    height: 118px;
  }

  .campus-grid--immersive .campus-card:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 720px) {
  .home-hero-copy h1 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .hero-main-panel {
    padding: 1.1rem;
    border-radius: 28px;
  }

  .spotlight-card {
    min-height: 0;
    padding: 1.35rem 1.35rem 9.8rem;
  }

  .spotlight-card::after {
    left: 1.15rem;
    right: 1.15rem;
    bottom: 1.15rem;
    height: 104px;
    border-radius: 24px;
  }

  .spotlight-card__media {
    left: 1.15rem;
    right: 1.15rem;
    bottom: 1.15rem;
    height: 104px;
    border-radius: 24px;
  }

  .hero-brand-block {
    min-height: 190px;
  }

  .marquee-band {
    padding: 0.8rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .marquee-track {
    animation: none;
  }
}
