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

:root {
	/* Pitch black for ultimate contrast */
	--ink: #000000;
	--ink-muted: #6B7280;
	--ink-faint: #D1D5DB;
	/* Industrial, cool-toned grays for background */
	--cream: #F3F4F6;
	--cream-dark: #E5E7EB;
	/* Blazing Tech Orange (replaces Gold) */
	--gold: #FF4D00;
	--gold-light: #FFCBA6;
	--gold-pale: #FFF3EB;
	/* Ultramarine Blue for secondary accents (replaces Teal) */
	--teal: #2563EB;
	--teal-light: #DBEAFE;
	--white: #ffffff;
	--radius: 4px;
	--radius-lg: 12px;
	--danger: #c0392b;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'DM Sans', sans-serif;
	background: var(--cream);
	color: var(--ink);
	overflow-x: hidden;
	font-size: 16px;
	line-height: 1.6;
}

nav {
	position: sticky;
	top: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 24px;
	background: rgba(248,245,239,0.95);
	border-bottom: 1px solid rgba(184,146,74,0.15)
}

.nav-logo {
	width:100px;
}

	.nav-logo span {
		color: var(--gold)
	}

.nav-desktop-links {
	display: flex;
	align-items: center;
	gap: 28px;
	list-style: none
}

	.nav-desktop-links a {
		text-decoration: none;
		font-size: 14px;
		color: var(--ink-muted);
		transition: color 0.2s
	}

		.nav-desktop-links a:hover {
			color: var(--ink)
		}

.nav-cta-desk {
	background: var(--ink) !important;
	color: var(--cream) !important;
	padding: 9px 20px;
	border-radius: 40px;
	font-weight: 500 !important;
	font-size: 13px !important
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 4px;
	background: none;
	border: none;
	z-index: 60
}

.hbar {
	width: 22px;
	height: 1px;
	background: var(--ink);
	border-radius: 2px;
	transition: transform 0.3s,opacity 0.3s,width 0.3s
}

.side-panel {
	position: absolute;
	top: 0;
	right: -320px;
	width: 300px;
	min-height: 100vh;
	background: var(--ink);
	z-index: 55;
	transition: right 0.38s cubic-bezier(0.32,0,0.15,1);
	display: flex;
	flex-direction: column;
	padding: 0
}

	.side-panel.open {
		right: 0
	}

.side-overlay {
	position: absolute;
	inset: 0;
	background: rgba(15,14,12,0);
	z-index: 54;
	pointer-events: none;
	transition: background 0.38s
}

	.side-overlay.open {
		background: rgba(15,14,12,0.55);
		pointer-events: auto
	}

.side-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid rgba(255,255,255,0.07)
}

.side-logo {
	width:100px;
}

	.side-logo span {
		color: var(--gold)
	}

.side-close {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.15);
	background: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: rgba(248,245,239,0.6);
	font-size: 18px;
	transition: background 0.2s,color 0.2s;
	line-height: 1
}

	.side-close:hover {
		background: rgba(255,255,255,0.08);
		color: var(--cream)
	}

.side-nav {
	padding: 16px 0;
	flex: 1
}

.side-nav-item {
	display: flex;
	padding: 14px 24px;
	text-decoration: none;
	color: rgba(248,245,239,0.65);
	font-size: 15px;
	transition: background 0.18s,color 0.18s;
	border-bottom: 1px solid rgba(255,255,255,0.04)
}

	.side-nav-item:last-child {
		border-bottom: none
	}

	.side-nav-item:hover {
		background: rgba(255,255,255,0.04);
		color: var(--cream)
	}

.side-nav-arrow {
  margin-left: 5px;
	font-size: 14px;
	color: rgba(184,146,74,0.4);
	transition: transform 0.2s,color 0.2s
}

.side-nav-item:hover .side-nav-arrow {
	transform: translateX(3px);
	color: var(--gold)
}

.side-divider {
	height: 1px;
	background: rgba(255,255,255,0.07);
	margin: 8px 0
}

.side-cta {
	margin: 16px 20px 0;
	background: var(--gold);
	color: var(--white);
	border: none;
	border-radius: 40px;
	padding: 14px 20px;
	font-size: 15px;
	font-weight: 500;
	font-family: 'DM Sans',sans-serif;
	cursor: pointer;
	width: calc(100% - 40px);
	transition: background 0.2s;
	text-align: center
}

	.side-cta:hover {
		background: #9a7a3e
	}

.side-footer {
	padding: 24px;
	border-top: 1px solid rgba(255,255,255,0.07);
	margin-top: auto
}

.side-cohort {
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(184,146,74,0.1);
	border: 1px solid rgba(184,146,74,0.2);
	border-radius: 10px;
	padding: 12px 14px
}

.side-cohort-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--gold);
	flex-shrink: 0;
	animation: pulse 2s infinite
}

@keyframes pulse {
	0%,100% {
		opacity: 1
	}

	50% {
		opacity: 0.4
	}
}

.side-cohort-text {
	font-size: 12px;
	color: rgba(248,245,239,0.6);
	line-height: 1.4
}

	.side-cohort-text strong {
		display: block;
		color: rgba(248,245,239,0.9);
		font-size: 13px;
		margin-bottom: 1px
	}

.side-social {
	display: flex;
	gap: 10px;
	margin-top: 14px
}

.s-soc {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	border: 1px solid rgba(255,255,255,0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(248,245,239,0.35);
	font-size: 14px;
	cursor: pointer;
	transition: border-color 0.2s,color 0.2s;
	text-decoration: none
}

	.s-soc:hover {
		border-color: rgba(255,255,255,0.25);
		color: rgba(248,245,239,0.7)
	}

.page-wrap {
	position: relative;
	min-height: 100vh;
	overflow: hidden
}

.hero {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: 100px 48px 80px;
	gap: 60px;
	align-items: center;
	position: relative;
	overflow: hidden;
	background: var(--cream)
}

	.hero::before {
		content: '';
		position: absolute;
		top: -200px;
		right: -200px;
		width: 600px;
		height: 600px;
		border-radius: 50%;
		background: radial-gradient(circle,rgba(184,146,74,0.07) 0%,transparent 70%);
		pointer-events: none
	}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--gold-pale);
	border: 1px solid var(--gold-light);
	color: var(--gold);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 40px;
	margin-bottom: 28px
}

.hero-eyebrow-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gold);
	animation: pulse 2s infinite
}

.hero-title {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(34px,4vw,56px);
	line-height: 1.1;
	letter-spacing: -1.5px;
	color: var(--ink);
	margin-bottom: 22px
}

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

.hero-subtitle {
	font-size: 17px;
	line-height: 1.65;
	color: var(--ink-muted);
	max-width: 500px;
	margin-bottom: 36px;
	font-weight: 300
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap
}

.page-hero {
	padding: 100px 48px 80px;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 80px;
	align-items: end;
	border-bottom: 1px solid var(--cream-dark);
	position: relative;
	overflow: hidden;
}

.page-hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: end;
	padding-bottom: 72px;
	border-bottom: 1px solid var(--cream-dark)
}

.page-eyebrow {
	display: inline-block;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 20px
}

.page-hero-title {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(36px,4vw,54px);
	line-height: 1.1;
	letter-spacing: -1.5px;
	color: var(--ink);
	margin-bottom: 0
}

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

.page-hero-right {
	padding-bottom: 8px
}

.page-hero-body {
	font-size: 18px;
	line-height: 1.7;
	color: var(--ink-muted);
	font-weight: 300;
	margin-bottom: 28px
}

.page-hero-signature {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-top: 20px;
	border-top: 1px solid var(--cream-dark)
}


.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--ink);
	color: var(--cream);
	padding: 15px 30px;
	border-radius: 40px;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	border: none;
	transition: background 0.2s,transform 0.15s;
	font-family: 'DM Sans',sans-serif
}

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

.btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--ink-muted);
	font-size: 14px;
	text-decoration: none;
	cursor: pointer;
	transition: color 0.2s
}

	.btn-ghost:hover {
		color: var(--ink)
	}

.arrow-icon {
	display: inline-block;
	transition: transform 0.2s
}

.btn-ghost:hover .arrow-icon {
	transform: translateX(4px)
}

.btn-ghost-dark {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--ink-muted);
	font-size: 14px;
	text-decoration: none;
	cursor: pointer;
	transition: color 0.2s
}

	.btn-ghost-dark:hover {
		color: var(--ink)
	}

.hero-card-wrap {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center
}

.hero-card-bg {
	position: absolute;
	inset: 20px;
	background: var(--gold-pale);
	border-radius: 24px;
	transform: rotate(3deg)
}

.hero-card {
	position: relative;
	background: var(--white);
	border-radius: 20px;
	padding: 30px;
	border: 1px solid rgba(0,0,0,0.06);
	width: 100%;
	max-width: 380px
}

.card-tag {
	display: inline-block;
	background: var(--teal-light);
	color: var(--teal);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 4px;
	margin-bottom: 14px
}

.card-company {
	font-family: 'DM Serif Display',serif;
	font-size: 20px;
	color: var(--ink);
	margin-bottom: 5px
}

.card-desc {
	font-size: 12px;
	color: var(--ink-muted);
	margin-bottom: 20px;
	line-height: 1.5
}

.card-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 20px
}

.stat-box {
	background: var(--cream);
	border-radius: 10px;
	padding: 12px
}

.stat-value {
	font-family: 'DM Serif Display',serif;
	font-size: 22px;
	color: var(--ink);
	line-height: 1;
	margin-bottom: 3px
}

.stat-label {
	font-size: 10px;
	color: var(--ink-faint);
	text-transform: uppercase;
	letter-spacing: 0.8px
}

.progress-bar {
	height: 4px;
	background: var(--cream-dark);
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 6px
}

.progress-fill {
	height: 100%;
	background: var(--gold);
	border-radius: 4px;
	width: 0%;
	transition: width 1.5s ease
}

.cta-section {
	padding: 88px 48px;
	background: var(--gold-pale);
	border-top: 1px solid var(--gold-light);
	text-align: center
}

.cta-title {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(28px,3vw,42px);
	letter-spacing: -1px;
	line-height: 1.12;
	color: var(--ink);
	margin-bottom: 14px
}

	.cta-title em {
		font-style: italic;
		color: var(--gold)
	}

.cta-body {
	font-size: 16px;
	color: var(--ink-muted);
	font-weight: 300;
	max-width: 460px;
	margin: 0 auto 36px
}

.cta-actions {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap
}

.btn-outline-dark {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--ink-muted);
	font-size: 14px;
	text-decoration: none;
	cursor: pointer;
	transition: color 0.2s
}

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

footer {
	background: var(--ink);
	border-top: 1px solid rgba(255,255,255,0.06);
	padding: 36px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px
}

.footer-logo {
  width:75px;
}

	.footer-logo span {
		color: var(--gold)
	}

.footer-links {
	display: flex;
	gap: 24px;
	list-style: none
}

	.footer-links a {
		font-size: 12px;
		color: rgba(248,245,239,0.35);
		text-decoration: none;
		transition: color 0.2s
	}

		.footer-links a:hover {
			color: rgba(248,245,239,0.7)
		}

.footer-copy {
	font-size: 11px;
	color: rgba(248,245,239,0.22)
}

.fade-up {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.55s ease,transform 0.55s ease
}

	.fade-up.visible {
		opacity: 1;
		transform: translateY(0)
	}

.d1 {
	transition-delay: .1s
}

.d2 {
	transition-delay: .2s
}

.d3 {
	transition-delay: .3s
}

@media(min-width:861px) {
	.hamburger {
		display: none
	}

	.side-panel, .side-overlay {
		display: none
	}

	.horizontal-image {
		display: block;
		width: 100%;
	}

	.vertical-image {
		display: none;
		width: 100%;
	}
}

section {
	padding: 88px 48px
}

.section-label {
	display: inline-block;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 16px
}

.section-title {
	font-family: 'DM Serif Display',serif;
	font-size: clamp(28px,3vw,42px);
	line-height: 1.15;
	letter-spacing: -1px;
	color: var(--ink);
	max-width: 600px;
	margin-bottom: 16px
}

.section-body {
	font-size: 17px;
	color: var(--ink-muted);
	max-width: 560px;
	font-weight: 300;
	line-height: 1.7
}


@media(max-width:860px) {
	.nav-desktop-links {
		display: none
	}

	.hamburger {
		display: flex
	}

	nav {
		padding: 16px 20px
	}

	section {
		padding: 60px 24px !important
	}

	.hero {
		grid-template-columns: 1fr;
		padding: 88px 24px 60px;
		min-height: auto
	}

	.hero-card-wrap {
		display: none
	}

		.page-hero {
			grid-template-columns: 1fr;
		padding: 60px 24px !important
		}

			.page-hero::after {
				display: none
			}

		section, div[class$="-section"] {
			padding: 60px 24px !important
		}

	footer {
		padding: 28px 24px;
		flex-direction: column;
		align-items: flex-start;
		gap: 20px
	}

	.footer-links {
		flex-wrap: wrap;
		gap: 16px
	}

	.horizontal-image {
		display: none;
		width: 100%;
	}

	.vertical-image {
		display: block;
		width: 100%;
	}
}

.re {
	direction: rtl;
	unicode-bidi: bidi-override;
}

