@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Montserrat:wght@500;600;700;800&display=swap");

:root {
	--bg: #f5f9fd;
	--surface: rgba(255, 255, 255, 0.84);
	--surface-strong: #ffffff;
	--surface-muted: #eef6fb;
	--text: #1a1a2e;
	--text-soft: #5f697c;
	--border: rgba(30, 95, 191, 0.14);
	--primary: #1e5fbf;
	--secondary: #2eb5a8;
	--accent: #f59b23;
	--primary-deep: #123b78;
	--shadow-lg: 0 24px 70px rgba(18, 59, 120, 0.16);
	--shadow-md: 0 18px 42px rgba(18, 59, 120, 0.12);
	--radius-xl: 32px;
	--radius-lg: 24px;
	--radius-md: 18px;
	--max-width: 1180px;
	--ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: "Lato", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	color: var(--text);
	background:
		radial-gradient(circle at top left, rgba(46, 181, 168, 0.18), transparent 28%),
		radial-gradient(circle at top right, rgba(245, 155, 35, 0.15), transparent 25%),
		linear-gradient(180deg, #fbfdff 0%, var(--bg) 55%, #eef5fb 100%);
}

body.menu-open {
	overflow: hidden;
}

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

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

.page-shell {
	position: relative;
	overflow: clip;
}

.page-shell::before,
.page-shell::after {
	content: "";
	position: fixed;
	inset: auto;
	border-radius: 999px;
	pointer-events: none;
	z-index: -1;
}

.page-shell::before {
	width: 28rem;
	height: 28rem;
	top: -8rem;
	right: -12rem;
	background: radial-gradient(circle, rgba(30, 95, 191, 0.18), transparent 65%);
}

.page-shell::after {
	width: 24rem;
	height: 24rem;
	left: -10rem;
	top: 34rem;
	background: radial-gradient(circle, rgba(46, 181, 168, 0.18), transparent 68%);
}

.container {
	width: min(calc(100% - 2rem), var(--max-width));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	backdrop-filter: blur(16px);
	background: rgba(245, 249, 253, 0.72);
	border-bottom: 1px solid rgba(30, 95, 191, 0.08);
}

.header-inner {
	min-height: 88px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1.5rem;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.9rem;
}

.brand-mark {
	width: 50px;
	height: 50px;
	display: block;
	flex: 0 0 auto;
	border-radius: 16px;
	object-fit: cover;
	box-shadow: 0 16px 32px rgba(30, 95, 191, 0.24);
}

.brand-text {
	display: grid;
	gap: 0.1rem;
}

.brand-name {
	font-family: "Montserrat", sans-serif;
	font-size: 0.98rem;
	font-weight: 700;
	letter-spacing: 0.015em;
}

.brand-subtitle {
	font-size: 0.78rem;
	color: var(--text-soft);
	letter-spacing: 0.02em;
}

.nav-toggle {
	display: none;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(30, 95, 191, 0.14);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.72);
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.nav-toggle-line {
	position: relative;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: var(--primary-deep);
	transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.nav-toggle-line::before,
.nav-toggle-line::after {
	content: "";
	position: absolute;
	left: 0;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: var(--primary-deep);
	transition: transform 0.3s var(--ease), top 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle-line::before {
	top: -6px;
}

.nav-toggle-line::after {
	top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line {
	background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line::before {
	top: 0;
	transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line::after {
	top: 0;
	transform: rotate(-45deg);
}

.site-nav {
	justify-self: center;
}

.nav-list {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 1rem;
	font-size: 0.96rem;
	font-weight: 600;
	color: var(--text-soft);
	transition: color 0.3s var(--ease);
}

.nav-link::after {
	content: "";
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: 0.4rem;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
	color: var(--text);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
	transform: scaleX(1);
}

.page-main {
	padding-bottom: 3rem;
}

.hero[id],
.section[id],
.page-hero[id] {
	scroll-margin-top: 6.5rem;
}

.hero {
	position: relative;
	padding: 3rem 0 2rem;
}

.hero-panel {
	position: relative;
	overflow: hidden;
	padding: clamp(2.35rem, 4.6vw, 3.55rem);
	border-radius: var(--radius-xl);
	background:
		linear-gradient(135deg, rgba(18, 59, 120, 0.95) 0%, rgba(30, 95, 191, 0.92) 34%, rgba(46, 181, 168, 0.88) 68%, rgba(245, 155, 35, 0.9) 100%);
	box-shadow: var(--shadow-lg);
	color: #ffffff;
}

.hero-panel::before,
.hero-panel::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	opacity: 0.48;
}

.hero-panel::before {
	width: 22rem;
	height: 22rem;
	top: -8rem;
	right: -5rem;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.34), transparent 68%);
}

.hero-panel::after {
	width: 18rem;
	height: 18rem;
	left: -5rem;
	bottom: -8rem;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.26), transparent 70%);
}

.hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
	gap: clamp(2.25rem, 4.6vw, 3.6rem);
	align-items: start;
}

.hero-copy {
	max-width: 43rem;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.55rem 0.95rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.16);
	font-size: 0.84rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.eyebrow::before {
	content: "";
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 999px;
	background: #ffffff;
	box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
}


.hero-copy h1 {
	margin: 1.1rem 0 1rem;
	font-family: "Montserrat", sans-serif;
	font-size: clamp(3rem, 5vw, 4rem);
	line-height: 1.04;
	letter-spacing: -0.04em;
	max-width: 100%;
	text-wrap: balance;
}

.page-hero-copy h1 {
	margin: 1.1rem 0 1rem;
	font-family: "Montserrat", sans-serif;
	font-size: clamp(2.6rem, 6vw, 4.3rem);
	line-height: 1.04;
	letter-spacing: -0.04em;
	text-wrap: balance;
}

.hero-copy p,
.page-hero-copy p {
	max-width: 42rem;
	margin: 0;
	font-size: clamp(1rem, 2vw, 1.15rem);
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.88);
}

.hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-top: 1.7rem;
}

.meta-pill {
	display: inline-flex;
	align-items: center;
	padding: 0.75rem 1rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.16);
	font-size: 0.92rem;
	font-weight: 600;
}

.hero-card {
	position: relative;
	justify-self: end;
	max-width: 24rem;
	padding: 1.5rem;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(12px);
}

.hero-card::before {
	content: "";
	position: absolute;
	inset: 1rem 1rem auto auto;
	width: 4.5rem;
	height: 4.5rem;
	border-radius: 1.4rem;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.02));
	transform: rotate(14deg);
}

.hero-card-title {
	position: relative;
	margin: 0;
	font-family: "Montserrat", sans-serif;
	font-size: 1.2rem;
}

.hero-card-copy {
	position: relative;
	margin: 0.7rem 0 0;
	max-width: 31ch;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
}

.metric-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1.4rem;
}

.metric {
	padding: 1rem;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-value {
	margin: 0;
	font-family: "Montserrat", sans-serif;
	font-size: 1.7rem;
	font-weight: 700;
}

.metric-label {
	margin: 0.35rem 0 0;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.8);
}

.section {
	padding: 2rem 0;
}

.section-header {
	max-width: 42rem;
	margin-bottom: 2rem;
}

.section-kicker {
	margin: 0 0 0.75rem;
	font-size: 0.86rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--secondary);
}

.section-title {
	margin: 0;
	font-family: "Montserrat", sans-serif;
	font-size: clamp(2rem, 4vw, 2.8rem);
	line-height: 1.1;
	letter-spacing: -0.03em;
}

.section-copy {
	margin: 0.95rem 0 0;
	font-size: 1.03rem;
	line-height: 1.8;
	color: var(--text-soft);
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.4rem;
}

.card {
	position: relative;
	overflow: hidden;
	padding: 1.6rem;
	border-radius: var(--radius-lg);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 251, 255, 0.88));
	border: 1px solid var(--border);
	box-shadow: var(--shadow-md);
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.card::before {
	content: "";
	position: absolute;
	inset: auto -2rem -3rem auto;
	width: 8rem;
	height: 8rem;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(46, 181, 168, 0.2), transparent 70%);
}

.card:hover,
.card:focus-within {
	transform: translateY(-4px);
	box-shadow: 0 24px 56px rgba(18, 59, 120, 0.16);
	border-color: rgba(30, 95, 191, 0.22);
}

.card-icon {
	width: 3rem;
	height: 3rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(30, 95, 191, 0.12), rgba(46, 181, 168, 0.18));
	color: var(--primary);
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	font-weight: 700;
}

.card h3 {
	margin: 1.15rem 0 0.75rem;
	font-family: "Montserrat", sans-serif;
	font-size: 1.3rem;
}

.card p {
	margin: 0;
	color: var(--text-soft);
	line-height: 1.75;
}

.split-section {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 1.6rem;
	align-items: start;
}

.highlight-panel {
	padding: 1.8rem;
	border-radius: var(--radius-lg);
	background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
	border: 1px solid rgba(30, 95, 191, 0.1);
	box-shadow: var(--shadow-md);
}

.highlight-panel h3 {
	margin: 0;
	font-family: "Montserrat", sans-serif;
	font-size: 1.4rem;
}

.highlight-panel p {
	margin: 0.9rem 0 0;
	line-height: 1.8;
	color: var(--text-soft);
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.4rem;
}

.product-card {
	padding: 1.6rem;
	border-radius: var(--radius-lg);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.92));
	border: 1px solid var(--border);
	box-shadow: var(--shadow-md);
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 56px rgba(18, 59, 120, 0.16);
}

.product-topline {
	display: grid;
	grid-template-columns: auto 11rem;
	align-items: start;
	gap: 0.75rem;
	height: 3rem;
	margin-bottom: 1.25rem;
}

.product-topline .section-kicker {
	margin: 0;
	justify-self: end;
	text-align: right;
	line-height: 1.3;
}

.product-tag {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
	background: rgba(30, 95, 191, 0.08);
	color: var(--primary);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.phone-mockup {
	position: relative;
	width: min(100%, 245px);
	margin: 0 auto 1.35rem;
	padding: 0.7rem;
	border-radius: 32px;
	background: linear-gradient(180deg, #0f1d35 0%, #1f3969 100%);
	box-shadow: 0 24px 50px rgba(18, 59, 120, 0.22);
}

.phone-mockup::before {
	content: "";
	position: absolute;
	top: 0.6rem;
	left: 50%;
	width: 5.1rem;
	height: 0.45rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	transform: translateX(-50%);
}

.phone-screen {
	min-height: 360px;
	padding: 1.2rem;
	display: flex;
	flex-direction: column;
	border-radius: 24px;
	background:
		radial-gradient(circle at top right, rgba(245, 155, 35, 0.26), transparent 26%),
		linear-gradient(180deg, #f4f8ff 0%, #edf8f6 100%);
	overflow: hidden;
}

.screen-label {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
	background: rgba(30, 95, 191, 0.08);
	color: var(--primary);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.screen-title {
	margin: 0.85rem 0 0.75rem;
	font-family: "Montserrat", sans-serif;
	font-size: 1.1rem;
	color: var(--text);
}

.screen-stack {
	display: grid;
	grid-template-rows: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
	flex: 1;
	min-height: 0;
}

.screen-chip,
.screen-row {
	height: 100%;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.84);
	border: 1px solid rgba(30, 95, 191, 0.08);
}

.screen-chip {
	min-height: 0;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	align-items: center;
	gap: 0.7rem;
	padding: 0.85rem 0.9rem;
}

.screen-row {
	display: grid;
	align-content: center;
	padding: 0.95rem 0.9rem;
}

.screen-row strong,
.screen-chip strong {
	display: block;
	font-size: 0.92rem;
	line-height: 1.3;
}

.screen-row span,
.screen-chip span {
	display: block;
	margin-top: 0.25rem;
	font-size: 0.8rem;
	line-height: 1.45;
	color: var(--text-soft);
}

.screen-chip span {
	margin-top: 0;
}

.product-card h3 {
	margin: 0;
	font-family: "Montserrat", sans-serif;
	font-size: 1.32rem;
}

.product-card p {
	margin: 0.85rem 0 0;
	line-height: 1.75;
	color: var(--text-soft);
}

.audience-list {
	display: grid;
	gap: 0.7rem;
	margin-top: 1rem;
}

.audience-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.94rem;
	line-height: 1.6;
	color: var(--text-soft);
}

.audience-item::before {
	content: "";
	width: 0.6rem;
	height: 0.6rem;
	margin-top: 0.45rem;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--secondary), var(--accent));
	flex: 0 0 auto;
}

.stats-band {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1.5rem;
}

.stat-card {
	padding: 1.4rem;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(30, 95, 191, 0.1);
	box-shadow: var(--shadow-md);
}

.stat-card strong {
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 1.7rem;
	color: var(--primary-deep);
}

.stat-card span {
	display: block;
	margin-top: 0.45rem;
	color: var(--text-soft);
	line-height: 1.6;
}

.page-hero {
	padding: 2.6rem 0 1.8rem;
}

.page-hero-panel {
	position: relative;
	overflow: hidden;
	padding: clamp(1.8rem, 3vw, 2.6rem);
	border-radius: var(--radius-xl);
	background:
		radial-gradient(circle at top right, rgba(245, 155, 35, 0.18), transparent 24%),
		linear-gradient(135deg, #eef7ff 0%, #ffffff 40%, #edf8f6 100%);
	border: 1px solid rgba(30, 95, 191, 0.1);
	box-shadow: var(--shadow-md);
}

.page-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.75fr);
	gap: 1.5rem;
	align-items: start;
}

.page-hero-copy p {
	color: var(--text-soft);
}

.page-hero-card {
	padding: 1.45rem;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(30, 95, 191, 0.1);
}

.page-hero-card h2 {
	margin: 0;
	font-family: "Montserrat", sans-serif;
	font-size: 1.05rem;
}

.page-hero-card p {
	margin: 0.75rem 0 0;
	color: var(--text-soft);
	line-height: 1.7;
}

.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 1.5rem;
}

.contact-card,
.legal-card {
	padding: 1.7rem;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-md);
}

.contact-list {
	display: grid;
	gap: 1rem;
}

.contact-item {
	display: grid;
	grid-template-columns: 3.25rem 1fr;
	gap: 1rem;
	align-items: start;
	padding: 1rem;
	border-radius: 22px;
	background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
	border: 1px solid rgba(30, 95, 191, 0.08);
}

.contact-icon {
	width: 3.25rem;
	height: 3.25rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(30, 95, 191, 0.12), rgba(46, 181, 168, 0.18));
	color: var(--primary);
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
}

.contact-item h3,
.legal-card h2,
.legal-card h3 {
	margin: 0;
	font-family: "Montserrat", sans-serif;
}

.contact-item p,
.contact-item a,
.legal-card p,
.legal-card li {
	margin: 0.5rem 0 0;
	color: var(--text-soft);
	line-height: 1.75;
}

.email-highlight {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.5rem;
	padding: 0.8rem 1.2rem;
	border-radius: 18px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	color: #ffffff;
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
	box-shadow: 0 18px 40px rgba(30, 95, 191, 0.22);
}

.legal-layout {
	display: grid;
	gap: 1.3rem;
}

.legal-card ol,
.legal-card ul {
	margin: 1rem 0 0;
	padding-left: 1.25rem;
}

.legal-card li + li {
	margin-top: 0.65rem;
}

.effective-date {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 0.8rem;
	border-radius: 999px;
	background: rgba(30, 95, 191, 0.08);
	color: var(--primary);
	font-size: 0.84rem;
	font-weight: 700;
}

.site-footer {
	padding: 2rem 0 2.5rem;
}

.footer-panel {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
	gap: 1.5rem;
	padding: 1.8rem;
	border-radius: var(--radius-xl);
	background: linear-gradient(180deg, rgba(18, 59, 120, 0.98), rgba(16, 31, 56, 0.98));
	box-shadow: var(--shadow-lg);
	color: #ffffff;
}

.footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.9rem;
}

.footer-brand .brand-mark {
	box-shadow: none;
}

.footer-copy {
	margin: 1rem 0 0;
	max-width: 36rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
}

.footer-meta {
	display: grid;
	gap: 0.8rem;
	justify-items: start;
	align-content: start;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.footer-link {
	color: rgba(255, 255, 255, 0.84);
	transition: color 0.3s var(--ease);
}

.footer-link:hover,
.footer-link:focus-visible {
	color: #ffffff;
}

.icp-link {
	color: rgba(255, 255, 255, 0.84);
}

[data-reveal] {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 1023px) {
	.hero-grid,
	.page-hero-grid,
	.split-section,
	.contact-grid,
	.footer-panel {
		grid-template-columns: 1fr;
	}

	.card-grid,
	.product-grid,
	.stats-band {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero-card {
		max-width: 34rem;
	}
}

@media (max-width: 767px) {
	.container {
		width: min(calc(100% - 1.25rem), var(--max-width));
	}

	.header-inner {
		grid-template-columns: auto auto;
		gap: 1rem;
		min-height: 80px;
	}

	.nav-toggle {
		display: inline-flex;
		justify-self: end;
	}

	.site-nav {
		position: absolute;
		top: calc(100% + 0.6rem);
		left: 0.625rem;
		right: 0.625rem;
		padding: 0.7rem;
		border-radius: 24px;
		background: rgba(255, 255, 255, 0.96);
		border: 1px solid rgba(30, 95, 191, 0.12);
		box-shadow: var(--shadow-md);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s var(--ease);
	}

	.site-nav.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.nav-list {
		flex-direction: column;
		align-items: stretch;
		gap: 0.2rem;
	}

	.nav-link {
		min-height: 46px;
		padding: 0 1rem;
		border-radius: 14px;
	}

	.nav-link::after {
		left: 0.95rem;
		right: 0.95rem;
		bottom: 0.5rem;
	}

	.hero,
	.page-hero {
		padding-top: 1.25rem;
	}

	.hero-panel,
	.page-hero-panel,
	.footer-panel,
	.card,
	.product-card,
	.contact-card,
	.legal-card {
		border-radius: 24px;
	}

	.hero-copy h1,
	.page-hero-copy h1 {
		font-size: clamp(2.2rem, 12vw, 3rem);
	}

	.hero-copy p,
	.page-hero-copy p,
	.section-copy,
	.card p,
	.product-card p,
	.contact-item p,
	.legal-card p,
	.legal-card li {
		line-height: 1.7;
	}

	.card-grid,
	.product-grid,
	.stats-band,
	.metric-grid {
		grid-template-columns: 1fr;
	}

	.phone-screen {
		min-height: 300px;
	}

	.contact-item {
		grid-template-columns: 1fr;
	}

	.footer-meta {
		justify-items: start;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	[data-reveal] {
		opacity: 1;
		transform: none;
	}
}
