:root {
	--bg-blue: #2f93c9;
	--panel: #005d86;
	--panel-2: #024c6c;
	--accent: #9be6ff;
	--white: #ffffff;
	--radius: 22px;
	--shadow: 0 18px 55px rgba(0, 0, 0, .22);
}

* {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

body {
	font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	background: var(--bg-blue);
	color: var(--white);
	overflow-x: hidden;
}

.bg-wrap {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.bg-gradient {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(900px 500px at 20% 20%, rgba(255, 255, 255, .14), transparent 60%),
		radial-gradient(900px 500px at 80% 70%, rgba(0, 93, 134, .18), transparent 60%);
}

.bg-grid {
	position: absolute;
	inset: 0;
	opacity: .12;
	background-image:
		linear-gradient(rgba(255, 255, 255, .25) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .25) 1px, transparent 1px);
	background-size: 48px 48px;
	transform: translateZ(0);
}

/* Card */
.reno-card {
	position: relative;
	z-index: 1;
	background: linear-gradient(180deg, var(--panel), var(--panel-2));
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	border: 1px solid rgba(255, 255, 255, .12);
}

.accent-bar {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 10px;
	background: linear-gradient(180deg, rgba(255, 255, 255, .85), rgba(155, 230, 255, .25));
}

.corner-glow {
	position: absolute;
	right: -220px;
	top: -220px;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle at 30% 30%,
			rgba(155, 230, 255, .18),
			rgba(155, 230, 255, .08) 35%,
			transparent 60%);
	filter: blur(22px);
	opacity: .6;
}

.icon-badge {
	width: 42px;
	height: 42px;
	min-width: 42px;
	min-height: 42px;
	flex-shrink: 0;
	flex-grow: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .16);
}
}

.letter-space {
	letter-spacing: .12em;
	font-size: .78rem;
}

.display-title {
	font-weight: 800;
	letter-spacing: .02em;
	text-transform: uppercase;
	line-height: 1.05;
	font-size: clamp(2.1rem, 3.4vw, 3.2rem);
	margin: 0;
}

.text-accent {
	color: var(--accent);
}

.lead-sub {
	color: rgba(255, 255, 255, .78);
	font-size: clamp(1rem, 1.2vw, 1.1rem);
	margin: 0;
}

.contact-box {
	margin-top: 18px;
	padding: 18px 18px;
	border-radius: 18px;
	background: rgba(0, 0, 0, .12);
	border: 1px solid rgba(255, 255, 255, .14);
}

.contact-ico {
	width: 42px;
	height: 42px;
	min-width: 42px;
	min-height: 42px;
	flex-shrink: 0;
	flex-grow: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .16);
}

.contact-title {
	font-size: .95rem;
	color: rgba(255, 255, 255, .72);
	font-weight: 600;
}

.email-link {
	font-weight: 700;
	text-decoration: none;
	color: var(--white);
	padding: 6px 10px;
	border-radius: 12px;
	background: rgba(255, 255, 255, .10);
	border: 1px solid rgba(255, 255, 255, .14);
}

.email-link:hover {
	color: var(--white);
	background: rgba(255, 255, 255, .14);
}

.encourage-btn {
	border-radius: 12px;
}

.copy-hint {
	min-height: 20px;
	font-size: .9rem;
	color: rgba(255, 255, 255, .75);
}

.footer-note {
	border-top: 1px dashed rgba(255, 255, 255, .18);
	padding-top: 14px;
}

.tiny-muted {
	position: relative;
	z-index: 1;
	color: rgba(255, 255, 255, .70);
	font-size: .85rem;
}

@media (max-width: 576px) {
	.accent-bar {
		width: 8px;
	}

	.contact-box {
		padding: 16px;
	}
}