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

:root {
	--cream: #f7f4ef;
	--cream-2: #ede8e0;
	--cream-3: #d3cfc8;
	--terra: #b5601a;
	--terra-lt: #e8a878;
	--terra-bg: #fbf0e8;
	--gold: #a07818;
	--dark: #2c2520;
	--dark-2: #1e1710;
	--dark-3: #261e16;
	--mid: #6b6257;
	--hint: #9c907f;
	--white: #ffffff;
	--serif: "DM Serif Display", Georgia, serif;
	--sans: "DM Sans", sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--sans);
	background: var(--cream);
	color: var(--dark);
	overflow-x: hidden;
}

/* ── NAV ── */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(247, 244, 239, 0.88);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 0.5px solid var(--cream-2);
	padding: 0 6vw;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.nav-logo-icon {
	width: 32px;
	height: 32px;
}

.nav-logo-text {
	font-family: var(--serif);
	font-size: 18px;
	color: var(--dark);
}

.nav-logo-text em {
	color: var(--terra);
	font-style: italic;
}

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

.nav-links a {
	font-size: 13px;
	font-weight: 400;
	color: var(--mid);
	text-decoration: none;
	transition: color 0.2s;
}

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

.nav-cta {
	background: var(--dark);
	color: var(--cream) !important;
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 13px !important;
	font-weight: 500 !important;
	transition: background 0.2s !important;
}

.nav-cta:hover {
	background: var(--terra) !important;
	color: var(--white) !important;
}

/* ── HERO ── */
.hero {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 120px 6vw 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero-bg-circle {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(181, 96, 26, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.hero-bg-circle.c1 {
	width: 700px;
	height: 700px;
	top: -100px;
	left: -200px;
}

.hero-bg-circle.c2 {
	width: 500px;
	height: 500px;
	bottom: -50px;
	right: -100px;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--terra-bg);
	border: 0.5px solid rgba(181, 96, 26, 0.2);
	border-radius: 20px;
	padding: 6px 16px;
	font-size: 11px;
	font-weight: 500;
	color: var(--terra);
	letter-spacing: 0.08em;
	margin-bottom: 28px;
	animation: fadeUp 0.6s ease both;
}

.hero-eyebrow span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--terra);
	display: inline-block;
}

.hero-headline {
	font-family: var(--serif);
	font-size: clamp(44px, 7vw, 88px);
	line-height: 1.08;
	color: var(--dark);
	max-width: 900px;
	margin-bottom: 24px;
	animation: fadeUp 0.6s 0.1s ease both;
}

.hero-headline em {
	color: var(--terra);
	font-style: italic;
}

.hero-sub {
	font-size: clamp(15px, 2vw, 18px);
	color: var(--hint);
	max-width: 520px;
	line-height: 1.7;
	margin-bottom: 48px;
	animation: fadeUp 0.6s 0.2s ease both;
}

.hero-form {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	margin-bottom: 20px;
	animation: fadeUp 0.6s 0.3s ease both;
}

/* Input + button row inside waitlist forms */
.waitlist-action-row {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
}

/* reCAPTCHA widget — centered below the action row */
.g-recaptcha {
	transform: scale(0.92);
	transform-origin: center top;
	display: flex;
	justify-content: center;
	overflow: hidden;
}

@media (max-width: 400px) {
	.g-recaptcha {
		transform: scale(0.78);
	}
}

.hero-input {
	background: var(--white);
	border: 0.5px solid var(--cream-3);
	border-radius: 12px;
	padding: 14px 20px;
	font-family: var(--sans);
	font-size: 14px;
	color: var(--dark);
	width: 280px;
	outline: none;
	transition:
		border 0.2s,
		box-shadow 0.2s;
}

.hero-input:focus {
	border-color: var(--terra);
	box-shadow: 0 0 0 3px rgba(181, 96, 26, 0.1);
}

.hero-input::placeholder {
	color: var(--cream-3);
}

.hero-btn-primary {
	background: var(--terra);
	color: var(--white);
	border: none;
	border-radius: 12px;
	padding: 14px 28px;
	font-family: var(--sans);
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition:
		background 0.2s,
		transform 0.15s;
	white-space: nowrap;
}

.hero-btn-primary:hover {
	background: #9a4e12;
	transform: translateY(-1px);
}

.hero-note {
	font-size: 12px;
	color: var(--hint);
	margin-bottom: 52px;
	animation: fadeUp 0.6s 0.35s ease both;
}

.hero-stores {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	animation: fadeUp 0.6s 0.4s ease both;
	margin-bottom: 60px;
}

.store-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--dark);
	color: var(--cream);
	border-radius: 12px;
	padding: 10px 20px;
	text-decoration: none;
	transition: background 0.2s;
	border: 0.5px solid transparent;
	opacity: 0.5;
}

.store-btn:hover {
	background: var(--dark-2);
}

.store-btn-text {
	display: flex;
	flex-direction: column;
}

.store-btn-sub {
	font-size: 9px;
	opacity: 0.6;
	letter-spacing: 0.05em;
}

.store-btn-name {
	font-size: 13px;
	font-weight: 500;
}

.store-coming {
	font-size: 10px;
	color: var(--hint);
	margin-top: 6px;
	text-align: center;
}

.hero-waitlist-count {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: var(--mid);
	animation: fadeUp 0.6s 0.5s ease both;
}

.waitlist-avatars {
	display: flex;
}

.waitlist-avatar {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 2px solid var(--cream);
	margin-left: -8px;

	first-child {
		margin-left: 0;
	}

	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 500;
}

.waitlist-avatar:first-child {
	margin-left: 0;
}

.wa1 {
	background: #c97030;
	color: #fff;
}

.wa2 {
	background: #7aaf6a;
	color: #fff;
}

.wa3 {
	background: #5b8acf;
	color: #fff;
}

.wa4 {
	background: #a07818;
	color: #fff;
}

/* ── PROBLEM ── */
.problem {
	padding: 100px 6vw;
	background: var(--dark-2);
	color: var(--cream);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.problem::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 50% 0%, rgba(181, 96, 26, 0.12) 0%, transparent 60%);
	pointer-events: none;
}

.problem-eyebrow {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: var(--terra-lt);
	margin-bottom: 20px;
}

.problem-headline {
	font-family: var(--serif);
	font-size: clamp(32px, 5vw, 60px);
	line-height: 1.15;
	max-width: 760px;
	margin: 0 auto 24px;
}

.problem-headline em {
	color: var(--terra-lt);
	font-style: italic;
}

.problem-sub {
	font-size: 16px;
	color: rgba(237, 224, 208, 0.6);
	max-width: 520px;
	margin: 0 auto 64px;
	line-height: 1.7;
}

.problem-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	max-width: 680px;
	margin: 0 auto;
}

.problem-pill {
	background: rgba(247, 244, 239, 0.06);
	border: 0.5px solid rgba(247, 244, 239, 0.1);
	border-radius: 30px;
	padding: 10px 20px;
	font-size: 13px;
	color: rgba(237, 224, 208, 0.7);
	display: flex;
	align-items: center;
	gap: 8px;
}

.problem-pill::before {
	content: "✗";
	color: #c97070;
	font-size: 12px;
}

/* ── HOW IT WORKS ── */
.how {
	padding: 100px 6vw;
	text-align: center;
}

.section-eyebrow {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: var(--terra);
	margin-bottom: 16px;
}

.section-headline {
	font-family: var(--serif);
	font-size: clamp(30px, 4vw, 52px);
	line-height: 1.2;
	max-width: 640px;
	margin: 0 auto 16px;
}

.section-headline em {
	color: var(--terra);
	font-style: italic;
}

.section-sub {
	font-size: 15px;
	color: var(--hint);
	max-width: 480px;
	margin: 0 auto 64px;
	line-height: 1.7;
}

.how-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	max-width: 900px;
	margin: 0 auto;
	background: var(--cream-2);
	border-radius: 20px;
	overflow: hidden;
}

.how-step {
	background: var(--cream);
	padding: 40px 32px;
	text-align: left;
	position: relative;
	transition: background 0.2s;
}

.how-step:hover {
	background: var(--white);
}

.how-step-num {
	font-family: var(--serif);
	font-size: 48px;
	font-style: italic;
	color: var(--cream-2);
	line-height: 1;
	margin-bottom: 20px;
	transition: color 0.2s;
}

.how-step:hover .how-step-num {
	color: var(--terra-bg);
}

.how-step-icon {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	font-size: 18px;
}

.icon-goal {
	background: var(--terra-bg);
}

.icon-task {
	background: #fbf5e8;
}

.icon-why {
	background: #ede8e0;
}

.how-step-title {
	font-family: var(--serif);
	font-size: 22px;
	margin-bottom: 8px;
	color: var(--dark);
}

.how-step-title em {
	color: var(--terra);
	font-style: italic;
}

.how-step-desc {
	font-size: 13px;
	color: var(--hint);
	line-height: 1.6;
}

.how-connector {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: var(--cream-3);
}

/* ── FEATURES ── */
.features {
	padding: 100px 6vw;
	background: var(--dark-2);
}

.features-inner {
	max-width: 1100px;
	margin: 0 auto;
}

.features-header {
	text-align: center;
	margin-bottom: 64px;
}

.features-header .section-eyebrow {
	color: var(--terra-lt);
}

.features-header .section-headline {
	color: var(--cream);
	margin: 0 auto 16px;
}

.features-header .section-headline em {
	color: var(--terra-lt);
}

.features-header .section-sub {
	color: rgba(237, 224, 208, 0.5);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2px;
	border-radius: 20px;
	overflow: hidden;
	background: rgba(247, 244, 239, 0.05);
}

.feature-card {
	background: var(--dark-3);
	padding: 40px 36px;
	transition: background 0.2s;
}

.feature-card:hover {
	background: #2e2418;
}

.feature-tag {
	display: inline-block;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: var(--terra-lt);
	background: rgba(232, 168, 120, 0.1);
	border-radius: 20px;
	padding: 4px 12px;
	margin-bottom: 20px;
}

.feature-title {
	font-family: var(--serif);
	font-size: 24px;
	color: var(--cream);
	margin-bottom: 12px;
	line-height: 1.2;
}

.feature-desc {
	font-size: 14px;
	color: rgba(237, 224, 208, 0.5);
	line-height: 1.7;
	margin-bottom: 24px;
}

.feature-items {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	color: rgba(237, 224, 208, 0.65);
	line-height: 1.5;
}

.feature-item::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--terra-lt);
	flex-shrink: 0;
	margin-top: 7px;
}

/* ── WHY MOMENT (dark cinematic) ── */
.why-moment {
	padding: 140px 6vw;
	background: var(--dark-2);
	text-align: center;
	position: relative;
	overflow: hidden;
	border-top: 0.5px solid rgba(247, 244, 239, 0.05);
}

.why-moment::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 50% 50%, rgba(181, 96, 26, 0.15) 0%, transparent 65%);
	pointer-events: none;
}

.why-moment-quote {
	font-family: var(--serif);
	font-size: clamp(36px, 6vw, 76px);
	line-height: 1.15;
	max-width: 860px;
	margin: 0 auto 32px;
	color: var(--cream);
	position: relative;
}

.why-moment-quote em {
	color: var(--terra-lt);
	font-style: italic;
}

.why-moment-sub {
	font-size: 16px;
	color: rgba(237, 224, 208, 0.45);
	max-width: 480px;
	margin: 0 auto;
	line-height: 1.7;
}

/* ── SOCIAL PROOF ── */
.social {
	padding: 100px 6vw;
	background: var(--cream);
}

.social-inner {
	max-width: 1000px;
	margin: 0 auto;
}

.social-header {
	text-align: center;
	margin-bottom: 56px;
}

.testimonials {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.testimonial {
	background: var(--white);
	border: 0.5px solid var(--cream-2);
	border-radius: 16px;
	padding: 28px;
	transition:
		box-shadow 0.2s,
		transform 0.2s;
}

.testimonial:hover {
	box-shadow: 0 8px 32px rgba(44, 37, 32, 0.07);
	transform: translateY(-2px);
}

.testimonial-stars {
	color: var(--terra);
	font-size: 12px;
	letter-spacing: 2px;
	margin-bottom: 14px;
}

.testimonial-text {
	font-size: 14px;
	color: var(--mid);
	line-height: 1.7;
	margin-bottom: 20px;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 10px;
}

.testimonial-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 500;
	color: #fff;
	flex-shrink: 0;
}

.testimonial-name {
	font-size: 13px;
	font-weight: 500;
	color: var(--dark);
}

.testimonial-handle {
	font-size: 11px;
	color: var(--hint);
}

/* ── PRICING TEASER ── */
.pricing {
	padding: 100px 6vw;
	background: var(--cream);
	border-top: 0.5px solid var(--cream-2);
}

.pricing-inner {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.pricing-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-top: 48px;
}

.pricing-card {
	border-radius: 20px;
	padding: 36px 32px;
	text-align: left;
	border: 0.5px solid var(--cream-2);
	background: var(--white);
	position: relative;
	transition: transform 0.2s;
}

.pricing-card:hover {
	transform: translateY(-2px);
}

.pricing-card.featured {
	background: var(--dark);
	border-color: transparent;
}

.pricing-card-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--terra);
	color: #fff;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.06em;
	padding: 4px 14px;
	border-radius: 20px;
}

.pricing-tier {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: var(--hint);
	margin-bottom: 12px;
}

.pricing-card.featured .pricing-tier {
	color: rgba(237, 224, 208, 0.5);
}

.pricing-price {
	font-family: var(--serif);
	font-size: 40px;
	color: var(--dark);
	margin-bottom: 4px;
}

.pricing-card.featured .pricing-price {
	color: var(--cream);
}

.pricing-price-note {
	font-size: 12px;
	color: var(--hint);
	margin-bottom: 24px;
}

.pricing-card.featured .pricing-price-note {
	color: rgba(237, 224, 208, 0.4);
}

.pricing-features {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pricing-feature {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: var(--mid);
}

.pricing-card.featured .pricing-feature {
	color: rgba(237, 224, 208, 0.65);
}

.pricing-feature::before {
	content: "✓";
	color: var(--terra);
	font-size: 11px;
	font-weight: 700;
}

.pricing-card.featured .pricing-feature::before {
	color: var(--terra-lt);
}

/* ── SUPPORT ── */
.support {
	padding: 80px 6vw;
	background: var(--terra-bg);
	border-top: 0.5px solid rgba(181, 96, 26, 0.15);
	text-align: center;
}

.support-icon {
	font-size: 36px;
	margin-bottom: 16px;
}

.support-headline {
	font-family: var(--serif);
	font-size: clamp(24px, 3vw, 36px);
	color: var(--dark);
	margin-bottom: 12px;
}

.support-headline em {
	color: var(--terra);
	font-style: italic;
}

.support-sub {
	font-size: 14px;
	color: var(--mid);
	max-width: 440px;
	margin: 0 auto 32px;
	line-height: 1.7;
}

.support-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--terra);
	color: #fff;
	border-radius: 12px;
	padding: 14px 28px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition:
		background 0.2s,
		transform 0.15s;
}

.support-btn:hover {
	background: #9a4e12;
	transform: translateY(-1px);
}

/* ── FINAL CTA ── */
.final-cta {
	padding: 120px 6vw;
	background: var(--dark-2);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.final-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 50% 100%, rgba(181, 96, 26, 0.15) 0%, transparent 60%);
}

.final-cta-headline {
	font-family: var(--serif);
	font-size: clamp(36px, 5.5vw, 68px);
	color: var(--cream);
	line-height: 1.1;
	max-width: 720px;
	margin: 0 auto 16px;
	position: relative;
}

.final-cta-headline em {
	color: var(--terra-lt);
	font-style: italic;
}

.final-cta-sub {
	font-size: 16px;
	color: rgba(237, 224, 208, 0.45);
	margin-bottom: 40px;
	position: relative;
}

.final-form {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	/* position: relative; */
}

.final-input {
	background: rgba(247, 244, 239, 0.08);
	border: 0.5px solid rgba(247, 244, 239, 0.15);
	border-radius: 12px;
	padding: 14px 20px;
	width: 280px;
	font-family: var(--sans);
	font-size: 14px;
	color: var(--cream);
	outline: none;
	transition:
		border 0.2s,
		box-shadow 0.2s;
}

.final-input::placeholder {
	color: rgba(237, 224, 208, 0.3);
}

.final-input:focus {
	border-color: var(--terra-lt);
	box-shadow: 0 0 0 3px rgba(232, 168, 120, 0.15);
}

/* ── FOOTER ── */
footer {
	background: var(--dark-2);
	border-top: 0.5px solid rgba(247, 244, 239, 0.08);
	padding: 40px 6vw;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.footer-logo-text {
	font-family: var(--serif);
	font-size: 16px;
	color: var(--cream);
}

.footer-logo-text em {
	color: var(--terra-lt);
	font-style: italic;
}

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

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

.footer-links a:hover {
	color: rgba(237, 224, 208, 0.7);
}

.footer-copy {
	font-size: 11px;
	color: rgba(237, 224, 208, 0.2);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
	.nav-links a:not(.nav-cta) {
		display: none;
	}

	.how-steps {
		grid-template-columns: 1fr;
	}

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

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

	.pricing-cards {
		grid-template-columns: 1fr;
	}

	footer {
		flex-direction: column;
		align-items: flex-start;
	}
}
