/* ===== ANIMATED PROPERTIES ===== */
@property --angle {
	syntax: '<angle>';
	initial-value: 0deg;
	inherits: false;
}

@property --hue {
	syntax: '<number>';
	initial-value: 0;
	inherits: false;
}

/* ===== CUSTOM PROPERTIES ===== */
:root {
	/* App palette — extracted from screenshot */
	--coral:     #e8706a;
	--coral-d:   #d45a52;
	--coral-l:   #f5a090;
	--peach:     #f9d5c8;
	--peach-l:   #fdf0eb;
	--peach-xl:  #fef8f5;
	--cream:     #fffbf9;
	--sand:      #f5e6de;

	--ink:       #1e0f0c;
	--ink-2:     #3d2820;
	--muted:     #9a7068;
	--muted-l:   #c4a89c;

	--white:     #ffffff;
	--border:    rgba(232,112,106,0.15);
	--border-hi: rgba(232,112,106,0.3);

	--shadow-sm: 0 2px 12px rgba(180,80,70,0.1);
	--shadow-md: 0 8px 32px rgba(180,80,70,0.14);
	--shadow-lg: 0 20px 60px rgba(180,80,70,0.18);

	--font-head: 'Unbounded', sans-serif;
	--font-body: 'Nunito', sans-serif;
	--r-sm: 14px;
	--r-md: 20px;
	--r-lg: 28px;
	--r-xl: 44px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
	font-family: var(--font-body);
	background: var(--cream);
	color: var(--ink);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ===== SOFT NOISE ===== */
body::before {
	content: '';
	position: fixed;
	inset: 0;
	z-index: 9999;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
	opacity: 0.6;
	mix-blend-mode: multiply;
}

/* ===== BACKGROUND BLOBS ===== */
.bg-blobs {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.55;
}

.blob-1 {
	width: 700px; height: 700px;
	top: -200px; right: -200px;
	background: radial-gradient(circle, #f5b8a8 0%, #f9d5c8 50%, transparent 70%);
	animation: blobDrift 18s ease infinite;
}

.blob-2 {
	width: 500px; height: 500px;
	bottom: -100px; left: -100px;
	background: radial-gradient(circle, #fce4d8 0%, transparent 70%);
	animation: blobDrift 22s ease 4s infinite reverse;
}

.blob-3 {
	width: 350px; height: 350px;
	top: 45%; left: 35%;
	background: radial-gradient(circle, #f8ccc0 0%, transparent 70%);
	animation: blobDrift 15s ease 8s infinite;
}

/* ===== NAV ===== */
nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 200;
	padding: 1.125rem 2.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	backdrop-filter: blur(20px) saturate(1.8);
	-webkit-backdrop-filter: blur(20px) saturate(1.8);
	background: rgba(255,251,249,0.75);
	border-bottom: 1px solid var(--border);
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.nav-logo-img {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	object-fit: cover;
	box-shadow: var(--shadow-sm);
}

.nav-logo-text {
	font-family: var(--font-head);
	font-weight: 900;
	font-size: 1rem;
	letter-spacing: -0.025em;
	color: var(--ink);
}

.nav-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.65rem 1.5rem;
	border-radius: 100px;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 0.72rem;
	letter-spacing: 0.01em;
	background: var(--coral);
	color: white;
	box-shadow: 0 4px 18px rgba(232,112,106,0.4);
	transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.nav-cta:hover {
	background: var(--coral-d);
	transform: scale(1.04) translateY(-1px);
	box-shadow: 0 8px 28px rgba(212,90,82,0.45);
}

/* ===== HERO ===== */
.hero {
	position: relative;
	z-index: 1;
	min-height: 100svh;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 4rem;
	padding: 9rem 2.5rem 5rem;
	max-width: 1200px;
	margin: 0 auto;
	/* overflow-x: hidden; */
}

/* Eyebrow pill */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.45rem 1rem;
	border-radius: 100px;
	background: var(--peach);
	border: 1.5px solid var(--border-hi);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--coral-d);
	margin-bottom: 1.75rem;
	animation: fadeUp 0.6s ease both;
}

.eyebrow-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--coral);
	animation: dotPulse 2s ease infinite;
}

/* Headline */
.hero-title {
	font-family: var(--font-head);
	font-size: clamp(2.8rem, 5.2vw, 4.75rem);
	font-weight: 900;
	line-height: 1.04;
	letter-spacing: -0.03em;
	color: var(--ink);
	margin-bottom: 1.5rem;
	animation: fadeUp 0.6s ease 0.08s both;
}

.coral-text {
	color: var(--coral);
	position: relative;
	display: inline-block;
}

/* Wavy underline */
.coral-text::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 100%;
	height: 6px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='6' viewBox='0 0 60 6'%3E%3Cpath d='M0 3 Q7.5 0 15 3 Q22.5 6 30 3 Q37.5 0 45 3 Q52.5 6 60 3' fill='none' stroke='%23e8706a' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x center;
	background-size: 60px 6px;
	opacity: 0.7;
	animation: waveDash 2s linear infinite;
}

.hero-body {
	font-size: 1.1rem;
	font-weight: 400;
	color: var(--muted);
	line-height: 1.78;
	max-width: 480px;
	margin-bottom: 2.5rem;
	animation: fadeUp 0.6s ease 0.16s both;
}

/* CTA group */
.hero-ctas {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex-wrap: wrap;
	animation: fadeUp 0.6s ease 0.24s both;
}

.btn-main {
	display: inline-flex;
	align-items: center;
	gap: 0.875rem;
	padding: 1.05rem 2.1rem;
	border-radius: 18px;
	background: var(--coral);
	color: white;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 0.82rem;
	letter-spacing: 0.01em;
	position: relative;
	overflow: hidden;
	box-shadow: 0 6px 32px rgba(232,112,106,0.42);
	transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.btn-main::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.22), transparent 55%);
	pointer-events: none;
}

.btn-main::after {
	content: '';
	position: absolute;
	top: -60%;
	left: -60%;
	width: 60%;
	height: 300%;
	background: rgba(255,255,255,0.18);
	transform: skewX(-20deg);
	transition: left 0.5s ease;
}

.btn-main:hover {
	background: var(--coral-d);
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 12px 44px rgba(212,90,82,0.5);
}

.btn-main:hover::after { left: 140%; }

.apple-ico {
	width: 21px;
	height: 21px;
	flex-shrink: 0;
}

.btn-gplay {
	display: inline-flex;
	align-items: center;
	gap: 0.875rem;
	padding: 1.05rem 2.1rem;
	border-radius: 18px;
	background: var(--ink);
	color: white;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 0.82rem;
	letter-spacing: 0.01em;
	position: relative;
	overflow: hidden;
	box-shadow: 0 6px 28px rgba(30,15,12,0.28);
	transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.btn-gplay::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent 55%);
	pointer-events: none;
}

.btn-gplay::after {
	content: '';
	position: absolute;
	top: -60%;
	left: -60%;
	width: 60%;
	height: 300%;
	background: rgba(255,255,255,0.1);
	transform: skewX(-20deg);
	transition: left 0.5s ease;
}

.btn-gplay:hover {
	background: #2d1a14;
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 12px 40px rgba(30,15,12,0.38);
}

.btn-gplay:hover::after { left: 140%; }

.gplay-ico {
	width: 21px;
	height: 21px;
	flex-shrink: 0;
}

.store-btn-gplay {
	background: var(--ink);
	color: white;
}

.hero-note {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.82rem;
	color: var(--muted);
	font-weight: 500;
}

.hero-note-stars { color: #e8a050; }

/* ===== PHONE IMAGE (hero) ===== */
.hero-phone {
	position: relative;
	animation: fadeUp 0.6s ease 0.12s both;
	flex-shrink: 0;
}

.phone-img {
	position: relative;
	z-index: 2;
	width: 290px;
	height: auto;
	filter: drop-shadow(0 30px 60px rgba(180,80,70,0.28)) drop-shadow(0 8px 20px rgba(180,80,70,0.18));
	transition: transform 0.4s ease;
}

.hero-phone:hover .phone-img {
	transform: translateY(-6px) scale(1.01);
}

/* Decorative rings */
.phone-ring {
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(232,112,106,0.2);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: ringExpand 4s ease infinite;
}

.phone-ring:nth-child(1) { width: 380px; height: 380px; animation-delay: 0s; }
.phone-ring:nth-child(2) { width: 480px; height: 480px; animation-delay: 1.3s; }
.phone-ring:nth-child(3) { width: 580px; height: 580px; animation-delay: 2.6s; }

/* Floating badges */
.phone-badge {
	position: absolute;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.6rem 0.9rem;
	border-radius: 16px;
	background: white;
	border: 1px solid var(--border);
	box-shadow: var(--shadow-md);
	font-size: 0.7rem;
	font-weight: 700;
	color: var(--ink-2);
	white-space: nowrap;
}

.pb-1 {
	top: 15px;
	right: -35px;
	animation: floatA 3.5s ease-in-out infinite;
}

.pb-2 {
	bottom: 130px;
	left: -95px;
	animation: floatB 3.5s ease-in-out 1.75s infinite;
}

.pb-icon { font-size: 1rem; }

.pb-sub {
	display: block;
	font-weight: 400;
	color: var(--muted);
	font-size: 0.6rem;
	margin-top: 1px;
}

/* ===== MARQUEE STRIP ===== */
.marquee-wrap {
	position: relative;
	z-index: 1;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	background: var(--peach-l);
	padding: 0.875rem 0;
	overflow: hidden;
}

.marquee-track {
	display: flex;
	gap: 0;
	width: max-content;
	animation: marqueeScroll 28s linear infinite;
}

.marquee-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0 2rem;
	font-family: var(--font-head);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--muted);
	text-transform: uppercase;
	white-space: nowrap;
}

.marquee-sep {
	color: var(--coral-l);
	font-size: 1rem;
}

/* ===== STATS ===== */
.stats {
	position: relative;
	z-index: 1;
	padding: 5rem 2.5rem;
	max-width: 1100px;
	margin: 0 auto;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.stat-card {
	background: white;
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 2.25rem 2rem;
	text-align: center;
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform 0.3s, box-shadow 0.3s;
}

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

/* Decorative blob per card */
/* .stat-card::before {
	content: '';
	position: absolute;
	top: -30px; right: -30px;
	width: 100px; height: 100px;
	border-radius: 50%;
	background: var(--peach);
	opacity: 0.7;
} */

.stat-icon {
	font-size: 1.8rem;
	margin-bottom: 0.75rem;
	display: block;
	position: relative;
}

.stat-val {
	font-family: var(--font-head);
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	font-weight: 900;
	letter-spacing: -0.03em;
	color: var(--coral);
	margin-bottom: 0.35rem;
	position: relative;
}

.stat-lbl {
	font-size: 0.875rem;
	color: var(--muted);
	position: relative;
}

/* ===== FEATURES ===== */
.features {
	position: relative;
	z-index: 1;
	padding: 5rem 2.5rem 7rem;
	max-width: 1200px;
	margin: 0 auto;
}

.section-eyebrow {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--coral);
	margin-bottom: 0.875rem;
}

.section-title {
	font-family: var(--font-head);
	font-size: clamp(2rem, 3.8vw, 3.1rem);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: var(--ink);
	margin-bottom: 1rem;
}

.section-body {
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.72;
	max-width: 440px;
	margin-bottom: 4rem;
}

/* ===== SCREENSHOTS GALLERY ===== */
.screenshots {
	position: relative;
	z-index: 1;
	padding: 5rem 0;
	overflow: hidden;
	background: var(--peach-xl);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.screenshots-head {
	padding: 0 2.5rem;
	max-width: 1200px;
	margin: 0 auto 3.5rem;
}

/* Horizontal scroll track */
.screenshots-track {
	display: flex;
	gap: 2rem;
	padding: 1rem 2.5rem;
	/* overflow-x: auto; */
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	cursor: grab;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: auto;
}

.screenshots-track::-webkit-scrollbar { display: none; }

/* Ghost spacer so last card isn't flush right */
.screenshots-track::after {
	content: '';
	flex-shrink: 0;
	width: 1rem;
}

.sc-item {
	flex-shrink: 0;
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
}

.sc-img {
	width: 220px;
	height: auto;
	border-radius: 36px;
	filter: drop-shadow(0 20px 40px rgba(180,80,70,0.2)) drop-shadow(0 4px 12px rgba(180,80,70,0.12));
	transition: transform 0.4s ease, filter 0.4s ease;
}

.sc-item:hover .sc-img {
	transform: translateY(-10px) scale(1.02);
	filter: drop-shadow(0 32px 56px rgba(180,80,70,0.28)) drop-shadow(0 6px 16px rgba(180,80,70,0.18));
}

.sc-label {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.2rem;
	text-align: center;
}

.sc-title {
	font-family: var(--font-head);
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--ink);
	letter-spacing: -0.01em;
}

.sc-desc {
	font-size: 0.72rem;
	color: var(--muted);
}

/* Fade edges */

.screenshots::after {
	content: '';
	position: absolute;
	top: 0; bottom: 0;
	width: 80px;
	z-index: 10;
	pointer-events: none;
}

.screenshots::after {
	right: 0;
	background: linear-gradient(to left, var(--peach-xl), transparent);
}

/* ===== BENTO ===== */
.bento {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	/* grid-auto-rows: 220px; */
	gap: 1.25rem;
}

.bc { border-radius: var(--r-lg); overflow: hidden; position: relative; }
.bc-1 { grid-column: span 7; }
.bc-2 { grid-column: span 5; }
.bc-3 { grid-column: span 4; grid-row: span 2; }
.bc-4 { grid-column: span 8; }
.bc-5 { grid-column: span 5; }
.bc-6 { grid-column: span 3; }

.card {
	height: 100%;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	background: white;
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-sm);
	transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
	position: relative;
	overflow: hidden;
}

.card:hover {
	transform: translateY(-5px) scale(1.005);
	box-shadow: var(--shadow-md);
	border-color: rgba(232,112,106,0.25);
}

/* Hover shimmer */
.card::after {
	content: '';
	position: absolute;
	top: 0; left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(105deg, transparent, rgba(255,255,255,0.6), transparent);
	transform: skewX(-15deg);
	transition: left 0.55s ease;
}

.card:hover::after { left: 160%; }

/* Pink card variant */
.card-coral {
	background: linear-gradient(135deg, #f9e8e4 0%, #f5d5cc 100%);
	border-color: rgba(232,112,106,0.2);
}

.card-peach {
	background: linear-gradient(135deg, var(--peach-l), var(--sand));
	border-color: rgba(232,112,106,0.15);
}

.card-warm {
	background: linear-gradient(135deg, #fff6f3, #feeae4);
	border-color: rgba(232,112,106,0.12);
}

.card-icon {
	font-size: 2rem;
	margin-bottom: 1rem;
	display: block;
}

.card-title {
	font-family: var(--font-head);
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--ink);
	margin-bottom: 0.625rem;
}

.card-desc {
	font-size: 0.875rem;
	color: var(--muted);
	line-height: 1.65;
	flex: 1;
}

/* Pill tags */
.pill-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-top: 1rem;
}

.pill {
	padding: 0.28rem 0.7rem;
	border-radius: 100px;
	font-size: 0.68rem;
	font-weight: 700;
	background: var(--peach);
	color: var(--coral-d);
	border: 1px solid var(--border-hi);
}

/* Waveform visual inside card */
.waveform {
	position: absolute;
	top: 0%;
	right: 0;
	width: 40%;
	height: 50%;
	display: flex;
	align-items: flex-end;
	gap: 4px;
	padding: 0 1rem 1rem;
	/* transform: translateY(-50%); */
}

.wf-b {
	flex: 1;
	border-radius: 3px;
	background: linear-gradient(to top, var(--coral), var(--coral-l));
	opacity: 0.5;
	animation: wfBounce linear infinite;
}

.wf-b:nth-child(1)  { height: 35%; animation-duration: 1.2s; }
.wf-b:nth-child(2)  { height: 65%; animation-duration: 0.9s; animation-delay: 0.1s; }
.wf-b:nth-child(3)  { height: 85%; animation-duration: 1.4s; animation-delay: 0.2s; }
.wf-b:nth-child(4)  { height: 50%; animation-duration: 0.8s; animation-delay: 0.05s; }
.wf-b:nth-child(5)  { height: 100%; animation-duration: 1.1s; animation-delay: 0.3s; }
.wf-b:nth-child(6)  { height: 60%; animation-duration: 1.3s; animation-delay: 0.15s; }
.wf-b:nth-child(7)  { height: 75%; animation-duration: 1.0s; animation-delay: 0.25s; }

/* Avatar stack */
.av-stack {
	display: flex;
	margin-top: auto;
	padding-top: 1rem;
}

.av {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 2px solid white;
	margin-left: -8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.58rem;
	font-weight: 700;
}

.av:first-child { margin-left: 0; }
.av-1 { background: linear-gradient(135deg, #e8706a, #f5a090); }
.av-2 { background: linear-gradient(135deg, #f0a070, #e8a060); }
.av-3 { background: linear-gradient(135deg, #c06850, #e07868); }
.av-more { background: var(--peach); color: var(--coral-d); border-color: var(--border); }

/* ===== HOW IT WORKS ===== */
.how {
	position: relative;
	z-index: 1;
	padding: 5rem 2.5rem;
	background: var(--peach-l);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

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

.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.step {
	position: relative;
}

.step-num-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 16px;
	background: var(--coral);
	margin-bottom: 1.25rem;
	box-shadow: 0 4px 18px rgba(232,112,106,0.35);
}

.step-num {
	font-family: var(--font-head);
	font-weight: 900;
	font-size: 1.1rem;
	color: white;
}

.step-title {
	font-family: var(--font-head);
	font-size: 1rem;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 0.625rem;
	letter-spacing: -0.01em;
}

.step-desc {
	font-size: 0.9rem;
	color: var(--muted);
	line-height: 1.68;
}

/* Arrow connector */
.step:not(:last-child)::after {
	content: '→';
	position: absolute;
	top: 14px;
	right: -1rem;
	font-size: 1.4rem;
	color: var(--coral-l);
}

/* ===== CTA ===== */
.cta {
	position: relative;
	z-index: 1;
	padding: 5rem 2.5rem;
	overflow: hidden;
}

/* The big coral hero area */
.cta-card {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	border-radius: 36px;
	background: linear-gradient(135deg, #f0857a 0%, #e8706a 30%, #d85a55 60%, #c94848 100%);
	padding: 5rem 3rem;
	text-align: center;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(232,112,106,0.45);
}

/* Decorative circles */
.cta-circle {
	position: absolute;
	border-radius: 50%;
	background: rgba(255,255,255,0.06);
}

.cc-1 { width: 300px; height: 300px; top: -100px; left: -60px; }
.cc-2 { width: 200px; height: 200px; bottom: -70px; right: -40px; }
.cc-3 { width: 120px; height: 120px; top: 50%; right: 15%; animation: ringExpand 5s ease 2s infinite; background: transparent; border: 2px solid rgba(255,255,255,0.1); }

/* Grain overlay on CTA */
.cta-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
	pointer-events: none;
}

.cta-logo {
	width: 88px;
	height: 88px;
	border-radius: 22px;
	margin: 0 auto 1.75rem;
	object-fit: cover;
	position: relative;
	z-index: 1;
	box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.cta-title {
	font-family: var(--font-head);
	font-size: clamp(2rem, 4.5vw, 3.5rem);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1.08;
	color: white;
	margin-bottom: 1.25rem;
	position: relative;
	z-index: 1;
}

.cta-desc {
	font-size: 1.05rem;
	color: rgba(255,255,255,0.75);
	line-height: 1.7;
	margin-bottom: 2.75rem;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}

.store-row {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

.store-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.875rem;
	padding: 0.9rem 1.75rem;
	border-radius: 18px;
	background: white;
	color: var(--ink);
	border: none;
	box-shadow: 0 4px 20px rgba(0,0,0,0.18);
	transition: transform 0.25s, box-shadow 0.25s;
	font-family: var(--font-body);
}

.store-btn:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 10px 36px rgba(0,0,0,0.26);
}

.sb-icon { font-size: 1.8rem; line-height: 1; }

.sb-txt { text-align: left; }

.sb-sub {
	display: block;
	font-size: 0.66rem;
	color: var(--muted);
	margin-bottom: 2px;
}

.sb-name {
	display: block;
	font-family: var(--font-head);
	font-weight: 900;
	font-size: 0.95rem;
	letter-spacing: -0.01em;
	color: var(--ink);
}

.cta-note {
	margin-top: 1.75rem;
	font-size: 0.8rem;
	color: rgba(255,255,255,0.55);
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

/* ===== FOOTER ===== */
footer {
	position: relative;
	z-index: 1;
	padding: 2.5rem;
	border-top: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
	background: var(--cream);
}

.foot-brand {
	display: flex;
	align-items: center;
	gap: 0.7rem;
}

.foot-logo {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	object-fit: cover;
}

.foot-name {
	font-family: var(--font-head);
	font-weight: 900;
	font-size: 0.875rem;
	color: var(--ink);
	letter-spacing: -0.02em;
}

.foot-links {
	list-style: none;
	display: flex;
	gap: 1.75rem;
}

.foot-links a {
	font-size: 0.825rem;
	color: var(--muted);
	transition: color 0.2s;
}

.foot-links a:hover { color: var(--coral); }

.foot-copy {
	font-size: 0.78rem;
	color: var(--muted-l);
}

/* ===== KEYFRAMES ===== */
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(26px); }
	to   { opacity: 1; transform: translateY(0); }
}

@keyframes blobDrift {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33%       { transform: translate(25px, -18px) scale(1.04); }
	66%       { transform: translate(-18px, 12px) scale(0.97); }
}

@keyframes dotPulse {
	0%, 100% { opacity: 1; }
	50%       { opacity: 0.35; }
}

@keyframes waveDash {
	from { background-position-x: 0; }
	to   { background-position-x: 60px; }
}

@keyframes floatA {
	0%, 100% { transform: translateY(0) rotate(-1.5deg); }
	50%       { transform: translateY(-12px) rotate(1.5deg); }
}

@keyframes floatB {
	0%, 100% { transform: translateY(0) rotate(1.5deg); }
	50%       { transform: translateY(-10px) rotate(-1.5deg); }
}

@keyframes ringExpand {
	0%   { opacity: 0.6; transform: translate(-50%,-50%) scale(0.9); }
	70%  { opacity: 0; transform: translate(-50%,-50%) scale(1.1); }
	100% { opacity: 0; transform: translate(-50%,-50%) scale(1.1); }
}

@keyframes fcBreath {
	0%, 100% { filter: brightness(1); }
	50%       { filter: brightness(1.08); }
}

@keyframes wfBounce {
	0%, 100% { transform: scaleY(1); }
	50%       { transform: scaleY(0.38); }
}

@keyframes marqueeScroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* ===== SCROLL-DRIVEN ANIMATIONS ===== */
@supports (animation-timeline: scroll()) {
	.card, .stat-card, .step {
		animation: revealUp linear both;
		animation-timeline: view();
		animation-range: entry 0% entry 32%;
	}

	@keyframes revealUp {
		from { opacity: 0; transform: translateY(44px) scale(0.97); }
		to   { opacity: 1; transform: translateY(0) scale(1); }
	}

	.cta-card {
		animation: revealScale linear both;
		animation-timeline: view();
		animation-range: entry 5% entry 40%;
	}

	@keyframes revealScale {
		from { opacity: 0; transform: scale(0.94); }
		to   { opacity: 1; transform: scale(1); }
	}
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1050px) {
	.bento { grid-template-columns: repeat(6, 1fr); }
	.bc-1, .bc-4 { grid-column: span 6; }
	.bc-2, .bc-5 { grid-column: span 6; }
	.bc-3 { grid-column: span 6; grid-row: span 1; }
	.bc-6 { grid-column: span 6; }
}

@media (max-width: 900px) {
	.hero { grid-template-columns: 1fr; text-align: center; padding-top: 7rem; gap: 3rem; }
	.hero-body { margin: 0 auto 2.5rem; }
	.hero-ctas { justify-content: center; }
	.hero-phone { order: -1; display: none; }
	.phone { width: 230px; height: 474px; }
	.phone-badge { display: none; }
	.phone-ring { display: none; }
	.stats-grid { grid-template-columns: repeat(3, 1fr); }
	.steps { grid-template-columns: 1fr; }
	.step:not(:last-child)::after { content: '↓'; top: auto; bottom: -1.25rem; right: auto; left: 14px; }
}

@media (max-width: 640px) {
	nav { padding: 1rem 1.25rem; }
	.hero, .screenshots-head, .screenshots-track { padding-inline: 1.25rem; }
	.stats, .features, .screenshots, .how, .cta {padding: 3rem 1.25rem;}
	footer { padding-inline: 1.25rem; flex-direction: column; text-align: center; }
	.foot-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
	.bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
	.bc-1,.bc-2,.bc-3,.bc-4,.bc-5,.bc-6 { grid-column: span 1; }
	.card { min-height: 170px; }
	.waveform { display: none; }
	.stats-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
	.cta-card { padding: 3.5rem 1.75rem; border-radius: 24px; }
	.phone { width: 200px; height: 412px; }
}