:root {
	--bg: #0b0618;
	--bg-2: #140a2b;
	--surface: #1a1035;
	--surface-2: #221646;
	--border: rgba(255, 255, 255, 0.10);
	--text: #f4f1fb;
	--muted: #b8afd6;
	--pink: #e94bac;
	--pink-dark: #d03c9a;
	--blue: #5b9bdc;
	--blue-light: #71a9e4;
	--radius: 18px;
	--maxw: 1120px;
	--font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	font-family: var(--font);
	color: var(--text);
	background: var(--bg);
	line-height: 1.55;
	overflow-x: hidden;
}

a { color: var(--blue-light); text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

h1, h2, h3 { line-height: 1.15; margin: 0 0 .5em; font-weight: 800; letter-spacing: -0.02em; }

.eyebrow {
	display: inline-block;
	font-size: .74rem;
	letter-spacing: .16em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--pink);
	margin-bottom: 14px;
}

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: saturate(140%) blur(12px);
	background: rgba(11, 6, 24, 0.72);
	border-bottom: 1px solid var(--border);
}
.site-header .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 12px;
	padding-bottom: 12px;
}
.site-header .logo img { height: 34px; width: auto; }
.nav-cta {
	font-size: .9rem;
	font-weight: 700;
	padding: 9px 16px;
	border-radius: 999px;
	color: #fff;
	background: linear-gradient(135deg, var(--pink), var(--pink-dark));
	white-space: nowrap;
}

/* ---------- Hero ---------- */
.hero {
	position: relative;
	padding: 56px 0 64px;
	background:
		radial-gradient(1200px 600px at 75% -10%, rgba(233, 75, 172, 0.28), transparent 60%),
		radial-gradient(900px 500px at 0% 20%, rgba(91, 155, 220, 0.24), transparent 55%),
		linear-gradient(180deg, var(--bg-2), var(--bg));
}
.hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 36px;
	align-items: center;
}
.hero h1 {
	font-size: clamp(2rem, 8vw, 3.4rem);
	margin-bottom: 16px;
}
.hero h1 .grad {
	background: linear-gradient(100deg, var(--pink), var(--blue-light));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.hero p.lead {
	font-size: clamp(1.05rem, 3.6vw, 1.28rem);
	color: var(--muted);
	max-width: 34ch;
	margin: 0 0 28px;
}
.hero .promise {
	font-weight: 700;
	color: var(--text);
}

/* store badges */
.badges { display: flex; flex-wrap: wrap; gap: 12px; }
.store-badge {
	display: block;
	width: 180px;
	height: 54px;
	transition: transform .15s ease, filter .15s ease;
}
.store-badge:hover { transform: translateY(-2px); filter: brightness(1.08); }
.store-badge svg { width: 180px; height: 54px; display: block; }

.hero-note { margin-top: 14px; font-size: .82rem; color: var(--muted); }

/* phone mock placeholder */
.hero-visual { display: flex; justify-content: center; }
.phone-frame {
	width: min(280px, 74vw);
	border-radius: 34px;
	padding: 10px;
	background: linear-gradient(160deg, #2a1a52, #150c30);
	border: 1px solid var(--border);
	box-shadow: 0 30px 80px rgba(0, 0, 0, .5), 0 0 0 1px rgba(233, 75, 172, .18);
}
.phone-screen {
	width: 100%; height: 100%;
	border-radius: 26px;
	background:
		radial-gradient(120px 120px at 60% 35%, rgba(233,75,172,.5), transparent 70%),
		radial-gradient(140px 140px at 30% 70%, rgba(91,155,220,.5), transparent 70%),
		repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 12px, transparent 12px 24px),
		#0d0824;
	display: flex; align-items: center; justify-content: center; text-align: center;
	color: var(--muted); font-size: .8rem; padding: 20px;
}

/* ---------- Sections ---------- */
section.block { padding: 64px 0; }
.section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.section-head h2 { font-size: clamp(1.6rem, 5vw, 2.3rem); }
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }

/* feature: live pin highlight */
.spotlight {
	background: linear-gradient(135deg, rgba(233,75,172,.14), rgba(91,155,220,.12));
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 32px 24px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: center;
}
.spotlight .tag {
	display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .12em;
	text-transform: uppercase; color: #fff;
	background: linear-gradient(135deg, var(--pink), var(--pink-dark));
	padding: 6px 12px; border-radius: 999px; margin-bottom: 14px;
}
.spotlight h3 { font-size: clamp(1.5rem, 5vw, 2rem); }
.spotlight p { color: var(--muted); margin: 0 0 18px; }
.spotlight .media {
	aspect-ratio: 16 / 11;
	border-radius: 14px;
	background:
		radial-gradient(160px 160px at 70% 30%, rgba(233,75,172,.45), transparent 70%),
		radial-gradient(180px 180px at 25% 75%, rgba(91,155,220,.45), transparent 70%),
		#0d0824;
	border: 1px solid var(--border);
	display: flex; align-items: center; justify-content: center;
	color: var(--muted); font-size: .8rem; text-align: center; padding: 16px;
}
.text-link {
	display: inline-flex; align-items: center; gap: 6px;
	font-weight: 700; color: var(--pink);
}
.text-link::after { content: "→"; transition: transform .15s ease; }
.text-link:hover::after { transform: translateX(4px); }

/* feature grid */
.features {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
.card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
}
.card .ico { font-size: 1.8rem; margin-bottom: 10px; }
.card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.card p { color: var(--muted); font-size: .96rem; margin: 0; }

/* hamburg proof strip */
.proof {
	background: linear-gradient(135deg, var(--surface-2), var(--surface));
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 32px 24px;
	text-align: center;
}
.proof h3 { font-size: clamp(1.4rem, 4.5vw, 1.9rem); }
.proof p { color: var(--muted); max-width: 60ch; margin: 0 auto; }

/* screenshot gallery placeholders */
.shots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.shot {
	aspect-ratio: 9 / 18;
	border-radius: 16px;
	background:
		repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 14px, transparent 14px 28px),
		#0d0824;
	border: 1px dashed var(--border);
	display: flex; align-items: center; justify-content: center;
	color: var(--muted); font-size: .74rem; text-align: center; padding: 12px;
}

/* final CTA */
.final-cta {
	text-align: center;
	background:
		radial-gradient(700px 300px at 50% 0%, rgba(233,75,172,.3), transparent 60%),
		var(--bg-2);
	border-top: 1px solid var(--border);
	padding: 72px 0;
}
.final-cta h2 { font-size: clamp(1.7rem, 6vw, 2.6rem); }
.final-cta p { color: var(--muted); margin: 0 auto 28px; max-width: 46ch; }
.final-cta .badges { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
	background: var(--bg);
	border-top: 1px solid var(--border);
	padding: 44px 0 60px;
	font-size: .92rem;
}
.footer-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 48px;
	justify-content: space-between;
	align-items: flex-start;
}
.site-footer .logo img { height: 30px; margin-bottom: 12px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 8px; color: var(--muted); }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--text); }
.footer-bottom {
	margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--border);
	display: flex; flex-wrap: wrap; gap: 6px 18px; justify-content: space-between;
	color: var(--muted); font-size: .84rem;
}

/* ---------- Responsive up-scaling ---------- */
@media (min-width: 720px) {
	.hero { padding: 84px 0 96px; }
	.hero-grid { grid-template-columns: 1.1fr .9fr; }
	.spotlight { grid-template-columns: 1fr 1fr; padding: 44px 40px; }
	.features { grid-template-columns: repeat(3, 1fr); }
	.shots { grid-template-columns: repeat(4, 1fr); }
	section.block { padding: 84px 0; }
}
@media (min-width: 1000px) {
	.hero h1 { font-size: 3.6rem; }
}

/* ---------- Motion layer ---------- */
@keyframes rise {
	from { opacity: 0; transform: translate3d(0, 22px, 0); }
	to   { opacity: 1; transform: none; }
}
@keyframes drift-a {
	0%   { transform: translate3d(0, 0, 0) scale(1); }
	50%  { transform: translate3d(-6%, 4%, 0) scale(1.12); }
	100% { transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes drift-b {
	0%   { transform: translate3d(0, 0, 0) scale(1.06); }
	50%  { transform: translate3d(7%, -5%, 0) scale(0.94); }
	100% { transform: translate3d(0, 0, 0) scale(1.06); }
}
@keyframes shimmer {
	0%   { background-position: 0% 50%; }
	100% { background-position: 200% 50%; }
}
@keyframes float-y {
	0%   { transform: translate3d(0, 0, 0); }
	50%  { transform: translate3d(0, -12px, 0); }
	100% { transform: translate3d(0, 0, 0); }
}
@keyframes ping {
	0%   { transform: scale(.6); opacity: .75; }
	70%  { opacity: 0; }
	100% { transform: scale(2.6); opacity: 0; }
}
@keyframes blink {
	0%, 100% { opacity: 1; }
	50%      { opacity: .35; }
}
@keyframes drift-c {
	0%   { transform: translate3d(-50%, 0, 0) scale(1); }
	50%  { transform: translate3d(-50%, 3%, 0) scale(1.14); }
	100% { transform: translate3d(-50%, 0, 0) scale(1); }
}
@keyframes grow-bar { to { transform: scaleX(1); } }

/* scroll progress bar (scroll-driven, zero JS; hidden where unsupported) */
.scroll-bar {
	position: fixed; inset: 0 0 auto 0; height: 2px; z-index: 60;
	background: linear-gradient(90deg, var(--pink), var(--blue-light));
	transform: scaleX(0); transform-origin: 0 50%; pointer-events: none;
}
@supports (animation-timeline: scroll()) {
	.scroll-bar { animation: grow-bar linear both; animation-timeline: scroll(root block); }
}

/* header condenses once you start scrolling */
.site-header { transition: background .3s ease, box-shadow .3s ease; }
.site-header.scrolled {
	background: rgba(11, 6, 24, 0.92);
	box-shadow: 0 8px 30px rgba(0, 0, 0, .35);
}
.nav-cta { transition: transform .18s ease, box-shadow .18s ease; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(233, 75, 172, .38); }

/* drifting aurora blobs behind the hero */
.hero { overflow: hidden; }
.hero::before, .hero::after {
	content: "";
	position: absolute; z-index: 0;
	border-radius: 50%;
	pointer-events: none;
	will-change: transform;
}
.hero::before {
	width: 62vw; height: 62vw; max-width: 620px; max-height: 620px;
	top: -18%; right: -12%;
	background: radial-gradient(circle, rgba(233, 75, 172, .34), transparent 68%);
	animation: drift-a 22s ease-in-out infinite;
}
.hero::after {
	width: 56vw; height: 56vw; max-width: 560px; max-height: 560px;
	bottom: -22%; left: -14%;
	background: radial-gradient(circle, rgba(91, 155, 220, .30), transparent 68%);
	animation: drift-b 27s ease-in-out infinite;
}
.hero .wrap { position: relative; z-index: 1; }

/* staggered hero entrance */
.hero .eyebrow,
.hero h1,
.hero p.lead,
.hero .badges,
.hero-note,
.hero-visual {
	animation: rise .8s cubic-bezier(.22, .61, .36, 1) both;
}
.hero .eyebrow  { animation-delay: .05s; }
.hero h1        { animation-delay: .13s; }
.hero p.lead    { animation-delay: .21s; }
.hero .badges   { animation-delay: .29s; }
.hero-note      { animation-delay: .37s; }
.hero-visual    { animation-delay: .30s; }

/* slow shimmer across the gradient headline */
.hero h1 .grad {
	background: linear-gradient(100deg, var(--pink), var(--blue-light), var(--pink));
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	animation: shimmer 7s linear infinite;
}

/* phone floats, with a live pin pulsing on the map */
.phone-frame {
	position: relative;
	animation: float-y 7s ease-in-out infinite;
	will-change: transform;
}
.live-dot {
	position: absolute; top: 38%; left: 46%;
	width: 14px; height: 14px; border-radius: 50%;
	background: var(--pink);
	box-shadow: 0 0 0 3px rgba(11, 6, 24, .75), 0 0 18px rgba(233, 75, 172, .9);
	z-index: 2;
}
.live-dot::before, .live-dot::after {
	content: "";
	position: absolute; inset: -3px;
	border-radius: 50%;
	border: 2px solid var(--pink);
	animation: ping 2.8s cubic-bezier(0, .55, .45, 1) infinite;
}
.live-dot::after { animation-delay: 1.4s; }
.live-badge {
	position: absolute; top: 22px; right: -10px; z-index: 3;
	display: inline-flex; align-items: center; gap: 6px;
	font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
	color: #fff; background: rgba(11, 6, 24, .82);
	border: 1px solid rgba(233, 75, 172, .5);
	border-radius: 999px; padding: 6px 11px;
	backdrop-filter: blur(6px);
}
.live-badge i {
	width: 7px; height: 7px; border-radius: 50%; background: var(--pink);
	animation: blink 1.6s ease-in-out infinite;
}

/* interactive lift on cards, shots and the spotlight */
.card, .shot, .proof {
	transition: transform .25s cubic-bezier(.22, .61, .36, 1), border-color .25s ease, box-shadow .25s ease;
}
.card:hover, .proof:hover {
	transform: translateY(-4px);
	border-color: rgba(233, 75, 172, .45);
	box-shadow: 0 18px 40px rgba(0, 0, 0, .38);
}
.card .ico { transition: transform .25s cubic-bezier(.34, 1.56, .64, 1); }
.card:hover .ico { transform: scale(1.18) rotate(-6deg); }
.shot { overflow: hidden; }
.shot img { transition: transform .5s cubic-bezier(.22, .61, .36, 1); }
.shot:hover img { transform: scale(1.06); }
.spotlight .media img { transition: transform .6s cubic-bezier(.22, .61, .36, 1); }
.spotlight:hover .media img { transform: scale(1.04); }

/* scroll reveal (class is added by JS, so no-JS keeps everything visible) */
.reveal {
	opacity: 0;
	transform: translate3d(0, 24px, 0);
	transition: opacity .7s ease, transform .7s cubic-bezier(.22, .61, .36, 1);
}
.reveal.in { opacity: 1; transform: none; }

/* glow pulse behind the closing CTA */
.final-cta { position: relative; overflow: hidden; }
.final-cta::before {
	content: "";
	position: absolute; top: -40%; left: 50%; width: 90vw; height: 90vw;
	max-width: 760px; max-height: 760px;
	transform: translate3d(-50%, 0, 0);
	background: radial-gradient(circle, rgba(233, 75, 172, .22), transparent 65%);
	animation: drift-c 20s ease-in-out infinite;
	pointer-events: none;
}
.final-cta .wrap { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	* {
		transition: none !important;
		animation: none !important;
	}
	.reveal { opacity: 1 !important; transform: none !important; }
	.scroll-bar { display: none; }
}

/* ---------- Social proof ---------- */
.proof {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}
.proof-stars {
	margin: 0;
	font-size: .95rem;
	font-weight: 700;
	color: var(--text);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.proof-stars .stars {
	color: #ffc93c;
	letter-spacing: 2px;
	font-size: 1.05rem;
}
.proof-quote {
	margin: 0;
	max-width: 44ch;
	font-size: 1.08rem;
	line-height: 1.5;
	color: var(--text);
	font-style: italic;
}
.proof-quote .proof-trans {
	display: block;
	margin-top: 6px;
	font-size: .9rem;
	font-style: normal;
	color: var(--muted);
}
.proof-quote cite {
	display: block;
	margin-top: 10px;
	font-size: .82rem;
	font-style: normal;
	font-weight: 700;
	letter-spacing: .04em;
	color: var(--muted);
}
