:root {
	--ink: #0f172a;
	--mist: #e5eef9;
	--paper: #f8fbff;
	--cyan: #16d9d2;
	--blue: #3d6cf4;
	--gold: #ffbc42;
	--card: rgba(255, 255, 255, 0.7);
	--stroke: rgba(15, 23, 42, 0.09);
}

* { box-sizing: border-box; }

body {
	margin: 0;
	min-height: 100vh;
	font-family: 'DM Sans', sans-serif;
	color: var(--ink);
	background:
		radial-gradient(circle at 10% 10%, rgba(22, 217, 210, 0.25), transparent 40%),
		radial-gradient(circle at 90% 20%, rgba(61, 108, 244, 0.25), transparent 45%),
		linear-gradient(135deg, #f3f8ff 0%, #ecf4ff 52%, #fff8e8 100%);
}

/* ── Layout ──────────────────────────────────────────────── */

.grid-noise {
	position: fixed;
	inset: 0;
	pointer-events: none;
	opacity: 0.25;
	background-image:
		linear-gradient(to right, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
	background-size: 24px 24px;
	mask-image: radial-gradient(circle at 50% 40%, black 20%, transparent 85%);
}

.wrap {
	width: min(980px, 92vw);
	margin: 0 auto;
	padding: 48px 0 64px;
	position: relative;
	z-index: 1;
}

/* ── Hero ────────────────────────────────────────────────── */

.hero {
	background: var(--card);
	border: 1px solid var(--stroke);
	border-radius: 28px;
	backdrop-filter: blur(8px);
	padding: 40px 28px;
	box-shadow: 0 18px 42px rgba(16, 34, 72, 0.12);
	animation: rise 0.8s ease-out both;
}

.tag {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	font-size: 12px;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	font-weight: 700;
	color: #1f3a8a;
	background: rgba(61, 108, 244, 0.14);
	border: 1px solid rgba(61, 108, 244, 0.2);
	border-radius: 999px;
	padding: 8px 14px;
}

h1 {
	margin: 18px 0 10px;
	font-family: 'Sora', sans-serif;
	font-size: clamp(2rem, 5vw, 3.6rem);
	line-height: 1.05;
	letter-spacing: -0.03em;
}

.accent {
	background: linear-gradient(90deg, var(--blue), var(--cyan));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.lead {
	max-width: 700px;
	color: #334155;
	font-size: 1.05rem;
	line-height: 1.7;
	margin-bottom: 22px;
}

/* ── Buttons ─────────────────────────────────────────────── */

.actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.btn {
	text-decoration: none;
	font-weight: 700;
	border-radius: 12px;
	padding: 12px 18px;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary {
	background: linear-gradient(120deg, var(--blue), #2446be);
	color: #fff;
	box-shadow: 0 10px 20px rgba(36, 70, 190, 0.3);
}

.btn-ghost {
	border: 1px solid rgba(15, 23, 42, 0.16);
	color: #0f172a;
	background: rgba(255, 255, 255, 0.74);
}

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

/* ── Profile cards ───────────────────────────────────────── */

.cards {
	margin-top: 24px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 14px;
}

.card {
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid var(--stroke);
	border-radius: 18px;
	padding: 18px;
	animation: rise 0.9s ease-out both;
}

.card h3 {
	margin: 0 0 6px;
	font-family: 'Sora', sans-serif;
	font-size: 1rem;
}

.card p {
	margin: 0;
	color: #334155;
	font-size: 0.95rem;
	line-height: 1.6;
}

.card:nth-child(1) { animation-delay: 0.08s; }
.card:nth-child(2) { animation-delay: 0.15s; }
.card:nth-child(3) { animation-delay: 0.22s; }

/* ── Section label ───────────────────────────────────────── */

.section-label {
	margin: 40px 0 14px;
	font-family: 'Sora', sans-serif;
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 700;
	color: #64748b;
}

/* ── App card ────────────────────────────────────────────── */

.app-card {
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid var(--stroke);
	border-radius: 22px;
	padding: 28px 24px;
	display: flex;
	align-items: center;
	gap: 22px;
	text-decoration: none;
	color: inherit;
	animation: rise 0.9s 0.3s ease-out both;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.app-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 44px rgba(16, 34, 72, 0.14);
}

.app-icon {
	flex-shrink: 0;
	width: 62px;
	height: 62px;
	border-radius: 16px;
	background: linear-gradient(135deg, var(--blue), var(--cyan));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
}

.app-info { flex: 1; }

.app-info h3 {
	margin: 0 0 4px;
	font-family: 'Sora', sans-serif;
	font-size: 1.15rem;
}

.app-info p {
	margin: 0;
	color: #334155;
	font-size: 0.95rem;
	line-height: 1.5;
}

.app-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: 8px;
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--blue);
	letter-spacing: 0.04em;
}

.app-arrow {
	flex-shrink: 0;
	opacity: 0.35;
}

/* ── Footer ──────────────────────────────────────────────── */

footer {
	margin-top: 18px;
	text-align: center;
	color: #475569;
	font-size: 0.9rem;
}

/* ── Animation ───────────────────────────────────────────── */

@keyframes rise {
	from { opacity: 0; transform: translateY(18px); }
	to   { opacity: 1; transform: translateY(0); }
}
