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

:root {
	/* — App-accurate palette — */
	--bg: #fff4f7;
	--bg-section: #fff0f4;
	--card: #ffffff;
	--pink-pale: #ffe4ee;
	--pink-lt: #f9c8d8;
	--pink: #e05478;
	--pink-mid: #c93e65;
	--wine: #7b1d47; /* CTA dark */
	--ink: #1c1018;
	--ink-lt: #5a4452;
	--ink-xs: #a08898;
	--white: #ffffff;
	--green: #2e7d52;

	--serif: 'Playfair Display', Georgia, serif;
	--sans: 'Inter', system-ui, sans-serif;
	--ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--sans);
	background: var(--bg);
	color: var(--ink);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

/* ── NAV ── */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 48px;
	background: transparent;
	backdrop-filter: blur(0px);
	-webkit-backdrop-filter: blur(0px);
	border-bottom: 1px solid transparent;
	transition:
		border-color 0.4s,
		background 0.4s,
		backdrop-filter 0.4s,
		-webkit-backdrop-filter 0.4s;
}
nav.scrolled {
	background: rgba(255, 244, 247, 0.72);
	backdrop-filter: blur(24px) saturate(1.4);
	-webkit-backdrop-filter: blur(24px) saturate(1.4);
	border-color: rgba(255, 200, 220, 0.4);
}
.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--serif);
	font-size: 22px;
	font-weight: 500;
	color: var(--ink);
	letter-spacing: -0.3px;
	text-decoration: none;
}
.nav-logo img {
	height: 30px;
	width: auto;
}
.nav-links {
	display: flex;
	align-items: center;
	gap: 36px;
	list-style: none;
}
.nav-links a {
	font-size: 14px;
	font-weight: 400;
	color: var(--ink-lt);
	text-decoration: none;
	transition: color 0.2s;
}
.nav-links a:hover {
	color: var(--ink);
}
.nav-cta {
	font-size: 14px;
	font-weight: 500;
	color: var(--white);
	background: var(--wine);
	border: none;
	padding: 11px 24px;
	border-radius: 100px;
	cursor: pointer;
	text-decoration: none;
	transition:
		background 0.2s,
		transform 0.15s;
}
.nav-cta:hover {
	background: var(--pink-mid);
	transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 140px 24px 80px;
	position: relative;
	overflow: hidden;
}
.hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 70% 50% at 30% 10%, #ffced9 0%, transparent 65%),
		radial-gradient(ellipse 60% 45% at 75% 85%, #ffd4e2 0%, transparent 60%),
		radial-gradient(ellipse 50% 40% at 80% 15%, #ffe8d0 0%, transparent 55%);
	pointer-events: none;
}
.hero-eyebrow {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.18em;
	color: var(--pink);
	text-transform: uppercase;
	margin-bottom: 28px;
	opacity: 0;
	animation: fadeUp 0.8s var(--ease) 0.1s forwards;
}
.hero h1 {
	font-family: var(--serif);
	font-size: clamp(44px, 7vw, 88px);
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: var(--ink);
	max-width: 800px;
	margin: 0 auto 28px;
	opacity: 0;
	animation: fadeUp 0.9s var(--ease) 0.2s forwards;
}
.hero h1 em {
	font-style: italic;
	color: var(--pink);
}
.hero-sub {
	font-size: 18px;
	font-weight: 300;
	line-height: 1.65;
	color: var(--ink-lt);
	max-width: 480px;
	margin: 0 auto 48px;
	opacity: 0;
	animation: fadeUp 0.9s var(--ease) 0.35s forwards;
}
.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: center;
	opacity: 0;
	animation: fadeUp 0.9s var(--ease) 0.5s forwards;
}

.btn-wine {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--wine);
	color: var(--white);
	font-family: var(--sans);
	font-size: 15px;
	font-weight: 500;
	padding: 16px 28px;
	border-radius: 100px;
	text-decoration: none;
	transition:
		background 0.2s,
		transform 0.15s,
		box-shadow 0.2s;
}
.btn-wine:hover {
	background: var(--pink-mid);
	transform: translateY(-2px);
	box-shadow: 0 8px 32px rgba(123, 29, 71, 0.28);
}
.btn-outline {
	display: flex;
	align-items: center;
	gap: 10px;
	background: transparent;
	color: var(--ink);
	font-family: var(--sans);
	font-size: 15px;
	font-weight: 500;
	padding: 16px 28px;
	border-radius: 100px;
	border: 1.5px solid var(--pink-lt);
	text-decoration: none;
	transition:
		border-color 0.2s,
		background 0.2s,
		transform 0.15s;
}
.btn-outline:hover {
	border-color: var(--pink);
	background: var(--pink-pale);
	transform: translateY(-2px);
}
.btn-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}
.store-badge-link {
	display: inline-block;
	transition:
		transform 0.2s var(--ease),
		opacity 0.2s;
}
.store-badge-link:hover {
	transform: translateY(-2px);
	opacity: 0.88;
}
.appstore-badge {
	height: 54px;
	width: auto;
	display: block;
}

/* ── HERO PHONES ── */
.hero-visual {
	margin-top: 72px;
	position: relative;
	opacity: 0;
	animation: fadeUp 1.1s var(--ease) 0.65s forwards;
}
.phone-wrap {
	display: flex;
	gap: 20px;
	justify-content: center;
	align-items: flex-end;
}
.phone-frame {
	border-radius: 44px;
	overflow: hidden;
	box-shadow:
		0 40px 100px rgba(123, 29, 71, 0.18),
		0 8px 24px rgba(123, 29, 71, 0.1);
	flex-shrink: 0;
	position: relative;
	background: var(--white);
}
.phone-frame img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.phone-main {
	width: 230px;
	height: 494px;
}
.phone-side {
	width: 188px;
	height: 404px;
	margin-bottom: 24px;
	opacity: 0.78;
}

/* Badge floating */
.badge {
	position: absolute;
	background: var(--white);
	border-radius: 20px;
	padding: 12px 18px;
	box-shadow: 0 8px 32px rgba(123, 29, 71, 0.14);
	display: flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
}
.badge-icon {
	font-size: 20px;
}
.badge-text {
	font-size: 13px;
	font-weight: 500;
	color: var(--ink);
}
.badge-sub {
	font-size: 11px;
	color: var(--ink-xs);
}
.badge-1 {
	top: 32px;
	right: -24px;
	animation: floatA 4s ease-in-out infinite;
}
.badge-2 {
	bottom: 72px;
	left: -28px;
	animation: floatB 5s ease-in-out infinite;
}

@keyframes floatA {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}
@keyframes floatB {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(8px);
	}
}
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ── SHARED SECTION ── */
section {
	padding: 120px 24px;
}
.section-inner {
	max-width: 1100px;
	margin: 0 auto;
}
.section-eyebrow {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.18em;
	color: var(--pink);
	text-transform: uppercase;
	margin-bottom: 18px;
}
.section-title {
	font-family: var(--serif);
	font-size: clamp(34px, 4.5vw, 56px);
	font-weight: 400;
	line-height: 1.12;
	letter-spacing: -0.02em;
	color: var(--ink);
	max-width: 600px;
}
.section-title em {
	font-style: italic;
	color: var(--pink);
}

/* Reveal */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.8s var(--ease),
		transform 0.8s var(--ease);
}
.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}
.reveal-delay-1 {
	transition-delay: 0.1s;
}
.reveal-delay-2 {
	transition-delay: 0.2s;
}
.reveal-delay-3 {
	transition-delay: 0.3s;
}
.reveal-delay-4 {
	transition-delay: 0.4s;
}

/* ── TAGLINE STRIP ── */
.tagline-strip {
	background: var(--wine);
	padding: 40px 0;
	overflow: hidden;
}
.tagline-scroll {
	display: flex;
	gap: 64px;
	animation: scrollLeft 22s linear infinite;
	white-space: nowrap;
}
.tagline-item {
	font-family: var(--serif);
	font-size: 22px;
	font-style: italic;
	color: rgba(255, 255, 255, 0.5);
	flex-shrink: 0;
}
.tagline-item span {
	color: rgba(255, 255, 255, 0.92);
}
@keyframes scrollLeft {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

/* ── FEATURES ── */
.features-bg {
	background: var(--bg-section);
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
	margin-top: 64px;
}
.feature-card {
	background: var(--card);
	border-radius: 24px;
	padding: 36px 30px;
	border: 1px solid var(--pink-pale);
	transition:
		transform 0.3s var(--ease),
		box-shadow 0.3s var(--ease);
}
.feature-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 48px rgba(224, 84, 120, 0.12);
}
.feature-icon {
	width: 52px;
	height: 52px;
	border-radius: 16px;
	background: var(--pink-pale);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-bottom: 24px;
}
.feature-title {
	font-family: var(--serif);
	font-size: 22px;
	font-weight: 400;
	color: var(--ink);
	margin-bottom: 12px;
	line-height: 1.25;
}
.feature-desc {
	font-size: 15px;
	font-weight: 300;
	line-height: 1.65;
	color: var(--ink-lt);
}

/* ── SCREENS SHOWCASE ── */
.screens-section {
	background: var(--bg);
}
.screens-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 64px;
	flex-wrap: wrap;
	gap: 24px;
}
.screens-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	align-items: end;
}
.screen-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}
.screen-phone {
	border-radius: 36px;
	overflow: hidden;
	box-shadow:
		0 24px 64px rgba(123, 29, 71, 0.16),
		0 4px 16px rgba(123, 29, 71, 0.08);
	width: 100%;
	max-width: 220px;
	transition:
		transform 0.4s var(--ease),
		box-shadow 0.4s var(--ease);
}
.screen-phone:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow:
		0 40px 80px rgba(123, 29, 71, 0.22),
		0 8px 24px rgba(123, 29, 71, 0.12);
}
.screen-phone img {
	display: block;
	width: 100%;
	height: auto;
}
.screen-label {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--pink);
}
.screen-desc {
	font-size: 14px;
	color: var(--ink-lt);
	text-align: center;
	line-height: 1.5;
}

/* ── HOW IT WORKS ── */
.steps-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	margin-top: 72px;
}
.steps-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.step {
	display: flex;
	gap: 24px;
	padding: 28px 0;
	border-bottom: 1px solid var(--pink-pale);
}
.step:first-child {
	padding-top: 0;
}
.step:last-child {
	border-bottom: none;
}
.step-num {
	font-family: var(--serif);
	font-size: 13px;
	color: var(--pink);
	padding-top: 4px;
	flex-shrink: 0;
	width: 28px;
}
.step-title {
	font-family: var(--serif);
	font-size: 20px;
	font-weight: 400;
	color: var(--ink);
	margin-bottom: 8px;
}
.step-desc {
	font-size: 15px;
	font-weight: 300;
	line-height: 1.6;
	color: var(--ink-lt);
}
.steps-visual {
	display: flex;
	justify-content: center;
	position: relative;
}
.steps-phone-img {
	width: 260px;
	border-radius: 44px;
	overflow: hidden;
	box-shadow:
		0 40px 100px rgba(123, 29, 71, 0.16),
		0 4px 24px rgba(123, 29, 71, 0.08);
}
.steps-phone-img img {
	display: block;
	width: 100%;
	height: auto;
}

/* ── TESTIMONIALS ── */
.testimonials-bg {
	background: var(--wine);
}
.testimonials-title {
	font-family: var(--serif);
	font-size: clamp(34px, 4.5vw, 56px);
	font-weight: 400;
	color: var(--white);
	max-width: 500px;
	letter-spacing: -0.02em;
	line-height: 1.1;
}
.testimonials-title em {
	font-style: italic;
	color: var(--pink-lt);
}
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-top: 64px;
}
.testi-card {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 36px 30px;
	transition:
		background 0.3s,
		transform 0.3s var(--ease);
}
.testi-card:hover {
	background: rgba(255, 255, 255, 0.11);
	transform: translateY(-4px);
}
.testi-stars {
	font-size: 14px;
	letter-spacing: 2px;
	color: var(--pink-lt);
	margin-bottom: 20px;
}
.testi-text {
	font-family: var(--serif);
	font-size: 18px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 28px;
}
.testi-author {
	display: flex;
	align-items: center;
	gap: 12px;
}
.testi-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	flex-shrink: 0;
}
.testi-name {
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.85);
}
.testi-loc {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
	margin-top: 2px;
}

/* ── STATS ── */
.stats-section {
	background: var(--bg-section);
	padding: 80px 24px;
}
.stats-grid {
	max-width: 900px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	text-align: center;
}
.stat-num {
	font-family: var(--serif);
	font-size: clamp(40px, 6vw, 64px);
	font-weight: 400;
	color: var(--ink);
	letter-spacing: -0.02em;
}
.stat-label {
	font-size: 14px;
	font-weight: 300;
	color: var(--ink-lt);
	margin-top: 6px;
}
.stat-divider {
	width: 1px;
	background: var(--pink-pale);
}

/* ── CTA ── */
.cta-section {
	text-align: center;
}
.cta-section .section-title {
	max-width: 560px;
	margin: 0 auto 16px;
}
.cta-sub {
	font-size: 17px;
	font-weight: 300;
	color: var(--ink-lt);
	max-width: 420px;
	margin: 0 auto 48px;
	line-height: 1.65;
}
.cta-buttons {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
.store-btn {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--wine);
	color: var(--white);
	padding: 16px 28px;
	border-radius: 18px;
	text-decoration: none;
	transition:
		background 0.2s,
		transform 0.2s var(--ease),
		box-shadow 0.2s;
}
.store-btn:hover {
	background: var(--pink-mid);
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(123, 29, 71, 0.26);
}
.store-btn svg {
	width: 28px;
	height: 28px;
	fill: var(--white);
	flex-shrink: 0;
}
.store-btn-sub {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.55);
	display: block;
	margin-bottom: 1px;
}
.store-btn-name {
	font-size: 17px;
	font-weight: 500;
	display: block;
}
.cta-note {
	font-size: 13px;
	color: var(--ink-xs);
}

/* ── FOOTER ── */
footer {
	background: var(--bg);
	border-top: 1px solid var(--pink-pale);
	padding: 24px 48px;
}
.footer-min {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}
.footer-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--serif);
	font-size: 16px;
	font-weight: 500;
	color: var(--ink);
	text-decoration: none;
}
.footer-logo img {
	height: 20px;
	width: auto;
}
.footer-links-min {
	display: flex;
	gap: 24px;
}
.footer-links-min a {
	font-size: 13px;
	color: var(--ink-xs);
	text-decoration: none;
	transition: color 0.2s;
}
.footer-links-min a:hover {
	color: var(--ink-lt);
}

/* ── MOBILE ── */
@media (max-width: 900px) {
	.screens-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 768px) {
	nav {
		padding: 18px 20px;
	}
	.nav-links {
		display: none;
	}
	section {
		padding: 80px 20px;
	}
	.steps-wrap {
		grid-template-columns: 1fr;
	}
	.steps-visual {
		order: -1;
	}
	.stats-grid {
		grid-template-columns: 1fr;
	}
	.screens-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	footer {
		padding: 20px;
	}
	.footer-min {
		flex-direction: column;
		text-align: center;
		gap: 12px;
	}
}
@media (max-width: 480px) {
	.screens-grid {
		grid-template-columns: 1fr 1fr;
	}
	.phone-side {
		display: none;
	}
}
