:root {
	--ink: #142C3E;
	--ink-2: #1E3A52;
	--ink-3: #2A4A66;
	--cream: #f5f5f5;
	--cream-2: #ECECEC;
	--paper: #FFFFFF;
	--gold: #de3e0f;
	--gold-2: #C03509;
	--cyan: #de3e0f;
	--cyan-2: #C03509;
	--ash: #D9D9D9;
	--mute: #6B7480;
	--mute-dark: #8FA0B0;
	--line: #2A4A66;
	--line-light: #E5E5E5;
}


html {
	scroll-behavior: smooth;
}

body {
	background: var(--cream);
	color: var(--ink);
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
	overflow-x: hidden;
}

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

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

button {
	font-family: inherit;
	cursor: pointer;
	border: 0;
	background: none;
}

/* ---------- type ---------- */
.serif {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	letter-spacing: -.01em;
}

.mono {
	font-family: "Montserrat", sans-serif;
}

.eyebrow {
    display: none !important;
	font-family: "Montserrat", sans-serif;
	font-size: 11px;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--gold);
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.eyebrow::before {
	content: "";
	width: 24px;
	height: 1px;
	background: var(--gold);
	display: inline-block;
}

.eyebrow.dark::before {
	background: var(--cyan);
}

.eyebrow.dark {
	color: var(--cyan);
}

h1,
h2 {
	font-family: "Montserrat", sans-serif;
	font-weight: 800;
	letter-spacing: -.025em;
	line-height: 1.04;
}

h3,
h4 {
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	letter-spacing: -.015em;
	line-height: 1.1;
}

h1 em,
h2 em,
h3 em,
h4 em {
	font-weight: 300;
	font-style: italic;
	color: var(--gold);
	letter-spacing: -.01em;
}

h1 {
	font-size: clamp(38px, 8vw, 72px);
}

h2 {
	font-size: clamp(30px, 5.5vw, 52px);
}

h3 {
	font-size: clamp(22px, 3.5vw, 32px);
}

p {
	font-size: 15.5px;
	line-height: 1.65;
	color: var(--ink);
}

.lede {
	font-size: 17px;
	line-height: 1.6;
	color: var(--mute);
	max-width: 640px;
}

.on-dark p,
.on-dark .lede {
	color: #D6DFE8;
}

.on-dark h1,
.on-dark h2,
.on-dark h3,
.on-dark h4 {
	color: #f5f5f5;
}

/* ---------- buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 26px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 14.5px;
	letter-spacing: .01em;
	transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
	cursor: pointer;
	white-space: nowrap;
}

.btn-primary {
	background: var(--gold);
	color: var(--ink);
	box-shadow: 0 8px 24px -10px rgba(222, 62, 15, .6);
}

.btn-primary:hover {
	background: #F25928;
	transform: translateY(-2px);
}

.btn-ghost {
	background: transparent;
	color: var(--cream);
	border: 1px solid rgba(245, 245, 245, .4);
}

.btn-ghost:hover {
	background: rgba(245, 245, 245, .08);
	border-color: var(--cream);
}

.btn-dark {
	background: var(--ink);
	color: var(--cream);
}

.btn-dark:hover {
	background: #2A4A66;
	transform: translateY(-2px);
}

.btn-outline-dark {
	background: transparent;
	color: var(--ink);
	border: 1px solid rgba(20, 44, 62, .3);
}

.btn-outline-dark:hover {
	background: var(--ink);
	color: var(--cream);
}

/* ---------- layout ---------- */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

section {
	padding: 72px 0;
	position: relative;
}

.dark {
	background: var(--ink);
	color: var(--cream);
}

.dark.grainy {
	position: relative;
}

.dark.grainy::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: .5;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.92  0 0 0 0 0.88  0 0 0 0 0.76  0 0 0 .06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
	mix-blend-mode: overlay;
}

.grid {
	display: grid;
	gap: 24px;
}

/* ---------- top bar ---------- */
.topbar {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(20, 44, 62, .92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 20px;
	max-width: 1200px;
	margin: 0 auto;
}



.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--cream);
}

.brand-mark {
	width: 38px;
	height: 38px;
	border: 1.5px solid var(--gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	font-size: 18px;
	color: var(--gold);
}

.brand-text {
	line-height: 1.1;
}

.brand-text strong {
	font-family: "Montserrat", sans-serif;
	font-weight: 800;
	font-size: 18px;
	letter-spacing: -.01em;
}

.brand-text span {
	font-size: 10px;
	color: #8FA0B0;
	letter-spacing: .18em;
	text-transform: uppercase;
	display: block;
	margin-top: 2px;
}

.top-cta {
	display: flex;
	align-items: center;
	gap: 12px;
}

.top-phone {
	display: none;
	color: #D6DFE8;
	font-size: 13.5px;
	font-weight: 500;
}

.top-phone svg {
	vertical-align: middle;
	margin-right: 6px;
}

@media(min-width:720px) {
	.top-phone {
		display: inline-flex;
		align-items: center;
	}
}

.top-cta .btn {
	padding: 10px 18px;
	font-size: 13px;
}

/* ---------- hero ---------- */
.hero {
	background: linear-gradient(180deg, #142C3E 0%, #0E0E22 100%);
	color: var(--cream);
	position: relative;
	overflow: hidden;
	padding: 60px 0 80px;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(800px 500px at 100% 0%, rgba(222, 62, 15, .13), transparent 60%),
		radial-gradient(700px 600px at 0% 100%, rgba(222, 62, 15, .10), transparent 60%);
	pointer-events: none;
}

.hero-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
}

@media(min-width:980px) {
	.hero-inner {
		grid-template-columns: 1.15fr .85fr;
		gap: 60px;
		padding: 30px 0;
	}
}

.hero h1 {
	margin: 18px 0 18px;
	color: #f5f5f5;
}

.hero h1 em {
	font-style: italic;
	color: var(--gold);
}

.hero .lede {
	color: #D6DFE8;
	font-size: 17px;
	max-width: 580px;
}

.hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 22px;
}

.meta-pill {
	font-family: "Montserrat", sans-serif;
	font-size: 11px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: #D6DFE8;
	padding: 6px 12px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 999px;
}

.highlights {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 18px;
	margin: 26px 0;
}

@media(min-width:520px) {
	.highlights {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media(min-width:980px) {
	.highlights {
		grid-template-columns: repeat(2, 1fr);
	}
}

.highlight {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: #D9D9D9;
	font-size: 13.5px;
	line-height: 1.4;
	font-weight: 500;
}

.check {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(222, 62, 15, .15);
	color: var(--cyan);
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 1px;
}

.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 6px;
}

.trust-strip {
	margin-top: 36px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, .08);
	display: flex;
	flex-wrap: wrap;
	gap: 18px 24px;
	font-size: 12px;
	color: #8FA0B0;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.trust-strip span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.trust-strip .dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--gold);
}

/* hero AI network graphic */
.hero-art {
	position: relative;
	height: 340px;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media(min-width:980px) {
	.hero-art {
		height: 480px;
	}
}

.hero-svg {
	width: 100%;
	height: 100%;
	max-width: 520px;
}

.node {
	fill: var(--cyan);
	filter: drop-shadow(0 0 8px rgba(222, 62, 15, .6));
}

.node.gold {
	fill: var(--gold);
	filter: drop-shadow(0 0 8px rgba(222, 62, 15, .65));
}

.node.dim {
	fill: #FFFFFF;
	filter: none;
	opacity: .35;
}

.link-line {
	stroke: rgba(222, 62, 15, .28);
	stroke-width: 1;
	fill: none;
}

.link-line.gold {
	stroke: rgba(222, 62, 15, .30);
}

.pulse {
	animation: pulse 2.4s ease-in-out infinite;
	transform-origin: center;
	transform-box: fill-box;
}

.pulse.delay-1 {
	animation-delay: .6s;
}

.pulse.delay-2 {
	animation-delay: 1.2s;
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(1.4);
		opacity: .65;
	}
}

.orbit {
	animation: orbit 32s linear infinite;
	transform-origin: 50% 50%;
}

@keyframes orbit {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* ---------- section header ---------- */
.section-head {
	margin-bottom: 44px;
	max-width: 760px;
}

.section-head h2 {
	margin: 14px 0 14px;
}

.section-head h2 em {
	font-style: italic;
	color: var(--gold-2);
}

.on-dark .section-head h2 em {
	color: var(--cyan);
}

/* ---------- Section 2 — Why CS & AI ---------- */
.why {
	background: var(--cream);
}

.cards-scroll {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 8px 20px 24px;
	margin: 0 -20px;
	scrollbar-width: none;
}

.cards-scroll::-webkit-scrollbar {
	display: none;
}

.why-card {
	flex: 0 0 78%;
	min-width: 78%;
	scroll-snap-align: start;
	background: var(--paper);
	padding: 30px 26px;
	border-radius: 14px;
	border: 1px solid var(--line-light);
	display: flex;
	flex-direction: column;
	gap: 14px;
	position: relative;
	overflow: hidden;
}

@media(min-width:720px) {
	.cards-scroll {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		overflow: visible;
		margin: 0;
		padding: 0;
	}

	.why-card {
		flex: none;
		min-width: 0;
	}
}

@media(min-width:1024px) {
	.cards-scroll {
		grid-template-columns: repeat(4, 1fr);
	}
}

.why-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: 30px;
	width: 36px;
	height: 3px;
	background: var(--gold);
}

.why-ico {
	width: 48px;
	height: 48px;
	color: var(--ink);
}

.why-card h3 {
	font-size: 22px;
}

.why-card p {
	font-size: 14px;
	color: var(--mute);
}

/* ---------- Section 3 — Curriculum / What You'll Learn ---------- */
.curriculum {
	background: var(--ink);
	color: var(--cream);
}

.semesters {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	position: relative;
	margin-top: 8px;
}

@media(min-width:820px) {
	.semesters {
		grid-template-columns: repeat(4, 1fr);
		gap: 18px;
	}
}

.sem {
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 26px 22px;
	background: rgba(255, 255, 255, .02);
	position: relative;
	overflow: hidden;
	transition: transform .35s ease, border-color .35s ease;
}

.sem:hover {
	transform: translateY(-4px);
	border-color: rgba(222, 62, 15, .45);
}

.sem-num {
	font-family: "Montserrat", sans-serif;
	font-size: 64px;
	font-weight: 800;
	line-height: 1;
	color: var(--gold);
	opacity: .9;
}

.sem-label {
	font-family: "Montserrat", sans-serif;
	font-size: 11px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--cyan);
	margin: 14px 0 12px;
}

.sem-title {
	font-family: "Montserrat", sans-serif;
	font-size: 22px;
	font-weight: 400;
	color: var(--cream);
	margin-bottom: 14px;
	letter-spacing: -.01em;
}

.sem ul {
	list-style: none;
}

.sem ul li {
	font-size: 13.5px;
	color: #D6DFE8;
	padding: 6px 0;
	border-top: 1px dashed rgba(255, 255, 255, .08);
}

.sem ul li:first-child {
	border-top: 0;
}

/* ---------- Section 4 — Career Paths ---------- */
.careers {
	background: var(--cream);
}

.career-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

@media(min-width:720px) {
	.career-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 16px;
	}
}

.career {
	background: var(--paper);
	border: 1px solid var(--line-light);
	border-radius: 12px;
	padding: 22px 18px;
	transition: transform .25s ease, box-shadow .25s ease;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.career:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 36px -22px rgba(20, 44, 62, .18);
}

.career-num {
	font-family: "Montserrat", sans-serif;
	font-size: 11px;
	color: var(--gold-2);
	letter-spacing: .16em;
}

.career-name {
	font-family: "Montserrat", sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: var(--ink);
	line-height: 1.2;
}

.career-arrow {
	margin-top: auto;
	color: var(--ink);
	opacity: .6;
}

.salary-band {
	margin-top: 32px;
	background: var(--ink);
	color: var(--cream);
	border-radius: 14px;
	padding: 24px 28px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

@media(min-width:720px) {
	.salary-band {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 24px;
	}
}

.salary-band strong {
	font-family: "Montserrat", sans-serif;
	font-size: 22px;
	font-weight: 500;
}

.salary-band span {
	color: #D6DFE8;
	font-size: 14px;
}

.salary-band .pill {
	background: var(--gold);
	color: var(--ink);
	font-size: 12px;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 999px;
	letter-spacing: .04em;
}

/* ---------- Section 5 — Tools ---------- */
.tools {
	background: var(--ink);
	color: var(--cream);
}

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

@media(min-width:520px) {
	.tool-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media(min-width:820px) {
	.tool-grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

.tool {
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 18px 14px;
	text-align: center;
	transition: all .25s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, .02);
}

.tool:hover {
	border-color: var(--cyan);
	background: rgba(222, 62, 15, .05);
}

.tool-ico {
	width: 34px;
	height: 34px;
	color: var(--cyan);
}

.tool-name {
	font-family: "Montserrat", sans-serif;
	font-size: 12px;
	letter-spacing: .04em;
	color: #D9D9D9;
}

/* ---------- Section 6 — Projects ---------- */
.projects {
	background: var(--cream);
}

.project-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

@media(min-width:680px) {
	.project-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media(min-width:1024px) {
	.project-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.project {
	background: var(--ink);
	color: var(--cream);
	border-radius: 14px;
	padding: 28px 26px 26px;
	min-height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 18px;
	position: relative;
	overflow: hidden;
	transition: transform .3s ease;
}

.project:hover {
	transform: translateY(-4px);
}

.project::after {
	content: "";
	position: absolute;
	top: -40px;
	right: -40px;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: radial-gradient(closest-side, rgba(222, 62, 15, .18), transparent);
}

.project-tag {
	font-family: "Montserrat", sans-serif;
	font-size: 11px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--cyan);
}

.project h3 {
	font-size: 22px;
	color: var(--cream);
	line-height: 1.15;
}

.project-arrow {
	color: var(--gold);
	width: 32px;
	height: 32px;
	border: 1px solid rgba(222, 62, 15, .4);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.project-cta {
	margin-top: 34px;
	text-align: center;
}

/* ---------- Section 7 — Placement ---------- */
.placement {
	background: var(--ink);
	color: var(--cream);
}

.placement-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 34px;
}

@media(min-width:900px) {
	.placement-grid {
		grid-template-columns: 1fr 1fr;
		gap: 50px;
	}
}

.feat-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 8px;
}

.feat {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.feat:last-child {
	border-bottom: 0;
}

.feat-ico {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	border-radius: 50%;
	background: rgba(222, 62, 15, .12);
	color: var(--cyan);
	display: flex;
	align-items: center;
	justify-content: center;
}

.feat strong {
	display: block;
	color: var(--cream);
	font-size: 15.5px;
	font-weight: 600;
	margin-bottom: 3px;
}

.feat span {
	color: #9FB0BF;
	font-size: 13px;
}

.journey {
	background: rgba(255, 255, 255, .03);
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 28px 22px;
}

.journey h4 {
	font-family: "Montserrat", sans-serif;
	font-size: 11px;
	color: var(--gold);
	letter-spacing: .2em;
	text-transform: uppercase;
	margin-bottom: 24px;
	font-weight: 500;
}

.j-steps {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.j-step {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	position: relative;
}

.j-step:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 18px;
	top: 38px;
	bottom: -18px;
	width: 1px;
	background: linear-gradient(180deg, rgba(222, 62, 15, .4), rgba(222, 62, 15, .05));
}

.j-num {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--gold);
	color: var(--gold);
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: var(--ink);
	position: relative;
	z-index: 2;
}

.j-step h5 {
	font-family: "Montserrat", sans-serif;
	font-size: 17px;
	font-weight: 500;
	color: var(--cream);
	margin-bottom: 3px;
}

.j-step p {
	font-size: 13px;
	color: #9FB0BF;
	line-height: 1.5;
}

/* ---------- Section 8 — Testimonials ---------- */
.testimonials {
	background: var(--cream);
}

.test-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

@media(min-width:900px) {
	.test-grid {
		grid-template-columns: 1.2fr 1fr;
	}
}

.video-card {
	background: var(--ink);
	color: var(--cream);
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 16/10;
	position: relative;
	display: flex;
	align-items: flex-end;
	background-image:
		radial-gradient(circle at 30% 40%, rgba(222, 62, 15, .25), transparent 50%),
		radial-gradient(circle at 70% 60%, rgba(222, 62, 15, .2), transparent 55%),
		linear-gradient(135deg, #1E3A52 0%, #142C3E 100%);
}

.play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 74px;
	height: 74px;
	border-radius: 50%;
	background: var(--gold);
	color: var(--ink);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 18px 40px -10px rgba(222, 62, 15, .55);
	transition: transform .25s ease;
}

.play-btn:hover {
	transform: translate(-50%, -50%) scale(1.06);
}

.video-meta {
	position: relative;
	padding: 24px;
	z-index: 2;
}

.video-meta .tag {
	font-family: "Montserrat", sans-serif;
	font-size: 11px;
	color: var(--cyan);
	letter-spacing: .18em;
	text-transform: uppercase;
}

.video-meta h4 {
	font-family: "Montserrat", sans-serif;
	font-size: 22px;
	color: var(--cream);
	margin-top: 6px;
	font-weight: 500;
}

.reviews {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.review {
	background: var(--paper);
	border: 1px solid var(--line-light);
	border-radius: 12px;
	padding: 22px;
}

.stars {
	color: var(--gold);
	font-size: 13px;
	letter-spacing: 2px;
	margin-bottom: 8px;
}

.review p {
	font-family: "Montserrat", sans-serif;
	font-size: 17px;
	line-height: 1.45;
	color: var(--ink);
	font-style: italic;
	font-weight: 300;
	letter-spacing: -.005em;
}

.review-by {
	margin-top: 14px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--ink);
	color: var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	font-weight: 500;
}

.review-by strong {
	font-size: 13.5px;
	color: var(--ink);
}

.review-by span {
	display: block;
	font-size: 11.5px;
	color: var(--mute);
}

/* ---------- Section 9 — Admission ---------- */
.admission {
	background: var(--cream);
	/* color: var(--ink); */
}

.adm-steps {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-top: 8px;
}

@media(min-width:720px) {
	.adm-steps {
		grid-template-columns: repeat(4, 1fr);
		gap: 18px;
	}
}

.adm {
	padding: 24px 20px;
	border: 1px solid var(--line);
	border-radius: 12px;
	position: relative;
	background: rgba(255, 255, 255, .02);
}

.adm-num {
	font-family: "Montserrat", sans-serif;
	font-size: 48px;
	font-weight: 800;
	color: var(--gold);
	line-height: 1;
}

.adm h4 {
	font-family: "Montserrat", sans-serif;
	font-size: 18px;
	color: #000;
	font-weight: 500;
	margin: 14px 0 6px;
}

.adm p {
	font-size: 13px;
	color: #000;
}

.adm-cta {
	margin-top: 38px;
	text-align: center;
}

/* ---------- Section 10 — Lead Form ---------- */
.lead {
	background: var(--cream);
}

.form-wrap {
	background: var(--ink);
	color: var(--cream);
	border-radius: 18px;
	padding: 36px 26px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
}

@media(min-width:900px) {
	.form-wrap {
		grid-template-columns: .85fr 1.15fr;
		padding: 48px 44px;
		gap: 50px;
		align-items: center;
	}
}

.form-left .eyebrow {
	color: var(--cyan);
}

.form-left .eyebrow::before {
	background: var(--cyan);
}

.form-left h2 {
	color: var(--cream);
	margin-top: 14px;
	margin-bottom: 14px;
}

.form-left h2 em {
	color: var(--gold);
	font-style: italic;
}

.form-left p {
	color: #D6DFE8;
}

.form-trust {
	margin-top: 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	color: #9FB0BF;
	font-size: 13px;
}

.form-trust .row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.form-trust .row svg {
	color: var(--gold);
}

.form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

@media(min-width:600px) {
	.form {
		grid-template-columns: 1fr 1fr;
	}
}

.field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

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

.field label {
	font-family: "Montserrat", sans-serif;
	font-size: 11px;
	color: var(--cyan);
	letter-spacing: .16em;
	text-transform: uppercase;
}

.field input,
.field select {
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .12);
	color: var(--cream);
	padding: 14px 16px;
	border-radius: 10px;
	font-size: 15px;
	font-family: inherit;
	transition: border-color .2s ease, background .2s ease;
}

.field input:focus,
.field select:focus {
	outline: 0;
	border-color: var(--gold);
	background: rgba(255, 255, 255, .06);
}

.field input::placeholder {
	color: #7B8B99;
}

.submit {
	grid-column: 1 / -1;
	background: var(--gold);
	color: var(--ink);
	padding: 16px 26px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: .01em;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	cursor: pointer;
	transition: transform .2s ease, background .2s ease;
}

.submit:hover {
	background: #F25928;
	transform: translateY(-2px);
}

.form-note {
	grid-column: 1 / -1;
	font-size: 11.5px;
	color: #8FA0B0;
	text-align: center;
	line-height: 1.5;
}

/* form success state */
.form-success {
	display: none;
	text-align: center;
	padding: 50px 20px;
	border-radius: 14px;
	background: rgba(222, 62, 15, .06);
	border: 1px solid rgba(222, 62, 15, .25);
	grid-column: 1 / -1;
}

.form-success.show {
	display: block;
}

.form-success h3 {
	font-family: "Montserrat", sans-serif;
	color: var(--cyan);
	margin-bottom: 8px;
	font-size: 24px;
}

.form-success p {
	color: #D6DFE8;
}

/* ---------- footer ---------- */
footer {
	background: #0D1F2D;
	color: #9FB0BF;
	padding: 38px 20px 22px;
	border-top: 1px solid var(--line);
}

.foot-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 18px;
	font-size: 13px;
}

@media(min-width:780px) {
	.foot-inner {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}

.foot-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--cream);
}

.foot-links {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.foot-links a:hover {
	color: var(--gold);
}

.copy {
	font-size: 11.5px;
	color: #7B8B99;
	letter-spacing: .04em;
	margin-top: 14px;
	text-align: center;
}

/* ---------- sticky mobile CTA bar ---------- */
.sticky-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 55;
	background: var(--ink);
	border-top: 1px solid var(--line);
	padding: 12px 16px;
	display: none;
	gap: 10px;
	transform: translateY(100%);
	transition: transform .35s ease;
}

.sticky-cta.show {
	transform: translateY(0);
}

.sticky-cta .btn {
	flex: 1;
	padding: 13px 16px;
	font-size: 13.5px;
}

@media(max-width:820px) {
	.sticky-cta {
		display: flex;
	}
}

@media(max-width:820px) {
	body {
		padding-bottom: 74px;
	}
}

/* ---------- reveal animation ---------- */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .8s ease, transform .8s ease;
}

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

option{
    color: #000 !important;
}

