:root {
	--ink: #0d1730;
	--muted: #5c6578;
	--line: #dce4ed;
	--paper: #ffffff;
	--soft: #f5f8fb;
	--aqua: #18c6b8;
	--green: #52c77e;
	--blue: #3268f0;
	--coral: #ff7b73;
	--shadow: 0 22px 60px rgba(26, 54, 93, 0.12);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.5;
	text-rendering: optimizeLegibility;
}

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

a {
	color: inherit;
	text-decoration: none;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	padding: 18px clamp(20px, 4vw, 64px);
	background: rgba(255, 255, 255, 0.88);
	border-bottom: 1px solid rgba(220, 228, 237, 0.8);
	backdrop-filter: blur(18px);
	transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 14px 34px rgba(13, 23, 48, 0.08);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 1.08rem;
	font-weight: 800;
	letter-spacing: 0;
}

.brand-mark {
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--blue), var(--aqua));
	color: #fff;
	font-weight: 800;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: clamp(18px, 3vw, 34px);
	color: var(--muted);
	font-size: 0.95rem;
	font-weight: 700;
}

.site-nav a {
	position: relative;
	padding: 8px 0;
}

a:focus-visible {
	outline: 3px solid rgba(24, 198, 184, 0.48);
	outline-offset: 4px;
}

.site-nav a::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 2px;
	background: var(--aqua);
	content: "";
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
	transform: scaleX(1);
}

.hero {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
	align-items: center;
	gap: clamp(32px, 5vw, 72px);
	min-height: calc(100vh - 76px);
	padding: clamp(48px, 7vw, 92px) clamp(20px, 4vw, 64px) clamp(40px, 5vw, 70px);
	overflow: hidden;
	background:
		linear-gradient(112deg, rgba(50, 104, 240, 0.08), transparent 36%),
		linear-gradient(16deg, rgba(82, 199, 126, 0.12), transparent 42%),
		#fbfdff;
}

.hero-copy {
	max-width: 620px;
}

.eyebrow,
.section-kicker {
	margin: 0 0 18px;
	color: var(--blue);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1 {
	margin-bottom: 24px;
	font-size: clamp(3.1rem, 6.4vw, 6.4rem);
	line-height: 0.94;
	letter-spacing: 0;
}

h2 {
	margin-bottom: 0;
	font-size: clamp(2rem, 3.8vw, 4rem);
	line-height: 1;
	letter-spacing: 0;
}

h3 {
	margin-bottom: 12px;
	font-size: 1.28rem;
	line-height: 1.18;
	letter-spacing: 0;
}

.hero-text {
	max-width: 550px;
	margin-bottom: 32px;
	color: var(--muted);
	font-size: clamp(1.05rem, 1.4vw, 1.28rem);
}

.primary-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	border-radius: 8px;
	background: var(--ink);
	color: #fff;
	font-weight: 800;
	box-shadow: 0 12px 22px rgba(13, 23, 48, 0.22);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-link:hover,
.primary-link:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 16px 28px rgba(13, 23, 48, 0.24);
}

.hero-visual {
	position: relative;
	width: min(100%, 950px);
	justify-self: end;
}

.hero-visual::before {
	position: absolute;
	inset: 13% 5% 5% 8%;
	z-index: 0;
	border-radius: 28px;
	background: linear-gradient(135deg, rgba(24, 198, 184, 0.16), rgba(255, 123, 115, 0.12));
	content: "";
	filter: blur(10px);
}

.hero-visual img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	aspect-ratio: 1400 / 735;
	border: 1px solid rgba(220, 228, 237, 0.8);
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.section {
	padding: clamp(74px, 9vw, 132px) clamp(20px, 4vw, 64px);
}

.intro-section {
	background: var(--paper);
}

.intro-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
	gap: clamp(32px, 7vw, 96px);
	align-items: start;
	max-width: 1180px;
	margin: 0 auto;
}

.intro-copy {
	color: var(--muted);
	font-size: clamp(1.02rem, 1.2vw, 1.18rem);
}

.intro-copy p:last-child {
	margin-bottom: 0;
}

.process-section {
	background:
		linear-gradient(180deg, #f6f9fc 0%, #ffffff 100%);
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.48fr);
	gap: clamp(28px, 5vw, 70px);
	align-items: end;
	max-width: 1180px;
	margin: 0 auto 38px;
}

.section-heading p {
	margin-bottom: 6px;
	color: var(--muted);
	font-size: 1.05rem;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	max-width: 1180px;
	margin: 0 auto;
}

.process-card {
	min-height: 268px;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 14px 34px rgba(13, 23, 48, 0.06);
}

.process-card:nth-child(2) {
	border-top-color: rgba(24, 198, 184, 0.72);
}

.process-card:nth-child(3) {
	border-top-color: rgba(255, 123, 115, 0.72);
}

.step-number {
	display: inline-flex;
	margin-bottom: 28px;
	color: var(--blue);
	font-size: 0.82rem;
	font-weight: 800;
}

.process-card p {
	margin-bottom: 0;
	color: var(--muted);
}

.site-footer {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 28px;
	padding: 36px clamp(20px, 4vw, 64px);
	background: var(--ink);
	color: #fff;
}

.footer-brand {
	font-size: 1.02rem;
	font-weight: 800;
}

.footer-brand:focus-visible {
	outline-color: rgba(255, 255, 255, 0.72);
}

address {
	max-width: 320px;
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-style: normal;
	text-align: right;
}

@media (max-width: 980px) {
	.hero {
		grid-template-columns: 1fr;
		min-height: auto;
		padding-top: 60px;
	}

	.hero-visual {
		justify-self: start;
	}

	.hero-copy {
		max-width: 760px;
	}

	.intro-grid,
	.section-heading {
		grid-template-columns: 1fr;
	}

	.process-grid {
		grid-template-columns: 1fr;
	}

	.process-card {
		min-height: auto;
	}
}

@media (max-width: 640px) {
	.site-header {
		align-items: center;
		flex-direction: row;
		min-height: auto;
		gap: 18px;
	}

	.site-nav {
		justify-content: flex-end;
		gap: 14px;
		font-size: 0.86rem;
	}

	h1 {
		font-size: clamp(2.55rem, 13vw, 4rem);
		line-height: 0.98;
	}

	h2 {
		font-size: clamp(1.85rem, 10vw, 3rem);
		line-height: 1.04;
	}

	.brand {
		gap: 9px;
	}

	.brand-mark {
		width: 34px;
		height: 34px;
	}

	.hero {
		padding-top: 42px;
	}

	.hero-visual::before {
		inset: 16% 8% 7%;
		filter: blur(6px);
	}

	.process-card {
		padding: 24px;
	}

	.site-footer {
		flex-direction: column;
	}

	address {
		text-align: left;
	}
}

@media (max-width: 360px) {
	.site-header {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}

	.site-nav {
		justify-content: flex-start;
		width: 100%;
	}

	.site-nav a {
		white-space: nowrap;
	}
}
