:root {
	--bg: radial-gradient(140% 140% at 10% 10%, #f5f8ff 0%, #fff9f3 35%, #ffffff 100%);
	--text: #1f2937;
	--muted: #6b7280;
	--card: rgba(255, 255, 255, 0.85);
	--shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
	--radius: 22px;
	--blue: #4f46e5;
	--green: #10b981;
	--orange: #fb923c;
	--outline: #e5e7eb;
}

* { box-sizing: border-box; }

body {
	margin: 0;
	min-height: 100vh;
	font-family: "Inter", system-ui, -apple-system, sans-serif;
	color: var(--text);
	background: var(--bg);
	position: relative;
	overflow-x: hidden;
	line-height: 1.5;
}

.bg-layer {
	position: fixed;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(circle at 80% 10%, rgba(79, 70, 229, 0.08), transparent 40%),
							radial-gradient(circle at 10% 80%, rgba(16, 185, 129, 0.08), transparent 45%);
	z-index: -1;
}

.topbar {
	max-width: 1100px;
	margin: 0 auto;
	padding: 20px clamp(16px, 4vw, 28px);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.logo-mark {
	width: 32px;
	height: 32px;
	border-radius: 10px;
	background: linear-gradient(135deg, #4f46e5, #8b5cf6);
	box-shadow: 0 10px 25px rgba(79, 70, 229, 0.35);
}

.logo-text { font-size: 1rem; }

.top-link { text-decoration: none; color: #4b5563; font-weight: 600; }

.page {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 clamp(16px, 5vw, 32px) 80px;
}

.hero {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(24px, 4vw, 50px);
	align-items: center;
	margin-top: 10px;
}

.hero-copy h1 {
	font-size: clamp(2.4rem, 4vw, 3.4rem);
	line-height: 1.08;
	letter-spacing: -0.04em;
	margin: 12px 0 12px;
}

.color-green { color: var(--green); }
.color-blue { color: #3b82f6; }

.lede { margin: 0 0 18px; color: var(--muted); }

.chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(79, 70, 229, 0.08);
	color: #4338ca;
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.cta {
	padding: 14px 18px;
	border-radius: 14px;
	border: none;
	background: linear-gradient(135deg, #4f46e5, #8b5cf6);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 16px 30px rgba(79, 70, 229, 0.25);
	transition: transform 140ms ease;
}

.cta:hover { transform: translateY(-1px); }
.cta:active { transform: translateY(0); }

.cta.dark {
	background: #111827;
	box-shadow: none;
}

.perks {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	color: #4b5563;
	font-size: 0.95rem;
	font-weight: 600;
}

.hero-phone {
	justify-self: center;
	width: min(340px, 90vw);
	padding: 16px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
	border-radius: 32px;
	box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.6);
}

.phone-top { display: flex; justify-content: center; gap: 10px; margin-bottom: 12px; }
.camera { width: 10px; height: 10px; border-radius: 50%; background: #111827; }
.speaker { width: 64px; height: 6px; border-radius: 999px; background: #d1d5db; }

.phone-screen {
	background: #f9fafb;
	border-radius: 24px;
	padding: 14px;
	border: 1px solid #e5e7eb;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.screen-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.screen-sub { margin: 0; font-size: 0.9rem; color: #6b7280; }
.screen-title { margin: 2px 0 0; font-weight: 700; }
.pill-btn { border: none; padding: 8px 12px; border-radius: 999px; background: rgba(79, 70, 229, 0.1); color: #4338ca; font-weight: 700; }

.task-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	padding: 10px 12px;
	border-radius: 14px;
	border: 1px solid #e5e7eb;
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
	margin-bottom: 8px;
}

.task-left { display: flex; gap: 10px; align-items: center; }
.dot { width: 14px; height: 14px; border-radius: 50%; border: 3px solid rgba(17, 24, 39, 0.06); }
.dot.green { background: #10b981; }
.dot.yellow { background: #f59e0b; }
.dot.blue { background: #3b82f6; }
.task-title { margin: 0; font-weight: 700; }
.task-meta { margin: 2px 0 0; color: #6b7280; font-size: 0.9rem; }
.time { color: #6b7280; font-size: 0.9rem; }

.features { text-align: center; margin: 70px 0 40px; }
.features h2 { margin: 0 0 8px; font-size: 1.6rem; }
.feature-sub { margin: 0 0 24px; color: var(--muted); }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.feature { background: var(--card); border: 1px solid rgba(229, 231, 235, 0.9); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); text-align: left; }
.feature h3 { margin: 10px 0 8px; }
.feature p { margin: 0; color: var(--muted); }
.icon { width: 38px; height: 38px; border-radius: 12px; }
.icon-blue { background: linear-gradient(135deg, #4f46e5, #60a5fa); }
.icon-green { background: linear-gradient(135deg, #10b981, #34d399); }
.icon-orange { background: linear-gradient(135deg, #fb923c, #f59e0b); }

.cta-banner {
	margin: 40px 0;
	padding: 18px;
	border-radius: var(--radius);
	background: #0ea5e9;
	color: #fff;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 16px;
	align-items: center;
	box-shadow: 0 25px 50px rgba(14, 165, 233, 0.35);
}

.cta-label { margin: 0; font-weight: 700; font-size: 1.05rem; }
.cta-note { margin: 4px 0 0; color: rgba(255, 255, 255, 0.85); }

.footer {
	max-width: 1100px;
	margin: 0 auto 40px;
	padding: 0 clamp(16px, 4vw, 28px);
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--muted);
}

.logo.small .logo-mark { width: 26px; height: 26px; }
.logo.small .logo-text { font-size: 0.95rem; }
.footnote { margin: 0; font-size: 0.95rem; }

@media (max-width: 860px) {
	.hero { grid-template-columns: 1fr; }
	.hero-copy { text-align: center; }
	.perks { justify-content: center; }
	.hero-phone { order: -1; }
	.cta-banner { grid-template-columns: 1fr; }
}

.support-page { padding-bottom: 100px; }

.support-hero {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(24px, 4vw, 40px);
	align-items: start;
	margin-top: 16px;
}

.support-hero h1 {
	margin: 0 0 10px;
	font-size: clamp(2.1rem, 3.6vw, 3rem);
	letter-spacing: -0.03em;
}

.support-hero .lede { max-width: 720px; }

.support-meta {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
	margin-top: 18px;
}

.meta-card {
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(229, 231, 235, 0.9);
	border-radius: 16px;
	padding: 12px 14px;
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.meta-label { margin: 0 0 4px; color: var(--muted); font-weight: 600; font-size: 0.95rem; }
.meta-value { margin: 0; font-weight: 700; }

.status-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(16, 185, 129, 0.12);
	color: #047857;
	font-weight: 700;
	font-size: 0.9rem;
}

.support-card {
	background: var(--card);
	border: 1px solid rgba(229, 231, 235, 0.9);
	border-radius: var(--radius);
	padding: clamp(16px, 3vw, 26px);
	box-shadow: var(--shadow);
}

.support-card h2 { margin: 0 0 6px; }
.support-card .subhead { margin: 0 0 16px; color: var(--muted); }

.support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }

.field { display: flex; flex-direction: column; gap: 6px; }

.field label { font-weight: 700; font-size: 0.95rem; }

.field input,
.field select,
.field textarea {
	width: 100%;
	padding: 12px 12px;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	background: #fff;
	font: inherit;
	outline: none;
	transition: border-color 120ms ease, box-shadow 120ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	border-color: #4f46e5;
	box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}

.field textarea { min-height: 140px; resize: vertical; }

.inline-options { display: flex; flex-wrap: wrap; gap: 10px; }

.pill-option {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	background: #fff;
	font-weight: 600;
	cursor: pointer;
	user-select: none;
}

.pill-option input { accent-color: #4f46e5; }

.form-note { margin: 8px 0 0; color: var(--muted); font-size: 0.95rem; }

.form-status { margin: 10px 0 0; font-size: 0.95rem; color: var(--muted); }
.form-status.success { color: #047857; }
.form-status.error { color: #b91c1c; }

.pill-group { gap: 10px; }

.support-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }

.support-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	border-radius: 12px;
	text-decoration: none;
	color: #111827;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid #e5e7eb;
	font-weight: 700;
	box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.support-link:hover { background: #fff; }

@media (max-width: 860px) {
	.support-hero { grid-template-columns: 1fr; }
	.support-card { order: 2; }
	.support-hero-copy { order: 1; }
}

