/* MS International Business School — public site + admin */
:root {
  --purple-950: #2b0a3d;
  --purple-900: #351049;
  --purple-800: #48155f;
  --purple-700: #5d237a;
  --purple-600: #75408f;
  --purple-100: #f1e9f4;
  --purple-50: #faf6fb;
  --gold-600: #b28724;
  --gold-500: #d4af37;
  --gold-400: #e3c66f;
  --gold-200: #f2e4b4;
  --ivory: #fcf9f2;
  --cream: #f5efe4;
  --white: #fff;
  --ink: #211b24;
  --ink-soft: #5f5762;
  --line: #e6dfda;
  --line-dark: rgba(255, 255, 255, 0.14);
  --success: #146b4b;
  --danger: #a52b3a;
  --warning: #9a6a0a;
  --shadow-sm: 0 8px 22px rgba(42, 18, 50, 0.08);
  --shadow-md: 0 18px 50px rgba(42, 18, 50, 0.12);
  --shadow-lg: 0 35px 90px rgba(26, 5, 37, 0.25);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --radius-xl: 48px;
  --shell: min(1240px, calc(100vw - 48px));
  --header-height: 92px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.admin-menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
input, textarea, select {
  width: 100%;
  border: 1px solid #d8cfdc;
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  padding: 13px 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--purple-700);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--purple-700) 13%, transparent);
}
textarea { resize: vertical; }
::selection { background: var(--gold-200); color: var(--purple-950); }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(3rem, 6.6vw, 6.3rem); font-weight: 500; }
h2 { font-size: clamp(2.15rem, 4.4vw, 4.35rem); font-weight: 500; }
h3 { font-size: 1.55rem; font-weight: 500; }
p { color: var(--ink-soft); }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 112px 0; }
.section-ivory { background: var(--ivory); }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  background: var(--white);
  color: var(--purple-950);
  padding: 10px 14px;
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }
.preline { white-space: pre-line; }
.body-large { font-size: 1.2rem; line-height: 1.85; }
.honeypot { position: absolute !important; left: -10000px !important; }

.eyebrow {
  margin: 0 0 16px;
  color: var(--purple-700);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.35;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 11px 3px 0;
  background: var(--gold-500);
}
.eyebrow-light { color: var(--gold-400); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 22px;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .015em;
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s ease, border-color .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
}
.button-lg { min-height: 54px; padding: 14px 28px; font-size: .95rem; }
.button-sm { min-height: 36px; padding: 7px 14px; font-size: .78rem; }
.button-full { width: 100%; }
.button-primary { background: var(--purple-950); color: var(--white); box-shadow: 0 10px 24px rgba(43, 10, 61, .18); }
.button-primary:hover { background: color-mix(in srgb, var(--purple-950), black 9%); box-shadow: 0 14px 32px rgba(43, 10, 61, .25); }
.button-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500) 55%, var(--gold-600));
  color: var(--purple-950);
  box-shadow: 0 12px 30px rgba(178, 135, 36, .25);
}
.button-gold:hover { box-shadow: 0 16px 36px rgba(178, 135, 36, .34); }
.button-outline-light { border-color: rgba(255,255,255,.45); color: var(--white); background: rgba(255,255,255,.04); backdrop-filter: blur(8px); }
.button-outline-light:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.75); }
.button-ghost { border-color: #d9cfdd; background: var(--white); color: var(--purple-950); }
.button-ghost:hover { border-color: var(--purple-700); box-shadow: var(--shadow-sm); }
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--purple-950);
  font-weight: 800;
  border-bottom: 1px solid color-mix(in srgb, var(--purple-950) 25%, transparent);
  padding-bottom: 4px;
}
.text-link span { color: var(--gold-600); }
.text-link:hover { border-color: var(--gold-500); }

.demo-banner {
  min-height: 34px;
  padding: 7px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #f5e8ba;
  color: #5b4308;
  font-size: .77rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 1002;
}
.demo-banner a { text-decoration: underline; }
.demo-dot { width: 7px; height: 7px; border-radius: 50%; background: #a87808; box-shadow: 0 0 0 4px rgba(168,120,8,.15); }

.site-header {
  position: relative;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(46, 30, 48, .1);
}
.topbar {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6e6570;
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .025em;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar a:hover { color: var(--purple-700); }
.topbar-separator { width: 1px; height: 12px; background: #ddd5df; }
.topbar-admin { color: var(--purple-700); }
.main-nav { height: var(--header-height); display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand img { width: 48px; height: 56px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; color: var(--purple-950); }
.brand-copy strong { font-family: Georgia, serif; font-size: 1.85rem; font-weight: 500; letter-spacing: .06em; }
.brand-copy span { margin-top: 6px; font-size: .59rem; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; white-space: nowrap; }
.desktop-menu { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.desktop-menu a { position: relative; padding: 12px 12px; font-size: .84rem; font-weight: 750; color: #443b47; }
.desktop-menu a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 5px; height: 2px; background: var(--gold-500); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.desktop-menu a:hover::after, .desktop-menu a.is-active::after { transform: scaleX(1); }
.nav-cta { flex: 0 0 auto; }
.nav-toggle { display: none; margin-left: auto; border: 0; background: transparent; padding: 10px; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; width: 26px; height: 2px; margin: 5px 0; background: var(--purple-950); transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: absolute; left: 0; right: 0; top: 100%; background: var(--white); border-top: 1px solid var(--line); box-shadow: var(--shadow-md); }
.mobile-menu-inner { padding: 18px 0 28px; display: grid; }
.mobile-menu a:not(.button) { padding: 12px 4px; border-bottom: 1px solid var(--line); font-weight: 750; }
.mobile-menu .button { margin-top: 20px; }

.flash-stack { position: fixed; top: 150px; right: 24px; z-index: 3000; display: grid; gap: 10px; width: min(420px, calc(100vw - 32px)); }
.flash { display: flex; justify-content: space-between; align-items: center; gap: 16px; border-radius: 12px; padding: 14px 16px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-md); font-size: .9rem; }
.flash-success { border-left: 4px solid var(--success); }
.flash-error { border-left: 4px solid var(--danger); }
.flash button { border: 0; background: transparent; font-size: 1.35rem; cursor: pointer; }

/* Home */
.hero-home {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 35%, color-mix(in srgb, var(--purple-700) 78%, transparent) 0, transparent 29%),
    radial-gradient(circle at 15% 92%, rgba(212,175,55,.12), transparent 32%),
    linear-gradient(120deg, #1e052b 0%, var(--purple-950) 43%, #421252 100%);
}
.hero-home::before { content: ""; position: absolute; inset: 0; opacity: .15; background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(to right, black, transparent 82%); }
.hero-home::after { content: ""; position: absolute; width: 640px; height: 640px; border: 1px solid rgba(212,175,55,.2); border-radius: 50%; right: -180px; bottom: -350px; }
.hero-home-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; min-height: 710px; gap: 60px; padding: 74px 0 86px; }
.hero-copy { max-width: 720px; }
.hero-copy h1 { margin-bottom: 28px; max-width: 760px; color: var(--white); }
.hero-copy h1 em { color: var(--gold-400); font-style: normal; }
.hero-lead { max-width: 650px; margin-bottom: 34px; color: rgba(255,255,255,.74); font-size: 1.14rem; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-proof { margin-top: 54px; padding-top: 26px; border-top: 1px solid var(--line-dark); display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hero-proof div { display: flex; flex-direction: column; }
.hero-proof strong { font-size: .94rem; color: var(--gold-400); }
.hero-proof span { margin-top: 3px; font-size: .73rem; color: rgba(255,255,255,.55); }
.hero-art { position: relative; min-height: 520px; display: grid; place-items: center; }
.hero-seal { position: relative; z-index: 2; width: 360px; height: 390px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 48% 48% 50% 50%; background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.015)); border: 1px solid rgba(255,255,255,.15); box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 40px 100px rgba(0,0,0,.32); backdrop-filter: blur(12px); }
.hero-seal img { width: 205px; height: 235px; }
.hero-seal > span { margin-top: -16px; font-family: Georgia, serif; font-size: 2rem; color: var(--white); letter-spacing: .12em; }
.hero-seal small { margin-top: 8px; color: rgba(255,255,255,.66); text-transform: uppercase; font-size: .58rem; letter-spacing: .18em; }
.hero-orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(212,175,55,.34); }
.hero-orbit-one { width: 500px; height: 500px; animation: spin 22s linear infinite; }
.hero-orbit-one::before, .hero-orbit-two::before { content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--gold-500); top: 12%; left: 18%; box-shadow: 0 0 24px var(--gold-500); }
.hero-orbit-two { width: 430px; height: 430px; border-style: dashed; opacity: .6; animation: spin-reverse 30s linear infinite; }
.hero-floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; width: 245px; padding: 15px 17px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: rgba(30,5,43,.72); backdrop-filter: blur(14px); box-shadow: var(--shadow-lg); }
.hero-card-one { top: 60px; right: -12px; }
.hero-card-two { left: -22px; bottom: 48px; }
.mini-icon { display: grid; place-items: center; flex: 0 0 38px; height: 38px; border-radius: 50%; background: rgba(212,175,55,.16); color: var(--gold-400); font-size: 1.15rem; }
.hero-floating-card div { display: flex; flex-direction: column; }
.hero-floating-card strong { color: var(--white); font-size: .8rem; }
.hero-floating-card small { color: rgba(255,255,255,.52); font-size: .66rem; }
.hero-scroll { position: absolute; z-index: 2; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.46); font-size: .64rem; letter-spacing: .15em; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
.hero-scroll span { width: 44px; height: 1px; background: var(--gold-500); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-reverse { to { transform: rotate(-360deg); } }

.identity-strip { background: var(--gold-500); color: var(--purple-950); }
.identity-strip-inner { min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: .68rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.identity-strip i { width: 4px; height: 4px; border-radius: 50%; background: var(--purple-950); opacity: .42; }
.finder-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 90px; }
.section-heading { max-width: 800px; }
.section-heading h2 { margin-bottom: 20px; }
.section-heading > p:last-child { font-size: 1.05rem; line-height: 1.8; }
.section-heading-row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 50px; }
.section-heading-row > div { max-width: 760px; }
.section-heading-row h2 { margin-bottom: 0; }
.section-heading.centered { margin: 0 auto 58px; text-align: center; }
.section-heading.centered .eyebrow::before { display: none; }
.finder-card { padding: 30px; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-md); display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 14px; }
.finder-card label { display: flex; flex-direction: column; gap: 7px; }
.finder-card label span { font-size: .7rem; font-weight: 800; color: var(--purple-950); }
.finder-card .button { grid-column: 1 / -1; margin-top: 4px; }
.programs-showcase { background: var(--white); }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.program-card { position: relative; overflow: hidden; min-height: 460px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.program-card::before { content: ""; position: absolute; height: 4px; inset: 0 0 auto; background: var(--card-accent, var(--gold-500)); }
.program-card::after { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; right: -95px; bottom: -90px; background: color-mix(in srgb, var(--card-accent, var(--gold-500)) 12%, transparent); transition: transform .35s var(--ease); }
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--card-accent, var(--gold-500)) 55%, var(--line)); }
.program-card:hover::after { transform: scale(1.35); }
.program-card-top { display: flex; align-items: center; justify-content: space-between; }
.program-level { display: inline-flex; border-radius: 999px; padding: 6px 11px; background: var(--purple-100); color: var(--purple-700); font-size: .7rem; font-weight: 850; }
.program-arrow { width: 35px; height: 35px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); color: var(--purple-700); }
.program-domain { margin: 28px 0 10px; color: var(--gold-600); font-size: .69rem; font-weight: 850; text-transform: uppercase; letter-spacing: .13em; }
.program-card h3 { margin-bottom: 16px; font-size: 1.82rem; }
.program-card h3 a::after { content: ""; position: absolute; inset: 0; }
.program-card > p { margin-bottom: 24px; font-size: .91rem; line-height: 1.75; }
.program-meta { margin: auto 0 24px; display: grid; gap: 9px; }
.program-meta div { display: flex; justify-content: space-between; gap: 18px; padding-bottom: 8px; border-bottom: 1px solid var(--line); font-size: .76rem; }
.program-meta dt { color: var(--ink-soft); }
.program-meta dd { margin: 0; color: var(--ink); font-weight: 750; text-align: right; }
.program-card-actions { position: relative; z-index: 2; display: flex; justify-content: space-between; gap: 14px; }
.program-card-actions a { font-size: .77rem; font-weight: 850; color: var(--purple-700); }
.program-card-actions a:last-child { color: var(--gold-600); }

.manifesto-section { min-height: 660px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; background: var(--purple-950); color: var(--white); overflow: hidden; }
.manifesto-visual { position: relative; min-height: 660px; display: grid; place-items: center; background: radial-gradient(circle at 50% 50%, var(--purple-700), var(--purple-950) 63%); overflow: hidden; }
.manifesto-visual::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent 0 72px, rgba(255,255,255,.04) 72px 73px); }
.manifesto-monogram { position: relative; z-index: 2; font-family: Georgia, serif; font-size: clamp(9rem, 18vw, 18rem); letter-spacing: -.08em; line-height: 1; background: linear-gradient(135deg, #f5e8b7, var(--gold-500), #8f6512); -webkit-background-clip: text; background-clip: text; color: transparent; filter: drop-shadow(0 30px 30px rgba(0,0,0,.2)); }
.manifesto-rings { position: absolute; width: 520px; height: 520px; border: 1px solid rgba(212,175,55,.3); border-radius: 50%; }
.manifesto-rings::before, .manifesto-rings::after { content: ""; position: absolute; border: 1px solid rgba(212,175,55,.18); border-radius: 50%; inset: 50px; }
.manifesto-rings::after { inset: 105px; }
.manifesto-copy { padding: 90px clamp(48px, 7vw, 110px); display: flex; flex-direction: column; justify-content: center; }
.manifesto-copy h2 { color: var(--white); margin-bottom: 28px; font-size: clamp(2.5rem, 4.1vw, 4.5rem); }
.manifesto-copy > p:not(.eyebrow) { color: rgba(255,255,255,.67); font-size: 1.05rem; line-height: 1.9; margin-bottom: 34px; max-width: 650px; }
.manifesto-copy .button { align-self: flex-start; }
.pillars-section { background: var(--ivory); }
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #d9cfd8; border-bottom: 1px solid #d9cfd8; }
.pillar { min-height: 330px; padding: 34px 28px; border-right: 1px solid #d9cfd8; transition: background .25s, transform .25s; }
.pillar:last-child { border-right: 0; }
.pillar:hover { background: var(--white); transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.pillar-index { display: block; margin-bottom: 80px; color: var(--gold-600); font-size: .72rem; font-weight: 900; letter-spacing: .12em; }
.pillar h3 { font-size: 1.72rem; }
.pillar p { font-size: .9rem; line-height: 1.75; }
.alternance-section { background: var(--white); }
.alternance-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }
.alternance-copy h2 { margin-bottom: 26px; }
.alternance-copy > p:not(.eyebrow) { font-size: 1.05rem; line-height: 1.85; }
.check-list { list-style: none; padding: 0; margin: 30px 0; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 35px; font-weight: 650; color: #433b46; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 23px; height: 23px; border-radius: 50%; display: grid; place-items: center; background: var(--gold-200); color: var(--purple-950); font-size: .72rem; font-weight: 900; }
.alternance-panel { overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(145deg, var(--purple-950), #4f1763); color: var(--white); box-shadow: var(--shadow-lg); }
.alternance-panel-top { min-height: 70px; padding: 18px 26px; border-bottom: 1px solid var(--line-dark); display: flex; align-items: center; justify-content: space-between; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.alternance-panel-top i { width: 70px; height: 1px; background: var(--gold-500); position: relative; }
.alternance-panel-top i::after { content: ""; position: absolute; right: 0; top: -3px; border-left: 5px solid var(--gold-500); border-top: 3px solid transparent; border-bottom: 3px solid transparent; }
.alternance-center { min-height: 320px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 34px; }
.alternance-center img { width: 100px; height: 116px; margin-bottom: 12px; }
.alternance-center strong { font-family: Georgia, serif; font-size: 2rem; font-weight: 500; }
.alternance-center p { max-width: 390px; color: rgba(255,255,255,.62); }
.alternance-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); }
.alternance-stat-grid div { min-height: 90px; padding: 19px; display: flex; flex-direction: column; border-right: 1px solid var(--line-dark); }
.alternance-stat-grid div:last-child { border-right: 0; }
.alternance-stat-grid strong { color: var(--gold-400); font-size: .78rem; }
.alternance-stat-grid span { color: rgba(255,255,255,.54); font-size: .68rem; }
.admissions-section { background: var(--ivory); }
.steps-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.steps-grid li { position: relative; padding: 34px 30px 26px; border-top: 1px solid #d9cfd8; border-bottom: 1px solid #d9cfd8; border-right: 1px solid #d9cfd8; }
.steps-grid li:first-child { border-left: 1px solid #d9cfd8; }
.steps-grid li::after { content: ""; position: absolute; top: -1px; left: -1px; right: -1px; height: 3px; background: var(--gold-500); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.steps-grid li:hover::after { transform: scaleX(1); }
.steps-grid li > span { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 62px; background: var(--purple-950); color: var(--gold-400); font-weight: 900; }
.steps-grid h3 { font-size: 1.65rem; }
.steps-grid p { font-size: .88rem; }
.international-home { position: relative; overflow: hidden; padding: 110px 0; color: var(--white); background: linear-gradient(125deg, #1f062d, var(--purple-950) 60%, #4f1762); }
.international-home::before { content: "INTERNATIONAL"; position: absolute; bottom: -58px; left: 0; font-family: Georgia, serif; font-size: 14vw; color: rgba(255,255,255,.035); white-space: nowrap; }
.international-home-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 100px; }
.international-globe { position: relative; width: min(430px, 100%); aspect-ratio: 1; display: grid; place-items: center; margin-inline: auto; border: 1px solid rgba(212,175,55,.34); border-radius: 50%; }
.international-globe::before, .international-globe::after { content: ""; position: absolute; inset: 18%; border: 1px solid rgba(212,175,55,.24); border-radius: 50%; }
.international-globe::after { inset: 0 34%; }
.international-globe > span { font-family: Georgia, serif; font-size: 5rem; color: var(--gold-400); z-index: 2; }
.globe-ring { position: absolute; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; }
.ring-a { inset: 12% 0; }
.ring-b { inset: 0 18%; }
.ring-c { inset: 0; transform: rotate(45deg); }
.international-copy h2 { color: var(--white); }
.international-copy > p:not(.eyebrow) { color: rgba(255,255,255,.68); font-size: 1.05rem; line-height: 1.85; margin-bottom: 30px; }
.news-section { background: var(--white); }
.heading-links { display: flex; gap: 24px; flex-wrap: wrap; }
.news-layout { display: grid; grid-template-columns: 1fr 340px; gap: 28px; }
.article-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.article-card { overflow: hidden; border-radius: var(--radius-md); border: 1px solid var(--line); background: var(--white); transition: transform .25s, box-shadow .25s; }
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.article-visual { height: 200px; position: relative; overflow: hidden; padding: 18px; background: linear-gradient(145deg, var(--purple-950), var(--purple-700)); color: var(--white); }
.article-visual::before { content: ""; position: absolute; width: 190px; height: 190px; border: 1px solid rgba(212,175,55,.28); border-radius: 50%; right: -60px; top: -60px; }
.article-visual span { position: relative; z-index: 2; display: inline-flex; padding: 6px 10px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; font-size: .66rem; text-transform: uppercase; letter-spacing: .1em; }
.article-visual strong { position: absolute; right: 24px; bottom: -24px; font-family: Georgia, serif; font-size: 9rem; font-weight: 400; color: rgba(212,175,55,.42); }
.article-body { padding: 24px; }
.article-date { margin-bottom: 9px; color: var(--gold-600); font-size: .68rem; font-weight: 850; letter-spacing: .1em; }
.article-body h3 { font-size: 1.55rem; }
.article-body p:not(.article-date) { font-size: .88rem; line-height: 1.7; }
.article-body .text-link { font-size: .78rem; }
.event-list { border-radius: var(--radius-md); background: var(--ivory); border: 1px solid var(--line); padding: 28px; }
.event-list-title { color: var(--purple-950); font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.event-list article { padding: 24px 0; border-bottom: 1px solid var(--line); }
.event-list article:last-child { border-bottom: 0; }
.event-date { color: var(--gold-600); font-size: .72rem; font-weight: 850; }
.event-list h3 { margin: 9px 0; font-size: 1.3rem; }
.event-list article p { margin-bottom: 10px; font-size: .8rem; }
.event-list article a { font-size: .76rem; font-weight: 850; color: var(--purple-700); }
.final-cta { padding: 88px 0; background: var(--purple-950); color: var(--white); }
.final-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 50px; }
.final-cta-inner h2 { margin-bottom: 0; color: var(--white); max-width: 760px; }
.final-cta-actions { flex: 0 0 auto; display: flex; flex-wrap: wrap; gap: 14px; }

/* Page headers */
.page-hero { position: relative; overflow: hidden; padding: 120px 0; background: linear-gradient(120deg, #1f062d, var(--purple-950) 60%, #4b155e); color: var(--white); }
.page-hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to right, black, transparent); }
.page-hero-compact { padding: 86px 0; }
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 280px; align-items: center; gap: 70px; }
.page-hero h1 { margin-bottom: 24px; max-width: 920px; font-size: clamp(3rem, 5.6vw, 5.5rem); color: var(--white); }
.page-hero p:not(.eyebrow) { max-width: 780px; color: rgba(255,255,255,.68); font-size: 1.08rem; }
.page-hero-mark { justify-self: center; opacity: .75; filter: drop-shadow(0 30px 60px rgba(0,0,0,.3)); }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; color: rgba(255,255,255,.56); font-size: .72rem; }
.breadcrumbs a:hover { color: var(--gold-400); }

/* Catalog */
.catalog-section { min-height: 700px; }
.catalog-filters { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr) auto; gap: 10px; align-items: center; padding: 18px; border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.catalog-filters input, .catalog-filters select { height: 48px; background: #faf8fb; }
.filter-search input { padding-left: 18px; }
.filter-reset { grid-column: 1 / -1; justify-self: end; font-size: .75rem; color: var(--purple-700); font-weight: 750; }
.catalog-result-head { margin: 34px 0 18px; display: flex; justify-content: space-between; gap: 20px; }
.catalog-result-head p { margin: 0; }
.catalog-result-head a { color: var(--purple-700); font-size: .82rem; font-weight: 800; }
.catalog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.catalog-card { position: relative; overflow: hidden; padding: 30px; border-radius: var(--radius-md); border: 1px solid var(--line); background: var(--white); }
.catalog-card-accent { position: absolute; inset: 0 auto 0 0; width: 5px; background: var(--card-accent, var(--gold-500)); }
.catalog-card-header { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 25px; }
.catalog-card-header > div { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.catalog-domain, .catalog-campus { font-size: .7rem; color: var(--ink-soft); font-weight: 750; }
.catalog-card h2 { font-size: 2rem; }
.catalog-card > p { min-height: 78px; font-size: .9rem; }
.catalog-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin: 26px 0; }
.catalog-facts div { padding: 13px; background: var(--white); display: flex; flex-direction: column; }
.catalog-facts span { font-size: .64rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .08em; }
.catalog-facts strong { font-size: .82rem; }
.catalog-card-footer { display: flex; gap: 10px; }
.catalog-empty { grid-column: 1 / -1; }
.empty-state { padding: 50px; border: 1px dashed #cfc2d2; border-radius: var(--radius-md); background: var(--white); text-align: center; }
.catalog-help { padding: 74px 0; background: var(--purple-950); color: var(--white); }
.catalog-help-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.catalog-help h2 { margin: 0; color: var(--white); font-size: clamp(2rem, 3.3vw, 3.4rem); }

/* Program detail */
.program-hero { position: relative; overflow: hidden; padding: 86px 0; color: var(--white); background: linear-gradient(120deg, #1d0529, var(--purple-950) 62%, color-mix(in srgb, var(--program-accent, var(--gold-500)) 26%, var(--purple-950))); }
.program-hero::after { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; border: 1px solid color-mix(in srgb, var(--program-accent, var(--gold-500)) 45%, transparent); right: -220px; top: -240px; }
.program-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 390px; align-items: center; gap: 70px; }
.program-hero h1 { color: var(--white); font-size: clamp(3rem, 5.2vw, 5.3rem); margin-bottom: 22px; }
.program-hero-copy > p:not(.eyebrow) { max-width: 760px; color: rgba(255,255,255,.7); font-size: 1.08rem; }
.program-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.program-tags span { padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16); font-size: .68rem; font-weight: 800; }
.program-fact-card { border-radius: var(--radius-md); background: rgba(255,255,255,.96); color: var(--ink); box-shadow: var(--shadow-lg); padding: 8px 28px; }
.program-fact-card div { padding: 17px 0; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.program-fact-card div:last-child { border-bottom: 0; }
.program-fact-card span { color: var(--ink-soft); font-size: .72rem; }
.program-fact-card strong { font-size: .79rem; text-align: right; }
.program-subnav { position: sticky; top: 0; z-index: 900; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 6px 16px rgba(30,14,36,.04); }
.program-subnav .shell { display: flex; overflow-x: auto; gap: 4px; scrollbar-width: none; }
.program-subnav a { white-space: nowrap; padding: 17px 16px; font-size: .74rem; font-weight: 800; color: #574d5a; }
.program-subnav a:hover { color: var(--purple-700); background: var(--purple-50); }
.program-content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 80px; }
.content-block { padding: 0 0 86px; margin-bottom: 86px; border-bottom: 1px solid var(--line); scroll-margin-top: 90px; }
.content-block:last-child { margin-bottom: 0; }
.content-block h2 { margin-bottom: 30px; }
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.feature-list li { padding: 18px; border: 1px solid var(--line); border-radius: 12px; display: flex; gap: 12px; align-items: flex-start; font-weight: 700; }
.feature-list span { display: grid; place-items: center; flex: 0 0 25px; height: 25px; border-radius: 50%; background: var(--gold-200); color: var(--purple-950); }
.module-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.module-grid div { min-height: 90px; padding: 18px; border-radius: 12px; background: var(--ivory); display: flex; gap: 16px; align-items: flex-start; }
.module-grid span { color: var(--gold-600); font-size: .7rem; font-weight: 900; }
.module-grid strong { font-size: .88rem; }
.content-note { margin-top: 18px; padding: 14px 16px; border-left: 3px solid var(--gold-500); background: #fbf5df; font-size: .76rem; }
.timeline-list { list-style: none; padding: 0; margin: 0 0 30px; }
.timeline-list li { position: relative; display: grid; grid-template-columns: 44px 1fr; gap: 18px; min-height: 72px; }
.timeline-list li:not(:last-child)::after { content: ""; position: absolute; top: 42px; bottom: 0; left: 21px; width: 1px; background: var(--line); }
.timeline-list span { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--purple-950); color: var(--gold-400); font-weight: 900; }
.timeline-list p { padding-top: 9px; color: var(--ink); font-weight: 650; }
.career-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.career-tags span { padding: 11px 16px; border-radius: 999px; background: var(--purple-100); color: var(--purple-700); font-size: .8rem; font-weight: 750; }
.certification-block { padding: 34px; border: 1px solid #dbcfa8; border-radius: var(--radius-md); background: #fffdf7; }
.certification-header { display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; }
.rncp-badge { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: var(--gold-500); color: var(--purple-950); font-weight: 900; font-size: .74rem; }
.certification-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 26px 0; background: #dfd4b8; border: 1px solid #dfd4b8; }
.certification-facts div { padding: 15px; background: #fffdf7; }
.certification-facts dt { font-size: .64rem; color: var(--ink-soft); text-transform: uppercase; }
.certification-facts dd { margin: 5px 0 0; font-size: .8rem; font-weight: 700; }
.program-sidebar { position: relative; }
.sticky-card { position: sticky; top: 105px; padding: 28px; border-radius: var(--radius-md); background: var(--ivory); border: 1px solid var(--line); }
.sticky-card h2 { font-size: 2rem; }
.sticky-card .button { margin-top: 10px; }
.related-section { padding-top: 90px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); transition: transform .2s, box-shadow .2s; }
.related-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.related-card > span { color: var(--gold-600); font-size: .7rem; font-weight: 900; }
.related-card h3 { margin: 12px 0; }
.related-card p { font-size: .8rem; }
.related-card > strong { color: var(--purple-700); font-size: .75rem; }

/* Diplomas */
.diploma-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.diploma-card { padding: 28px; border-radius: var(--radius-md); border: 1px solid var(--line); background: var(--white); }
.diploma-card-head { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 30px; }
.diploma-card-head span { font-size: .7rem; color: var(--purple-700); font-weight: 800; }
.diploma-card-head strong { font-size: .7rem; color: var(--gold-600); }
.diploma-card h2 { font-size: 1.72rem; }
.diploma-card > p { min-height: 105px; font-size: .86rem; }
.diploma-card dl { margin: 24px 0; }
.diploma-card dl div { padding: 9px 0; border-bottom: 1px solid var(--line); }
.diploma-card dt { font-size: .64rem; color: var(--ink-soft); }
.diploma-card dd { margin: 2px 0 0; font-size: .76rem; font-weight: 700; }
.diploma-card .text-link { font-size: .75rem; }
.compliance-note { padding: 38px 0; background: #fbf3d9; }
.compliance-note-inner { display: flex; gap: 30px; align-items: flex-start; }
.compliance-note strong { flex: 0 0 180px; color: #6f4e07; }
.compliance-note p { margin: 0; color: #6b5b31; font-size: .85rem; }
.diploma-seal { justify-self: center; width: 240px; height: 240px; border-radius: 50%; border: 1px solid rgba(212,175,55,.35); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.diploma-seal img { width: 100px; }
.diploma-seal strong { margin-top: -5px; color: var(--gold-400); }
.detail-two-col { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 80px; }
.rich-content h2 { margin: 50px 0 24px; }
.rich-content h2:first-of-type { margin-top: 0; }
.detail-facts { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.detail-facts div { padding: 18px; background: var(--white); }
.detail-facts dt { color: var(--ink-soft); font-size: .69rem; text-transform: uppercase; }
.detail-facts dd { margin: 4px 0 0; font-weight: 750; }
.block-list { list-style: none; padding: 0; display: grid; gap: 10px; }
.block-list li { padding: 15px 18px; border: 1px solid var(--line); border-radius: 12px; display: flex; gap: 14px; align-items: center; }
.block-list span { color: var(--gold-600); font-weight: 900; }
.side-panel { padding: 28px; border-radius: var(--radius-md); background: var(--ivory); align-self: start; }
.side-program { display: flex; flex-direction: column; padding: 18px 0; border-bottom: 1px solid var(--line); }
.side-program > span { color: var(--gold-600); font-size: .67rem; }
.side-program small { color: var(--ink-soft); }

/* Generic content pages */
.content-hero .button { margin-top: 18px; }
.content-hero-art { justify-self: center; position: relative; }
.content-hero-art img { position: relative; z-index: 2; }
.content-hero-line { position: absolute; width: 360px; height: 360px; border: 1px solid rgba(212,175,55,.28); border-radius: 50%; top: -70px; left: -85px; }
.content-page-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.content-card { min-height: 250px; padding: 30px; border-radius: var(--radius-md); border: 1px solid var(--line); background: var(--white); }
.content-card > span { display: block; margin-bottom: 58px; color: var(--gold-600); font-size: .72rem; font-weight: 900; }
.content-card h2 { font-size: 2rem; }
.content-card p { font-size: .95rem; line-height: 1.8; }
.page-cta { padding: 80px 0; background: var(--purple-950); color: var(--white); }
.page-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.page-cta h2 { margin: 0; color: var(--white); max-width: 760px; }

/* Articles and events */
.article-list-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.article-card-large { display: grid; grid-template-columns: 220px 1fr; }
.article-card-large .article-visual { height: 100%; min-height: 270px; }
.article-card-large h2 { font-size: 1.8rem; }
.article-hero { padding: 95px 0; color: var(--white); background: linear-gradient(125deg, #1d0529, var(--purple-950), #511768); }
.article-hero-inner { max-width: 900px; }
.article-hero h1 { color: var(--white); font-size: clamp(3rem,6vw,5.8rem); }
.article-hero p:not(.eyebrow) { color: rgba(255,255,255,.68); font-size: 1.15rem; }
.prose-article { max-width: 820px; }
.prose-article > p { font-family: Georgia, serif; font-size: 1.2rem; line-height: 1.9; color: #3d3540; }
.article-share { margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; }
.article-share button { border: 1px solid var(--line); border-radius: 999px; background: var(--white); padding: 8px 14px; cursor: pointer; }
.events-grid { display: grid; gap: 18px; }
.event-card { padding: 30px; border-radius: var(--radius-md); background: var(--white); border: 1px solid var(--line); display: grid; grid-template-columns: 240px 1fr; gap: 40px; }
.event-card-date { padding-right: 30px; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.event-card-date strong { color: var(--gold-600); font-size: 1.05rem; }
.event-card-date span { color: var(--ink-soft); font-size: .8rem; }
.event-card h2 { margin-bottom: 12px; font-size: 2.1rem; }

/* Contact */
.contact-hero-details { padding: 26px; border: 1px solid rgba(255,255,255,.17); border-radius: var(--radius-md); background: rgba(255,255,255,.06); display: grid; }
.contact-hero-details span { margin-top: 12px; color: var(--gold-400); font-size: .65rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.contact-hero-details span:first-child { margin-top: 0; }
.contact-hero-details strong, .contact-hero-details a { color: var(--white); font-size: .9rem; }
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.contact-intro h2 { margin-bottom: 24px; }
.contact-points { margin-top: 38px; display: grid; gap: 18px; }
.contact-points div { display: grid; grid-template-columns: 34px 1fr; column-gap: 14px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.contact-points span { grid-row: span 2; color: var(--gold-600); font-size: .7rem; font-weight: 900; }
.contact-points strong { font-size: .88rem; }
.contact-points p { margin: 3px 0 0; font-size: .78rem; }
.form-card, .apply-form { padding: 34px; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-md); }
.form-card label, .apply-form label, .admin-form-layout label, .admin-login-card label, .account-grid form label { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-card label > span, .apply-form label > span, .admin-form-layout label > span, .admin-login-card label > span, .account-grid form label > span { color: var(--ink); font-size: .72rem; font-weight: 800; }
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.form-privacy { font-size: .72rem; line-height: 1.6; }
.form-privacy a { color: var(--purple-700); text-decoration: underline; }
.success-panel { padding: 50px; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-md); text-align: center; }
.success-icon { width: 68px; height: 68px; margin: 0 auto 24px; border-radius: 50%; display: grid; place-items: center; background: #dff3e8; color: var(--success); font-size: 1.7rem; font-weight: 900; }

/* Application */
.apply-hero { padding: 80px 0; background: linear-gradient(125deg, #1d0529, var(--purple-950), #4d1661); color: var(--white); }
.apply-hero-inner { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.apply-hero h1 { color: var(--white); margin-bottom: 18px; font-size: clamp(3rem,5vw,5rem); }
.apply-hero p:not(.eyebrow) { max-width: 750px; color: rgba(255,255,255,.68); }
.apply-reassurance { flex: 0 0 auto; display: grid; gap: 9px; color: rgba(255,255,255,.72); font-size: .75rem; }
.apply-layout { display: grid; grid-template-columns: 260px minmax(0,1fr); gap: 60px; align-items: start; }
.apply-sidebar { position: sticky; top: 30px; }
.apply-progress { display: grid; }
.apply-progress div { position: relative; display: grid; grid-template-columns: 40px 1fr; align-items: center; gap: 12px; min-height: 70px; color: #837b85; }
.apply-progress div:not(:last-child)::after { content: ""; position: absolute; left: 19px; top: 54px; bottom: -14px; width: 1px; background: #d9cedd; }
.apply-progress span { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--white); border: 1px solid #d9cedd; font-weight: 800; }
.apply-progress .is-current { color: var(--purple-950); }
.apply-progress .is-current span { background: var(--purple-950); color: var(--gold-400); border-color: var(--purple-950); }
.apply-progress .is-complete span { background: var(--gold-500); color: var(--purple-950); border-color: var(--gold-500); }
.apply-help { margin-top: 32px; padding: 20px; border-radius: 14px; background: var(--white); border: 1px solid var(--line); display: flex; flex-direction: column; }
.apply-help strong { color: var(--purple-950); }
.apply-help a { color: var(--purple-700); font-size: .78rem; }
.apply-form { min-height: 570px; }
.apply-step { display: none; border: 0; padding: 0; margin: 0; }
.apply-step.is-active { display: block; animation: fade-in .25s ease; }
.apply-step legend { width: 100%; margin-bottom: 34px; font-family: Georgia, serif; font-size: 2.6rem; line-height: 1.1; }
.apply-step legend span { display: block; margin-bottom: 9px; font-family: Inter, sans-serif; color: var(--gold-600); font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.step-note { margin: 24px 0; padding: 18px; border-radius: 12px; background: #fbf5df; border-left: 3px solid var(--gold-500); }
.step-note p { margin: 4px 0 0; font-size: .8rem; }
.apply-actions { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 14px; }
.upload-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.upload-field { padding: 24px; border: 1px dashed #c9b9cf; border-radius: 14px; background: var(--purple-50); }
.upload-field input { background: transparent; border: 0; padding: 10px 0; }
.upload-field small { color: var(--ink-soft); font-size: .68rem; }
.checkbox-field { flex-direction: row !important; align-items: flex-start; padding: 16px; border: 1px solid var(--line); border-radius: 12px; }
.checkbox-field input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; }
.checkbox-field span { font-weight: 600 !important; line-height: 1.55; }
.confirmation-page, .error-page { min-height: 690px; padding: 90px 0; background: var(--ivory); display: grid; place-items: center; }
.confirmation-card, .error-card { max-width: 760px; padding: 60px; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-md); text-align: center; }
.confirmation-card h1, .error-card h1 { font-size: 3.5rem; }
.reference-box { margin: 32px 0; padding: 20px; border-radius: 14px; background: var(--purple-950); color: var(--white); display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px; }
.reference-box span { color: rgba(255,255,255,.6); font-size: .72rem; }
.reference-box strong { color: var(--gold-400); font-size: 1.35rem; letter-spacing: .08em; }
.reference-box button { border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: transparent; color: var(--white); padding: 6px 12px; cursor: pointer; }
.confirmation-note { font-size: .82rem; }
.confirmation-card .button-row { justify-content: center; }
.error-card > span { display: block; color: var(--gold-500); font-family: Georgia,serif; font-size: 7rem; line-height: 1; }
@keyframes fade-in { from { opacity: 0; transform: translateY(8px); } }

/* Footer */
.site-footer { position: relative; padding: 76px 0 28px; background: #16031f; color: var(--white); }
.footer-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold-500), transparent); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 50px; }
.brand-light .brand-copy { color: var(--white); }
.footer-brand > p { max-width: 360px; margin-top: 22px; color: rgba(255,255,255,.53); font-size: .86rem; }
.footer-slogan { color: var(--gold-400) !important; font-size: .66rem !important; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid h2 { color: var(--gold-400); font-family: Inter,sans-serif; font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid a, .footer-grid > div:not(.footer-brand) p { color: rgba(255,255,255,.62); font-size: .78rem; }
.footer-grid a:hover { color: var(--white); }
.social-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.footer-bottom { margin-top: 58px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 24px; color: rgba(255,255,255,.4); font-size: .68rem; }
.footer-bottom div { display: flex; flex-wrap: wrap; gap: 18px; }
.mobile-action-bar { display: none; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ADMIN */
.admin-body { min-height: 100vh; background: #f5f2f6; color: #2a232d; }
.admin-sidebar { position: fixed; inset: 0 auto 0 0; z-index: 2000; width: 260px; background: #190421; color: var(--white); display: flex; flex-direction: column; overflow-y: auto; }
.admin-brand { min-height: 86px; padding: 14px 22px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255,255,255,.1); }
.admin-brand img { width: 40px; }
.admin-brand span { display: flex; flex-direction: column; line-height: 1.1; }
.admin-brand strong { font-family: Georgia,serif; color: var(--gold-400); font-size: 1.55rem; font-weight: 500; }
.admin-brand small { color: rgba(255,255,255,.55); font-size: .64rem; }
.admin-nav { padding: 18px 14px; flex: 1; }
.admin-nav p { margin: 20px 10px 7px; color: rgba(255,255,255,.32); font-size: .59rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.admin-nav p:first-child { margin-top: 0; }
.admin-nav a { display: flex; align-items: center; gap: 11px; padding: 9px 12px; margin: 2px 0; border-radius: 8px; color: rgba(255,255,255,.68); font-size: .78rem; font-weight: 700; }
.admin-nav a span { width: 20px; text-align: center; color: var(--gold-400); }
.admin-nav a:hover, .admin-nav a.is-active { background: rgba(255,255,255,.09); color: var(--white); }
.admin-sidebar-footer { padding: 16px 22px; border-top: 1px solid rgba(255,255,255,.1); display: grid; gap: 8px; }
.admin-sidebar-footer a, .admin-sidebar-footer button { border: 0; padding: 0; background: transparent; color: rgba(255,255,255,.55); font-size: .68rem; cursor: pointer; text-align: left; }
.admin-sidebar-footer a:hover, .admin-sidebar-footer button:hover { color: var(--white); }
.admin-main { min-height: 100vh; margin-left: 260px; }
.admin-topbar { min-height: 86px; padding: 15px 30px; background: var(--white); border-bottom: 1px solid #e2dbe5; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.admin-topbar > div:first-of-type { flex: 1; }
.admin-topbar p { margin: 0; color: #8b818e; font-size: .65rem; font-weight: 750; }
.admin-topbar p a { color: var(--purple-700); }
.admin-topbar h1 { margin: 3px 0 0; font-family: Inter,sans-serif; font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em; }
.admin-topbar-actions { display: flex; align-items: center; gap: 20px; }
.admin-user { display: flex; align-items: center; gap: 10px; }
.admin-user > span { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--purple-100); color: var(--purple-700); font-weight: 900; }
.admin-user div { display: flex; flex-direction: column; }
.admin-user strong { font-size: .72rem; }
.admin-user small { color: #8b818e; font-size: .62rem; }
.admin-menu-toggle { display: none; border: 0; background: transparent; font-size: 1.5rem; cursor: pointer; }
.admin-content { padding: 28px; max-width: 1660px; margin: 0 auto; }
.admin-flashes { padding: 18px 28px 0; display: grid; gap: 8px; }
.admin-panel { border: 1px solid #e0d9e3; border-radius: 14px; background: var(--white); box-shadow: 0 5px 18px rgba(37,17,43,.035); }
.admin-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; border-bottom: 1px solid #eee8ef; }
.admin-panel-head .eyebrow { margin-bottom: 4px; }
.admin-panel-head .eyebrow::before { display: none; }
.admin-panel-head h2 { margin: 0; font-family: Inter,sans-serif; font-size: 1rem; font-weight: 800; }
.admin-panel-head > a, .admin-panel-head > small { color: var(--purple-700); font-size: .68rem; font-weight: 750; }
.admin-welcome { padding: 28px; margin-bottom: 22px; border-radius: 16px; background: linear-gradient(125deg, var(--purple-950), #4a145d); color: var(--white); display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.admin-welcome h2 { margin: 0 0 8px; color: var(--white); font-family: Inter,sans-serif; font-size: 1.45rem; font-weight: 800; }
.admin-welcome p:not(.eyebrow) { margin: 0; color: rgba(255,255,255,.6); font-size: .8rem; }
.admin-quick-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.admin-welcome .button-ghost { background: transparent; border-color: rgba(255,255,255,.25); color: var(--white); }
.admin-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 22px; }
.admin-stat-card { min-height: 142px; padding: 20px; border-radius: 14px; border: 1px solid #e0d9e3; background: var(--white); display: flex; flex-direction: column; }
.admin-stat-card span { color: #8b818e; font-size: .68rem; font-weight: 750; }
.admin-stat-card strong { margin: 7px 0 2px; font-size: 2rem; line-height: 1; }
.admin-stat-card small { margin-top: auto; color: #8b818e; font-size: .66rem; }
.admin-stat-highlight { background: #f8f1d8; border-color: #e8d596; }
.admin-dashboard-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 18px; }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .73rem; }
.admin-table th { padding: 11px 16px; color: #8a808c; background: #faf8fb; font-size: .61rem; text-align: left; text-transform: uppercase; letter-spacing: .07em; white-space: nowrap; }
.admin-table td { padding: 13px 16px; border-top: 1px solid #eee8ef; vertical-align: middle; }
.admin-table td strong, .admin-table td small { display: block; }
.admin-table td small { color: #8a808c; font-size: .63rem; margin-top: 3px; }
.admin-table td > a { color: var(--purple-700); font-weight: 800; }
.admin-table-large td { padding-block: 16px; }
.status-pill, .publication-pill, .featured-pill { display: inline-flex; align-items: center; border-radius: 999px; padding: 5px 9px; font-size: .59rem; font-weight: 800; white-space: nowrap; }
.status-pill { background: #f1e9f4; color: var(--purple-700); }
.publication-pill { background: #f1ecef; color: #746b76; }
.publication-pill.is-published { background: #def2e8; color: #176349; }
.featured-pill { margin-left: 5px; background: #f8edc8; color: #8a6208; }
.order-chip { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 8px; background: #f3eef5; font-weight: 800; }
.table-actions { display: flex; align-items: center; gap: 10px; }
.table-actions a, .table-actions button { border: 0; background: transparent; padding: 0; color: var(--purple-700); font-size: .66rem; font-weight: 800; cursor: pointer; }
.table-actions button { color: var(--danger); }
.admin-message-list { padding: 6px 20px 16px; }
.admin-message-list article { padding: 14px 0; border-bottom: 1px solid #eee8ef; display: grid; grid-template-columns: 34px 1fr auto; gap: 10px; align-items: start; }
.admin-message-list article:last-child { border-bottom: 0; }
.message-avatar { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--purple-100); color: var(--purple-700); font-weight: 900; font-size: .7rem; }
.admin-message-list strong, .admin-message-list small { display: block; }
.admin-message-list strong { font-size: .72rem; }
.admin-message-list small { color: #8a808c; font-size: .6rem; }
.admin-message-list p { margin: 4px 0 0; font-size: .67rem; line-height: 1.5; }
.message-state { color: var(--warning); font-size: .58rem; font-weight: 800; }
.message-state.is-done { color: var(--success); }
.admin-launch-checklist { margin-top: 18px; }
.checklist-grid { padding: 20px; display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.checklist-grid > div { padding: 16px; border-radius: 11px; background: #faf8fb; }
.checklist-grid span { color: var(--gold-600); font-size: .65rem; font-weight: 900; }
.checklist-grid strong { display: block; margin: 8px 0 6px; font-size: .75rem; }
.checklist-grid p { min-height: 56px; font-size: .66rem; line-height: 1.55; }
.checklist-grid a { color: var(--purple-700); font-size: .64rem; font-weight: 800; }
.admin-page-actions { min-height: 55px; margin-bottom: 16px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.admin-page-actions p { margin: 0; font-size: .78rem; }
.admin-form-layout { display: grid; grid-template-columns: minmax(0,1fr) 310px; gap: 18px; align-items: start; }
.admin-form-main { display: grid; gap: 18px; }
.form-section { padding-bottom: 22px; }
.form-section > label, .form-section > .form-grid-2, .form-section > .form-grid-3, .form-section > .switch-field, .form-section > button, .form-section > a { margin-left: 22px; margin-right: 22px; }
.form-section > label:first-of-type, .form-section > .form-grid-2:first-of-type, .form-section > .form-grid-3:first-of-type, .form-section > .switch-field:first-of-type { margin-top: 22px; }
.form-grid-2, .form-grid-3 { display: grid; gap: 12px; }
.form-grid-2 { grid-template-columns: repeat(2,1fr); }
.form-grid-3 { grid-template-columns: repeat(3,1fr); }
.admin-form-layout label { margin-bottom: 14px; }
.admin-form-layout input, .admin-form-layout textarea, .admin-form-layout select { border-radius: 9px; padding: 10px 12px; font-size: .76rem; }
.admin-form-layout label > span { font-size: .66rem; }
.sticky-admin-card { position: sticky; top: 18px; }
.sticky-admin-card h2 { margin: 0 22px 18px; font-family: Inter,sans-serif; font-size: 1rem; }
.sticky-admin-card > .eyebrow { margin: 22px 22px 4px; }
.sticky-admin-card > .eyebrow::before { display: none; }
.sticky-admin-card .button { margin-top: 8px; }
.switch-field { display: grid !important; grid-template-columns: 42px 1fr; align-items: center; gap: 10px !important; padding: 12px; background: #faf8fb; border-radius: 9px; }
.switch-field input { position: absolute; opacity: 0; pointer-events: none; }
.switch-field > span { width: 40px; height: 22px; border-radius: 999px; background: #c9c0cc; padding: 2px; transition: background .2s; }
.switch-field > span::after { content: ""; display: block; width: 18px; height: 18px; border-radius: 50%; background: var(--white); box-shadow: 0 2px 4px rgba(0,0,0,.15); transition: transform .2s; }
.switch-field input:checked + span { background: var(--purple-700); }
.switch-field input:checked + span::after { transform: translateX(18px); }
.switch-field strong { font-size: .67rem; }
.color-input { display: grid; grid-template-columns: 50px 1fr; gap: 8px; align-items: center; }
.color-input input { height: 38px; padding: 2px; }
.color-input code { padding: 8px; border-radius: 8px; background: #f3eef5; font-size: .66rem; }
.admin-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.admin-content-card { min-height: 245px; padding: 20px; border: 1px solid #e0d9e3; border-radius: 14px; background: var(--white); display: flex; flex-direction: column; }
.admin-content-card > div:first-child { display: flex; justify-content: space-between; gap: 10px; color: #8a808c; font-size: .63rem; }
.admin-content-card h2 { margin: 24px 0 10px; font-family: Inter,sans-serif; font-size: 1rem; font-weight: 800; }
.admin-content-card p { font-size: .7rem; }
.admin-content-card > div:last-child { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.admin-content-card > div:last-child > a:not(.button), .admin-content-card > div:last-child button { border: 0; background: transparent; color: var(--purple-700); font-size: .65rem; font-weight: 800; cursor: pointer; }
.admin-content-card form { display: inline; }
.admin-filter-bar { margin-bottom: 16px; padding: 14px; border: 1px solid #e0d9e3; border-radius: 12px; background: var(--white); display: grid; grid-template-columns: 1.5fr 1fr auto auto; gap: 10px; }
.admin-filter-bar input, .admin-filter-bar select { padding: 9px 11px; font-size: .75rem; }
.candidate-admin-grid { display: grid; grid-template-columns: minmax(0,1fr) 330px; gap: 18px; align-items: start; }
.candidate-admin-grid > div { display: grid; gap: 18px; }
.candidate-summary { padding: 22px; display: flex; align-items: center; gap: 16px; }
.candidate-avatar { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: var(--purple-950); color: var(--gold-400); font-weight: 900; }
.candidate-summary > div:nth-child(2) { flex: 1; }
.candidate-summary h2 { margin: 0; font-family: Inter,sans-serif; font-size: 1.15rem; font-weight: 800; }
.candidate-summary p { margin: 3px 0 0; font-size: .7rem; }
.candidate-details { padding-bottom: 22px; }
.candidate-facts { padding: 20px 22px; margin: 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.candidate-facts div { padding: 14px; border-radius: 9px; background: #faf8fb; }
.candidate-facts dt { color: #8a808c; font-size: .61rem; text-transform: uppercase; }
.candidate-facts dd { margin: 3px 0 0; font-size: .75rem; font-weight: 750; }
.candidate-details h3, .candidate-details .candidate-message { margin-left: 22px; margin-right: 22px; }
.candidate-details h3 { font-family: Inter,sans-serif; font-size: .76rem; }
.candidate-message { padding: 14px; border-radius: 9px; background: #faf8fb; font-size: .72rem; }
.candidate-documents { padding-bottom: 22px; }
.document-grid { padding: 20px 22px 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.document-grid > a, .document-empty { min-height: 105px; padding: 14px; border-radius: 10px; border: 1px solid #e0d9e3; display: flex; flex-direction: column; }
.document-grid > a > span { color: var(--gold-600); font-size: .6rem; font-weight: 900; }
.document-grid > a strong { margin-top: 7px; font-size: .7rem; word-break: break-word; }
.document-grid > a small { margin-top: auto; color: var(--purple-700); font-size: .62rem; }
.document-empty { justify-content: center; color: #8a808c; font-size: .7rem; }
.admin-message-cards { display: grid; gap: 14px; }
.admin-contact-card { padding: 22px; border: 1px solid #e0d9e3; border-left: 4px solid var(--gold-500); border-radius: 14px; background: var(--white); }
.admin-contact-card.is-handled { opacity: .72; border-left-color: var(--success); }
.admin-contact-card header { display: flex; align-items: center; gap: 12px; }
.admin-contact-card header > div:nth-child(2) { flex: 1; }
.admin-contact-card h2 { margin: 0; font-family: Inter,sans-serif; font-size: .9rem; }
.admin-contact-card header p, .admin-contact-card header > span { margin: 0; color: #8a808c; font-size: .64rem; }
.contact-subject { display: inline-flex; margin: 18px 0 10px; padding: 5px 9px; border-radius: 999px; background: var(--purple-100); color: var(--purple-700); font-size: .6rem; font-weight: 800; }
.admin-contact-card > p { font-size: .75rem; }
.admin-contact-card footer { display: flex; flex-wrap: wrap; gap: 10px; }
.media-upload-panel { margin-bottom: 18px; padding: 22px; display: flex; justify-content: space-between; gap: 30px; align-items: center; }
.media-upload-panel h2 { margin: 0; font-family: Inter,sans-serif; font-size: 1rem; }
.media-upload-panel p { margin: 4px 0 0; font-size: .7rem; }
.media-upload-panel form { display: flex; align-items: center; gap: 10px; }
.media-upload-panel input { max-width: 300px; font-size: .7rem; }
.media-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.media-card { overflow: hidden; border: 1px solid #e0d9e3; border-radius: 12px; background: var(--white); }
.media-card > img, .media-pdf { width: 100%; height: 150px; object-fit: cover; background: #f2edf4; }
.media-pdf { display: grid; place-items: center; color: var(--purple-700); font-weight: 900; }
.media-card > div { padding: 12px; display: grid; gap: 4px; }
.media-card strong { font-size: .67rem; word-break: break-word; }
.media-card small { color: #8a808c; font-size: .6rem; }
.media-card code { padding: 6px; border-radius: 6px; background: #f5f1f6; font-size: .57rem; word-break: break-all; }
.media-card button { justify-self: start; border: 0; background: transparent; color: var(--purple-700); padding: 0; font-size: .61rem; font-weight: 800; cursor: pointer; }
.account-grid { display: grid; grid-template-columns: 320px minmax(0,620px); gap: 18px; }
.account-profile { padding: 30px; text-align: center; }
.account-avatar { width: 78px; height: 78px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; background: var(--purple-950); color: var(--gold-400); font-size: 1.4rem; font-weight: 900; }
.account-profile h2 { margin: 0; font-family: Inter,sans-serif; font-size: 1rem; }
.account-profile > p { font-size: .7rem; }
.account-profile dl { margin-top: 26px; text-align: left; }
.account-profile dl div { padding: 10px 0; border-top: 1px solid #eee8ef; }
.account-profile dt { color: #8a808c; font-size: .6rem; }
.account-profile dd { margin: 3px 0 0; font-size: .7rem; font-weight: 750; }
.admin-empty { padding: 40px; text-align: center; color: #8a808c; font-size: .78rem; }
.admin-overlay { display: none; }

/* Admin login */
.admin-login-body { min-height: 100vh; display: grid; grid-template-columns: 1.05fr .95fr; background: var(--ivory); }
.admin-login-art { position: relative; overflow: hidden; min-height: 100vh; background: radial-gradient(circle at 50% 45%, var(--purple-700), var(--purple-950) 64%); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--white); }
.admin-login-art::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 68px 68px; }
.admin-login-art img { position: relative; z-index: 2; width: 230px; }
.admin-login-art > div:not(.login-orbit) { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.admin-login-art strong { font-family: Georgia,serif; font-size: 3rem; font-weight: 500; color: var(--gold-400); }
.admin-login-art span { font-size: .73rem; letter-spacing: .2em; text-transform: uppercase; }
.admin-login-art small { margin-top: 18px; color: rgba(255,255,255,.5); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; }
.login-orbit { position: absolute; width: 520px; height: 520px; border-radius: 50%; border: 1px solid rgba(212,175,55,.28); }
.login-orbit::before, .login-orbit::after { content: ""; position: absolute; inset: 55px; border-radius: 50%; border: 1px solid rgba(212,175,55,.17); }
.login-orbit::after { inset: 115px; }
.admin-login-main { min-height: 100vh; padding: 42px; display: flex; flex-direction: column; justify-content: center; align-items: center; position: relative; }
.login-back { position: absolute; top: 28px; left: 32px; color: var(--purple-700); font-size: .75rem; font-weight: 750; }
.admin-login-card { width: min(460px,100%); padding: 42px; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-md); }
.admin-login-card h1 { margin-bottom: 12px; font-size: 3.1rem; }
.admin-login-card > p:not(.eyebrow) { margin-bottom: 28px; font-size: .83rem; }
.admin-login-card input { padding: 12px; }
.demo-credentials { margin-top: 24px; padding: 14px; border-radius: 10px; background: #fbf5df; display: grid; gap: 4px; }
.demo-credentials strong { color: #72520a; font-size: .67rem; }
.demo-credentials code { font-size: .7rem; }
.demo-credentials small { color: #756842; font-size: .61rem; }

/* Responsive */
@media (max-width: 1180px) {
  :root { --shell: min(100% - 38px, 1080px); }
  .desktop-menu { gap: 0; }
  .desktop-menu a { padding-inline: 8px; font-size: .78rem; }
  .brand-copy span { display: none; }
  .hero-home-grid { grid-template-columns: 1fr .85fr; gap: 30px; }
  .hero-seal { width: 310px; height: 345px; }
  .hero-orbit-one { width: 430px; height: 430px; }
  .hero-orbit-two { width: 360px; height: 360px; }
  .hero-floating-card { width: 215px; }
  .program-grid { grid-template-columns: repeat(2,1fr); }
  .finder-grid { gap: 45px; }
  .pillar { padding-inline: 20px; }
  .news-layout { grid-template-columns: 1fr 300px; }
  .admin-sidebar { width: 235px; }
  .admin-main { margin-left: 235px; }
  .admin-stats-grid { grid-template-columns: repeat(2,1fr); }
  .admin-card-grid { grid-template-columns: repeat(2,1fr); }
  .media-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 960px) {
  :root { --header-height: 76px; }
  .topbar { display: none; }
  .desktop-menu, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .main-nav { height: 76px; }
  .brand-copy span { display: block; }
  .hero-home { min-height: auto; }
  .hero-home-grid { grid-template-columns: 1fr; padding-top: 80px; }
  .hero-copy { max-width: 820px; }
  .hero-art { min-height: 470px; }
  .hero-proof { max-width: 620px; }
  .finder-grid, .alternance-grid, .international-home-grid, .contact-layout { grid-template-columns: 1fr; gap: 50px; }
  .finder-card { max-width: 720px; }
  .manifesto-section { grid-template-columns: 1fr; }
  .manifesto-visual { min-height: 470px; }
  .manifesto-copy { padding: 80px var(--shell); }
  .pillar-grid { grid-template-columns: repeat(2,1fr); }
  .pillar:nth-child(2) { border-right: 0; }
  .pillar:nth-child(-n+2) { border-bottom: 1px solid #d9cfd8; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid li:nth-child(2) { border-right: 1px solid #d9cfd8; }
  .news-layout { grid-template-columns: 1fr; }
  .event-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 0 24px; }
  .event-list-title { grid-column: 1 / -1; }
  .final-cta-inner, .page-cta-inner { align-items: flex-start; flex-direction: column; }
  .page-hero-grid { grid-template-columns: 1fr 190px; gap: 30px; }
  .catalog-filters { grid-template-columns: repeat(2,1fr); }
  .catalog-filters .button { grid-column: auto; }
  .filter-reset { grid-column: auto; }
  .program-hero-grid { grid-template-columns: 1fr; }
  .program-fact-card { display: grid; grid-template-columns: repeat(2,1fr); }
  .program-fact-card div:nth-child(odd) { padding-right: 18px; border-right: 1px solid var(--line); }
  .program-content-grid { grid-template-columns: 1fr; gap: 0; }
  .program-sidebar { order: -1; margin-bottom: 50px; }
  .sticky-card { position: static; }
  .diploma-grid { grid-template-columns: repeat(2,1fr); }
  .detail-two-col { grid-template-columns: 1fr; gap: 40px; }
  .content-page-grid { grid-template-columns: 1fr 1fr; }
  .apply-layout { grid-template-columns: 1fr; }
  .apply-sidebar { position: static; }
  .apply-progress { grid-template-columns: repeat(4,1fr); }
  .apply-progress div { grid-template-columns: 40px 1fr; min-height: auto; }
  .apply-progress div:not(:last-child)::after { left: calc(100% - 8px); top: 20px; bottom: auto; width: 16px; height: 1px; }
  .apply-help { display: none; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .admin-sidebar { transform: translateX(-100%); width: 260px; transition: transform .25s var(--ease); }
  .admin-menu-open .admin-sidebar { transform: none; }
  .admin-main { margin-left: 0; }
  .admin-menu-toggle { display: block; }
  .admin-overlay { position: fixed; inset: 0; z-index: 1900; background: rgba(19,3,26,.45); }
  .admin-menu-open .admin-overlay { display: block; }
  .admin-dashboard-grid { grid-template-columns: 1fr; }
  .admin-form-layout, .candidate-admin-grid { grid-template-columns: 1fr; }
  .sticky-admin-card { position: static; }
  .checklist-grid { grid-template-columns: repeat(2,1fr); }
  .admin-login-body { grid-template-columns: .8fr 1.2fr; }
  .admin-login-art img { width: 180px; }
  .login-orbit { width: 390px; height: 390px; }
}

@media (max-width: 720px) {
  :root { --shell: calc(100vw - 30px); }
  body { font-size: 15px; }
  .section { padding: 80px 0; }
  .demo-banner { padding-inline: 12px; font-size: .67rem; }
  .demo-banner a { display: none; }
  .brand img { width: 40px; height: 48px; }
  .brand-copy strong { font-size: 1.5rem; }
  .brand-copy span { font-size: .47rem; }
  .hero-home-grid { padding: 64px 0 85px; }
  .hero-copy h1 { font-size: clamp(3.1rem,15vw,4.7rem); }
  .hero-actions .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; gap: 12px; margin-top: 38px; }
  .hero-proof div { padding-bottom: 11px; border-bottom: 1px solid var(--line-dark); }
  .hero-art { min-height: 390px; }
  .hero-seal { width: 255px; height: 285px; border-radius: 42px; }
  .hero-seal img { width: 150px; height: 175px; }
  .hero-seal > span { font-size: 1.5rem; }
  .hero-orbit-one { width: 335px; height: 335px; }
  .hero-orbit-two { width: 285px; height: 285px; }
  .hero-floating-card { width: 200px; padding: 12px; }
  .hero-card-one { right: -20px; top: 35px; }
  .hero-card-two { left: -15px; bottom: 25px; }
  .hero-floating-card small { display: none; }
  .identity-strip-inner { overflow-x: auto; justify-content: flex-start; white-space: nowrap; padding-block: 17px; }
  .finder-card { grid-template-columns: 1fr; padding: 22px; }
  .finder-card .button { grid-column: auto; }
  .section-heading-row { align-items: flex-start; flex-direction: column; margin-bottom: 34px; }
  .program-grid, .catalog-grid, .diploma-grid, .related-grid, .article-grid, .article-list-grid { grid-template-columns: 1fr; }
  .program-card { min-height: 430px; }
  .manifesto-visual { min-height: 390px; }
  .manifesto-rings { width: 350px; height: 350px; }
  .manifesto-copy { padding: 70px 22px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar { min-height: 260px; border-right: 0; border-bottom: 1px solid #d9cfd8; }
  .pillar-index { margin-bottom: 45px; }
  .alternance-panel-top i { width: 30px; }
  .alternance-stat-grid { grid-template-columns: 1fr; }
  .alternance-stat-grid div { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid li { border-left: 1px solid #d9cfd8; }
  .steps-grid li > span { margin-bottom: 34px; }
  .international-home { padding: 80px 0; }
  .international-globe { max-width: 330px; }
  .event-list { grid-template-columns: 1fr; }
  .final-cta { padding: 68px 0; }
  .final-cta-actions { width: 100%; }
  .final-cta-actions .button { width: 100%; }
  .page-hero, .page-hero-compact { padding: 70px 0; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-mark, .content-hero-art, .diploma-seal { display: none; }
  .catalog-filters { grid-template-columns: 1fr; padding: 14px; }
  .catalog-result-head { flex-direction: column; }
  .catalog-card { padding: 24px; }
  .catalog-facts { grid-template-columns: 1fr; }
  .catalog-card-footer { flex-direction: column; }
  .catalog-card-footer .button { width: 100%; }
  .catalog-help-inner { flex-direction: column; align-items: flex-start; }
  .program-hero { padding: 64px 0; }
  .program-hero h1 { font-size: clamp(3rem,13vw,4.6rem); }
  .program-fact-card { grid-template-columns: 1fr; }
  .program-fact-card div:nth-child(odd) { padding-right: 0; border-right: 0; }
  .program-subnav { top: 0; }
  .program-content { padding-top: 70px; }
  .content-block { padding-bottom: 58px; margin-bottom: 58px; }
  .feature-list, .module-grid, .certification-facts { grid-template-columns: 1fr; }
  .certification-block { padding: 22px; }
  .certification-header { flex-direction: column; }
  .detail-facts { grid-template-columns: 1fr; }
  .compliance-note-inner { flex-direction: column; gap: 8px; }
  .content-page-grid { grid-template-columns: 1fr; }
  .content-card { min-height: 220px; }
  .article-card-large { grid-template-columns: 1fr; }
  .article-card-large .article-visual { min-height: 210px; }
  .event-card { grid-template-columns: 1fr; gap: 20px; }
  .event-card-date { padding-right: 0; padding-bottom: 18px; border-right: 0; border-bottom: 1px solid var(--line); }
  .form-row, .upload-grid { grid-template-columns: 1fr; }
  .form-card, .apply-form { padding: 24px; border-radius: 18px; }
  .apply-hero-inner { flex-direction: column; align-items: flex-start; }
  .apply-progress { grid-template-columns: repeat(4,1fr); }
  .apply-progress div { grid-template-columns: 1fr; justify-items: center; gap: 4px; font-size: .62rem; text-align: center; }
  .apply-progress div:not(:last-child)::after { left: calc(50% + 21px); width: calc(100% - 42px); }
  .apply-step legend { font-size: 2rem; }
  .apply-actions { flex-direction: column-reverse; }
  .apply-actions .button { width: 100%; }
  .confirmation-card, .error-card { padding: 35px 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .mobile-action-bar { position: fixed; z-index: 1500; left: 10px; right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); height: 58px; display: grid; grid-template-columns: 1fr 1.2fr; padding: 5px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(25,4,33,.94); box-shadow: 0 16px 45px rgba(22,3,31,.4); backdrop-filter: blur(14px); }
  .mobile-action-bar a { display: grid; place-items: center; color: var(--white); font-size: .76rem; font-weight: 800; }
  .mobile-action-bar .mobile-action-primary { border-radius: 999px; background: var(--gold-500); color: var(--purple-950); }
  .site-footer { padding-bottom: 100px; }
  .admin-content { padding: 18px 14px; }
  .admin-topbar { min-height: 72px; padding: 12px 14px; }
  .admin-topbar .button, .admin-user div { display: none; }
  .admin-topbar h1 { font-size: 1.05rem; }
  .admin-welcome { padding: 22px; flex-direction: column; align-items: flex-start; }
  .admin-stats-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .admin-stat-card { min-height: 125px; padding: 16px; }
  .checklist-grid { grid-template-columns: 1fr; }
  .admin-form-layout, .candidate-admin-grid { grid-template-columns: 1fr; }
  .form-grid-2, .form-grid-3 { grid-template-columns: 1fr; }
  .admin-card-grid { grid-template-columns: 1fr; }
  .admin-filter-bar { grid-template-columns: 1fr; }
  .candidate-summary { align-items: flex-start; flex-wrap: wrap; }
  .candidate-facts, .document-grid { grid-template-columns: 1fr; }
  .media-upload-panel { flex-direction: column; align-items: flex-start; }
  .media-upload-panel form { width: 100%; flex-direction: column; align-items: stretch; }
  .media-grid { grid-template-columns: repeat(2,1fr); }
  .account-grid { grid-template-columns: 1fr; }
  .admin-login-body { grid-template-columns: 1fr; }
  .admin-login-art { display: none; }
  .admin-login-main { padding: 60px 16px 30px; }
  .admin-login-card { padding: 28px 22px; }
  .admin-login-card h1 { font-size: 2.6rem; }
}

@media (max-width: 480px) {
  .brand-copy span { display: none; }
  .hero-art { min-height: 330px; }
  .hero-seal { width: 220px; height: 245px; }
  .hero-orbit-one { width: 290px; height: 290px; }
  .hero-orbit-two { width: 245px; height: 245px; }
  .hero-floating-card { width: 168px; }
  .hero-card-one { right: -32px; }
  .hero-card-two { left: -28px; }
  .mini-icon { flex-basis: 30px; height: 30px; }
  .hero-floating-card strong { font-size: .68rem; }
  .catalog-card-header { flex-direction: column; }
  .admin-stats-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Bilingual navigation and language portal */
.language-switch,
.mobile-language-switch {
  display: flex;
  align-items: center;
  gap: 7px;
}
.language-switch a,
.mobile-language-switch a {
  font-weight: 850;
  color: var(--ink-soft);
}
.language-switch a.is-active,
.mobile-language-switch a.is-active {
  color: var(--purple-950);
  text-decoration: underline;
  text-decoration-color: var(--gold-500);
  text-underline-offset: 4px;
}
.mobile-language-switch {
  padding: 4px 4px 15px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.mobile-language-switch span { margin-right: auto; color: var(--ink-soft); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }

.language-page,
.maintenance-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 20%, rgba(117, 64, 143, .45), transparent 28%),
    radial-gradient(circle at 10% 90%, rgba(212, 175, 55, .14), transparent 30%),
    linear-gradient(135deg, #1d0429, var(--purple-950) 52%, #47145c);
  color: var(--white);
}
.language-portal,
.maintenance-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: max(28px, env(safe-area-inset-top)) 22px max(28px, env(safe-area-inset-bottom));
}
.language-portal::before,
.maintenance-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .11;
  background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.language-orbit {
  position: absolute;
  border: 1px solid rgba(227,198,111,.22);
  border-radius: 50%;
  pointer-events: none;
}
.language-orbit-a { width: min(72vw, 880px); aspect-ratio: 1; top: -38vw; right: -24vw; }
.language-orbit-b { width: min(58vw, 700px); aspect-ratio: 1; bottom: -36vw; left: -21vw; }
.language-card,
.maintenance-card {
  position: relative;
  z-index: 1;
  width: min(790px, 100%);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 36px;
  background: rgba(32, 6, 45, .76);
  box-shadow: 0 36px 110px rgba(8, 0, 14, .48);
  backdrop-filter: blur(22px);
  text-align: center;
  padding: 46px clamp(24px, 6vw, 72px) 40px;
}
.language-logo { width: min(250px, 58vw); height: auto; margin: 0 auto -12px; }
.language-divider,
.maintenance-line { display: block; width: 64px; height: 1px; margin: 10px auto 22px; background: linear-gradient(90deg, transparent, var(--gold-400), transparent); }
.language-kicker { margin-bottom: 10px; color: var(--gold-400); font-size: .74rem; font-weight: 850; letter-spacing: .22em; text-transform: uppercase; }
.language-card h1 { margin: 0; font-size: clamp(2.2rem, 5.2vw, 4.1rem); color: var(--white); }
.language-card h1 span { color: var(--gold-500); }
.language-intro { color: rgba(255,255,255,.7); margin: 14px 0 28px; }
.language-options { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.language-option {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 17px 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  color: var(--white);
  text-align: left;
  transition: transform .22s var(--ease), border-color .22s ease, background .22s ease;
}
.language-option:hover { transform: translateY(-3px); border-color: var(--gold-400); background: rgba(255,255,255,.12); }
.language-option > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--gold-500); color: var(--purple-950); font-size: .74rem; font-weight: 900; }
.language-option div { display: grid; }
.language-option strong { font-size: 1rem; }
.language-option small { color: rgba(255,255,255,.64); font-size: .76rem; }
.language-option b { color: var(--gold-400); font-size: 1.2rem; }
.language-slogan { margin: 26px 0 0; color: var(--gold-400); font-size: .72rem; font-weight: 850; letter-spacing: .26em; text-transform: uppercase; }
.language-options.compact { margin: 24px auto; max-width: 430px; }
.language-options.compact .language-option { grid-template-columns: auto 1fr; }
.maintenance-card { max-width: 720px; }
.maintenance-card > img { width: min(210px, 54vw); margin: 0 auto -12px; }
.maintenance-card h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 4.4rem); }
.maintenance-card > p:not(.eyebrow) { max-width: 560px; margin-inline: auto; color: rgba(255,255,255,.72); font-size: 1.08rem; }
.maintenance-card > a { color: var(--gold-400); font-weight: 800; }

/* Bilingual fields in the administration */
.language-badge,
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--purple-100);
  color: var(--purple-700);
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.translation-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.translation-panel {
  min-width: 0;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.translation-panel-en { background: linear-gradient(145deg, #fff, var(--purple-50)); border-color: #ddcfe3; }
.translation-panel legend { padding: 0 8px; color: var(--purple-950); font-size: .82rem; font-weight: 850; }
.translation-panel legend span { display: inline-grid; place-items: center; width: 30px; height: 24px; margin-right: 7px; border-radius: 8px; background: var(--purple-950); color: #fff; font-size: .65rem; }
.translation-panel-en legend span { background: var(--gold-500); color: var(--purple-950); }
.preview-language-links { display: grid; gap: 9px; }

/* Update centre */
.update-hero { display: grid; grid-template-columns: 1.25fr 1fr; gap: 34px; align-items: center; padding: 30px; margin-bottom: 18px; background: linear-gradient(135deg, var(--purple-950), #4f1764); color: var(--white); }
.update-hero h2 { color: var(--white); margin-bottom: 10px; }
.update-hero p { color: rgba(255,255,255,.72); margin-bottom: 0; }
.update-version-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.update-version-grid > div { min-width: 0; padding: 14px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(255,255,255,.07); }
.update-version-grid span { display: block; color: rgba(255,255,255,.58); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.update-version-grid strong { display: block; margin-top: 6px; color: var(--gold-400); font-size: .95rem; overflow-wrap: anywhere; }
.update-stats-grid { margin-bottom: 18px; }
.updates-layout { display: grid; grid-template-columns: minmax(0,1.55fr) minmax(300px,.75fr); gap: 18px; align-items: start; }
.updates-main, .updates-side { display: grid; gap: 18px; }
.status-ready { background: #e5f7ef; color: var(--success); }
.translation-status-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 10px; }
.translation-status { min-width: 0; padding: 16px; border-radius: 14px; border: 1px solid var(--line); background: #fff; }
.translation-status span, .translation-status small { display: block; color: var(--ink-soft); font-size: .72rem; }
.translation-status strong { display: block; margin: 4px 0; font-size: 1.8rem; color: var(--purple-950); }
.translation-status.is-complete { border-color: #bfe4d3; background: #f3fbf7; }
.translation-status.is-complete strong { color: var(--success); }
.translation-status.is-warning { border-color: #ead8a5; background: #fffbef; }
.translation-status.is-warning strong { color: var(--warning); }
.admin-help { margin: 12px 0 0; font-size: .78rem; color: var(--ink-soft); }
.update-log-list { display: grid; }
.update-log-list article { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line); }
.update-log-list article:last-child { border-bottom: 0; }
.update-log-icon { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--purple-100); color: var(--purple-700); font-weight: 900; }
.update-log-list div { min-width: 0; }
.update-log-list strong, .update-log-list small { display: block; overflow-wrap: anywhere; }
.update-log-list small, .update-log-list time { color: var(--ink-soft); font-size: .72rem; }
.snapshot-list { display: grid; gap: 8px; margin-top: 15px; max-height: 310px; overflow: auto; }
.snapshot-list a { display: grid; gap: 2px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--ivory); }
.snapshot-list strong { font-size: .74rem; overflow-wrap: anywhere; }
.snapshot-list small { color: var(--ink-soft); font-size: .68rem; }
.update-code-card code { display: block; padding: 13px; border-radius: 10px; background: #201625; color: #f1e7f4; overflow-x: auto; }

@media (max-width: 1080px) {
  .translation-grid, .update-hero, .updates-layout { grid-template-columns: 1fr; }
  .translation-status-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
}

@media (max-width: 720px) {
  .language-card, .maintenance-card { padding: 32px 18px 28px; border-radius: 24px; }
  .language-options { grid-template-columns: 1fr; }
  .language-logo { width: min(210px, 62vw); }
  .language-card h1 { font-size: 2.25rem; }
  .topbar-left { display: none; }
  .topbar { justify-content: flex-end; }
  .topbar-right > a:not(.topbar-admin), .topbar-right .language-switch { display: none; }
  .translation-panel { padding: 15px; }
  .update-version-grid, .translation-status-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .update-log-list article { grid-template-columns: auto 1fr; }
  .update-log-list time { grid-column: 2; }
}

@media (max-width: 460px) {
  .update-version-grid, .translation-status-grid { grid-template-columns: 1fr; }
}
