:root {
	--bg: #071220;
	--bg-strong: #0d1b31;
	--surface: rgba(8, 19, 35, 0.76);
	--surface-strong: rgba(12, 27, 48, 0.94);
	--ink: #f4f8ff;
	--muted: #9eb0ca;
	--line: rgba(195, 214, 238, 0.16);
	--accent: #6eb6ff;
	--accent-dark: #cfe5ff;
	--accent-soft: rgba(110, 182, 255, 0.16);
	--teal: #8fdcff;
	--teal-soft: rgba(143, 220, 255, 0.16);
	--shadow: 0 24px 70px rgba(2, 8, 20, 0.5);
	--radius-xl: 32px;
	--radius-lg: 24px;
	--radius-md: 18px;
	--max-width: 1500px;
}

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

html {
	scroll-behavior: smooth;
	color-scheme: dark;
	overflow-x: hidden;
	overflow-x: clip;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: "Manrope", sans-serif;
	color: var(--ink);
	background:
		radial-gradient(circle at top left, rgba(110, 182, 255, 0.22), transparent 30%),
		radial-gradient(circle at 85% 10%, rgba(143, 220, 255, 0.14), transparent 22%),
		radial-gradient(circle at 50% 100%, rgba(46, 86, 148, 0.24), transparent 34%),
		linear-gradient(180deg, #030912 0%, var(--bg) 46%, #0a1730 100%);
	overflow-x: hidden;
	overflow-x: clip;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 42px 42px;
	mask-image: radial-gradient(circle at center, black 38%, transparent 82%);
	pointer-events: none;
	opacity: 0.55;
}

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

button,
input,
textarea {
	font: inherit;
}

.page-shell {
	width: min(calc(100% - 32px), var(--max-width));
	margin: 0 auto;
	position: relative;
}

.site-header {
	position: sticky;
	top: 16px;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin: 18px 0 0;
	padding: 14px 18px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(7, 17, 31, 0.8);
	backdrop-filter: blur(18px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0;
	min-width: 0;
}

.brand-logo {
	display: block;
	width: clamp(156px, 17vw, 232px);
	height: auto;
	flex-shrink: 0;
}

.brand-name,
h1,
h2,
h3 {
	font-family: "Space Grotesk", sans-serif;
	letter-spacing: -0.04em;
}

h1,
h2,
h3,
.eyebrow,
.card-kicker,
.spotlight-label,
.site-nav a,
.button,
.contact-mail,
.hero-intro,
.hero-note,
.card-copy,
.process-card p,
.value-card p,
.cta-copy p,
.hero-scene p,
.feature-list li,
.spotlight-list li,
.hero-mini-stat span,
.contact-line,
.site-footer p {
	overflow-wrap: anywhere;
	word-break: normal;
	hyphens: auto;
}

.brand-name {
	font-size: 1.02rem;
	font-weight: 700;
}

.site-nav {
	display: inline-flex;
	align-items: center;
	gap: 18px;
}

.site-nav a {
	color: var(--muted);
	font-weight: 600;
	transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
	color: var(--ink);
}

.language-switcher {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.language-switcher-footer {
	display: none;
}

.lang-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: transparent;
	color: var(--muted);
	padding: 8px 12px;
	font-weight: 700;
	cursor: pointer;
	transition:
		transform 180ms ease,
		background-color 180ms ease,
		color 180ms ease,
		border-color 180ms ease;
}

.lang-button:hover,
.lang-button:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(255, 255, 255, 0.28);
	color: var(--ink);
}

.lang-button.is-active {
	background: #ffffff;
	color: var(--bg);
	border-color: #ffffff;
}

.section {
	padding: 88px 0;
}

.hero {
	position: relative;
	padding: 58px 0 22px;
	overflow: hidden;
	overflow: clip;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 12px auto auto -120px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(110, 182, 255, 0.2) 0%, rgba(110, 182, 255, 0) 72%);
	pointer-events: none;
	filter: blur(18px);
}

.hero::after {
	content: "";
	position: absolute;
	right: -150px;
	top: -18px;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(18, 56, 98, 0.44) 0%, rgba(18, 56, 98, 0) 74%);
	pointer-events: none;
}

.hero-surface,
.price-card,
.process-card,
.value-card,
.cta-panel {
	border: 1px solid var(--line);
	background: var(--surface);
	box-shadow: var(--shadow);
	backdrop-filter: blur(14px);
}

.hero-surface {
	position: relative;
	overflow: hidden;
	border-radius: 42px;
	background:
		radial-gradient(circle at 20% 18%, rgba(110, 182, 255, 0.1) 0%, rgba(110, 182, 255, 0) 26%),
		radial-gradient(circle at 82% 16%, rgba(143, 220, 255, 0.08) 0%, rgba(143, 220, 255, 0) 18%),
		linear-gradient(150deg, rgba(11, 24, 43, 0.98) 0%, rgba(7, 18, 32, 0.98) 52%, rgba(10, 24, 43, 0.98) 100%);
}

.hero-surface::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(circle at center, black 28%, transparent 88%);
	opacity: 0.28;
	pointer-events: none;
}

.hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
	gap: clamp(24px, 3.2vw, 40px);
	align-items: center;
	padding: clamp(30px, 4vw, 56px);
}

.hero-copy {
	position: relative;
	max-width: 720px;
}

.eyebrow,
.card-kicker,
.spotlight-label,
.process-number {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 18px;
	font-size: 0.86rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--teal);
}

.eyebrow,
.spotlight-label {
	gap: 0;
}

h1 {
	margin: 0;
	max-width: 12.2ch;
	font-size: clamp(2.55rem, 4.1vw, 4.2rem);
	line-height: 0.98;
}

.hero-copy h1 {
	color: #d6e9ff;
}

@media (min-width: 1280px) {
	.hero-grid {
		grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
	}

	.hero-copy {
		justify-self: end;
		max-width: 760px;
		padding-right: clamp(8px, 1vw, 18px);
	}

	.hero-copy h1 {
		max-width: 19ch;
		font-size: clamp(2.9rem, 3.1vw, 3.75rem);
		line-height: 1;
	}

	.value-section .section-heading.narrow {
		max-width: 980px;
	}
}

.hero-intro {
	margin: 24px 0 0;
	max-width: 56ch;
	font-size: 1.05rem;
	line-height: 1.78;
	color: #afc2dd;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	max-width: 100%;
	padding: 0 22px;
	border-radius: 999px;
	font-weight: 800;
	text-align: center;
	white-space: normal;
	transition:
		transform 180ms ease,
		box-shadow 180ms ease,
		background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
}

.button-primary {
	color: var(--bg);
	background: linear-gradient(135deg, #ffffff, #dbeaff);
	box-shadow: 0 14px 26px rgba(110, 182, 255, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
	box-shadow: 0 18px 30px rgba(110, 182, 255, 0.3);
}

.button-secondary {
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.04);
}

.hero-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 18px;
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid rgba(195, 214, 238, 0.12);
}

.hero-note {
	margin: 0;
	color: #90cfff;
	font-weight: 600;
	max-width: 24ch;
}

.hero-mini-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	min-width: min(100%, 540px);
}

.hero-mini-stat {
	padding: 16px 18px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(195, 214, 238, 0.12);
}

.hero-mini-stat strong,
.float-price {
	display: block;
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: -0.04em;
	color: #97d3ff;
}

.hero-mini-stat span,
.float-label {
	color: #bfd0e8;
	font-size: 0.92rem;
	font-weight: 700;
}

.hero-scene {
	position: relative;
	--reveal-from: translateY(30px) scale(0.98);
	--reveal-to: translateY(0) scale(1);
}

@media (min-width: 1025px) {
	.hero-scene {
		margin-top: -240px;
	}
}

.scene-canvas {
	position: relative;
	min-height: 350px;
	border-radius: 34px;
	overflow: hidden;
	background:
		radial-gradient(circle at 50% 24%, rgba(110, 182, 255, 0.08) 0%, rgba(110, 182, 255, 0) 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
		linear-gradient(180deg, rgba(7, 18, 32, 0.82), rgba(7, 18, 32, 0.98));
	border: 1px solid rgba(195, 214, 238, 0.12);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.scene-gridlines,
.scene-glow,
.scene-platform,
.scene-overlay-copy {
	position: absolute;
}

.scene-gridlines {
	inset: 0;
	background-image:
		linear-gradient(180deg, rgba(5, 12, 24, 0.36) 0%, rgba(5, 12, 24, 0.6) 100%),
		radial-gradient(circle at 72% 50%, rgba(87, 169, 255, 0.2) 0%, rgba(87, 169, 255, 0) 32%), url("./assets/pic1.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 1.78;
}

.scene-glow {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	filter: blur(18px);
}

.scene-glow-a {
	top: 56px;
	right: 72px;
	background: radial-gradient(circle, rgba(110, 182, 255, 0.18) 0%, rgba(110, 182, 255, 0) 72%);
}

.scene-glow-b {
	display: none;
}

.scene-platform {
	left: 50%;
	bottom: 86px;
	width: 48%;
	height: 22px;
	border-radius: 50%;
	transform: translateX(-50%);
	background: radial-gradient(
		circle,
		rgba(110, 182, 255, 0.24) 0%,
		rgba(110, 182, 255, 0.04) 44%,
		rgba(110, 182, 255, 0) 72%
	);
	filter: blur(12px);
}

.scene-overlay-copy {
	z-index: 2;
	margin: 0;
	left: 50%;
	right: auto;
	top: 30px;
	width: min(calc(100% - 56px), 480px);
	transform: translateX(-50%);
	color: #eef6ff;
	font-size: 1.02rem;
	font-weight: 700;
	line-height: 1.72;
	text-align: center;
	text-wrap: balance;
	text-shadow: 0 8px 24px rgba(1, 7, 18, 0.9);
}

.hero-scene h2 {
	margin: 0 0 14px;
	font-size: clamp(1.34rem, 2.1vw, 1.8rem);
	line-height: 1.08;
	color: #cfe5ff;
}

.hero-scene p {
	margin: 0;
	line-height: 1.68;
	color: #aabdd7;
}

.hero-wave {
	position: relative;
	z-index: 1;
	margin-top: -18px;
	overflow: hidden;
}

.hero-wave svg {
	display: block;
	width: 100%;
	height: 122px;
}

.hero-wave-back,
.hero-wave-front {
	transform-origin: center bottom;
}

.hero-wave-back {
	animation: wave-sway-back 11s ease-in-out infinite alternate;
}

.hero-wave-front {
	animation: wave-sway-front 8s ease-in-out infinite alternate;
}

@keyframes wave-sway-back {
	from {
		transform: translateX(-8px) translateY(2px) scaleX(1.02);
	}

	to {
		transform: translateX(8px) translateY(-3px) scaleX(1.04);
	}
}

@keyframes wave-sway-front {
	from {
		transform: translateX(10px) translateY(-2px) scaleX(1.03);
	}

	to {
		transform: translateX(-12px) translateY(4px) scaleX(1.05);
	}
}

.spotlight-list,
.feature-list {
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.spotlight-list li,
.feature-list li {
	position: relative;
	padding-left: 28px;
	line-height: 1.65;
}

.spotlight-list li + li,
.feature-list li + li {
	margin-top: 12px;
}

.spotlight-list li::before,
.feature-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.72em;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), #d8ecff);
	box-shadow: 0 0 0 4px var(--accent-soft);
	transform: translateY(-50%);
}

.section-heading {
	max-width: 760px;
	margin-bottom: 34px;
}

.section-heading.narrow {
	max-width: 690px;
}

.value-section .section-heading.narrow {
	max-width: 860px;
}

.section-heading h2 {
	margin: 0;
	font-size: clamp(2.1rem, 4vw, 3.6rem);
	line-height: 1.06;
}

.section-heading p:last-child {
	margin: 18px 0 0;
	color: var(--muted);
	line-height: 1.7;
}

.pricing-grid,
.process-grid,
.value-grid {
	display: grid;
	gap: 22px;
}

.faq-list {
	display: grid;
	gap: 16px;
}

.faq-item {
	padding: 24px 26px;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: rgba(11, 24, 42, 0.88);
	box-shadow: var(--shadow);
	backdrop-filter: blur(14px);
}

.faq-question {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	cursor: pointer;
	list-style: none;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(1.05rem, 1.6vw, 1.32rem);
	font-weight: 700;
	line-height: 1.4;
	color: var(--ink);
	overflow-wrap: anywhere;
}

.faq-question::-webkit-details-marker {
	display: none;
}

.faq-question::after {
	content: "+";
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1px solid rgba(195, 214, 238, 0.18);
	color: var(--accent-dark);
	font-size: 1.15rem;
	line-height: 1;
	transition:
		transform 180ms ease,
		background-color 180ms ease,
		border-color 180ms ease;
}

.faq-item[open] .faq-question::after {
	content: "-";
	transform: rotate(180deg);
	background: rgba(110, 182, 255, 0.08);
	border-color: rgba(110, 182, 255, 0.26);
}

.faq-answer p {
	margin: 14px 42px 0 0;
	color: var(--muted);
	line-height: 1.72;
	overflow-wrap: anywhere;
}

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

.price-card {
	padding: 28px;
	border-radius: var(--radius-lg);
}

.price-card.featured {
	position: relative;
	background: linear-gradient(180deg, rgba(110, 182, 255, 0.18), rgba(8, 19, 35, 0.92)), var(--surface);
	border-color: rgba(110, 182, 255, 0.26);
	--reveal-from: translateY(16px);
	--reveal-to: translateY(-10px);
}

.price-card h3,
.process-card h3,
.value-card h3 {
	margin: 0;
	font-size: 1.65rem;
}

.card-kicker {
	color: var(--accent-dark);
}

.price {
	margin: 18px 0 14px;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 10px;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
}

.price-note {
	font-family: "Manrope", sans-serif;
	font-size: clamp(0.84rem, 1.2vw, 1rem);
	font-weight: 600;
	letter-spacing: 0;
	color: var(--muted);
}

.card-copy {
	margin: 0;
	color: var(--muted);
	line-height: 1.7;
}

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

.process-card {
	padding: 28px;
	border-radius: var(--radius-lg);
}

.process-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.2rem;
	height: 2.2rem;
	margin: 0 0 18px;
	border-radius: 999px;
	border: 1px solid rgba(110, 182, 255, 0.24);
	background: rgba(110, 182, 255, 0.08);
	color: #d7ebff;
	font-family: "Space Grotesk", sans-serif;
	font-size: 0.98rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
	text-transform: none;
}

.process-card p,
.value-card p,
.cta-copy p {
	color: var(--muted);
	line-height: 1.7;
}

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

.value-card {
	padding: 28px;
	border-radius: var(--radius-lg);
	background: rgba(11, 24, 42, 0.88);
}

.cta-panel {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	gap: 28px;
	align-items: center;
	padding: clamp(28px, 4vw, 42px);
	border-radius: var(--radius-xl);
	background:
		radial-gradient(circle at top right, rgba(143, 220, 255, 0.14), transparent 34%),
		radial-gradient(circle at bottom left, rgba(110, 182, 255, 0.18), transparent 32%), rgba(8, 20, 37, 0.88);
}

.cta-copy h2 {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.4rem);
	line-height: 1.06;
}

.cta-actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	padding: 24px;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--line);
}

.contact-line {
	margin: 0;
}

.contact-mail {
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
}

.hero-copy,
.hero-scene,
.price-card,
.process-card,
.value-card,
.cta-copy,
.cta-actions,
.site-nav,
.language-switcher {
	min-width: 0;
}

.site-footer {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	padding: 24px 0 40px;
	color: var(--muted);
	font-weight: 600;
}

.site-footer p {
	margin: 0;
}

.footer-tools {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-link,
.cookie-banner-link,
.legal-contact-link {
	color: var(--accent-dark);
	font-weight: 700;
	transition: color 180ms ease;
}

.footer-link:hover,
.footer-link:focus-visible,
.cookie-banner-link:hover,
.cookie-banner-link:focus-visible,
.legal-contact-link:hover,
.legal-contact-link:focus-visible {
	color: var(--ink);
}

.cookie-banner-link {
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.legal-main {
	padding: 44px 0 80px;
}

.legal-hero .section-heading {
	max-width: 880px;
}

.legal-hero h1 {
	max-width: none;
	font-size: clamp(2.6rem, 5vw, 4.8rem);
	line-height: 0.98;
}

.legal-hero .section-heading p:last-child {
	max-width: 66ch;
	margin-top: 22px;
}

.legal-section-stack {
	display: grid;
	gap: 24px;
}

.legal-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.legal-card {
	padding: 28px;
	border-radius: var(--radius-lg);
	background: rgba(10, 22, 40, 0.88);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.legal-card h2,
.legal-card h3 {
	margin: 0 0 16px;
	font-size: clamp(1.35rem, 2.4vw, 1.9rem);
}

.legal-card p {
	margin: 0;
	color: var(--muted);
	line-height: 1.72;
}

.legal-card p + p {
	margin-top: 12px;
}

.legal-list {
	margin: 18px 0 0;
	padding-left: 1.1rem;
	display: grid;
	gap: 10px;
	color: var(--muted);
}

.legal-list li {
	line-height: 1.68;
}

.legal-meta {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-top: 28px;
	padding: 20px;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--line);
}

.legal-meta-block strong {
	display: block;
	margin-bottom: 6px;
	font-family: "Space Grotesk", sans-serif;
	font-size: 1rem;
	color: var(--ink);
}

.legal-meta-block span {
	display: block;
	color: var(--muted);
	line-height: 1.55;
}

.not-found-main {
	min-height: calc(100vh - 220px);
	display: flex;
	align-items: center;
}

.not-found-card {
	width: min(100%, 760px);
	margin: 0 auto;
	padding: clamp(30px, 5vw, 46px);
	border-radius: var(--radius-xl);
	background: rgba(10, 22, 40, 0.88);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	text-align: center;
}

.not-found-card h1 {
	max-width: none;
	margin-bottom: 18px;
	font-size: clamp(2.8rem, 6vw, 4.6rem);
	line-height: 0.98;
}

.not-found-card p {
	margin: 0 auto;
	max-width: 54ch;
	color: var(--muted);
	line-height: 1.72;
}

.not-found-actions,
.not-found-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}

.not-found-actions {
	margin-top: 26px;
}

.not-found-links {
	margin-top: 18px;
}

.cookie-banner {
	position: fixed;
	z-index: 30;
}

.cookie-banner {
	left: 50%;
	bottom: 24px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	width: min(calc(100% - 24px), 980px);
	padding: 20px 22px;
	border: 1px solid rgba(195, 214, 238, 0.16);
	border-radius: 26px;
	background: rgba(7, 17, 31, 0.94);
	backdrop-filter: blur(18px);
	box-shadow: 0 20px 44px rgba(2, 8, 20, 0.46);
	transform: translateX(-50%);
	transition:
		opacity 180ms ease,
		transform 180ms ease;
}

.cookie-banner.is-hidden {
	opacity: 0;
	pointer-events: none;
	transform: translateX(-50%) translateY(16px);
}

.cookie-banner-copy {
	min-width: 0;
}

.cookie-banner-kicker {
	margin: 0 0 8px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--teal);
}

.cookie-banner-text {
	margin: 0;
	color: var(--muted);
	line-height: 1.62;
}

.cookie-banner-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px;
}

.cookie-banner-actions .button {
	min-height: 48px;
}

.cookie-settings-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 14px;
	border: 1px solid rgba(195, 214, 238, 0.14);
	border-radius: 999px;
	background: rgba(7, 17, 31, 0.88);
	color: var(--ink);
	font-family: "Manrope", sans-serif;
	font-size: 0.92rem;
	font-weight: 700;
	cursor: pointer;
	backdrop-filter: blur(16px);
	box-shadow: 0 10px 24px rgba(2, 8, 20, 0.24);
	transition:
		transform 180ms ease,
		border-color 180ms ease;
}

.cookie-settings-button:hover,
.cookie-settings-button:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(255, 255, 255, 0.22);
}

.cookie-settings-button.is-hidden {
	display: none;
}

[data-reveal] {
	opacity: 0;
	transform: var(--reveal-from, translateY(24px));
	transition:
		opacity 700ms ease,
		transform 700ms ease;
}

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

@media (max-width: 1024px) {
	.cta-panel,
	.hero-grid,
	.pricing-grid,
	.process-grid,
	.value-grid,
	.legal-grid,
	.legal-meta {
		grid-template-columns: 1fr;
	}

	.site-header {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		gap: 12px 18px;
		border-radius: 28px;
		text-align: left;
	}

	.site-nav {
		flex: 1 1 auto;
		flex-wrap: wrap;
		justify-content: center;
		gap: 12px 18px;
	}

	.brand {
		flex: 0 1 auto;
		justify-content: flex-start;
	}

	.language-switcher-header {
		flex: 0 0 auto;
		justify-content: flex-end;
		width: auto;
	}

	.hero {
		padding-bottom: 10px;
	}

	.hero-surface {
		border-radius: 34px;
	}

	.hero-grid {
		padding: 30px;
	}

	.hero-copy,
	.hero-scene,
	.section-heading,
	.section-heading.narrow,
	.cta-copy {
		width: 100%;
		max-width: 760px;
		margin-inline: auto;
	}

	.hero-copy,
	.section-heading,
	.cta-copy {
		text-align: center;
	}

	.hero-copy .eyebrow,
	.section-heading .eyebrow,
	.cta-copy .eyebrow {
		justify-content: center;
	}

	.hero-copy h1,
	.hero-intro,
	.hero-note,
	.section-heading p:last-child,
	.cta-copy p {
		margin-inline: auto;
	}

	.hero-actions,
	.hero-meta {
		justify-content: center;
	}

	.hero-mini-stats {
		margin-inline: auto;
	}

	.hero-scene {
		--reveal-from: translateY(24px);
		--reveal-to: translateY(0);
	}

	.scene-canvas {
		min-height: 460px;
	}

	.scene-overlay-copy {
		width: min(calc(100% - 56px), 500px);
	}

	.hero-wave {
		margin-top: -8px;
	}

	.hero-wave svg {
		height: 104px;
	}

	.pricing-grid,
	.process-grid,
	.value-grid {
		gap: 18px;
	}

	.price-card.featured {
		--reveal-from: translateY(24px);
		--reveal-to: translateY(0);
	}

	.cta-actions {
		align-items: center;
		text-align: center;
	}

	.site-footer {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.footer-tools {
		width: 100%;
		justify-content: center;
	}

	.legal-main {
		padding-top: 34px;
	}

	.legal-card {
		padding: 24px;
	}

	.legal-meta {
		padding: 18px;
	}

	.not-found-main {
		min-height: auto;
	}

	.footer-tools {
		justify-content: center;
	}

	.cookie-banner {
		grid-template-columns: 1fr;
		width: min(calc(100% - 24px), 760px);
		padding: 18px 18px 20px;
	}

	.cookie-banner-copy,
	.cookie-banner-actions {
		text-align: center;
		justify-content: center;
	}
}

@media (max-width: 760px) {
	.page-shell {
		width: min(calc(100% - 24px), var(--max-width));
	}

	.site-header {
		top: 10px;
		gap: 10px;
		margin-top: 12px;
		padding: 10px 14px;
		border-radius: 22px;
		backdrop-filter: blur(14px);
		box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
	}

	.brand-logo {
		width: min(172px, 100%);
	}

	.site-nav {
		order: 3;
		flex: 1 0 100%;
		justify-content: center;
		gap: 10px 16px;
		margin-top: 2px;
		padding-top: 8px;
		border-top: 1px solid rgba(195, 214, 238, 0.12);
		font-size: 0.92rem;
		line-height: 1.2;
	}

	.language-switcher-header {
		order: 2;
		margin-left: auto;
		gap: 6px;
	}

	.brand {
		order: 1;
	}

	.language-switcher-header {
		display: none;
	}

	.language-switcher-footer {
		display: inline-flex;
		justify-content: center;
		align-self: center;
		flex-wrap: wrap;
		margin-top: 4px;
	}

	.lang-button {
		padding: 7px 10px;
		font-size: 0.82rem;
	}

	.section {
		padding: 70px 0;
	}

	.hero {
		padding-top: 46px;
	}

	.hero-grid {
		gap: 24px;
		padding: 24px;
	}

	.hero-copy h1 {
		max-width: 12ch;
	}

	.price-card,
	.process-card,
	.value-card,
	.cta-actions,
	.faq-item {
		padding: 24px;
	}

	.process-number {
		width: 2rem;
		height: 2rem;
		font-size: 0.92rem;
	}

	.hero-surface {
		border-radius: 30px;
	}

	.hero-mini-stats {
		grid-template-columns: 1fr;
	}

	.hero-meta {
		align-items: stretch;
	}

	.hero-note {
		max-width: none;
	}

	.scene-canvas {
		min-height: auto;
		padding: 214px 18px 18px;
	}

	.scene-platform {
		top: 156px;
		bottom: auto;
		width: 66%;
	}

	.scene-overlay-copy {
		top: 20px;
		left: 50%;
		right: auto;
		width: min(calc(100% - 36px), 100%);
		transform: translateX(-50%);
	}

	.hero-wave {
		margin-top: -2px;
	}

	.hero-wave svg {
		height: 72px;
	}

	.site-footer {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.cookie-banner {
		bottom: 18px;
		padding: 16px;
		border-radius: 22px;
	}

	.cookie-banner-actions {
		width: 100%;
	}

	.cookie-banner-actions .button {
		width: 100%;
	}

	.cookie-settings-button {
		padding: 9px 12px;
		font-size: 0.86rem;
	}
}

@media (max-width: 360px) {
	.page-shell {
		width: min(calc(100% - 16px), var(--max-width));
	}

	.site-header {
		top: 8px;
		gap: 8px;
		margin-top: 10px;
		padding: 9px 12px;
		border-radius: 20px;
	}

	.brand-logo {
		width: min(156px, 100%);
	}

	.site-nav {
		gap: 8px 12px;
		font-size: 0.86rem;
		padding-top: 7px;
	}

	.language-switcher-header {
		gap: 5px;
	}

	.language-switcher-footer {
		gap: 5px;
	}

	.lang-button {
		padding: 6px 9px;
		font-size: 0.78rem;
	}

	.section {
		padding: 58px 0;
	}

	.hero {
		padding-top: 40px;
	}

	.hero-grid {
		gap: 18px;
		padding: 18px;
	}

	.hero-surface {
		border-radius: 24px;
	}

	.eyebrow,
	.card-kicker,
	.spotlight-label,
	.process-number {
		gap: 8px;
		margin-bottom: 14px;
		font-size: 0.72rem;
		letter-spacing: 0.08em;
		line-height: 1.45;
	}

	.process-number {
		width: 1.85rem;
		height: 1.85rem;
		font-size: 0.82rem;
		line-height: 1;
	}

	.eyebrow,
	.spotlight-label {
		gap: 0;
	}

	h1 {
		max-width: none;
		font-size: clamp(2.05rem, 11vw, 2.55rem);
		line-height: 1.02;
	}

	.section-heading h2,
	.cta-copy h2,
	.hero-scene h2 {
		font-size: clamp(1.62rem, 8.6vw, 2.08rem);
		line-height: 1.12;
	}

	.hero-intro,
	.card-copy,
	.process-card p,
	.value-card p,
	.cta-copy p,
	.hero-scene p,
	.feature-list li,
	.spotlight-list li,
	.hero-mini-stat span,
	.contact-line,
	.site-footer {
		font-size: 0.95rem;
		line-height: 1.62;
	}

	.hero-actions,
	.hero-meta {
		gap: 12px;
	}

	.hero-actions .button,
	.cta-actions .button {
		width: 100%;
		padding: 14px 16px;
	}

	.hero-mini-stat,
	.price-card,
	.process-card,
	.value-card,
	.cta-actions,
	.faq-item {
		padding: 18px;
	}

	.faq-question {
		gap: 14px;
		font-size: 1rem;
	}

	.faq-question::after {
		width: 26px;
		height: 26px;
		font-size: 1rem;
	}

	.faq-answer p {
		margin-right: 0;
		font-size: 0.95rem;
		line-height: 1.62;
	}

	.price-card h3,
	.process-card h3,
	.value-card h3 {
		font-size: 1.42rem;
	}

	.price {
		font-size: clamp(1.72rem, 10vw, 2.2rem);
	}

	.scene-canvas {
		padding: 196px 14px 14px;
	}

	.scene-overlay-copy {
		top: 16px;
		left: 50%;
		right: auto;
		width: min(calc(100% - 28px), 100%);
		transform: translateX(-50%);
		font-size: 0.94rem;
		line-height: 1.66;
	}

	.contact-mail {
		font-size: 0.98rem;
	}

	.cookie-banner {
		width: min(calc(100% - 16px), 100%);
		bottom: 12px;
		padding: 14px;
		border-radius: 20px;
	}

	.cookie-banner-kicker {
		font-size: 0.72rem;
	}

	.cookie-banner-text {
		font-size: 0.9rem;
		line-height: 1.56;
	}

	.cookie-settings-button {
		padding: 8px 11px;
		font-size: 0.8rem;
	}

	.legal-card {
		padding: 20px;
	}

	.legal-hero h1,
	.not-found-card h1 {
		font-size: clamp(2.2rem, 12vw, 3rem);
	}
}

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

	*,
	*::before,
	*::after {
		animation: none !important;
		transition-duration: 0ms !important;
	}

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