/* snapper.network/hi – Dark Landing Page */

:root {
	--bg: #050a14;
	--bg-elevated: #0a1628;
	--bg-card: rgba(12, 24, 44, 0.85);
	--accent: #00b4ff;
	--accent-bright: #5ce1ff;
	--accent-deep: #007aa3;
	--accent-hover: #0099d6;
	--text: #ffffff;
	--text-muted: #94a3b8;
	--border: rgba(0, 180, 255, 0.15);
	--border-subtle: rgba(255, 255, 255, 0.08);
	--container: 1200px;
	--radius: 12px;
	--radius-lg: 16px;
	--btn-radius: 10px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Inter", system-ui, -apple-system, sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	background-image:
		linear-gradient(rgba(0, 180, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 180, 255, 0.03) 1px, transparent 1px);
	background-size: 64px 64px;
	background-position: center top;
}

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

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

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 1.5rem;
}

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

/* ── Header ── */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(5, 10, 20, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4rem;
	gap: 1rem;
}

.logo {
	display: inline-flex;
	align-items: center;
	font-size: 1.125rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	white-space: nowrap;
	color: var(--text);
}

.logo-tld {
	font-size: 0.78em;
	font-weight: 400;
	color: var(--text-muted);
	letter-spacing: -0.01em;
}

.logo-mark {
	width: 2rem;
	height: 2rem;
	object-fit: contain;
	flex-shrink: 0;
	background: transparent;
	margin-right: 0.5rem;
}

.nav-desktop {
	display: none;
	align-items: center;
	gap: 0.25rem;
}

.nav-desktop a {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.5rem 0.75rem;
	font-size: 0.875rem;
	color: var(--text-muted);
	border-radius: 6px;
	transition: color 0.2s, background 0.2s;
}

.nav-desktop a:hover {
	color: var(--text);
	background: rgba(255, 255, 255, 0.05);
}

.nav-chevron {
	width: 0.75rem;
	height: 0.75rem;
	opacity: 0.6;
}

.header-end {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-left: auto;
	flex-shrink: 0;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.header-login {
	display: none;
}

.header-demo {
	padding: 0.5rem 0.875rem;
	font-size: 0.8125rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: var(--btn-radius);
	border: none;
	cursor: pointer;
	transition:
		transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.22s ease,
		background 0.22s ease,
		border-color 0.22s ease,
		color 0.22s ease;
	white-space: nowrap;
	position: relative;
	text-decoration: none;
	line-height: 1.2;
}

.btn-ghost {
	background: transparent;
	color: var(--text-muted);
	padding: 0.5rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-ghost:hover {
	color: var(--text);
}

/* ── Primary – horizontal glow gradient (Mockup-Stil, Snapper-Farben) ── */

.btn-primary {
	padding: 0.6875rem 1.375rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: #fff;
	background: linear-gradient(
		90deg,
		#026080 0%,
		#0098c7 28%,
		#00c4ff 52%,
		#00a8d8 100%
	);
	background-size: 200% 100%;
	background-position: 0% 50%;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.28),
		inset 0 -1px 0 rgba(0, 40, 60, 0.2),
		0 1px 2px rgba(0, 0, 0, 0.25),
		0 6px 20px rgba(0, 150, 210, 0.38);
}

.btn-primary:hover {
	background-position: 100% 50%;
	transform: translateY(-1px);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.32),
		0 2px 4px rgba(0, 0, 0, 0.2),
		0 10px 28px rgba(0, 170, 230, 0.48);
}

.btn-primary:active {
	transform: translateY(0);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.2),
		0 4px 14px rgba(0, 150, 210, 0.3);
}

.btn-arrow {
	flex-shrink: 0;
	opacity: 0.92;
	transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary:hover .btn-arrow {
	transform: translateX(3px);
}

/* ── Secondary – glass outline + play orb ── */

.btn-secondary {
	padding: 0.6875rem 1.375rem 0.6875rem 1.125rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.92);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(10px);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 255, 255, 0.24);
	transform: translateY(-1px);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.1),
		0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-play {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.375rem;
	height: 1.375rem;
	border-radius: 50%;
	flex-shrink: 0;
	color: #fff;
	background: linear-gradient(145deg, rgba(0, 196, 255, 0.55) 0%, rgba(0, 122, 163, 0.45) 100%);
	border: 1px solid rgba(92, 225, 255, 0.35);
	box-shadow: 0 0 12px rgba(0, 180, 255, 0.25);
	transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.btn-secondary:hover .btn-play {
	box-shadow: 0 0 16px rgba(0, 180, 255, 0.4);
	transform: scale(1.05);
}

.btn-lg {
	padding: 0.8125rem 1.625rem;
	font-size: 0.9375rem;
}

.btn-lg.btn-secondary {
	padding: 0.8125rem 1.625rem 0.8125rem 1.25rem;
}

.btn-lg .btn-play {
	width: 1.5rem;
	height: 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
	.btn-primary,
	.btn-secondary {
		transition: none;
	}

	.btn-primary:hover,
	.btn-secondary:hover {
		transform: none;
	}

	.btn-primary:hover .btn-arrow {
		transform: none;
	}
}

.menu-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0.5rem;
	background: transparent;
	border: 1px solid var(--border-subtle);
	border-radius: 8px;
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	height: 2px;
	background: var(--text);
	border-radius: 1px;
	transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
	display: none;
	flex-direction: column;
	padding: 1rem 0 1.5rem;
	border-top: 1px solid var(--border-subtle);
}

.nav-mobile.is-open {
	display: flex;
}

.nav-mobile a {
	padding: 0.75rem 0;
	font-size: 0.9375rem;
	color: var(--text-muted);
	border-bottom: 1px solid var(--border-subtle);
}

.nav-mobile a:hover {
	color: var(--accent);
}

.nav-mobile-actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 1rem;
}

.nav-mobile-actions .btn {
	width: 100%;
}

@media (min-width: 1024px) {
	.header-inner {
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		align-items: center;
	}

	.logo {
		justify-self: start;
	}

	.nav-desktop {
		display: flex;
		justify-self: center;
	}

	.header-end {
		margin-left: 0;
		justify-self: end;
		gap: 0;
	}

	.header-actions {
		gap: 0.75rem;
	}

	.header-login {
		display: inline-flex;
	}

	.header-demo {
		padding: 0.625rem 1.25rem;
		font-size: 0.875rem;
	}

	.menu-toggle {
		display: none;
	}

	.nav-mobile {
		display: none !important;
	}
}

/* ── Hero ── */

.hero-eyebrow {
	font-size: 0.5625rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--accent-bright);
	margin: 0 0 0.875rem;
	opacity: 0.9;
}

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

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0, 180, 255, 0.08) 0%, transparent 60%),
		radial-gradient(ellipse 50% 40% at 20% 80%, rgba(0, 100, 180, 0.06) 0%, transparent 50%);
	pointer-events: none;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
	position: relative;
}

.hero-content h1 {
	margin: 0 0 1.25rem;
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.hero-content p {
	margin: 0 0 2rem;
	font-size: 1.0625rem;
	color: var(--text-muted);
	max-width: 32rem;
	line-height: 1.7;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.875rem;
}

.hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.hero-visual::before {
	content: "";
	position: absolute;
	width: min(100%, 460px);
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 180, 255, 0.16) 0%, transparent 70%);
	pointer-events: none;
}

.data-network-visual {
	position: relative;
	z-index: 1;
	width: min(100%, 540px);
	aspect-ratio: 1.2;
	display: grid;
	place-items: center;
	isolation: isolate;
}

.data-network-visual::before,
.data-network-visual::after {
	content: "";
	position: absolute;
	inset: 8%;
	border-radius: 50%;
	pointer-events: none;
}

.data-network-visual::before {
	background:
		radial-gradient(circle, rgba(92, 225, 255, 0.2) 0%, rgba(0, 180, 255, 0.08) 32%, transparent 68%),
		conic-gradient(from 120deg, transparent 0deg, rgba(0, 180, 255, 0.2) 68deg, transparent 138deg, rgba(92, 225, 255, 0.14) 222deg, transparent 300deg);
	filter: blur(2px);
	opacity: 0.9;
}

.data-network-visual::after {
	inset: 18%;
	border: 1px solid rgba(92, 225, 255, 0.16);
	box-shadow:
		0 0 50px rgba(0, 180, 255, 0.14),
		inset 0 0 42px rgba(0, 180, 255, 0.08);
}

.data-network {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	overflow: visible;
	filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.4));
}

.network-grid path {
	stroke: rgba(92, 225, 255, 0.08);
	stroke-width: 1;
}

.network-orbits ellipse {
	fill: none;
	stroke: rgba(92, 225, 255, 0.16);
	stroke-width: 1;
	stroke-dasharray: 4 10;
}

.network-links path {
	fill: none;
	stroke: url(#linkGlow);
	stroke-width: 1.35;
	filter: url(#softGlow);
}

.network-data-cloud circle {
	fill: rgba(92, 225, 255, 0.78);
	filter: drop-shadow(0 0 7px rgba(0, 180, 255, 0.55));
}

.network-streams circle {
	fill: var(--accent-bright);
	filter: drop-shadow(0 0 12px rgba(92, 225, 255, 0.8));
}

.network-nodes .node {
	fill: rgba(5, 10, 20, 0.82);
	stroke: rgba(92, 225, 255, 0.82);
	stroke-width: 2;
	filter: drop-shadow(0 0 16px rgba(0, 180, 255, 0.45));
}

.network-nodes .node--strong {
	fill: url(#coreGlow);
	stroke: rgba(92, 225, 255, 0.32);
	stroke-width: 1;
}

.network-nodes .node-core {
	fill: rgba(0, 180, 255, 0.18);
	stroke: rgba(255, 255, 255, 0.86);
	stroke-width: 1.5;
	filter: drop-shadow(0 0 22px rgba(92, 225, 255, 0.72));
}

.network-check path {
	fill: none;
	stroke: #ffffff;
	stroke-width: 5;
	stroke-linecap: round;
	stroke-linejoin: round;
	filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.45));
}

.network-label {
	position: absolute;
	z-index: 2;
	padding: 0.375rem 0.625rem;
	border: 1px solid rgba(92, 225, 255, 0.18);
	border-radius: 999px;
	background: rgba(5, 10, 20, 0.58);
	backdrop-filter: blur(10px);
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.network-label--top {
	top: 8%;
	left: 44%;
}

.network-label--right {
	top: 45%;
	right: 4%;
}

.network-label--bottom {
	right: 26%;
	bottom: 7%;
	color: var(--accent-bright);
}

.network-label--left {
	top: 55%;
	left: 3%;
}

@media (prefers-reduced-motion: no-preference) {
	.network-orbits {
		transform-origin: 280px 230px;
		animation: network-rotate 90s linear infinite;
	}

	.network-data-cloud {
		animation: network-pulse 7s ease-in-out infinite;
	}

	.network-streams circle {
		animation: network-pulse 5.5s ease-in-out infinite;
	}

	.network-streams circle:nth-child(2) { animation-delay: 0.8s; }
	.network-streams circle:nth-child(3) { animation-delay: 1.6s; }
	.network-streams circle:nth-child(4) { animation-delay: 2.4s; }
	.network-streams circle:nth-child(5) { animation-delay: 3.2s; }
}

@keyframes network-rotate {
	to { transform: rotate(360deg); }
}

@keyframes network-pulse {
	0%, 100% { opacity: 0.52; }
	50% { opacity: 0.82; }
}

@media (min-width: 900px) {
	.hero {
		padding: 4rem 0 5rem;
	}

	.hero-grid {
		grid-template-columns: 1fr 1fr;
		gap: 3rem;
	}
}

/* ── Sections ── */

.section {
	padding: 4rem 0;
}

.section--tight {
	padding-top: 1.5rem;
}

.section--tight .section-header {
	margin-bottom: 1.5rem;
}

.feature-band {
	position: relative;
	background: rgba(8, 18, 34, 0.52);
	backdrop-filter: blur(22px) saturate(1.15);
	-webkit-backdrop-filter: blur(22px) saturate(1.15);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: var(--radius-lg);
	padding: 1.25rem;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.09),
		inset 0 -12px 32px rgba(0, 0, 0, 0.18),
		0 24px 56px rgba(0, 0, 0, 0.42),
		0 0 0 1px rgba(0, 180, 255, 0.07);
	overflow: hidden;
}

.feature-band::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background:
		linear-gradient(135deg, rgba(0, 180, 255, 0.07) 0%, transparent 42%),
		linear-gradient(225deg, rgba(92, 225, 255, 0.04) 0%, transparent 38%);
	pointer-events: none;
}

.feature-band::after {
	content: "";
	position: absolute;
	top: 0;
	left: 10%;
	right: 10%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
	pointer-events: none;
}

.feature-band > * {
	position: relative;
	z-index: 1;
}

@media (min-width: 768px) {
	.feature-band {
		padding: 1.5rem;
	}
}

.feature-band .stats-bar {
	margin-top: 1.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--border-subtle);
}

.stats-bar {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem 2rem;
}

.stats-bar__item {
	text-align: center;
	padding: 0.75rem 0.5rem;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(6px);
}

.stats-bar__item strong {
	display: block;
	font-size: clamp(1.375rem, 2.5vw, 1.75rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	background: linear-gradient(90deg, #5ce1ff 0%, #00b4ff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 0.25rem;
}

.stats-bar__item span {
	font-size: 0.8125rem;
	color: var(--text-muted);
}

@media (min-width: 768px) {
	.stats-bar {
		grid-template-columns: repeat(4, 1fr);
	}
}

.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-header h2 {
	margin: 0;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	letter-spacing: -0.02em;
}

.section-header p {
	max-width: 42rem;
	margin: 0.875rem auto 0;
	color: var(--text-muted);
	font-size: 0.9375rem;
	line-height: 1.7;
}

.section-kicker {
	margin: 0 0 0.75rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent-bright);
}

.value-section {
	padding-top: 2rem;
}

.value-grid {
	display: grid;
	gap: 1rem;
}

.value-panel {
	position: relative;
	padding: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-lg);
	background: rgba(8, 18, 34, 0.48);
	overflow: hidden;
}

.value-panel--primary {
	background:
		linear-gradient(135deg, rgba(0, 180, 255, 0.12), transparent 42%),
		rgba(8, 18, 34, 0.58);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 18px 46px rgba(0, 0, 0, 0.3);
}

.value-panel--quiet {
	background: rgba(255, 255, 255, 0.025);
}

.value-panel h2 {
	margin: 0 0 0.875rem;
	font-size: clamp(1.375rem, 2.5vw, 1.875rem);
	line-height: 1.25;
	letter-spacing: -0.02em;
}

.value-panel p:not(.section-kicker) {
	margin: 0 0 1.25rem;
	color: var(--text-muted);
	font-size: 0.9375rem;
	line-height: 1.7;
}

.value-list {
	display: grid;
	gap: 0.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.value-list li {
	position: relative;
	padding-left: 1.5rem;
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.875rem;
}

.value-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55rem;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 14px rgba(0, 180, 255, 0.4);
}

.value-list--muted li {
	color: var(--text-muted);
}

.value-list--muted li::before {
	background: rgba(255, 255, 255, 0.28);
	box-shadow: none;
}

.next-step-strip {
	display: grid;
	gap: 1rem;
	align-items: center;
	margin-top: 1rem;
	padding: 1.25rem;
	border: 1px solid rgba(0, 180, 255, 0.16);
	border-radius: var(--radius-lg);
	background: rgba(0, 180, 255, 0.06);
}

.next-step-strip strong,
.next-step-strip span {
	display: block;
}

.next-step-strip strong {
	margin-bottom: 0.25rem;
}

.next-step-strip span {
	color: var(--text-muted);
	font-size: 0.875rem;
}

.next-step-strip .btn {
	width: 100%;
}

.module-strip {
	display: grid;
	gap: 0.75rem;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-lg);
	background:
		linear-gradient(90deg, rgba(0, 180, 255, 0.06), transparent 34%),
		rgba(8, 18, 34, 0.48);
}

.module-item {
	display: grid;
	grid-template-columns: 4.5rem 1fr;
	gap: 1rem;
	align-items: center;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.025);
	transition:
		border-color 0.2s ease,
		background 0.2s ease,
		transform 0.2s ease;
}

.module-item:hover {
	border-color: rgba(0, 180, 255, 0.22);
	background: rgba(255, 255, 255, 0.04);
	transform: translateX(3px);
}

.module-item span {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--accent-bright);
}

.module-item strong {
	font-size: 0.875rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.86);
	line-height: 1.5;
}

.trust-panel {
	display: grid;
	gap: 1.5rem;
	padding: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-lg);
	background:
		radial-gradient(circle at 0% 0%, rgba(0, 180, 255, 0.12), transparent 36%),
		rgba(255, 255, 255, 0.025);
}

.trust-panel__intro h3 {
	margin: 0 0 0.875rem;
	font-size: clamp(1.25rem, 2.2vw, 1.625rem);
	line-height: 1.3;
	letter-spacing: -0.02em;
}

.trust-panel__intro p:not(.section-kicker) {
	margin: 0;
	color: var(--text-muted);
	font-size: 0.9375rem;
	line-height: 1.7;
}

.trust-panel__facts {
	display: grid;
	gap: 0;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
	overflow: hidden;
}

.trust-panel__facts div {
	padding: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(5, 10, 20, 0.28);
}

.trust-panel__facts div:last-child {
	border-bottom: 0;
}

.trust-panel__facts strong,
.trust-panel__facts span {
	display: block;
}

.trust-panel__facts strong {
	margin-bottom: 0.25rem;
	font-size: 0.9375rem;
}

.trust-panel__facts span {
	color: var(--text-muted);
	font-size: 0.8125rem;
	line-height: 1.55;
}

@media (min-width: 768px) {
	.value-grid {
		grid-template-columns: 1.05fr 0.95fr;
	}

	.next-step-strip {
		grid-template-columns: 1fr auto;
		padding: 1.25rem 1.5rem;
	}

	.next-step-strip .btn {
		width: auto;
	}

	.module-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: 1.25rem;
	}

	.trust-panel {
		grid-template-columns: 0.9fr 1.1fr;
		align-items: center;
		padding: 2rem;
	}

	.trust-panel__facts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.trust-panel__facts div:nth-child(odd) {
		border-right: 1px solid rgba(255, 255, 255, 0.08);
	}

	.trust-panel__facts div:nth-child(3),
	.trust-panel__facts div:nth-child(4) {
		border-bottom: 0;
	}
}

@media (min-width: 1100px) {
	.module-strip {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.module-item {
		grid-template-columns: 1fr;
		align-content: start;
		min-height: 9rem;
	}

	.module-item:hover {
		transform: translateY(-3px);
	}
}

/* ── Cards Grid ── */

.cards-grid {
	display: grid;
	gap: 1rem;
	align-items: stretch;
}

.cards-grid--5 {
	grid-template-columns: 1fr;
}

.cards-grid--4 {
	grid-template-columns: 1fr;
}

.card {
	position: relative;
	background: rgba(10, 22, 40, 0.42);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-width: 0;
	overflow: hidden;
	transition:
		border-color 0.25s ease,
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background 0.25s ease;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.07),
		inset 0 -8px 24px rgba(0, 0, 0, 0.12),
		0 4px 20px rgba(0, 0, 0, 0.18);
}

.card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
	pointer-events: none;
}

.card:hover {
	background: rgba(12, 28, 48, 0.55);
	border-color: rgba(0, 180, 255, 0.22);
	transform: translateY(-3px);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.1),
		0 12px 36px rgba(0, 0, 0, 0.32),
		0 0 28px rgba(0, 180, 255, 0.1);
}

.card-icon-wrap {
	width: 3rem;
	height: 3rem;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	flex-shrink: 0;
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.14),
		inset 0 -4px 12px rgba(0, 0, 0, 0.2),
		0 6px 16px rgba(0, 0, 0, 0.25);
}

.card-icon-wrap::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, transparent 55%);
	pointer-events: none;
}

.card-icon-wrap--cyan {
	background: linear-gradient(145deg, #0e4a62 0%, #062638 100%);
	border-color: rgba(0, 180, 255, 0.35);
}

.card-icon-wrap--ocean {
	background: linear-gradient(145deg, #0a3d58 0%, #051e30 100%);
	border-color: rgba(51, 212, 255, 0.3);
}

.card-icon-wrap--sky {
	background: linear-gradient(145deg, #125a72 0%, #083248 100%);
	border-color: rgba(92, 225, 255, 0.35);
}

.card-icon-wrap--deep {
	background: linear-gradient(145deg, #083550 0%, #041824 100%);
	border-color: rgba(0, 140, 200, 0.4);
}

.card-icon-wrap--ice {
	background: linear-gradient(145deg, #156680 0%, #0a3040 100%);
	border-color: rgba(126, 232, 255, 0.3);
}

.card-icon-wrap--teal {
	background: linear-gradient(145deg, #0c5560 0%, #062a32 100%);
	border-color: rgba(0, 200, 210, 0.35);
}

.card-icon {
	width: 1.375rem;
	height: 1.375rem;
	position: relative;
	z-index: 1;
	filter: drop-shadow(0 2px 6px rgba(0, 180, 255, 0.45));
}

.card-icon-wrap--cyan .card-icon { color: #5ce1ff; }
.card-icon-wrap--ocean .card-icon { color: #33d4ff; }
.card-icon-wrap--sky .card-icon { color: #80e8ff; }
.card-icon-wrap--deep .card-icon { color: #00b4ff; }
.card-icon-wrap--ice .card-icon { color: #b8f0ff; }
.card-icon-wrap--teal .card-icon { color: #4de8f0; }

.card h3 {
	margin: 0 0 0.625rem;
	font-size: clamp(0.8125rem, 1.6vw, 0.9375rem);
	font-weight: 600;
	line-height: 1.4;
	overflow-wrap: break-word;
	word-wrap: break-word;
	hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	max-width: 100%;
}

.card p {
	margin: 0 0 1.25rem;
	font-size: 0.8125rem;
	color: var(--text-muted);
	line-height: 1.55;
	flex: 1;
	overflow-wrap: break-word;
}

.card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--accent);
	margin-top: auto;
	transition: gap 0.2s;
}

.card-link:hover {
	gap: 0.625rem;
}

.tech-card {
	text-align: left;
}

.tech-card p {
	margin-bottom: 0;
}

@media (min-width: 640px) {
	.cards-grid--5 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cards-grid--5 .card:nth-child(5) {
		grid-column: 1 / 2;
	}

	.cards-grid--4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1200px) {
	.cards-grid--5 {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.cards-grid--5 .card:nth-child(5) {
		grid-column: auto;
	}

	.cards-grid--4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

/* ── CTA Box ── */

.cta-section {
	padding: 2rem 0 4rem;
}

.cta-box {
	background: rgba(8, 20, 38, 0.55);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: var(--radius-lg);
	padding: 2rem;
	display: grid;
	gap: 2rem;
	align-items: center;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 20px 48px rgba(0, 0, 0, 0.35);
}

.cta-box h2 {
	margin: 0 0 0.75rem;
	font-size: clamp(1.375rem, 2.5vw, 1.75rem);
	font-weight: 700;
}

.cta-box > div > p {
	margin: 0 0 1.5rem;
	color: var(--text-muted);
	font-size: 0.9375rem;
}

.cta-features {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem 2rem;
}

.cta-feature {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	font-size: 0.875rem;
	color: var(--text);
}

.cta-feature svg {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--accent);
	flex-shrink: 0;
}

.cta-action {
	display: flex;
	justify-content: center;
}

.cta-action .btn {
	width: 100%;
	max-width: 320px;
}

@media (min-width: 768px) {
	.cta-box {
		grid-template-columns: 1fr auto;
		padding: 2.5rem 3rem;
	}

	.cta-action {
		justify-content: flex-end;
	}

	.cta-action .btn {
		width: auto;
	}
}

/* ── Footer ── */

.site-footer {
	border-top: 1px solid var(--border-subtle);
	padding: 3rem 0 2rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-bottom: 2.5rem;
}

.footer-col h4 {
	margin: 0 0 1rem;
	font-size: 0.875rem;
	font-weight: 600;
}

.footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-col li {
	margin-bottom: 0.5rem;
}

.footer-col a {
	font-size: 0.8125rem;
	color: var(--text-muted);
	transition: color 0.2s;
}

.footer-col a:hover {
	color: var(--accent);
}

.footer-bottom {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border-subtle);
}

.footer-bottom .logo {
	font-size: 1rem;
}

.footer-bottom p {
	margin: 0;
	font-size: 0.8125rem;
	color: var(--text-muted);
}

@media (min-width: 640px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 900px) {
	.footer-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.footer-bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}
