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

:root {
	--primary: #2a5cff;
	--primary-dark: #1a3fcc;
	--primary-deep: #0a1854;
	--primary-tint: #eef2ff;
	--accent: #00d68f;

	--surface: #ffffff;
	--surface-low: #f7f8fc;
	--surface-container: #eef1f5;
	--surface-container-alt: #e3e8ef;

	--on-surface: #0e1117;
	--on-surface-variant: rgba(14, 17, 23, 0.58);

	--radius-sm: 0.5rem;
	--radius-md: 0.875rem;
	--radius-lg: 1.5rem;
	--radius-xl: 2.5rem;
	--radius-pill: 9999px;

	--shadow-sm:
		0 1px 4px rgba(14, 17, 23, 0.06), 0 4px 12px rgba(14, 17, 23, 0.04);
	--shadow-md:
		0 4px 16px rgba(14, 17, 23, 0.08), 0 20px 40px rgba(14, 17, 23, 0.05);
	--shadow-lg:
		0 8px 32px rgba(14, 17, 23, 0.14), 0 40px 80px rgba(14, 17, 23, 0.1);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Sora", sans-serif;
	background: var(--surface);
	color: var(--on-surface);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

.logo {
	width: 160px;
	margin-bottom: 2rem;
}

.site-footer .logo {
	width: 90px;
	margin-bottom: 0;
}

/* ─── Typography ────────────────────────────────────────────── */

h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.025em;
	margin-bottom: 1.5rem;
}

p {
	font-size: 1.125rem;
	line-height: 1.7;
	max-width: 42ch;
	margin-bottom: 2.5rem;
}

/* ─── Layout ────────────────────────────────────────────────── */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* ─── Eyebrow ───────────────────────────────────────────────── */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 1.25rem;
}
.eyebrow::before {
	content: "";
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: currentColor;
	flex-shrink: 0;
}
.hero .eyebrow,
.why-section .eyebrow {
	color: rgba(255, 255, 255, 0.6);
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 600;
	border-radius: var(--radius-pill);
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition:
		transform 0.15s ease,
		box-shadow 0.18s ease,
		background 0.18s ease;
	white-space: nowrap;
}
.btn:active {
	transform: scale(0.97);
}

.btn-primary {
	background: var(--primary);
	color: #fff;
	padding: 0.875rem 2rem;
	box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
	background: var(--primary-dark);
	box-shadow:
		0 0 0 4px rgba(42, 92, 255, 0.2),
		var(--shadow-sm);
}

.btn-ghost {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	padding: 0.875rem 2rem;
	border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.6);
}

.btn-submit {
	background: var(--primary);
	color: #fff;
	padding: 1rem 2.5rem;
	font-size: 1rem;
	font-weight: 700;
	width: 100%;
	box-shadow: var(--shadow-sm);
}
.btn-submit:hover {
	background: var(--primary-dark);
	box-shadow: 0 0 0 4px rgba(42, 92, 255, 0.2);
	transform: translateY(-1px);
}
.btn-submit:active {
	transform: translateY(0);
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
	background: linear-gradient(150deg, #0a1854 0%, #1235cc 55%, #2a5cff 100%);
	min-height: 100svh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding: 5rem 0 4rem;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
	opacity: 0.45;
	z-index: 1;
	pointer-events: none;
}

.hero .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

/* ─── Hero Copy ─────────────────────────────────────────────── */
.brand {
	font-size: 1.25rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.01em;
}

.hero-copy h1 {
	color: #fff;
}

.hero-copy h1 em {
	font-style: normal;
	background: linear-gradient(130deg, #a5c8ff 0%, #c4b5fd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-copy p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.72);
	margin: 0;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 3rem;
}

/* ─── Hero Visual — Profile Cards ───────────────────────────── */
.hero-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	height: 460px;
}

.profile-cards {
	position: relative;
	width: 100%;
	height: 100%;
}

.profile-card {
	position: absolute;
	width: 212px;
	background: #fff;
	border-radius: 20px;
	overflow: visible;
	box-shadow: var(--shadow-lg);
}

.profile-card--1 {
	top: 16px;
	left: 6%;
	animation: float-card-1 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.profile-card--2 {
	bottom: 16px;
	right: 4%;
	animation: float-card-2 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

@keyframes float-card-1 {
	from {
		opacity: 0;
		transform: translateY(20px) rotate(-4deg);
	}
	to {
		opacity: 1;
		transform: translateY(0) rotate(-4deg);
	}
}
@keyframes float-card-2 {
	from {
		opacity: 0;
		transform: translateY(20px) rotate(3deg);
	}
	to {
		opacity: 1;
		transform: translateY(0) rotate(3deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.profile-card--1 {
		transform: rotate(-4deg);
		animation: none;
		opacity: 1;
	}
	.profile-card--2 {
		transform: rotate(3deg);
		animation: none;
		opacity: 1;
	}
}

.profile-card-inner {
	border-radius: 20px;
	overflow: hidden;
}

.profile-photo {
	height: 152px;
	position: relative;
}

.profile-card--1 .profile-photo {
	background: linear-gradient(150deg, #c4b5fd 0%, #f9a8d4 100%);
}

.profile-card--2 .profile-photo {
	background: linear-gradient(150deg, #93c5fd 0%, #fcd34d 100%);
}

.profile-photo-avatar {
	position: absolute;
	bottom: 12px;
	left: 14px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	border: 2.5px solid rgba(255, 255, 255, 0.75);
	display: flex;
	align-items: center;
	justify-content: center;
}

.profile-photo-avatar svg {
	width: 22px;
	height: 22px;
	stroke: rgba(255, 255, 255, 0.9);
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.profile-card-body {
	padding: 0.75rem 0.875rem 0.875rem;
}

.profile-card-name {
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--on-surface);
	margin-bottom: 0.45rem;
	letter-spacing: -0.01em;
}

.profile-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.3rem;
	margin-bottom: 0.65rem;
}

.profile-tag {
	font-size: 0.625rem;
	font-weight: 600;
	color: var(--primary);
	background: var(--primary-tint);
	border-radius: var(--radius-pill);
	padding: 0.18rem 0.5rem;
	letter-spacing: 0.01em;
}

.profile-quiz-snippet {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.profile-quiz-q {
	display: block;
	align-self: flex-start;
	background: var(--surface-container);
	border-radius: 0.75rem 0.75rem 0.75rem 0.2rem;
	padding: 0.35rem 0.6rem;
	font-size: 0.7rem;
	font-weight: 600;
	color: var(--on-surface);
	line-height: 1.3;
	max-width: 90%;
}

.profile-quiz-a {
	display: block;
	align-self: flex-end;
	background: var(--primary);
	border-radius: 0.75rem 0.75rem 0.2rem 0.75rem;
	padding: 0.35rem 0.6rem;
	font-size: 0.7rem;
	font-weight: 600;
	color: #fff;
	line-height: 1.3;
	max-width: 90%;
}

.profile-match-badge {
	position: absolute;
	top: -13px;
	right: 14px;
	background: var(--accent);
	color: #003d25;
	font-size: 0.625rem;
	font-weight: 700;
	border-radius: var(--radius-pill);
	padding: 0.28rem 0.65rem 0.28rem 0.45rem;
	display: flex;
	align-items: center;
	gap: 0.3rem;
	box-shadow: 0 4px 14px rgba(0, 214, 143, 0.45);
	white-space: nowrap;
	z-index: 10;
}

.profile-match-badge svg {
	width: 10px;
	height: 10px;
	stroke: #003d25;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cards-connector {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(10, 24, 84, 0.55);
	border: 1.5px solid rgba(255, 255, 255, 0.3);
	border-radius: var(--radius-pill);
	padding: 0.45rem 0.9rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	backdrop-filter: blur(8px);
	white-space: nowrap;
	box-shadow: 0 8px 24px rgba(10, 24, 84, 0.35);
	animation: float-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.85s both;
	z-index: 6;
}

.cards-connector svg {
	width: 14px;
	height: 14px;
	stroke: #fff;
	fill: none;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cards-connector span {
	font-size: 0.6875rem;
	font-weight: 600;
	color: #fff;
	letter-spacing: 0.02em;
}

@keyframes float-in {
	from {
		opacity: 0;
		transform: translate(-50%, calc(-50% + 10px));
	}
	to {
		opacity: 1;
		transform: translate(-50%, -50%);
	}
}

/* ─── Section base ───────────────────────────────────────────── */
section {
	padding: 6rem 0;
}

.section-label {
	margin-bottom: 3.5rem;
	max-width: 600px;
}

.section-label h2 {
	font-size: clamp(1.875rem, 3vw, 2.625rem);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.1;
	color: var(--on-surface);
	margin-top: 0.5rem;
}

.section-label p:not(.eyebrow) {
	color: var(--on-surface-variant);
}

/* ─── Problem Section ────────────────────────────────────────── */
.problem-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.problem-copy h2 {
	font-size: clamp(1.875rem, 3vw, 2.625rem);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.1;
	color: var(--on-surface);
	margin-bottom: 1.5rem;
	margin-top: 0.5rem;
}

.problem-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
	margin-bottom: 1.5rem;
}

.problem-list li {
	font-size: 1rem;
	color: var(--on-surface-variant);
	padding-left: 1.5rem;
	position: relative;
	line-height: 1.6;
}

.problem-list li::before {
	content: "✕";
	position: absolute;
	left: 0;
	font-size: 0.6875rem;
	color: #b42318;
	top: 0.25em;
}

.problem-note {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--on-surface);
	line-height: 1.6;
	padding: 1rem 1.25rem;
	background: var(--primary-tint);
	border-radius: var(--radius-md);
}

/* Coded illustration: high-volume, low-intent swiping */
.problem-visual {
	min-width: 0;
}

.swipe-illustration {
	position: relative;
	min-height: 540px;
	display: grid;
	place-items: center;
	isolation: isolate;
}

.swipe-haze {
	position: absolute;
	inset: 8% 4%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(42, 92, 255, 0.12), transparent 68%);
	filter: blur(12px);
	z-index: -2;
}

.swipe-phone {
	position: relative;
	width: min(78vw, 286px);
	aspect-ratio: 0.55;
	padding: 12px;
	border-radius: var(--radius-xl);
	background: var(--primary-deep);
	box-shadow: 0 30px 70px rgba(10, 24, 84, 0.28);
}

.swipe-phone::before {
	content: "";
	position: absolute;
	top: 18px;
	left: 50%;
	width: 72px;
	height: 18px;
	border-radius: var(--radius-pill);
	background: var(--primary-deep);
	transform: translateX(-50%);
	z-index: 8;
}

.swipe-screen {
	position: relative;
	height: 100%;
	overflow: hidden;
	border-radius: calc(var(--radius-xl) - 12px);
	background: var(--surface-low);
}

.swipe-appbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 34px 18px 12px;
}

.swipe-wordmark {
	font-size: 0.9375rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: var(--on-surface);
}

.swipe-counter {
	font-size: 0.6875rem;
	color: var(--on-surface-variant);
}

.swipe-stack {
	position: relative;
	height: 292px;
	margin: 0 14px;
}

.swipe-profile {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 22px;
	background: var(--surface);
	box-shadow: 0 12px 26px rgba(10, 24, 84, 0.12);
	transform-origin: 50% 92%;
}

.swipe-profile:nth-child(1) {
	transform: translateY(12px) scale(0.93);
	background: var(--surface-container-alt);
}

.swipe-profile:nth-child(2) {
	transform: translateY(6px) scale(0.965);
	background: var(--surface-container);
}

.swipe-profile:nth-child(3) {
	z-index: 3;
}

.swipe-photo {
	position: relative;
	flex: 1;
	min-height: 0;
	background:
		radial-gradient(
			circle at 50% 39%,
			rgba(14, 17, 23, 0.14) 0 26px,
			transparent 27px
		),
		radial-gradient(
			ellipse at 50% 102%,
			rgba(14, 17, 23, 0.1) 0 76px,
			transparent 77px
		),
		linear-gradient(145deg, var(--surface-container-alt), var(--surface-low));
}

.swipe-photo::after {
	content: "photo";
	position: absolute;
	right: 12px;
	bottom: 10px;
	font-size: 0.5625rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--on-surface-variant);
}

.swipe-profile-copy {
	padding: 14px 16px 16px;
}

.swipe-name {
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--on-surface);
}

.swipe-bio {
	margin-top: 4px;
	font-size: 0.6875rem;
	color: var(--on-surface-variant);
}

.swipe-chips {
	display: flex;
	gap: 6px;
	margin-top: 9px;
}

.swipe-chips span {
	padding: 4px 7px;
	border-radius: var(--radius-pill);
	background: var(--surface-low);
	font-size: 0.5625rem;
	color: var(--on-surface-variant);
}

.swipe-stamp {
	position: absolute;
	top: 22px;
	right: 16px;
	padding: 5px 9px;
	border: 2px solid #b42318;
	border-radius: var(--radius-sm);
	font-size: 0.625rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #b42318;
	opacity: 0;
	transform: rotate(10deg);
}

.swipe-actions {
	display: flex;
	justify-content: center;
	gap: 24px;
	padding: 18px 0 12px;
}

.swipe-action {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--surface);
	box-shadow: 0 6px 14px rgba(10, 24, 84, 0.1);
	display: grid;
	place-items: center;
}

.swipe-action svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.swipe-action--reject {
	color: #b42318;
}

.swipe-action--like {
	color: var(--on-surface-variant);
}

.swipe-end-message {
	position: absolute;
	inset: 0;
	z-index: 8;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	border-radius: 22px;
	background: var(--surface-container);
	border: 1px dashed var(--surface-container-alt);
	text-align: center;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--on-surface-variant);
	opacity: 0;
}

.swipe-empty-chat {
	display: flex;
	flex-direction: column;
	margin: 0 14px;
	padding: 10px 12px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.8);
	font-size: 0.625rem;
	color: var(--on-surface-variant);
}

.swipe-empty-chat strong,
.swipe-notification strong {
	font-size: 0.6875rem;
	color: var(--on-surface);
}

.swipe-notification {
	position: absolute;
	z-index: 10;
	left: -48px;
	width: 178px;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding: 11px 12px;
	border-radius: var(--radius-md);
	background: var(--surface);
	box-shadow: 0 16px 32px rgba(10, 24, 84, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.6);
	font-size: 0.625rem;
	color: var(--on-surface-variant);
	opacity: 0;
	transform: translateY(-10px) scale(0.92);
}

.swipe-notification-icon {
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	border-radius: var(--radius-sm);
	background: linear-gradient(
		145deg,
		var(--surface-container-alt),
		var(--surface-low)
	);
}

.swipe-notification-body {
	min-width: 0;
}

.swipe-notification-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 6px;
	margin-bottom: 2px;
}

.swipe-notification-app {
	font-size: 0.5625rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--on-surface-variant);
}

.swipe-notification-time {
	font-size: 0.5625rem;
	color: var(--on-surface-variant);
	opacity: 0.8;
}

.swipe-notification strong,
.swipe-notification span {
	display: block;
}

.swipe-notification--one {
	top: 108px;
}

.swipe-notification--two {
	top: 182px;
	left: auto;
	right: -54px;
}

.swipe-notification--three {
	top: 256px;
	left: -40px;
}

.problem-visual.visible .swipe-profile:nth-child(3) {
	animation: swipe-card-3 2.4s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

.problem-visual.visible .swipe-profile:nth-child(3) .swipe-stamp {
	animation: swipe-stamp 0.576s ease 0.5s both;
}

.problem-visual.visible .swipe-profile:nth-child(2) .swipe-stamp {
	animation: swipe-stamp 0.816s ease 1.076s both;
}

.problem-visual.visible .swipe-profile:nth-child(1) .swipe-stamp {
	animation: swipe-stamp 0.576s ease 2.132s both;
}

.problem-visual.visible .swipe-profile:nth-child(2) {
	animation: swipe-card-2 2.4s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

.problem-visual.visible .swipe-profile:nth-child(1) {
	animation: swipe-card-1 2.4s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

.problem-visual.visible .swipe-actions {
	animation: swipe-actions-out 0.4s ease 2.75s both;
}

.problem-visual.visible .swipe-end-message {
	animation: swipe-end-message-in 0.5s ease 3s both;
}

.problem-visual.visible .swipe-notification--one {
	animation: notification-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 3.1s both;
}

.problem-visual.visible .swipe-notification--two {
	animation: notification-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 3.4s both;
}

.problem-visual.visible .swipe-notification--three {
	animation: notification-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 3.7s both;
}

/* Top card: swipes away first, clearing the way for the stack below it. */
@keyframes swipe-card-3 {
	0% {
		transform: none;
		opacity: 1;
	}
	8% {
		transform: translateX(8px) rotate(2deg);
		opacity: 1;
	}
	24%,
	100% {
		transform: translateX(230px) rotate(16deg);
		opacity: 0;
	}
}

/* Middle card: advances to the top, holds, then swipes away itself. Background
   lightens as it rises to the front, matching the front card's surface. */
@keyframes swipe-card-2 {
	0% {
		transform: translateY(6px) scale(0.965);
		opacity: 1;
		background: var(--surface-container);
	}
	24%,
	34% {
		transform: none;
		opacity: 1;
		background: var(--surface);
	}
	42% {
		transform: translateX(8px) rotate(2deg);
		opacity: 1;
		background: var(--surface);
	}
	58%,
	100% {
		transform: translateX(230px) rotate(16deg);
		opacity: 0;
		background: var(--surface);
	}
}

/* Back card: advances twice (to middle, then to top) before swiping away. */
@keyframes swipe-card-1 {
	0% {
		transform: translateY(12px) scale(0.93);
		opacity: 1;
		background: var(--surface-container-alt);
	}
	24%,
	58% {
		transform: translateY(6px) scale(0.965);
		opacity: 1;
		background: var(--surface-container);
	}
	68% {
		transform: none;
		opacity: 1;
		background: var(--surface);
	}
	76% {
		transform: translateX(8px) rotate(2deg);
		opacity: 1;
		background: var(--surface);
	}
	92%,
	100% {
		transform: translateX(230px) rotate(16deg);
		opacity: 0;
		background: var(--surface);
	}
}

@keyframes swipe-stamp {
	20%,
	70% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@keyframes notification-in {
	to {
		opacity: 1;
		transform: none;
	}
}

@keyframes swipe-actions-out {
	to {
		opacity: 0;
		visibility: hidden;
	}
}

@keyframes swipe-end-message-in {
	to {
		opacity: 1;
	}
}

@media (max-width: 540px) {
	.swipe-illustration {
		min-height: 500px;
	}

	.swipe-phone {
		width: 250px;
	}

	.swipe-notification {
		left: -26px;
		width: 156px;
	}

	.swipe-notification--two {
		left: auto;
		right: -26px;
	}

	.swipe-notification--three {
		left: -20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.problem-visual.visible .swipe-profile,
	.problem-visual.visible .swipe-profile:nth-child(1) .swipe-stamp,
	.problem-visual.visible .swipe-profile:nth-child(2) .swipe-stamp,
	.problem-visual.visible .swipe-profile:nth-child(3) .swipe-stamp,
	.problem-visual.visible .swipe-actions,
	.problem-visual.visible .swipe-end-message {
		animation: none;
	}

	.problem-visual.visible .swipe-notification {
		animation: none;
		opacity: 1;
		transform: none;
	}
}

/* ─── Shift / Contrast Card ──────────────────────────────────── */
.shift-section {
	background: var(--surface-low);
}

.quizy-contrast-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	border: 1px solid var(--surface-container-alt);
}

.contrast-column {
	padding: 2.5rem 3rem;
	background: var(--surface);
}

.contrast-column-quizy {
	background: var(--primary-tint);
}

.contrast-label {
	display: block;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--on-surface-variant);
	margin-bottom: 1.5rem;
}

.contrast-column-quizy .contrast-label {
	color: var(--primary);
}

/* ─── Benefit List (shared) ──────────────────────────────────── */
.benefit-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
}

.benefit-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
	font-size: 0.9375rem;
	color: var(--on-surface);
	line-height: 1.55;
}

.why-section .benefit-list li {
	color: rgba(255, 255, 255, 0.85);
}

.benefit-check {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: rgba(42, 92, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

.why-section .benefit-check {
	background: rgba(255, 255, 255, 0.12);
}

.benefit-check svg {
	width: 10px;
	height: 10px;
	stroke: var(--primary);
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.why-section .benefit-check svg {
	stroke: #fff;
}

/* ─── How It Works ───────────────────────────────────────────── */
.how-section {
	background: var(--surface-low);
}

.how-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
	gap: 4rem;
	align-items: start;
}

.how-copy {
	margin-bottom: 0;
}

.how-copy .section-label {
	margin-bottom: 0;
	max-width: 36rem;
}

.feature-stack {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.feature-card {
	background: var(--surface);
	border-radius: var(--radius-xl);
	padding: 2rem;
	box-shadow: var(--shadow-sm);
	position: relative;
	overflow: hidden;
	border: 1px solid var(--surface-container);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.feature-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.feature-illustration {
	margin: -2rem -2rem 1.75rem;
	border-radius: var(--radius-xl) var(--radius-xl) 0 0;
	overflow: hidden;
}

.feature-illustration .img-placeholder {
	aspect-ratio: 16 / 9;
	border-radius: 0;
	border-left: none;
	border-right: none;
	border-top: none;
	gap: 0.5rem;
	padding: 1.25rem;
	background: var(--surface-low);
	border-bottom: 1px solid var(--surface-container);
}

.feature-illustration .img-placeholder-label {
	font-size: 0.75rem;
	max-width: 30ch;
}

.feature-icon {
	width: 44px;
	height: 44px;
	border-radius: var(--radius-md);
	background: var(--primary-tint);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
}

.feature-icon svg {
	width: 22px;
	height: 22px;
	stroke: var(--primary);
	fill: none;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.feature-card h3 {
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--on-surface);
	margin-bottom: 0.6rem;
	letter-spacing: -0.015em;
}

.feature-card > p {
	font-size: 0.9375rem;
	color: var(--on-surface-variant);
	line-height: 1.65;
}

@media (min-width: 901px) {
	.how-copy {
		position: sticky;
		top: clamp(6rem, 30vh, 10rem);
	}

	.feature-stack {
		gap: 4rem;
	}

	.feature-card {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
		grid-template-areas:
			"icon visual"
			"title visual"
			"text visual";
		column-gap: 2rem;
		row-gap: 0.75rem;
		align-items: start;
		position: sticky;
	}

	.feature-card:nth-child(1) {
		z-index: 1;
		top: clamp(3rem, 20vh, 7rem);
	}

	.feature-card:nth-child(2) {
		z-index: 2;
		top: clamp(9rem, 30vh, 13rem);
	}

	.feature-card:nth-child(3) {
		z-index: 3;
		top: clamp(15rem, 40vh, 19rem);
	}

	.feature-illustration {
		grid-area: visual;
		margin: 0;
		border-radius: var(--radius-lg);
		align-self: start;
	}

	.feature-illustration .img-placeholder {
		aspect-ratio: 1 / 1;
		height: 100%;
		border-radius: inherit;
	}

	.feature-icon {
		grid-area: icon;
		margin-bottom: 0;
	}

	.feature-card h3 {
		grid-area: title;
		margin-bottom: 0.4rem;
	}

	.feature-card > p {
		grid-area: text;
		margin-bottom: 0;
	}
}

/* ─── Why Section ────────────────────────────────────────────── */
.why-section {
	background: var(--primary-deep);
}

.why-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

.why-copy h2 {
	font-size: clamp(1.875rem, 3vw, 2.625rem);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.1;
	color: #fff;
	margin-bottom: 1.25rem;
	margin-top: 0.5rem;
}

.why-copy > p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.68);
}

.why-graphic {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
}

.why-mockup {
	width: 100%;
	max-width: 340px;
	background: #fff;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.why-mockup-photo {
	height: 180px;
	position: relative;
	background: linear-gradient(150deg, #c4b5fd 0%, #f9a8d4 100%);
}

.why-mockup-avatar {
	position: absolute;
	bottom: 16px;
	left: 20px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	border: 2.5px solid rgba(255, 255, 255, 0.75);
	display: flex;
	align-items: center;
	justify-content: center;
}

.why-mockup-avatar svg {
	width: 28px;
	height: 28px;
	stroke: rgba(255, 255, 255, 0.9);
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.why-mockup-body {
	padding: 1.25rem 1.5rem 1.5rem;
}

.why-mockup-name {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--on-surface);
	margin-bottom: 0.65rem;
	letter-spacing: -0.01em;
}

.why-mockup-body .profile-tags {
	margin-bottom: 1.1rem;
}

.why-mockup-qa {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.why-mockup-qa .profile-quiz-snippet {
	gap: 0.4rem;
}

.why-mockup-qa .profile-quiz-q,
.why-mockup-qa .profile-quiz-a {
	font-size: 0.8125rem;
	max-width: 90%;
}

/* ─── Feature Illustrations (How It Works) ───────────────────── */
.illustration-canvas {
	width: 100%;
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
	background: linear-gradient(
		165deg,
		var(--primary-tint) 0%,
		var(--surface-low) 75%
	);
	position: relative;
	overflow: hidden;
}

.illustration-canvas::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(
			circle at 12% 12%,
			rgba(42, 92, 255, 0.14),
			transparent 45%
		),
		radial-gradient(circle at 88% 90%, rgba(0, 214, 143, 0.12), transparent 45%);
	pointer-events: none;
}

@media (min-width: 901px) {
	.feature-illustration .illustration-canvas {
		aspect-ratio: 1 / 1;
		height: 100%;
		border-radius: inherit;
		padding: 2rem;
	}
}

/* Shared mockup screen shell */
.mockup-screen {
	position: relative;
	z-index: 1;
	width: min(100%, 210px);
	background: #fff;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
	padding: 1rem;
}

.mockup-header {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.mockup-header-icon {
	width: 22px;
	height: 22px;
	border-radius: 0.4rem;
	background: var(--primary-tint);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.mockup-header-icon svg {
	width: 12px;
	height: 12px;
	stroke: var(--primary);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.mockup-header-title {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--on-surface);
	letter-spacing: -0.01em;
}

/* Scene: quiz builder */
.builder-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--surface-low);
	border-radius: 0.6rem;
	padding: 0.55rem 0.65rem;
	margin-bottom: 0.4rem;
}

.builder-row-num {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--surface-container-alt);
	color: var(--on-surface-variant);
	font-size: 0.5625rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.builder-row-text {
	font-size: 0.6875rem;
	font-weight: 600;
	color: var(--on-surface);
	line-height: 1.3;
	flex: 1;
}

.builder-row-pencil {
	width: 12px;
	height: 12px;
	stroke: var(--on-surface-variant);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	flex-shrink: 0;
	opacity: 0.55;
}

.builder-row--add {
	background: var(--primary-tint);
	color: var(--primary);
	justify-content: center;
	font-size: 0.6875rem;
	font-weight: 700;
	margin-bottom: 0;
}

.builder-row--add svg {
	width: 12px;
	height: 12px;
	stroke: var(--primary);
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* Scene: quiz taking */
.taking-progress {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.9rem;
}

.taking-progress-track {
	flex: 1;
	height: 5px;
	border-radius: var(--radius-pill);
	background: var(--surface-container);
	overflow: hidden;
}

.taking-progress-fill {
	width: 62%;
	height: 100%;
	border-radius: var(--radius-pill);
	background: var(--primary);
}

.taking-progress-label {
	font-size: 0.625rem;
	font-weight: 700;
	color: var(--on-surface-variant);
	flex-shrink: 0;
}

.taking-question {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--on-surface);
	line-height: 1.35;
	margin-bottom: 0.75rem;
}

.taking-answer-box {
	background: var(--surface-low);
	border: 1.5px solid var(--surface-container-alt);
	border-radius: var(--radius-md);
	padding: 0.65rem 0.75rem;
	font-size: 0.6875rem;
	font-weight: 500;
	color: var(--on-surface);
	line-height: 1.5;
	min-height: 62px;
}

.taking-answer-cursor {
	display: inline-block;
	width: 2px;
	height: 0.85em;
	background: var(--primary);
	margin-left: 1px;
	vertical-align: text-bottom;
	animation: taking-cursor-blink 1s step-end infinite;
}

@keyframes taking-cursor-blink {
	50% {
		opacity: 0;
	}
}

.taking-answer-counter {
	text-align: right;
	font-size: 0.5625rem;
	font-weight: 600;
	color: var(--on-surface-variant);
	margin-top: 0.4rem;
}

/* Scene: match */
.match-avatars {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.75rem;
}

.match-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2.5px solid #fff;
	box-shadow: var(--shadow-sm);
	display: flex;
	align-items: center;
	justify-content: center;
}

.match-avatar:first-child {
	background: linear-gradient(150deg, #c4b5fd 0%, #f9a8d4 100%);
	z-index: 1;
}

.match-avatar:last-child {
	background: linear-gradient(150deg, #93c5fd 0%, #fcd34d 100%);
	z-index: 0;
}

.match-avatar svg {
	width: 20px;
	height: 20px;
	stroke: rgba(255, 255, 255, 0.9);
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.match-heart {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 -6px;
	z-index: 2;
	box-shadow: 0 4px 12px rgba(42, 92, 255, 0.4);
}

.match-heart svg {
	width: 11px;
	height: 11px;
	stroke: none;
	fill: #fff;
}

.match-title {
	text-align: center;
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--on-surface);
	margin-bottom: 0.85rem;
}

.match-chat-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	width: 100%;
	background: var(--primary);
	color: #fff;
	font-size: 0.6875rem;
	font-weight: 700;
	border-radius: var(--radius-pill);
	padding: 0.6rem 1rem;
	box-shadow: var(--shadow-sm);
}

.match-chat-btn svg {
	width: 13px;
	height: 13px;
	stroke: #fff;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* ─── Image Placeholders ─────────────────────────────────────── */
.img-placeholder {
	width: 100%;
	background: var(--surface-container);
	border-radius: var(--radius-lg);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 2.5rem 2rem;
	color: var(--on-surface-variant);
	border: 1.5px dashed var(--surface-container-alt);
	text-align: center;
}

.img-placeholder--phone {
	aspect-ratio: 3 / 4;
}

.img-placeholder--portrait {
	aspect-ratio: 3 / 4;
	max-width: 340px;
}

.img-placeholder-icon {
	width: 48px;
	height: 48px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
	opacity: 0.4;
}

.img-placeholder-label {
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.5;
	max-width: 26ch;
	opacity: 0.6;
}

.why-section .img-placeholder {
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 255, 255, 0.14);
	color: rgba(255, 255, 255, 0.55);
}

/* ─── Waitlist ───────────────────────────────────────────────── */
.waitlist-section {
	background: linear-gradient(180deg, var(--surface-low), var(--surface));
}

.waitlist-inner {
	display: grid;
	grid-template-columns: 5fr 7fr;
	gap: 5rem;
	align-items: center;
}

.waitlist-copy h2 {
	font-size: clamp(1.875rem, 3vw, 2.625rem);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.1;
	color: var(--on-surface);
	margin-bottom: 1rem;
	margin-top: 0.5rem;
}

.waitlist-copy > p:not(.eyebrow) {
	color: var(--on-surface-variant);
}

.stat-strip {
	margin-top: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.stat-card {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.stat-icon {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: var(--radius-md);
	background: var(--primary-tint);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1px;
}

.stat-icon svg {
	width: 18px;
	height: 18px;
	stroke: var(--primary);
	fill: none;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.stat-text {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.stat-title {
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--on-surface);
	letter-spacing: -0.01em;
}

.stat-desc {
	font-size: 0.8125rem;
	color: var(--on-surface-variant);
	line-height: 1.55;
}

/* ─── Form ───────────────────────────────────────────────────── */
.waitlist-form {
	background: var(--surface);
	border-radius: var(--radius-xl);
	padding: 2.5rem;
	box-shadow: var(--shadow-md);
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	border: 1px solid var(--surface-container);
}

.form-row {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.form-row label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--on-surface);
}

.form-row input,
.form-row select,
.form-row textarea {
	font-family: inherit;
	font-size: 0.9375rem;
	color: var(--on-surface);
	background: var(--surface-low);
	border: 1.5px solid transparent;
	outline: none;
	border-radius: var(--radius-md);
	padding: 0.875rem 1.125rem;
	width: 100%;
	transition:
		background 0.2s,
		border-color 0.2s,
		box-shadow 0.2s;
	appearance: none;
	-webkit-appearance: none;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
	color: rgba(14, 17, 23, 0.3);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
	background: var(--surface);
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(42, 92, 255, 0.12);
}

.select-wrap {
	position: relative;
}

.select-wrap::after {
	content: "";
	position: absolute;
	right: 1.125rem;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
	height: 6px;
	background: var(--on-surface-variant);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	pointer-events: none;
}

.form-row textarea {
	resize: vertical;
	min-height: 96px;
}

.casl-row {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 1rem 1.125rem;
	background: var(--surface-low);
	border-radius: var(--radius-md);
}

.casl-row input[type="checkbox"] {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--primary);
	cursor: pointer;
	border-radius: 4px;
	background: unset;
	padding: 0;
	box-shadow: none;
}

.casl-row input[type="checkbox"]:focus {
	outline: 2px solid rgba(42, 92, 255, 0.3);
	outline-offset: 2px;
	background: unset;
	box-shadow: none;
}

.casl-label {
	font-size: 0.8125rem;
	color: var(--on-surface-variant);
	line-height: 1.55;
	cursor: pointer;
}

.casl-label a {
	color: var(--primary);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.form-feedback {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	margin-top: 0.5rem;
	padding: 0.95rem 1rem;
	border-radius: var(--radius-md);
}

.form-feedback[hidden] {
	display: none;
}

.form-feedback-success {
	background: rgba(0, 214, 143, 0.1);
}

.form-feedback-error {
	background: rgba(180, 35, 24, 0.08);
}

.feedback-icon {
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.form-feedback-success .feedback-icon {
	background: rgba(0, 214, 143, 0.15);
	color: #007a50;
}

.form-feedback-error .feedback-icon {
	background: rgba(180, 35, 24, 0.12);
	color: #b42318;
}

.feedback-icon svg {
	width: 1.25rem;
	height: 1.25rem;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.feedback-copy h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--on-surface);
	margin-bottom: 0.25rem;
}

.feedback-copy p {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--on-surface-variant);
}

/* ─── Privacy Page ───────────────────────────────────────────── */
.privacy-nav {
	padding-top: 2rem;
}

.privacy-nav-bottom {
	padding-top: 2.5rem;
}

.back-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--primary);
	text-decoration: none;
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
}

.back-link:hover {
	opacity: 0.8;
	transform: translateX(-2px);
}

.back-link:focus-visible {
	outline: 2px solid rgba(42, 92, 255, 0.35);
	outline-offset: 4px;
	border-radius: var(--radius-pill);
}

.info-section {
	padding-top: 2.5rem;
	padding-bottom: 5rem;
}

.section-heading {
	max-width: 52rem;
	margin-bottom: 2.5rem;
}

.section-heading h1 {
	font-size: clamp(2.25rem, 4vw, 3.5rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.08;
	color: var(--on-surface);
	margin-bottom: 0.75rem;
}

.section-heading > p:last-child {
	font-size: 0.9375rem;
	color: var(--on-surface-variant);
	margin-bottom: 0;
}

.content-block {
	max-width: 52rem;
	background: var(--surface-low);
	border: 1px solid var(--surface-container);
	border-radius: var(--radius-xl);
	padding: 2.5rem;
	box-shadow: var(--shadow-sm);
}

.content-block h2 {
	font-size: 1.25rem;
	font-weight: 750;
	letter-spacing: -0.02em;
	color: var(--on-surface);
	margin-top: 2rem;
	margin-bottom: 0.85rem;
}

.content-block p,
.content-block li {
	font-size: 0.975rem;
	line-height: 1.75;
	color: var(--on-surface-variant);
}

.content-block p {
	max-width: none;
	margin-bottom: 0;
}

.content-block p + p {
	margin-top: 1rem;
}

.content-block ul {
	margin: 0.85rem 0 1.25rem 1.25rem;
	padding: 0;
}

.content-block li + li {
	margin-top: 0.45rem;
}

.content-block strong {
	color: var(--on-surface);
}

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	padding: 2.5rem 0;
	border-top: 1px solid var(--surface-container);
}

.site-footer .brand {
	color: var(--primary);
}

.footer-meta {
	font-size: 0.8125rem;
	color: var(--on-surface-variant);
	max-width: initial;
}

/* ─── Honeypot ───────────────────────────────────────────────── */
.hp-field {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* ─── Fade-in ────────────────────────────────────────────────── */
.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
	opacity: 1;
	transform: none;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) and (min-height: 600px) {
	.hero {
		min-height: 50svh;
	}
}

@media (max-width: 900px) {
	.hero .container {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.hero-visual {
		height: 300px;
	}

	.profile-card {
		width: 168px;
	}

	.profile-photo {
		height: 120px;
	}

	.problem-inner,
	.why-inner,
	.waitlist-inner {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.how-layout {
		grid-template-columns: 1fr;
		gap: 4rem;
	}

	.how-copy {
		position: static;
		transform: none;
	}

	.feature-stack {
		gap: 1rem;
	}

	.feature-card {
		position: static;
		display: block;
		top: auto;
	}

	.feature-illustration {
		margin: -2rem -2rem 1.75rem;
		border-radius: var(--radius-xl) var(--radius-xl) 0 0;
	}

	.feature-illustration .img-placeholder {
		aspect-ratio: 16 / 9;
		height: auto;
		border-radius: 0;
	}

	.feature-icon {
		margin-bottom: 1.25rem;
	}

	.feature-card h3 {
		margin-bottom: 0.6rem;
	}

	.feature-card > p {
		margin-bottom: 0;
	}

	.quizy-contrast-card {
		grid-template-columns: 1fr;
	}

	.contrast-column {
		padding: 2rem;
	}
}

@media (max-width: 540px) {
	.content-block {
		padding: 1.5rem;
		border-radius: var(--radius-lg);
	}

	.section-heading h1 {
		font-size: 2rem;
	}

	.container {
		padding: 0 1.25rem;
	}
	section {
		padding: 4rem 0;
	}
	.hero {
		padding: 4rem 0 3rem;
	}
	.hero-actions {
		flex-direction: column;
	}
	.btn {
		width: 100%;
		justify-content: center;
	}
	.waitlist-form {
		padding: 1.75rem;
		border-radius: var(--radius-lg);
	}
	.profile-card--2 {
		right: 2%;
	}
}
