/* ------------------------------ */
/* Palette - single page styles   */
/* Layout: flexbox everywhere     */
/* ------------------------------ */

:root {
	--bg: #f7f2e6;
	--text: #0b0b0b;
	--muted: #7b7b7b;
	--muted-2: #9a9a9a;

	--card-gray: #ececec;
	--card-gray-2: #f3f3f3;

	--black: #0b0b0b;
	--white: #ffffff;

	--pink: #e54e9d;
	--blue: #5faded;
	--green: #71ccab;
	--purple: #bf71e9;

	--radius-lg: 26px;
	--radius-md: 14px;

	--container: 1180px;

	--font-sans:
		Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	--font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

* {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-sans);
}

/* Utility */
.container {
	width: min(var(--container), 92vw);
	margin: 0 auto;
}

.section {
	padding: 72px 0;
}

.section-bg {
	background: var(--bg);
}

/* Screen-reader-only label */
.sr-only {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ------------------------------ */
/* Header / Nav                   */
/* ------------------------------ */
.site-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
	padding: 18px 0;
}

/* ADD: make header container full-width + left aligned on wide screens */
.site-header .container {
	width: 100%;
	margin: 0;
	padding: 0 clamp(18px, 4vw, 60px);
}

.nav-wrap {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.nav {
	display: flex;
	flex-direction: row;
	gap: 28px;
	align-items: center;
	justify-content: flex-start;
}

.nav-link {
	color: var(--card-gray-2);
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;

	display: inline-flex; /* makes transform behave nicely */
	transform: scale(1);
	transition:
		transform 180ms ease,
		opacity 180ms ease;
	transform-origin: center;
}

.nav-link:hover {
	text-decoration: none; /* explicitly no underline */
	transform: scale(1.12); /* “grow” on hover */
	opacity: 0.95;
}

.nav-link:focus-visible {
	outline: 3px solid rgba(95, 173, 237, 0.55); /* matches your --blue vibe */
	outline-offset: 4px;
	border-radius: 10px;
	transform: scale(1.12);
}

/* ------------------------------ */
/* Hero                           */
/* ------------------------------ */
.hero {
	min-height: 78vh;
	position: relative;
	overflow: hidden;

	background: #111;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	padding: 96px 0 60px;
}

.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.25);
}

.hero-inner {
	position: relative;
	z-index: 2;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	text-align: center;
	gap: 18px;

	width: min(760px, 92vw);
}

.hero-title {
	margin: 0;
	font-family: var(--font-serif);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: rgba(255, 255, 255, 0.92);
	font-size: clamp(3.2rem, 7vw, 6.6rem);
	line-height: 1.02;
	text-shadow: 0 2px 22px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
	margin: 0;
	font-size: clamp(1.05rem, 2.4vw, 1.55rem);
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

/* Buttons */
.btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	cursor: pointer;
	border: 0;
	user-select: none;

	padding: 14px 26px;
	border-radius: 999px;

	font-weight: 500;
	font-size: 16px;
}

.btn-primary {
	background: var(--black);
	color: var(--white);
}

.btn-primary:hover {
	transform: translateY(-1px);
}

.btn-wide {
	width: 340px;
}

/* ------------------------------ */
/* Features                       */
/* ------------------------------ */
.features-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;

	gap: 52px;
	flex-wrap: wrap;
	padding-top: 8px;
}

.feature {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;

	gap: 14px;
	flex: 1 1 220px;
	min-width: 220px;
	max-width: 260px;
}

.swatch {
	width: 240px;
	height: 240px;
	border-radius: var(--radius-lg);

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.swatch-icon {
	width: 88px;
	height: 88px;

	display: block;
	object-fit: contain;
}

.swatch-pink {
	background: var(--pink);
}
.swatch-blue {
	background: var(--blue);
}
.swatch-green {
	background: var(--green);
}
.swatch-purple {
	background: var(--purple);
}

.feature-title {
	margin: 0;
	font-family: var(--font-serif);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.feature-lede {
	margin: 0;
	color: var(--muted);
	font-size: 20px;
	line-height: 1.35;
}

.feature-body {
	margin: 0;
	color: var(--muted-2);
	font-size: 20px;
	line-height: 1.45;
}

/* ------------------------------ */
/* Quotes                         */
/* ------------------------------ */
.quotes-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;

	gap: 78px;
	padding: 28px 0;
}

.quote {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;

	text-align: center;
	gap: 14px;

	width: min(860px, 92vw);
}

.doodle {
	width: 120px;
	height: 80px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.doodle svg,
.doodle img {
	width: 120px;
	height: 80px;

	display: block;
	object-fit: contain;
}

.doodle-icon {
	width: 120px;
	height: 80px;
}

.quote-text {
	margin: 0;
	font-size: clamp(1.9rem, 4vw, 2.6rem);
	font-weight: 800;
	letter-spacing: -0.02em;
}

.quote-byline {
	color: var(--muted);
	font-size: 16px;
}

/* ------------------------------ */
/* Stats                          */
/* ------------------------------ */
.stats-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;

	gap: 28px;
	padding: 20px 0 6px;

	text-align: center;
}

.stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;

	flex: 1 1 0;
}

.stat-number {
	font-size: clamp(3rem, 6vw, 5.4rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	margin-bottom: 8px;
}

.stat-label {
	color: var(--muted);
	font-weight: 600;
	font-size: 18px;
}

.stat-note {
	margin-top: 4px;
	color: var(--muted-2);
	font-size: 14px;
}

/* ------------------------------ */
/* FAQ (details/summary)          */
/* ------------------------------ */
.faq-wrap {
	width: min(820px, 92vw);
	margin: 0 auto;

	display: flex;
	flex-direction: column;
	gap: 10px;
}

.faq-item {
	background: var(--card-gray);
	border-radius: 10px;
	padding: 0;
	overflow: hidden;
}

.faq-q {
	list-style: none;
	cursor: pointer;

	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;

	padding: 16px 18px;
	font-weight: 700;
}

.faq-q::-webkit-details-marker {
	display: none;
}

.faq-q::before {
	content: '+';
	display: inline-flex;
	width: 22px;
	justify-content: center;
	margin-right: 12px;
	color: var(--muted);
	font-weight: 800;
}

.faq-item[open] .faq-q::before {
	content: '–';
}

.faq-a {
	background: var(--card-gray-2);
	padding: 14px 18px 18px 52px;
	color: var(--muted);
	line-height: 1.55;

	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* ------------------------------ */
/* Waitlist                       */
/* ------------------------------ */
.waitlist-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;

	gap: 26px;
	text-align: center;
}

.waitlist-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
}

.brand {
	font-family: var(--font-serif);
	font-size: 52px;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.waitlist-sub {
	font-size: 36px;
	font-weight: 500;
	color: var(--muted-2);
	letter-spacing: -0.02em;
}

.waitlist-form {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;

	gap: 12px;
}

.input {
	width: 340px;
	padding: 14px 16px;
	border-radius: 12px;
	border: 0;
	outline: none;

	background: #ededed;
	color: var(--text);
	font-size: 16px;
}

.input::placeholder {
	color: #9b9b9b;
}

.input:focus {
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.dots {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;

	gap: 14px;
	margin-top: 6px;
}

.dot {
	width: 46px;
	height: 46px;
	border-radius: 999px;
	display: inline-block;
}

.dot-pink {
	background: var(--pink);
}
.dot-blue {
	background: var(--blue);
}
.dot-green {
	background: var(--green);
}
.dot-purple {
	background: var(--purple);
}

/* ------------------------------ */
/* Footer                         */
/* ------------------------------ */
.site-footer {
	background: #000;
	color: rgba(255, 255, 255, 0.9);
	padding: 110px 0 80px;
}

.footer-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;

	gap: 70px;
	text-align: center;
}

.footer-links {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	gap: 16px;
	font-family: var(--font-serif);
	font-size: 22px;
}

.footer-link {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
}

.footer-link:hover {
	text-decoration: underline;
}

.footer-note {
	color: rgba(255, 255, 255, 0.75);
	font-size: 14px;
}

/* ------------------------------ */
/* Responsive tweaks              */
/* ------------------------------ */
@media (max-width: 980px) {
	.features-row {
		justify-content: center;
	}
	.feature {
		max-width: 320px;
	}
	.swatch {
		width: 220px;
		height: 220px;
	}
}

@media (max-width: 720px) {
	.nav {
		flex-wrap: wrap;
		gap: 14px;
	}
	.stats-row {
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		gap: 22px;
	}
	.btn-wide,
	.input {
		width: min(340px, 86vw);
	}
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	.btn-primary:hover {
		transform: none;
	}
	.nav-link {
		transition: none;
	}
	.nav-link:hover,
	.nav-link:focus-visible {
		transform: none;
	}
}
