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

:root {
	--purple: #41177A;
	--purple-deep: #1F0A3D;
	--purple-soft: #6E3CB0;
	--purple-lt: #AF7DF3;
	--gold: #F3C626;
	--gold-deep: #DCAF10;
	--cream: #F4F1EA;
	--cream-deep: #E3E5DE;
	--ink: #0F0814;
	--gray: #7B7E86;
	--gray-line: #D9D6CF;
}

html { scroll-behavior: smooth; }

body {
	font-family: 'Roboto', sans-serif;
	background: var(--cream);
	color: var(--ink);
	overflow-x: clip;
}

.serif-i {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-weight: 400;
	letter-spacing: -.01em;
	text-transform: none;
}

@keyframes pulse {
	70%  { box-shadow: 0 0 0 8px rgba(243,198,38,0); }
	100% { box-shadow: 0 0 0 0 rgba(243,198,38,0); }
}

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


/* ─────────────────────────────────────────────────────────
   BREADCRUMB
   ───────────────────────────────────────────────────────── */

.crumb {
	background: var(--cream);
	padding: 18px 44px;
	border-bottom: 1px solid rgba(15,8,20,.06);
	font-size: 11.5px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--gray);
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.crumb a { color: var(--gray); text-decoration: none; transition: color .2s; }
.crumb a:hover { color: var(--purple); }
.crumb .sep { color: var(--gold); }
.crumb .current { color: var(--ink); }


/* ─────────────────────────────────────────────────────────
   SECTION HEADER
   ───────────────────────────────────────────────────────── */

.sec-header {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 32px;
	align-items: end;
	padding: 80px 44px 44px;
}

.sec-title {
	font-family: 'Jost', sans-serif;
	font-weight: 800;
	font-size: clamp(36px, 5.2vw, 64px);
	line-height: .92;
	letter-spacing: -.02em;
	color: var(--ink);
}

.sec-title .serif-i { color: var(--purple); display: inline-block; }

/* "Career outcomes." reads as one phrase, so it does not wrap */
.sec-title.solo { white-space: nowrap; }

.sec-link {
	font-family: 'Jost', sans-serif;
	font-size: 12px;
	letter-spacing: .14em;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--ink);
	text-decoration: none;
	padding-bottom: 6px;
	border-bottom: 2px solid var(--ink);
	transition: color .2s, border-color .2s;
	white-space: nowrap;
}

.sec-link:hover { color: var(--purple); border-color: var(--purple); }

/* The two ink sections invert */
.curr .sec-title,
.faq .sec-title { color: var(--cream); }

.curr .sec-title .serif-i,
.faq .sec-title .serif-i { color: var(--gold); }

.curr .sec-link,
.faq .sec-link { color: var(--cream); border-color: var(--cream); }

.curr .sec-link:hover,
.faq .sec-link:hover { color: var(--gold); border-color: var(--gold); }


/* ─────────────────────────────────────────────────────────
   REVEAL
   ───────────────────────────────────────────────────────── */

.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1);
}

.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .18s; }
.reveal-d3 { transition-delay: .28s; }


/* ─────────────────────────────────────────────────────────
   PROGRAMME HERO
   ───────────────────────────────────────────────────────── */

.phero {
	background: var(--ink);
	color: var(--cream);
	padding: 80px 44px 70px;
	position: relative;
	overflow: hidden;
	min-height: 70vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.phero-watermark {
	position: absolute;
	right: -3vw;
	bottom: -2vw;
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-weight: 400;
	font-size: clamp(180px, 30vw, 480px);
	color: rgba(255,255,255,.04);
	line-height: .8;
	letter-spacing: -.04em;
	pointer-events: none;
	user-select: none;
	text-transform: lowercase;
}

.phero-watermark-num {
	position: absolute;
	left: -1vw;
	top: 30px;
	font-family: 'Jost', sans-serif;
	font-weight: 900;
	font-size: clamp(140px, 22vw, 360px);
	color: transparent;
	-webkit-text-stroke: 1px rgba(255,255,255,.06);
	line-height: 1;
	letter-spacing: -.05em;
	pointer-events: none;
	user-select: none;
}

.phero-content {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	gap: 36px;
}

.phero-title {
	font-family: 'Jost', sans-serif;
	font-weight: 900;
	font-size: clamp(56px, 9vw, 132px);
	line-height: .88;
	letter-spacing: -.03em;
	color: var(--cream);
	text-transform: uppercase;
}

.phero-title em {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-weight: 400;
	color: var(--gold);
	text-transform: none;
}

.phero-title .row {
	display: block;
	overflow: hidden;
	padding-bottom: .22em;
	margin-bottom: -.2em;
	line-height: .88;
}

.phero-title .row span {
	display: inline-block;
	transform: translateY(110%);
	animation: rise 1.1s cubic-bezier(.22,.61,.36,1) forwards;
}

.phero-title .row.r1 span { animation-delay: .15s; }
.phero-title .row.r2 span { animation-delay: .35s; }

.phero-tagline {
	font-family: 'Jost', sans-serif;
	font-size: clamp(17px, 1.5vw, 22px);
	font-weight: 500;
	line-height: 1.5;
	color: rgba(255,255,255,.75);
	max-width: 720px;
	opacity: 0;
	animation: fadeUp 1s ease .8s forwards;
	padding-top: 12px;
	border-top: 1px solid rgba(255,255,255,.18);
}

.phero-tagline p { margin: 0; }
.phero-tagline p + p { margin-top: 10px; }

.phero-tagline em {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-weight: 400;
	color: var(--gold);
}

.phero-ctas {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	opacity: 0;
	animation: fadeUp 1s ease 1s forwards;
}

.phero-cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 26px;
	font-family: 'Jost', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background .25s, color .25s;
	position: relative;
	overflow: hidden;
}

.phero-cta.primary { background: var(--gold); color: var(--ink); }
.phero-cta.primary:hover { background: var(--cream); }

.phero-cta.alt { background: transparent; color: var(--cream); border: 1px solid rgba(255,255,255,.3); }
.phero-cta.alt:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.phero-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: -120%;
	width: 50%;
	height: 100%;
	background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.2) 50%, transparent 100%);
	transition: left .8s ease;
}

.phero-cta:hover::before { left: 220%; }


/* ─────────────────────────────────────────────────────────
   QUICK FACTS
   ───────────────────────────────────────────────────────── */

.qf-strip {
	background: var(--ink);
	color: var(--cream);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid rgba(255,255,255,.1);
}

.qf-item {
	padding: 22px 28px;
	border-right: 1px solid rgba(255,255,255,.1);
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
	transition: background .35s;
	cursor: default;
	position: relative;
	overflow: hidden;
}

.qf-item::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .5s cubic-bezier(.22,.61,.36,1);
}

.qf-item:hover { background: rgba(243,198,38,.05); }
.qf-item:hover::before { transform: scaleX(1); }
.qf-item:last-child { border-right: none; }

.qf-lbl {
	font-family: 'Jost', sans-serif;
	font-size: 10px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: rgba(255,255,255,.5);
	font-weight: 700;
}

.qf-val {
	font-family: 'Jost', sans-serif;
	font-weight: 800;
	font-size: clamp(17px, 1.4vw, 21px);
	color: var(--cream);
	letter-spacing: -.005em;
	line-height: 1.1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.qf-val .acc { color: var(--gold); }
.qf-val .small { font-size: .62em; color: rgba(255,255,255,.55); font-weight: 500; margin-left: 4px; }
.qf-val .serif-i { color: var(--gold); }


/* ─────────────────────────────────────────────────────────
   OVERVIEW
   ───────────────────────────────────────────────────────── */

.overview { background: var(--cream); padding-bottom: 80px; position: relative; overflow: hidden; }

.ov-split {
	margin: 0 44px;
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 64px;
	align-items: stretch;
}

.ov-editorial {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 22px;
	position: relative;
}

/* The short gold rule under the last paragraph */
.ov-editorial::after { content: ''; width: 56px; height: 2px; background: var(--gold); display: block; }

.ov-quote {
	font-family: 'Jost', sans-serif;
	font-weight: 400;
	font-size: clamp(18px, 1.55vw, 22px);
	line-height: 1.6;
	color: var(--ink);
	letter-spacing: -.005em;
	max-width: 600px;
}

.ov-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border: 1px solid var(--gray-line);
	background: #fff;
	align-self: start;
}

.ov-stat {
	padding: 26px 22px 22px;
	border-right: 1px solid var(--gray-line);
	border-bottom: 1px solid var(--gray-line);
	display: flex;
	flex-direction: column;
	gap: 4px;
	position: relative;
	min-height: 160px;
	overflow: hidden;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1), background .35s, padding-left .35s;
}

.ov-stat.in { opacity: 1; transform: translateY(0); }
.ov-stat:nth-child(2).in { transition-delay: .08s; }
.ov-stat:nth-child(3).in { transition-delay: .16s; }
.ov-stat:nth-child(4).in { transition-delay: .24s; }

.ov-stat:nth-child(2n) { border-right: none; }
.ov-stat:nth-last-child(-n+2) { border-bottom: none; }

.ov-stat::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--gold);
	transform: scaleY(0);
	transform-origin: center;
	transition: transform .45s cubic-bezier(.22,.61,.36,1);
}

.ov-stat:hover { background: var(--cream); padding-left: 30px; }
.ov-stat:hover::before { transform: scaleY(1); }

.ov-stat-num {
	font-family: 'Jost', sans-serif;
	font-weight: 900;
	font-size: clamp(38px, 4vw, 56px);
	color: var(--purple);
	line-height: .9;
	letter-spacing: -.04em;
}

.ov-stat-num em {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-weight: 400;
	color: var(--purple);
}

.ov-stat-lbl {
	font-family: 'Jost', sans-serif;
	font-size: 10.5px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--gold-deep);
	font-weight: 700;
	margin-top: 8px;
}

.ov-stat-desc { font-size: 12px; line-height: 1.5; color: var(--gray); margin-top: 4px; }


/* ─────────────────────────────────────────────────────────
   CURRICULUM
   ---------------------------------------------------------
   --ccols is the year count. The rail runs from the centre
   of the first dot to just past the last, so it stops one
   column short.
   ───────────────────────────────────────────────────────── */

.curr { background: var(--ink); color: var(--cream); padding-bottom: 80px; }

.curr-rail { position: relative; margin: 0 44px; padding-top: 14px; }

.curr-rail::before {
	content: '';
	position: absolute;
	top: 22px;
	left: 9px;
	right: calc(100% / var(--ccols, 4) - 24px);
	height: 2px;
	background: linear-gradient(to right, var(--gold) 0%, var(--gold) 78%, rgba(243,198,38,.15) 100%);
	z-index: 1;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 1.4s cubic-bezier(.7,0,.25,1);
}

.curr-rail.in::before { transform: scaleX(1); }

.curr-grid {
	display: grid;
	grid-template-columns: repeat(var(--ccols, 4), 1fr);
	position: relative;
	z-index: 2;
}

.curr-step {
	display: flex;
	flex-direction: column;
	padding: 0 24px 36px 0;
	align-items: flex-start;
	align-self: start;
	position: relative;
	opacity: 0;
	transform: translateX(-50px);
	transition: opacity .9s ease, transform 1s cubic-bezier(.22,.61,.36,1);
}

.curr-step:last-child { padding-right: 0; }
.curr-step.in { opacity: 1; transform: translateX(0); }
.curr-step:nth-child(1).in { transition-delay: .15s; }
.curr-step:nth-child(2).in { transition-delay: .45s; }
.curr-step:nth-child(3).in { transition-delay: .75s; }
.curr-step:nth-child(4).in { transition-delay: 1.05s; }

.curr-dot {
	width: 18px;
	height: 18px;
	background: var(--ink);
	border: 2px solid var(--gold);
	border-radius: 50%;
	box-shadow: 0 0 0 6px rgba(243,198,38,.12);
	position: relative;
	z-index: 3;
	opacity: 0;
	transform: scale(0);
	transition: opacity .4s ease, transform .5s cubic-bezier(.4,1.6,.64,1);
}

.curr-step.in .curr-dot { opacity: 1; transform: scale(1); transition-delay: inherit; }

.curr-dot::after {
	content: '';
	position: absolute;
	inset: 3px;
	background: var(--gold);
	border-radius: 50%;
	opacity: 0;
	transition: opacity .35s;
}

.curr-step:hover .curr-dot { transform: scale(1.15); }
.curr-step:hover .curr-dot::after { opacity: 1; }

.curr-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	background: var(--purple-deep);
	border: 1px solid rgba(255,255,255,.08);
	margin-top: 28px;
}

.curr-pill .yr {
	font-family: 'Jost', sans-serif;
	font-size: 10.5px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gold);
	font-weight: 700;
}

.curr-pill .num { font-family: 'Jost', sans-serif; font-weight: 800; font-size: 18px; color: var(--cream); line-height: 1; }

.curr-name {
	font-family: 'Jost', sans-serif;
	font-weight: 800;
	font-size: clamp(17px, 1.45vw, 20px);
	line-height: 1.2;
	color: var(--cream);
	letter-spacing: -.01em;
	margin: 20px 0 6px;
}

.curr-name em {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-weight: 400;
	color: var(--gold);
	transition: color .35s;
}

.curr-step:hover .curr-name em { color: var(--cream); }

.curr-sub {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-size: 15px;
	color: rgba(243,198,38,.9);
	line-height: 1.4;
	margin-bottom: 18px;
	min-height:50px;
}

.curr-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 32px; min-height:240px;}

.curr-list li {
	font-size: 13.5px;
	line-height: 1.55;
	color: rgba(255,255,255,.65);
	padding-left: 16px;
	position: relative;
	transition: color .35s;
}

.curr-step:hover .curr-list li { color: rgba(255,255,255,.85); }

.curr-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 11px;
	width: 8px;
	height: 1px;
	background: var(--gold);
}

.curr-tag {
	font-family: 'Jost', sans-serif;
	font-size: 10.5px;
	letter-spacing: .18em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--gold);
	padding-top: 22px;
	border-top: 1px solid rgba(255,255,255,.14);
	margin-top: auto;
	width: 100%;
}


/* ─────────────────────────────────────────────────────────
   SEMESTERS
   ───────────────────────────────────────────────────────── */

.sem { background: var(--cream); padding-bottom: 80px; }

.sem-grid { margin: 0 44px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.sem-card {
	padding: 24px 22px 22px;
	background: #fff;
	border: 1px solid var(--gray-line);
	display: flex;
	flex-direction: column;
	gap: 14px;
	position: relative;
	cursor: default;
	min-height: 240px;
	overflow: hidden;
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .7s ease, transform .55s cubic-bezier(.22,.61,.36,1), border-color .35s, box-shadow .35s;
}

.sem-card.in { opacity: 1; transform: translateY(0); }
.sem-card:nth-child(2).in { transition-delay: .05s; }
.sem-card:nth-child(3).in { transition-delay: .1s; }
.sem-card:nth-child(4).in { transition-delay: .15s; }
.sem-card:nth-child(5).in { transition-delay: .2s; }
.sem-card:nth-child(6).in { transition-delay: .25s; }
.sem-card:nth-child(7).in { transition-delay: .3s; }
.sem-card:nth-child(8).in { transition-delay: .35s; }

.sem-card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	height: 3px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .55s cubic-bezier(.22,.61,.36,1);
}

.sem-card:hover { transform: translateY(-4px); border-color: var(--purple); box-shadow: 0 14px 32px rgba(31,10,61,.1); }
.sem-card:hover::before { transform: scaleX(1); }

.sem-card-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--gray-line);
}

.sem-head-l { display: flex; flex-direction: column; gap: 4px; }

.sem-yr {
	font-family: 'Jost', sans-serif;
	font-weight: 700;
	font-size: 10px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--gray);
}

.sem-num {
	font-family: 'Jost', sans-serif;
	font-weight: 900;
	font-size: 30px;
	color: var(--purple);
	line-height: 1;
	letter-spacing: -.03em;
}

.sem-num em {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-weight: 400;
	color: var(--gold);
	font-size: .65em;
	vertical-align: top;
	margin-left: 2px;
}

.sem-count {
	font-family: 'Jost', sans-serif;
	font-size: 10px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--gold-deep);
	font-weight: 700;
	padding: 4px 8px;
	border: 1px solid rgba(243,198,38,.4);
	background: rgba(243,198,38,.08);
	white-space: nowrap;
}

.sem-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }

.sem-list li {
	font-size: 13.5px;
	line-height: 1.5;
	color: var(--ink);
	padding-left: 16px;
	position: relative;
	transition: color .3s;
}

.sem-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	width: 6px;
	height: 6px;
	background: var(--gold);
	border-radius: 50%;
}

.sem-card:hover .sem-list li { color: var(--purple); }


/* ─────────────────────────────────────────────────────────
   CAREERS
   ---------------------------------------------------------
   --ghost is the huge faded word behind the industries band.
   It was `content: 'hiring'` in CSS, which made it a design
   token rather than something an editor could touch.
   ───────────────────────────────────────────────────────── */

.careers { background: var(--cream); padding-bottom: 80px; position: relative; overflow: hidden; }
.careers .sec-title { white-space: nowrap; }

.roles-grid { margin: 0 44px 50px; display: flex; flex-wrap: wrap; gap: 14px 12px; align-items: center; }

.role-card {
	padding: 12px 22px 12px 12px;
	background: #fff;
	border: 1px solid var(--gray-line);
	border-radius: 100px;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	cursor: default;
	position: relative;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .7s ease, transform .55s cubic-bezier(.22,.61,.36,1),
	            background .35s, color .35s, border-color .35s, box-shadow .35s;
}

.role-card.in { opacity: 1; transform: translateY(0); }
.role-card:nth-child(2).in { transition-delay: .05s; }
.role-card:nth-child(3).in { transition-delay: .1s; }
.role-card:nth-child(4).in { transition-delay: .15s; }
.role-card:nth-child(5).in { transition-delay: .2s; }
.role-card:nth-child(6).in { transition-delay: .25s; }
.role-card:nth-child(7).in { transition-delay: .3s; }
.role-card:nth-child(8).in { transition-delay: .35s; }

.role-card:hover {
	transform: translateY(-4px);
	background: var(--purple);
	border-color: var(--purple);
	box-shadow: 0 12px 28px rgba(31,10,61,.18);
	z-index: 2;
}

.role-icon {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(243,198,38,.14);
	border: 1px solid rgba(243,198,38,.4);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-deep);
	flex-shrink: 0;
	transition: background .4s, border-color .4s, color .4s, transform .5s cubic-bezier(.22,.61,.36,1);
}

.role-icon svg {
	width: 16px;
	height: 16px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.role-card:hover .role-icon {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--ink);
	transform: rotate(-15deg) scale(1.08);
}

.role-name {
	font-family: 'Jost', sans-serif;
	font-weight: 700;
	font-size: 14.5px;
	color: var(--ink);
	letter-spacing: -.005em;
	line-height: 1;
	transition: color .35s;
}

.role-card:hover .role-name { color: var(--cream); }

/* The "& many more" chip — text only, dashed */
.role-card.role-many {
	padding: 12px 24px;
	background: transparent;
	border-style: dashed;
	border-color: var(--gray);
	align-items: baseline;
	gap: 4px;
}

.role-card.role-many .rm-text {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-size: 18px;
	color: var(--gray);
	letter-spacing: -.005em;
	line-height: 1;
	transition: color .35s;
}

.role-card.role-many .rm-dots {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-size: 22px;
	color: var(--gold-deep);
	line-height: 1;
}

.role-card.role-many:hover {
	background: transparent;
	border-style: solid;
	border-color: var(--purple);
	box-shadow: none;
}

.role-card.role-many:hover .rm-text { color: var(--purple); }

/* ---------- Industries band ---------- */

.inds-wrap {
	margin: 0 44px;
	padding: 44px;
	background: var(--ink);
	color: var(--cream);
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.inds-wrap::before {
	content: var(--ghost, 'hiring');
	position: absolute;
	right: -3vw;
	bottom: -3vw;
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-weight: 400;
	font-size: clamp(160px, 22vw, 320px);
	color: rgba(255,255,255,.045);
	line-height: .8;
	letter-spacing: -.04em;
	pointer-events: none;
	user-select: none;
	text-transform: lowercase;
	z-index: 0;
}

.inds-head {
	font-family: 'Jost', sans-serif;
	font-size: 11px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--gold);
	font-weight: 700;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 30px;
	position: relative;
	z-index: 2;
}

.inds-head em {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-weight: 400;
	color: var(--gold);
	text-transform: none;
	letter-spacing: -.005em;
	font-size: clamp(22px, 2.4vw, 32px);
	line-height: 1.1;
}

.inds-tiles { display: flex; flex-wrap: wrap; gap: 12px 14px; position: relative; z-index: 2; }

.ind-tile {
	font-family: 'Jost', sans-serif;
	font-weight: 700;
	font-size: clamp(14px, 1.2vw, 17px);
	color: var(--cream);
	padding: 12px 22px 12px 16px;
	position: relative;
	cursor: default;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	border: 1px solid rgba(255,255,255,.18);
	background: transparent;
	transition: background .35s, color .35s, transform .4s cubic-bezier(.22,.61,.36,1), border-color .35s;
}

.ind-tile::before {
	content: '';
	width: 6px;
	height: 6px;
	background: var(--gold);
	border-radius: 50%;
	flex-shrink: 0;
	transition: background .35s, transform .35s;
}

.ind-tile:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: translateY(-3px); }
.ind-tile:hover::before { background: var(--ink); transform: scale(1.3); }


/* ─────────────────────────────────────────────────────────
   ADMISSION
   ---------------------------------------------------------
   --join is the word in the gold circle between the two
   panels. It was `content: 'then'` in CSS.
   ───────────────────────────────────────────────────────── */

.adm { background: var(--cream); padding-bottom: 80px; }

.adm-elig {
	margin: 0 44px 28px;
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	font-family: 'Jost', sans-serif;
	font-size: 12px;
	letter-spacing: .12em;
	color: var(--gray);
	font-weight: 600;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--gray-line);
}

.adm-elig .lbl {
	color: var(--purple);
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.adm-elig .lbl::before { content: ''; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
.adm-elig .sep { width: 1px; height: 12px; background: var(--gray-line); }
.adm-elig strong { color: var(--ink); font-weight: 700; letter-spacing: 0; text-transform: none; font-size: 14px; }

.adm-elig em {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-weight: 400;
	color: var(--purple);
	letter-spacing: 0;
	text-transform: none;
	font-size: 16px;
}

.adm-stages {
	margin: 0 44px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	border: 1px solid var(--gray-line);
	background: #fff;
	position: relative;
}

.adm-stages::before {
	content: var(--join, 'then');
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: var(--gold);
	color: var(--ink);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 5;
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-size: 17px;
}

.adm-stage {
	padding: 36px;
	border-right: 1px solid var(--gray-line);
	display: flex;
	flex-direction: column;
	gap: 10px;
	position: relative;
	cursor: default;
	opacity: 0;
	transform: translateX(-20px);
	transition: opacity .8s ease, transform .8s cubic-bezier(.22,.61,.36,1), background .35s;
}

.adm-stage:nth-child(2) { transform: translateX(20px); transition-delay: .15s; }
.adm-stage.in { opacity: 1; transform: translateX(0); }
.adm-stage:last-child { border-right: none; }
.adm-stage:hover { background: var(--cream); }

.adm-stage-num {
	font-family: 'Jost', sans-serif;
	font-weight: 900;
	font-size: 46px;
	color: var(--purple);
	line-height: 1;
	letter-spacing: -.04em;
	transition: color .35s;
}

.adm-stage:hover .adm-stage-num { color: var(--purple-soft); }

.adm-stage-lbl {
	font-family: 'Jost', sans-serif;
	font-size: 10.5px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--purple);
	font-weight: 700;
}

.adm-stage-name {
	font-family: 'Jost', sans-serif;
	font-weight: 800;
	font-size: clamp(20px, 1.8vw, 26px);
	line-height: 1.05;
	color: var(--ink);
	letter-spacing: -.01em;
}

.adm-stage-name em {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-weight: 400;
	color: var(--purple);
}

.adm-stage-desc { font-size: 13.5px; line-height: 1.6; color: var(--gray); }

.adm-stage-meta {
	display: inline-flex;
	gap: 14px;
	align-items: center;
	padding: 8px 14px;
	background: var(--ink);
	color: var(--gold);
	font-family: 'Jost', sans-serif;
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-weight: 700;
	margin-top: auto;
	align-self: flex-start;
}


/* ─────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────── */

@media (max-width: 1100px) {
	.ov-split { grid-template-columns: 1fr; gap: 44px; }
	.curr-rail::before { display: none; }
	.curr-grid { --ccols: 2; gap: 40px 24px; }
	.sem-grid { grid-template-columns: repeat(2, 1fr); }

}
@media (max-width: 1440px) {
.curr-list { min-height:280px; !important}
}
@media (max-width: 1240px) {
.curr-list { min-height:300px; !important}
}

@media (max-width: 768px) {
	.crumb { padding: 14px 18px; font-size: 10px; }

	.phero { padding: 50px 18px; min-height: 60vh; }
	.phero-title { font-size: clamp(32px, 9vw, 60px); }
	.phero-watermark { font-size: clamp(140px, 50vw, 240px); }
	.phero-watermark-num { font-size: clamp(100px, 40vw, 180px); }

	.qf-strip { grid-template-columns: repeat(2, 1fr); }
	.qf-item { padding: 16px 18px; }
	.qf-item:nth-child(1),
	.qf-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); }
	.qf-item:nth-child(2),
	.qf-item:nth-child(4) { border-right: none; }

	.sec-header { padding: 60px 18px 32px; grid-template-columns: minmax(0, 1fr); }
	.sec-title { font-size: clamp(30px, 8vw, 48px); }
	.sec-title.solo,
	.careers .sec-title { white-space: normal; }

	.ov-split,
	.curr-rail,
	.sem-grid,
	.roles-grid,
	.inds-wrap,
	.adm-elig,
	.adm-stages { margin-left: 18px; margin-right: 18px; }

	.curr-grid { --ccols: 1; gap: 32px; }
	.sem-grid { grid-template-columns: 1fr; }
	.inds-wrap { padding: 32px 24px; }

	.adm-stages { grid-template-columns: 1fr; }
	.adm-stage,
	.adm-stage:last-child { padding: 28px 26px; border-right: none; border-bottom: 1px solid var(--gray-line); }
	.adm-stage:last-child { border-bottom: none; }
}

@media (max-width: 560px) {
	.ov-stats { grid-template-columns: 1fr; }
	.ov-stat { border-right: none; border-bottom: 1px solid var(--gray-line); min-height: 0; }
	.ov-stat:last-child { border-bottom: none; }
}

@media (prefers-reduced-motion: reduce) {
	.reveal,
	.ov-stat,
	.curr-step,
	.curr-dot,
	.sem-card,
	.role-card,
	.adm-stage { transition: none; opacity: 1; transform: none; }

	.phero-title .row span,
	.phero-tagline,
	.phero-ctas { animation: none !important; opacity: 1 !important; transform: none !important; }

	.curr-rail::before { transition: none; transform: scaleX(1); }
}