:root {
	--font-heading: "Montserrat", sans-serif;
	--font-body: "Inter", sans-serif;
	--color-deep: #1a0f14;
	--color-dark: #2a1620;
	--color-primary: #ff4d8d;
	--color-accent: #ff9fc0;
	--color-charcoal: #1e1e1e;
	--color-gray: #d6d0d4;
	--color-light: #f7e9ef;
	--color-white: #ffffff;
	--container-max: 1280px;
	--shadow: 0 24px 70px rgba(26, 15, 20, 0.28);
	--border-dark: rgba(214, 208, 212, 0.18);
	--border-light: rgba(42, 22, 32, 0.14);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	margin: 0;
	background: var(--color-deep);
	color: var(--color-white);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
	font-family: var(--font-body);
}

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

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

p,
h1,
h2,
h3,
ul {
	margin-top: 0;
}

p {
	color: rgba(255, 255, 255, 0.76);
}

ul {
	padding-left: 0;
}

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

:focus-visible {
	outline: 3px solid var(--color-accent);
	outline-offset: 4px;
}

.skip-link {
	position: absolute;
	left: 16px;
	top: -120px;
	z-index: 100;
	padding: 12px 16px;
	border-radius: 8px;
	background: var(--color-white);
	color: var(--color-charcoal);
	font-weight: 800;
}

.skip-link:focus {
	top: 16px;
}

.container {
	width: min(var(--container-max), calc(100% - 40px));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(26, 15, 20, 0.88);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--border-dark);
}

.launch-banner {
	background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
	color: var(--color-deep);
	border-bottom: 1px solid rgba(26, 15, 20, 0.18);
}

.launch-banner.is-expired {
	background: var(--color-dark);
	color: var(--color-white);
}

.launch-banner.is-expired .launch-copy p {
	color: var(--color-white);
}

.launch-banner-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px 0;
}

.launch-copy {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.launch-copy p {
	margin-bottom: 0;
	color: var(--color-deep);
	font-weight: 800;
	line-height: 1.35;
}

.launch-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	padding: 8px 10px;
	border-radius: 999px;
	background: rgba(26, 15, 20, 0.9);
	color: var(--color-white);
	font-size: 0.76rem;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.countdown {
	display: grid;
	grid-auto-flow: column;
	gap: 8px;
	flex: 0 0 auto;
}

.countdown div {
	min-width: 68px;
	padding: 7px 8px;
	border: 1px solid rgba(26, 15, 20, 0.2);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.35);
	text-align: center;
}

.countdown strong,
.countdown span {
	display: block;
	line-height: 1.1;
}

.countdown strong {
	font-family: var(--font-heading);
	font-size: 1.05rem;
}

.countdown span {
	margin-top: 3px;
	font-size: 0.7rem;
	font-weight: 900;
	text-transform: uppercase;
}

.header-inner {
	min-height: 88px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	font-family: var(--font-heading);
	font-size: 0.98rem;
	font-weight: 800;
	line-height: 1.2;
}

.brand img {
	height: 4rem;
	width: auto;
}

.brand span:last-child {
	overflow-wrap: anywhere;
}

.brand-mark {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	border: 1px solid rgba(255, 159, 192, 0.55);
	border-radius: 8px;
	background: rgba(255, 77, 141, 0.13);
	color: var(--color-white);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 24px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.95rem;
	font-weight: 700;
}

.nav-links a {
	padding: 8px 0;
}

.nav-links a:hover {
	color: var(--color-white);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 20px;
	border: 0;
	border-radius: 8px;
	background: var(--color-primary);
	color: var(--color-white);
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	cursor: pointer;
	box-shadow: 0 16px 34px rgba(255, 77, 141, 0.24);
	transition:
		transform 180ms ease,
		background 180ms ease,
		border-color 180ms ease;
}

.button:hover {
	background: #ff3e83;
	transform: translateY(-2px);
}

.button-small {
	min-height: 42px;
	padding: 10px 16px;
	font-size: 0.95rem;
}

.button-secondary {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.24);
	box-shadow: none;
}

.button-secondary:hover {
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.4);
}

.button-full {
	width: 100%;
}

.hero {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	min-height: calc(100svh - 118px);
	display: flex;
	align-items: center;
	padding: 82px 0 64px;
	background: var(--color-deep);
}

.hero-media {
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		linear-gradient(
			90deg,
			rgba(26, 15, 20, 0.98) 0%,
			rgba(26, 15, 20, 0.88) 34%,
			rgba(26, 15, 20, 0.5) 66%,
			rgba(26, 15, 20, 0.6) 100%
		),
		linear-gradient(0deg, rgba(26, 15, 20, 0.28), rgba(26, 15, 20, 0.28)),
		url("assets/mentorship-hero.png") center / cover no-repeat;
}

.hero::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: rgba(255, 255, 255, 0.12);
}

.hero-content {
	/* max-width: 1024px; */
}

.eyebrow {
	margin-bottom: 16px;
	color: var(--color-accent);
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
	line-height: 1.25;
}

.eyebrow.dark {
	color: #b11956;
}

h1,
h2,
h3 {
	font-family: var(--font-heading);
	letter-spacing: 0;
	line-height: 1.05;
}

h1 {
	max-width: 720px;
	margin-bottom: 22px;
	font-size: 4.2rem;
	font-weight: 900;
}

h2 {
	margin-bottom: 20px;
	font-size: 2.55rem;
	font-weight: 900;
}

h3 {
	margin-bottom: 12px;
	font-size: 1.28rem;
	font-weight: 800;
}

.hero-lede {
	max-width: 680px;
	margin-bottom: 28px;
	color: rgba(255, 255, 255, 0.84);
	font-size: 1.22rem;
	line-height: 1.65;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 26px;
}

.trust-line {
	margin-bottom: 18px;
	color: var(--color-white);
	font-weight: 800;
	overflow-wrap: anywhere;
}

.hero-points {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	/* max-width: 1024px; */
	list-style: none;
	margin-bottom: 0;
}

.hero-points li {
	min-height: 68px;
	display: flex;
	align-items: center;
	padding: 14px;
	border: 1px solid var(--border-dark);
	border-radius: 8px;
	background: rgba(42, 22, 32, 0.7);
	color: rgba(255, 255, 255, 0.86);
	font-weight: 700;
	line-height: 1.35;
}

.section {
	padding: 96px 0;
	background: var(--color-deep);
}

.section-light {
	background: var(--color-light);
	color: var(--color-charcoal);
}

.section-light p,
.section-light .section-heading p {
	color: rgba(30, 30, 30, 0.72);
}

.section-heading {
	max-width: 660px;
}

.section-heading p {
	margin-bottom: 16px;
	color: rgba(255, 255, 255, 0.74);
}

.section-heading p:last-child {
	margin-bottom: 0;
}

.section-heading.center {
	margin: 0 auto 44px;
	text-align: center;
}

.section-heading.narrow {
	max-width: 760px;
}

.problem-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-top: 42px;
}

.light-card,
.process-step,
.apply-form {
	border: 1px solid var(--border-light);
	border-radius: 8px;
	background: var(--color-white);
	color: var(--color-charcoal);
	box-shadow: 0 20px 50px rgba(42, 22, 32, 0.08);
}

.light-card {
	padding: 26px;
}

.light-card p,
.process-step p {
	margin-bottom: 0;
	color: rgba(30, 30, 30, 0.72);
}

.split-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
	gap: 64px;
	align-items: center;
}

.split-layout.reverse {
	grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1fr);
}

.benefit-panel,
.tier-card,
.alumni-panel {
	border: 1px solid var(--border-dark);
	border-radius: 8px;
	background: var(--color-dark);
	box-shadow: var(--shadow);
}

.benefit-panel {
	padding: 34px;
}

.check-list {
	display: grid;
	gap: 12px;
	list-style: none;
	margin-bottom: 0;
}

.check-list li {
	position: relative;
	padding-left: 30px;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.45;
}

.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.43em;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--color-primary);
	box-shadow: 0 0 0 4px rgba(255, 77, 141, 0.16);
}

.timeline {
	display: grid;
	gap: 14px;
}

.timeline-item {
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
	padding: 20px;
	border: 1px solid var(--border-light);
	border-radius: 8px;
	background: var(--color-white);
	box-shadow: 0 14px 40px rgba(42, 22, 32, 0.06);
}

.timeline-item span {
	color: #b11956;
	font-family: var(--font-heading);
	font-weight: 900;
}

.timeline-item p {
	margin-bottom: 0;
	color: rgba(30, 30, 30, 0.72);
}

.tiers-section {
	background: var(--color-deep);
}

.tiers-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	align-items: stretch;
}

.tier-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 30px;
}

.tier-featured {
	border-color: rgba(255, 77, 141, 0.7);
	transform: translateY(-12px);
}

.badge {
	align-self: flex-start;
	padding: 8px 12px;
	border-radius: 999px;
	background: var(--color-primary);
	color: var(--color-white);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1;
}

.tier-head {
	display: grid;
	gap: 12px;
}

.price {
	margin-bottom: 0;
	color: var(--color-white);
	font-family: var(--font-heading);
	font-size: 2.1rem;
	font-weight: 900;
	line-height: 1;
}

.price span {
	color: rgba(255, 255, 255, 0.68);
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 700;
}

.launch-price {
	display: grid;
	gap: 5px;
	margin-bottom: 0;
	padding: 18px;
	border: 1px solid rgba(255, 159, 192, 0.45);
	border-radius: 8px;
	background: rgba(255, 77, 141, 0.13);
}

.launch-price span {
	color: var(--color-accent);
	font-size: 0.78rem;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

.launch-price strong {
	color: var(--color-white);
	font-family: var(--font-heading);
	font-size: 2.45rem;
	font-weight: 900;
	line-height: 1;
}

.tier-card .price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px;
	color: rgba(255, 255, 255, 0.72);
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 800;
}

.tier-card .price del {
	color: rgba(255, 255, 255, 0.64);
	font-family: var(--font-heading);
	font-size: 1.2rem;
	font-weight: 900;
	text-decoration-color: var(--color-primary);
	text-decoration-thickness: 2px;
}

.tier-card .price span {
	font-size: 0.92rem;
}

.tier-tagline {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.74);
}

.tier-card .check-list {
	margin-bottom: auto;
}

.pricing-note {
	max-width: 820px;
	margin: 34px auto 0;
	padding: 22px 24px;
	border: 1px solid var(--border-dark);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
	text-align: center;
}

.pricing-note p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.78);
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

.process-step {
	padding: 24px;
}

.process-step span {
	display: inline-flex;
	margin-bottom: 20px;
	color: #b11956;
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 900;
}

.skill-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin-bottom: 0;
}

.skill-tags li {
	padding: 10px 14px;
	border: 1px solid var(--border-dark);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.86);
	font-weight: 800;
	line-height: 1.3;
}

.alumni-section {
	background: var(--color-dark);
}

.alumni-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.78fr);
	gap: 54px;
	align-items: center;
}

.alumni-panel {
	padding: 34px;
	background: var(--color-deep);
}

.alumni-panel .price {
	margin-bottom: 26px;
}

.boundaries {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--border-dark);
}

.boundaries p {
	margin-bottom: 12px;
	color: rgba(255, 255, 255, 0.7);
}

.boundaries p:last-child {
	margin-bottom: 0;
}

.faq-layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
	gap: 54px;
	align-items: start;
}

.faq-list {
	display: grid;
	gap: 12px;
}

details {
	border: 1px solid var(--border-light);
	border-radius: 8px;
	background: var(--color-white);
	color: var(--color-charcoal);
	box-shadow: 0 14px 36px rgba(42, 22, 32, 0.05);
}

summary {
	padding: 20px 24px;
	color: var(--color-charcoal);
	font-weight: 900;
	cursor: pointer;
}

details p {
	margin: 0;
	padding: 0 24px 22px;
	color: rgba(30, 30, 30, 0.72);
}

.apply-section {
	background: var(--color-deep);
}

.apply-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
	gap: 56px;
	align-items: start;
}

.mini-proof {
	margin-top: 26px;
	padding: 20px;
	border: 1px solid var(--border-dark);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.07);
}

.mini-proof p {
	margin-bottom: 0;
}

.apply-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	padding: 30px;
}

.form-status {
	display: none;
	grid-column: 1 / -1;
	padding: 14px 16px;
	border-radius: 8px;
	background: rgba(177, 25, 86, 0.1);
	color: var(--color-charcoal);
	font-weight: 800;
	line-height: 1.45;
}

.form-status.is-visible {
	display: block;
}

.form-status.is-success {
	background: rgba(19, 134, 88, 0.12);
	color: #0f6745;
}

.form-status.is-error {
	background: rgba(177, 25, 86, 0.12);
	color: #8e1649;
}

.hp-field {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-row {
	display: grid;
	gap: 8px;
}

.form-row.full,
.apply-form .button {
	grid-column: 1 / -1;
}

label {
	color: var(--color-charcoal);
	font-weight: 900;
}

input,
select,
textarea {
	width: 100%;
	border: 1px solid rgba(42, 22, 32, 0.2);
	border-radius: 8px;
	background: #fffafe;
	color: var(--color-charcoal);
	padding: 13px 14px;
	line-height: 1.4;
}

textarea {
	resize: vertical;
	min-height: 130px;
}

::placeholder {
	color: rgba(30, 30, 30, 0.48);
}

.site-footer {
	padding: 44px 0;
	border-top: 1px solid var(--border-dark);
	background: var(--color-deep);
}

.footer-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) auto;
	gap: 28px;
	align-items: start;
}

.footer-brand {
	margin-bottom: 12px;
}

.site-footer p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.68);
}

.site-footer a {
	color: var(--color-white);
	font-weight: 800;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 18px;
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.95rem;
	font-weight: 800;
}

.copyright {
	grid-column: 1 / -1;
	font-size: 0.92rem;
}

@media (max-width: 1040px) {
	.problem-grid,
	.process-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tiers-grid {
		grid-template-columns: 1fr;
	}

	.tier-featured {
		transform: none;
	}
}

@media (max-width: 860px) {
	body {
		font-size: 16px;
	}

	.launch-banner-inner,
	.launch-copy {
		align-items: flex-start;
		flex-direction: column;
	}

	.countdown {
		width: 100%;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		grid-auto-flow: row;
	}

	.countdown div {
		min-width: 0;
	}

	.header-inner {
		min-height: auto;
		padding: 14px 0;
		flex-wrap: wrap;
	}

	.nav-links {
		order: 3;
		width: 100%;
		justify-content: space-between;
		gap: 12px;
		font-size: 0.9rem;
	}

	.hero {
		min-height: auto;
		padding: 72px 0 56px;
	}

	.hero-media {
		background:
			linear-gradient(
				90deg,
				rgba(26, 15, 20, 0.98) 0%,
				rgba(26, 15, 20, 0.9) 52%,
				rgba(26, 15, 20, 0.66) 100%
			),
			linear-gradient(
				0deg,
				rgba(26, 15, 20, 0.22),
				rgba(26, 15, 20, 0.22)
			),
			url("assets/mentorship-hero.png") center / cover no-repeat;
	}

	h1 {
		font-size: 3.1rem;
	}

	h2 {
		font-size: 2.1rem;
	}

	.hero-lede {
		font-size: 1.08rem;
	}

	.hero-points,
	.split-layout,
	.split-layout.reverse,
	.alumni-layout,
	.faq-layout,
	.apply-layout,
	.footer-inner {
		grid-template-columns: 1fr;
	}

	.footer-links {
		justify-content: flex-start;
	}
}

@media (max-width: 620px) {
	.container {
		width: min(var(--container-max), calc(100% - 28px));
	}

	.header-inner {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.brand {
		font-size: 0.92rem;
	}

	.brand-mark {
		width: 36px;
		height: 36px;
	}

	.nav-links {
		grid-column: 1 / -1;
		overflow-x: auto;
		padding-bottom: 4px;
	}

	.nav-links a {
		flex: 0 0 auto;
	}

	.button {
		width: 100%;
	}

	.header-inner .button {
		width: auto;
	}

	h1 {
		font-size: 2.45rem;
	}

	h2 {
		font-size: 1.85rem;
	}

	h3 {
		font-size: 1.16rem;
	}

	.section {
		padding: 72px 0;
	}

	.hero-actions {
		display: grid;
	}

	.problem-grid,
	.process-grid,
	.apply-form {
		grid-template-columns: 1fr;
	}

	.timeline-item {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.tier-card,
	.benefit-panel,
	.alumni-panel,
	.apply-form {
		padding: 24px;
	}

	.price {
		font-size: 1.85rem;
	}
}
