:root {
	--primary: #3E549A;
	--secondary: #52BAC3;
	--bg: #F8FAFD;
	--surface: #FFFFFF;
	--primary-soft: #EEF1FA;
	--secondary-soft: #E5F4F6;
	--hairline: #E3E8F0;
	--text: #374151;
	--muted: #546E7A;
	--open-bg: #E6F8EE;
	--open-fg: #0F8A4A;
	--closed-bg: #F1F3F5;
	--closed-fg: #546E7A;
	--accent: #FFB547;
	--shadow-sm: 0 2px 8px rgba(62, 84, 154, 0.05);
	--shadow: 0 12px 40px rgba(62, 84, 154, 0.1);
	--shadow-lg: 0 24px 56px rgba(62, 84, 154, 0.14);
	--radius: 16px;
	--radius-lg: 24px;
	--max: 1120px;
	--font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
	--track-display: -0.03em;
	--track-heading: -0.02em;
	--track-title: -0.015em;
	--track-caps: 0.06em;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

body {
	margin: 0;
	font-family: var(--font);
	font-size: 1rem;
	font-weight: 500;
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
	letter-spacing: normal;
}

h1, h2, h3, h4 {
	font-family: var(--font);
	font-weight: 800;
	color: var(--primary);
	letter-spacing: normal;
	line-height: 1.2;
}

p { letter-spacing: normal; }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

.container {
	width: min(100% - 32px, var(--max));
	margin-inline: auto;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(248, 250, 253, 0.82);
	backdrop-filter: blur(18px) saturate(160%);
	-webkit-backdrop-filter: blur(18px) saturate(160%);
	border-bottom: 1px solid rgba(62, 84, 154, 0.08);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 0;
}

.brand {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.brand:hover { text-decoration: none; }

.brand-logo {
	display: block;
	height: 36px;
	width: auto;
	max-width: 10.5rem;
	object-fit: contain;
}

.nav {
	display: none;
	gap: 24px;
	align-items: center;
}

.nav a {
	color: var(--muted);
	font-weight: 600;
	font-size: 0.9375rem;
	text-decoration: none;
	transition: color 0.2s ease;
}

.nav a:hover { color: var(--primary); text-decoration: none; }

.header-inner > .btn-primary { display: none; }

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 999px;
	font-family: var(--font);
	font-weight: 700;
	font-size: 0.9375rem;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-primary {
	background: linear-gradient(135deg, #3E549A 0%, #4d65b0 100%);
	color: #fff;
	box-shadow: 0 6px 20px rgba(62, 84, 154, 0.32);
}

.btn-primary:hover {
	box-shadow: 0 10px 28px rgba(62, 84, 154, 0.38);
}

.btn-secondary {
	background: var(--secondary);
	color: #fff;
	box-shadow: 0 4px 14px rgba(82, 186, 195, 0.35);
}

.btn-outline {
	background: rgba(255, 255, 255, 0.7);
	color: var(--primary);
	border: 1.5px solid rgba(62, 84, 154, 0.18);
	box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
	background: #fff;
	border-color: rgba(62, 84, 154, 0.28);
}

.btn-light {
	background: #fff;
	color: var(--primary);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.btn-light:hover {
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.menu-toggle {
	display: inline-flex;
	background: none;
	border: none;
	padding: 8px;
	cursor: pointer;
	color: var(--primary);
}

.mobile-nav {
	display: none;
	flex-direction: column;
	gap: 8px;
	padding: 0 0 16px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
	padding: 10px 12px;
	border-radius: 10px;
	color: var(--muted);
	font-weight: 600;
	font-size: 0.9375rem;
	text-decoration: none;
}

.mobile-nav a:hover { background: var(--primary-soft); color: var(--primary); text-decoration: none; }

.mobile-nav-cta {
	margin-top: 4px;
	justify-content: center;
}

.mobile-nav-cta:hover { background: linear-gradient(135deg, #3E549A 0%, #4d65b0 100%); color: #fff; }

/* Hero */
.hero {
	position: relative;
	overflow: hidden;
	padding: 56px 0 64px;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 90% 70% at 10% -10%, rgba(82, 186, 195, 0.14) 0%, transparent 55%),
		radial-gradient(ellipse 70% 55% at 95% 15%, rgba(62, 84, 154, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

.hero > .container { position: relative; z-index: 1; }

.hero-grid {
	display: grid;
	gap: 48px;
	align-items: center;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 18px;
	padding: 6px 14px 6px 8px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(62, 84, 154, 0.1);
	box-shadow: var(--shadow-sm);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: normal;
	color: var(--primary);
}

.hero-eyebrow-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--secondary);
	box-shadow: 0 0 0 3px rgba(82, 186, 195, 0.25);
	flex-shrink: 0;
}

.text-gradient {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-copy h1 {
	margin: 0 0 16px;
	font-size: clamp(2rem, 5.2vw, 3rem);
	line-height: 1.1;
	font-weight: 800;
	color: var(--primary);
	letter-spacing: var(--track-display);
}

.hero-copy p {
	margin: 0 0 24px;
	font-size: 1.0625rem;
	font-weight: 500;
	line-height: 1.6;
	color: var(--muted);
	max-width: 34rem;
}

.hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: normal;
	border: 1px solid transparent;
}

.pill-open { background: var(--open-bg); color: var(--open-fg); border-color: rgba(15, 138, 74, 0.12); }
.pill-closed { background: var(--closed-bg); color: var(--closed-fg); border-color: rgba(84, 110, 122, 0.1); }
.pill-accent { background: #FFF4E5; color: #B45309; border-color: rgba(180, 83, 9, 0.12); }

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

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

.play-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 11px 18px 11px 14px;
	background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
	color: #fff;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
	text-decoration: none;
	font-family: var(--font);
	font-size: 0.625rem;
	font-weight: 600;
	line-height: 1.2;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.play-badge-label {
	display: block;
	letter-spacing: var(--track-caps);
	text-transform: uppercase;
}

.play-badge strong {
	display: block;
	font-size: 1.0625rem;
	font-weight: 700;
	letter-spacing: normal;
	text-transform: none;
}

.play-badge:hover {
	text-decoration: none;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.play-icon {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
}

/* Phone mockup */
.phone-wrap {
	display: flex;
	justify-content: center;
	position: relative;
	padding: 12px 0;
}

.phone-wrap::before {
	content: "";
	position: absolute;
	inset: 8% 0;
	background: radial-gradient(ellipse at center, rgba(62, 84, 154, 0.14) 0%, transparent 68%);
	filter: blur(20px);
	pointer-events: none;
}

.phone {
	position: relative;
	width: min(100%, 300px);
	background: var(--surface);
	border-radius: 32px;
	border: 1px solid rgba(255, 255, 255, 0.9);
	box-shadow:
		var(--shadow-lg),
		0 0 0 1px rgba(62, 84, 154, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.95);
	overflow: hidden;
}

.phone-notch {
	height: 26px;
	background: linear-gradient(180deg, var(--primary-soft) 0%, var(--surface) 100%);
}

.phone-bar {
	padding: 16px 18px 12px;
	background: var(--surface);
	border-bottom: 1px solid var(--hairline);
}

.phone-bar h2 {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 800;
	letter-spacing: var(--track-title);
	color: var(--primary);
}

.phone-bar p {
	margin: 4px 0 0;
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--muted);
}

.phone-body { padding: 14px; background: linear-gradient(180deg, var(--bg) 0%, #eef2f8 100%); }

.store-card {
	background: var(--surface);
	border-radius: 14px;
	border: 1px solid rgba(62, 84, 154, 0.06);
	padding: 12px;
	margin-bottom: 10px;
	box-shadow: var(--shadow-sm);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-card:last-child { margin-bottom: 0; }

.store-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(62, 84, 154, 0.08);
}

.store-top {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.store-avatar {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: linear-gradient(145deg, var(--primary-soft) 0%, #fff 100%);
	color: var(--primary);
	font-weight: 800;
	font-size: 0.875rem;
	border: 1px solid rgba(62, 84, 154, 0.08);
	display: grid;
	place-items: center;
	flex-shrink: 0;
}

.store-meta { flex: 1; min-width: 0; }

.store-name {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 800;
	letter-spacing: var(--track-title);
	color: var(--primary);
}

.store-sub {
	margin: 4px 0 0;
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--muted);
}

.status {
	display: inline-block;
	margin-top: 8px;
	padding: 3px 8px;
	border-radius: 999px;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: normal;
}

.status-open { background: var(--open-bg); color: var(--open-fg); }
.status-closed { background: var(--closed-bg); color: var(--closed-fg); }
.status-break { background: #FFF4E5; color: #B45309; }

/* Sections */
section { padding: 72px 0; }

.section-alt {
	background: var(--surface);
	border-block: 1px solid rgba(62, 84, 154, 0.06);
}

.section-head {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 44px;
}

.section-head h2 {
	margin: 0 0 10px;
	font-size: clamp(1.625rem, 3vw, 2.125rem);
	font-weight: 800;
	letter-spacing: var(--track-heading);
	color: var(--primary);
}

.section-head p {
	margin: 0;
	font-size: 1.0625rem;
	font-weight: 500;
	line-height: 1.6;
	color: var(--muted);
}

.about-grid {
	display: grid;
	gap: 20px;
}

.about-card {
	background: var(--bg);
	border: 1px solid transparent;
	border-radius: var(--radius-lg);
	padding: 28px;
	box-shadow: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.about-card:hover {
	transform: translateY(-4px);
	border-color: rgba(62, 84, 154, 0.08);
	box-shadow: var(--shadow);
}

.about-card h3 {
	margin: 0 0 10px;
	font-size: 1.125rem;
	font-weight: 800;
	letter-spacing: var(--track-title);
	color: var(--primary);
}

.about-card p {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.6;
	color: var(--muted);
}

.features-grid {
	display: grid;
	gap: 16px;
}

.feature-card {
	background: var(--surface);
	border: 1px solid rgba(62, 84, 154, 0.08);
	border-radius: var(--radius-lg);
	padding: 26px;
	box-shadow: var(--shadow-sm);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
	transform: translateY(-4px);
	border-color: rgba(82, 186, 195, 0.35);
	box-shadow: var(--shadow);
}

.feature-icon {
	width: 52px;
	height: 52px;
	border-radius: 16px;
	background: linear-gradient(145deg, var(--primary-soft) 0%, var(--secondary-soft) 100%);
	color: var(--primary);
	border: 1px solid rgba(62, 84, 154, 0.08);
	display: grid;
	place-items: center;
	margin-bottom: 16px;
}

.feature-card h3 {
	margin: 0 0 8px;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: var(--track-title);
	color: var(--primary);
}

.feature-card p {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.55;
	color: var(--muted);
}

.owner-band {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #3E549A 0%, var(--secondary) 100%);
	color: #fff;
	border-radius: var(--radius-lg);
	padding: 40px 28px;
	text-align: center;
	box-shadow: var(--shadow);
}

.owner-band::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 45%),
		radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
	pointer-events: none;
}

.owner-band > * { position: relative; z-index: 1; }

.owner-band h3 {
	margin: 0 0 10px;
	font-size: 1.375rem;
	font-weight: 800;
	letter-spacing: var(--track-heading);
	color: #fff;
}

.owner-band p {
	margin: 0 auto 22px;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.6;
	opacity: 0.95;
	max-width: 520px;
}

.download-box {
	text-align: center;
	background: linear-gradient(180deg, #fff 0%, var(--primary-soft) 100%);
	border: 1px solid rgba(62, 84, 154, 0.1);
	border-radius: var(--radius-lg);
	padding: 48px 28px;
	box-shadow:
		var(--shadow),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.download-box h2 {
	margin: 0 0 8px;
	font-size: 1.625rem;
	font-weight: 800;
	letter-spacing: var(--track-heading);
	color: var(--primary);
}

.download-box p {
	margin: 0 0 20px;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.55;
	color: var(--muted);
}

.site-footer {
	background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
	border-top: 1px solid rgba(62, 84, 154, 0.08);
	padding: 40px 0 28px;
}

.footer-grid {
	display: grid;
	gap: 20px;
}

.footer-brand p {
	margin: 8px 0 0;
	color: var(--muted);
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.5;
	max-width: 280px;
}

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

.footer-links a {
	color: var(--muted);
	font-weight: 600;
	font-size: 0.9375rem;
	text-decoration: none;
}

.footer-links a:hover { color: var(--primary); text-decoration: none; }

.footer-copy {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--hairline);
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--muted);
	text-align: center;
}

@media (min-width: 720px) {
	.nav { display: flex; }
	.header-inner > .btn-primary { display: inline-flex; }
	.menu-toggle { display: none; }
	.mobile-nav { display: none !important; }

	.hero { padding: 72px 0 88px; }

	.hero-grid {
		grid-template-columns: 1.05fr 0.95fr;
		gap: 56px;
	}

	.about-grid { grid-template-columns: 1fr 1fr; }
	.features-grid { grid-template-columns: repeat(2, 1fr); }

	.footer-grid {
		grid-template-columns: 1fr auto;
		align-items: start;
		justify-content: space-between;
	}
}

@media (min-width: 960px) {
	.features-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (prefers-reduced-motion: no-preference) {
	.phone { animation: phone-float 7s ease-in-out infinite; }
}

@keyframes phone-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

/* Legal pages */
.legal-page .header-inner > .btn-primary { display: none; }

.legal-main {
	padding: 40px 0 56px;
}

.legal-content {
	max-width: 720px;
}

.legal-content h1 {
	margin: 0 0 12px;
	font-size: clamp(1.625rem, 4vw, 2rem);
	font-weight: 800;
	letter-spacing: var(--track-heading);
	color: var(--primary);
	line-height: 1.2;
}

.legal-content h2 {
	margin: 1.75rem 0 0.5rem;
	font-size: 1.125rem;
	font-weight: 800;
	letter-spacing: var(--track-title);
	color: var(--primary);
	line-height: 1.3;
}

.legal-content p,
.legal-content li {
	margin: 0.5rem 0;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.6;
	color: var(--text);
}

.legal-content ul {
	margin: 0.5rem 0;
	padding-left: 1.25rem;
}

.legal-content a {
	color: var(--primary);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.legal-content a:hover { color: var(--secondary); }

.legal-content .meta {
	color: var(--muted);
	font-size: 0.9375rem;
	margin-bottom: 1.5rem;
}

.legal-footer {
	padding: 24px 0;
}

.legal-footer .footer-copy {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}
