/* ============================================================
   UNCOVERT — design layer
   Sits on top of assets/main.css (Carrd base).

   - content is untouched; this file only restyles
   - JS-dependent visuals are gated on html.ux-js (added by custom.js)
   - ambient/looping motion is gated on body.ux-motion
     (not applied when prefers-reduced-motion: reduce)
   ============================================================ */

:root {
	--ux-bg: #0b0b12;
	--ux-panel: #10101a;
	--ux-line: rgba(148, 131, 255, 0.16);
	--ux-line-strong: rgba(148, 131, 255, 0.38);
	--ux-violet: #8c70ff;
	--ux-violet-deep: #7000ff;
	--ux-violet-soft: #b9adf7;
	--ux-coral: #ff8c70;
	--ux-coral-soft: #ffa387;
	--ux-text: #f4f3fb;
	--ux-text-2: rgba(244, 243, 251, 0.66);
	--ux-text-3: rgba(244, 243, 251, 0.42);
	--ux-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
	--ux-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--ux-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- canvas ---------- */

html {
	background-color: var(--ux-bg);
	scroll-behavior: smooth;
	scrollbar-width: thin;
	scrollbar-color: #2b2b3e transparent;
}

body {
	background-color: var(--ux-bg);
	font-family: 'Source Sans 3', sans-serif;
	color: var(--ux-text);
}

::selection {
	background: rgba(140, 112, 255, 0.35);
	color: #fff;
}

::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

::-webkit-scrollbar-track {
	background: transparent;
}

::-webkit-scrollbar-thumb {
	background: #2b2b3e;
	border-radius: 8px;
	border: 2px solid var(--ux-bg);
}

::-webkit-scrollbar-thumb:hover {
	background: #3a3a52;
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
	outline: 2px solid var(--ux-violet-soft);
	outline-offset: 3px;
	border-radius: 0.4rem;
}

#lang-switcher a:focus-visible {
	border-radius: 1em;
}

.icons-component.style-1 > li > a:focus-visible {
	border-radius: 50%;
}

/* blueprint grid: keep Carrd's pattern, soften into the darker canvas */
body::before {
	opacity: 0.55;
	-webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.18) 100%);
	mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.18) 100%);
}

/* loading veil: match the new canvas color */
body::after {
	background-color: var(--ux-bg);
}

/* ---------- ambient layers (injected by custom.js) ---------- */

#ux-veil {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.ux-aurora {
	position: absolute;
	inset: -25%;
	background:
		radial-gradient(42% 34% at 50% 5%, rgba(112, 0, 255, 0.16), transparent 70%),
		radial-gradient(28% 24% at 84% 28%, rgba(255, 140, 112, 0.05), transparent 70%),
		radial-gradient(36% 30% at 10% 72%, rgba(112, 0, 255, 0.09), transparent 70%);
}

body.ux-motion .ux-aurora {
	animation: uxAurora 70s ease-in-out infinite alternate;
}

.ux-noise {
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	opacity: 0.05;
}

.ux-vignette {
	position: absolute;
	inset: 0;
	background: radial-gradient(130% 100% at 50% 8%, transparent 55%, rgba(4, 4, 9, 0.55) 100%);
}

/* scroll progress bar */
#ux-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	z-index: 60;
	background: linear-gradient(90deg, var(--ux-violet) 0%, #a78bff 55%, var(--ux-coral) 100%);
	transform: scaleX(0);
	transform-origin: 0 50%;
	pointer-events: none;
}

/* ---------- typography ---------- */

.text-component.style-1 {
	color: var(--ux-violet-soft);
}

.text-component.style-3 {
	color: var(--ux-text-2);
}

.text-component.style-3 strong {
	color: #fff;
	font-weight: 600;
}

.text-component.style-5 {
	color: var(--ux-text-3);
	font-size: 0.95em;
}

.text-component a {
	color: var(--ux-violet-soft);
}

.text-component.style-5 a {
	text-decoration: none;
}

/* gradient underline under section headings */
.text-component.style-4::after {
	content: '';
	display: block;
	width: 3.5rem;
	height: 2px;
	margin: 1.35rem auto 0;
	border-radius: 2px;
	background: linear-gradient(90deg, transparent, var(--ux-violet) 35%, var(--ux-coral) 65%, transparent);
}

/* ---------- language switcher (base styles live in main.css) ---------- */

#lang-switcher {
	background: rgba(10, 10, 17, 0.78);
	border-color: rgba(148, 131, 255, 0.28);
	box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.4);
}

#lang-switcher a {
	color: rgba(244, 243, 251, 0.45);
}

#lang-switcher a:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
}

#lang-switcher a.active {
	color: #fff;
	background: linear-gradient(120deg, rgba(140, 112, 255, 0.95), rgba(112, 0, 255, 0.9));
	box-shadow: 0 0.35rem 1rem rgba(112, 0, 255, 0.4);
}

/* ---------- hero ---------- */

#container01 {
	position: relative;
	flex-direction: column;
	min-height: 100svh;
	margin-top: calc(var(--padding-vertical) * -1) !important;
	margin-bottom: 0 !important;
	padding: 3.5rem 1.5rem 5.25rem;
}

#container01 .inner > * {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

/* must beat the blanket rule above (specificity 1,1,0) */
#container01 .inner > #text23 {
	margin-bottom: 3.4rem !important;
}

#container01 .inner > #image03 {
	margin-bottom: 2.6rem !important;
}

#container01 .inner > #text03 {
	margin-bottom: 1.5rem !important;
}

#container01 .inner > #text07 {
	margin-bottom: 3.25rem !important;
}

#container01 .inner > #buttons02 {
	margin-bottom: 0 !important;
}

/* tagline chip — ::after ghost matches the leading dot so the string is centered in the pill */
#text23 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	width: max-content;
	max-width: 100%;
	padding: 0.42rem calc(1.05rem - 0.1em) 0.42rem 1.05rem;
	border: 1px solid rgba(148, 131, 255, 0.35);
	border-radius: 2rem;
	background: rgba(140, 112, 255, 0.07);
	box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
	color: var(--ux-violet-soft);
	font-size: 0.7em;
	letter-spacing: 0.1em;
	line-height: 1.2;
	white-space: nowrap;
}

#text23::before,
#text23::after {
	content: '';
	flex: 0 0 auto;
	width: 0.35rem;
	height: 0.35rem;
	border-radius: 50%;
}

#text23::before {
	background: var(--ux-coral);
	box-shadow: 0 0 10px rgba(255, 140, 112, 0.9);
	animation: uxDot 2.8s ease-in-out infinite;
}

#text23::after {
	visibility: hidden;
}

/* logo: keep the artwork exactly as-is, stage it */
.image-component.style-3 > .frame {
	width: 12.75rem;
	overflow: visible;
	position: relative;
}

.image-component.style-3 > .frame::before {
	content: '';
	position: absolute;
	inset: -24% -30%;
	background:
		radial-gradient(52% 44% at 42% 38%, rgba(140, 112, 255, 0.22), transparent 70%),
		radial-gradient(46% 42% at 62% 64%, rgba(255, 140, 112, 0.1), transparent 70%);
	animation: uxBreathe 8s ease-in-out infinite;
}

.image-component.style-3 > .frame > img {
	display: block;
	width: 100%;
	filter: drop-shadow(0 1.4rem 2.2rem rgba(0, 0, 0, 0.5)) drop-shadow(0 0 2.75rem rgba(140, 112, 255, 0.16));
}

body.ux-motion #image03 {
	animation: uxFloat 7s ease-in-out 2.4s infinite;
}

/* wordmark */
#text03 {
	font-size: clamp(2.9rem, 9.5vw, 4.6rem);
	letter-spacing: 0.04rem;
	background: linear-gradient(180deg, #ffffff 22%, #d9d2ff 58%, #a78bff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
	#text03 {
		color: #fff;
		-webkit-text-fill-color: #fff;
		background: none;
	}
}

body.ux-motion #text03 {
	animation: uxGlow 7s ease-in-out 2.6s infinite;
}

#text07 {
	color: var(--ux-text-2);
	font-size: 1.05em;
	letter-spacing: 0.02em;
}

/* ---------- buttons ---------- */

.buttons-component.style-2 > li > a {
	position: relative;
	overflow: hidden;
}

.buttons-component.style-2 > li > a::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: -45%;
	width: 38%;
	background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.22), transparent);
	transform: translateX(-130%) skewX(-14deg);
	transition: transform 0.8s var(--ux-ease-out);
	pointer-events: none;
}

.buttons-component.style-2 > li > a:hover::after {
	transform: translateX(430%) skewX(-14deg);
}

/* hero primary */
#buttons02 > li > a.n01 {
	background: linear-gradient(120deg, #9b7dff 0%, #7c3aed 55%, #6d28e0 100%);
	border-color: rgba(177, 155, 255, 0.55);
	color: #fff;
	box-shadow: 0 1rem 2.4rem rgba(112, 0, 255, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

#buttons02 > li > a.n01 > svg {
	fill: #fff;
}

/* center the label inside the pill (main.css forces width:100% / text-align:left) */
#buttons02 > li > a.n01 > .label,
#buttons02 > li > a.n02 > .label,
#buttons01 > li > a.n01 > .label {
	width: auto;
	flex: 0 0 auto;
	text-align: center;
}

#buttons02 {
	gap: 1rem;
}

/* hero secondary (Kontakt) */
#buttons02 > li > a.n02 {
	background: rgba(140, 112, 255, 0.05);
	border-color: rgba(148, 131, 255, 0.4);
	color: #cfc6ff;
}

#buttons02 > li > a.n02 > svg {
	fill: var(--ux-violet-soft);
}

#buttons02 > li > a.n02:hover {
	color: #fff !important;
	background: rgba(140, 112, 255, 0.14);
	border-color: rgba(148, 131, 255, 0.75);
	transform: translateY(-2px);
	box-shadow: 0 0.9rem 2rem rgba(112, 0, 255, 0.3);
}

#buttons02 > li > a.n02:hover > svg {
	fill: #fff !important;
}

/* hero coverage line — sits under the CTAs; bottom padding clears the scroll cue */
#text72 {
	flex: 0 0 auto;
	width: min(42rem, calc(100% - 2.5rem));
	margin: 1.5rem 0 0;
	font-size: 0.84rem;
	line-height: 1.45;
	letter-spacing: 0.03em;
	font-weight: 400;
	color: var(--ux-text-2);
	text-align: center;
}

#buttons02 > li > a.n01:hover {
	color: #fff !important;
	transform: translateY(-3px);
	box-shadow: 0 1.4rem 3rem rgba(112, 0, 255, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

#buttons02 > li > a.n01:hover > svg {
	fill: #fff !important;
}

/* mid-page CTA (why section) */
#buttons01 > li > a.n01 {
	background: rgba(255, 140, 112, 0.06);
	border-color: rgba(255, 140, 112, 0.45);
	color: #ffd9cd;
}

#buttons01 > li > a.n01 > svg {
	fill: var(--ux-coral);
}

#buttons01 > li > a.n01:hover {
	color: #fff !important;
	background: rgba(255, 140, 112, 0.16);
	border-color: rgba(255, 140, 112, 0.85);
	transform: translateY(-2px);
	box-shadow: 0 0.9rem 2rem rgba(255, 110, 70, 0.3);
}

#buttons01 > li > a.n01:hover > svg {
	fill: #fff !important;
}

#text73 {
	margin-top: 1.5rem !important;
	margin-bottom: 0 !important;
	font-size: 0.85rem;
	color: var(--ux-text-2);
}

#text73 a {
	color: var(--ux-violet-soft);
	text-decoration: none;
	border-bottom: 1px solid rgba(185, 173, 247, 0.35);
	transition: color 0.3s ease, border-color 0.3s ease;
}

#text73 a:hover {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.6);
}

/* ---------- section rhythm ---------- */

#container12 {
	margin-top: 6.5rem !important;
	margin-bottom: 4.5rem !important;
}

#container13 {
	margin-top: 1.5rem !important;
	margin-bottom: 1.5rem !important;
}

#container14 {
	margin-top: 1.5rem !important;
	margin-bottom: 1.5rem !important;
}

#container02 {
	margin-top: 1.5rem !important;
	margin-bottom: 4rem !important;
}

#buttons01 {
	margin-top: 2.5rem !important;
}

#proof {
	margin-top: 5.5rem !important;
	margin-bottom: 0 !important;
}

#process {
	margin-top: 5.5rem !important;
	margin-bottom: 4.5rem !important;
}

#text11 {
	margin-top: 0 !important;
	margin-bottom: 2.75rem !important;
}

#container09 {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

#container11 {
	margin-top: 5rem !important;
	margin-bottom: 4.5rem !important;
}

#text02 {
	margin-top: 0 !important;
	margin-bottom: 2.75rem !important;
}

#container03 {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

#container04 {
	margin-top: 4.5rem !important;
	margin-bottom: 0 !important;
}

#text16 {
	margin-top: 8rem !important;
}

/* ---------- "why physical security" ---------- */

#text26 {
	margin-bottom: 2rem !important;
}

#text32 {
	margin-bottom: 1.6rem !important;
	color: var(--ux-text-2);
	font-size: 1.02rem;
	line-height: 1.9;
	max-width: 30rem;
	margin-left: auto;
	margin-right: auto;
}

#text32 strong {
	color: #fff;
	background: rgba(255, 140, 112, 0.14);
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	padding: 0.05em 0.28em;
	border-radius: 0.18em;
}

#text34 {
	margin-bottom: 2.4rem !important;
	letter-spacing: 0.22rem;
}

/* ---------- threat card matrix ---------- */

#container13 > .wrapper > .inner,
#container14 > .wrapper > .inner,
#container02 > .wrapper > .inner {
	align-items: stretch;
}

#container13 > .wrapper > .inner > div,
#container14 > .wrapper > .inner > div,
#container02 > .wrapper > .inner > div {
	position: relative;
	width: calc(50% - 0.75rem) !important;
	margin: 0 !important;
	padding: 2rem 1.9rem !important;
	background: linear-gradient(150deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012) 55%), var(--ux-panel);
	border: 1px solid var(--ux-line);
	border-radius: 1.25rem;
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
	transition: transform 0.4s var(--ux-ease-out), border-color 0.4s ease, box-shadow 0.5s ease;
	will-change: transform;
}

/* while custom.js is tilting a card, transform must track the cursor instantly */
#container13 > .wrapper > .inner > div.ux-tilting,
#container14 > .wrapper > .inner > div.ux-tilting,
#container02 > .wrapper > .inner > div.ux-tilting {
	transition: border-color 0.4s ease, box-shadow 0.5s ease;
}

#container13 > .wrapper > .inner > div:nth-child(2),
#container14 > .wrapper > .inner > div:nth-child(2),
#container02 > .wrapper > .inner > div:nth-child(2) {
	margin-left: 1.5rem !important;
}

/* top hairline accent on hover */
#container13 > .wrapper > .inner > div::before,
#container14 > .wrapper > .inner > div::before,
#container02 > .wrapper > .inner > div::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 12%;
	right: 12%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(148, 131, 255, 0.55), transparent);
	opacity: 0;
	transition: opacity 0.4s ease;
}

/* cursor spotlight (pointer position set by custom.js) */
#container13 > .wrapper > .inner > div::after,
#container14 > .wrapper > .inner > div::after,
#container02 > .wrapper > .inner > div::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(140, 112, 255, 0.16), transparent 65%);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}

#container13 > .wrapper > .inner > div:hover,
#container14 > .wrapper > .inner > div:hover,
#container02 > .wrapper > .inner > div:hover {
	border-color: var(--ux-line-strong);
	box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.45);
	transform: translateY(-0.375rem);
}

#container13 > .wrapper > .inner > div:hover::before,
#container14 > .wrapper > .inner > div:hover::before,
#container02 > .wrapper > .inner > div:hover::before,
#container13 > .wrapper > .inner > div:hover::after,
#container14 > .wrapper > .inner > div:hover::after,
#container02 > .wrapper > .inner > div:hover::after {
	opacity: 1;
}

/* icon medallions */
.image-component.style-1 > .frame {
	width: 4.75rem;
	height: 4.75rem;
	overflow: visible;
	border-radius: 50%;
	background: radial-gradient(60% 60% at 50% 40%, rgba(255, 140, 112, 0.12), rgba(140, 112, 255, 0.08) 70%), rgba(255, 255, 255, 0.02);
	border: 1px solid var(--ux-line);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.image-component.style-1 > .frame > img {
	width: 55%;
}

.container-component.style-4 .image-component.style-1 {
	margin: 0 0 1.7rem !important;
}

/* card text */
.container-component.style-4 .text-component.style-6 {
	font-size: 1.05rem;
	letter-spacing: 0.05em;
	margin: 0 0 0.9rem !important;
}

.container-component.style-4 .text-component.style-3 {
	font-size: 0.95rem;
	line-height: 1.75;
	margin: 0 !important;
}

/* ---------- "why uncovert" ---------- */

#text35 {
	margin-bottom: 2rem !important;
}

#text28 {
	color: var(--ux-text-2);
	font-size: 1rem;
	line-height: 1.9;
	max-width: 30rem;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2.2rem !important;
}

#text28 strong {
	color: #fff;
	font-weight: 600;
}

#text28 .p:first-child strong {
	background: rgba(140, 112, 255, 0.16);
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	padding: 0.05em 0.28em;
	border-radius: 0.18em;
}

#text28 .p:last-child strong {
	color: var(--ux-coral);
	font-weight: 700;
	font-size: 1.12em;
}

.ux-why-grid {
	--why-line: rgba(148, 131, 255, 0.16);
	counter-reset: why;
	max-width: 48rem;
	margin: 0 auto 0.4rem;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	border: 1px solid var(--ux-line);
	border-radius: 1.1rem;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.02);
}

@media (min-width: 737px) {
	.ux-why-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto 1fr auto auto 1fr;
	}

	.ux-why-bullet {
		display: grid;
		grid-template-rows: subgrid;
		grid-row: span 3;
	}

	.ux-why-bullet:nth-child(odd) {
		border-right: 1px solid var(--why-line);
	}

	.ux-why-bullet:nth-child(-n + 2) {
		border-bottom: 1px solid var(--why-line);
	}
}

.ux-why-bullet {
	position: relative;
	padding: 1.7rem 1.65rem 1.55rem;
	text-align: left;
	background: none;
	border: none;
	border-radius: 0;
}

.ux-why-bullet + .ux-why-bullet {
	border-top: 1px solid var(--why-line);
}

@media (min-width: 737px) {
	.ux-why-bullet + .ux-why-bullet {
		border-top: none;
	}
}

.ux-why-bullet::before {
	counter-increment: why;
	content: counter(why, decimal-leading-zero);
	display: block;
	margin-bottom: 0.85rem;
	font-family: var(--ux-mono);
	font-size: 0.68rem;
	letter-spacing: 0.16em;
	color: var(--ux-text-3);
}

.ux-why-bullet .text-component.style-1 {
	font-family: 'Chakra Petch', sans-serif;
	font-size: 1.02rem;
	letter-spacing: 0.03em;
	line-height: 1.35;
	text-transform: none;
	color: var(--ux-text);
	margin-bottom: 0.65rem !important;
}

.ux-why-bullet .text-component.style-3 {
	font-size: 0.94rem;
	line-height: 1.7;
	margin: 0 !important;
}

/* ---------- proof / process sections ---------- */

.ux-section {
	position: relative;
}

.ux-section-inner {
	max-width: 68rem;
	margin: 0 auto;
}

#proof > .ux-section-inner > .text-component.style-4 {
	margin-bottom: 1.5rem !important;
}

#proof > .ux-section-inner > .text-component.style-3 {
	max-width: 36rem;
	margin: 0 auto 3rem !important;
	color: var(--ux-text-2);
	font-size: 0.98rem;
	line-height: 1.85;
}

.ux-proof-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	justify-items: center;
	max-width: 48rem;
	margin: 0 auto;
}

@media (min-width: 737px) {
	.ux-proof-grid {
		grid-template-columns: repeat(3, 1fr);
		justify-items: stretch;
		gap: 1.1rem;
	}
}

.ux-proof-clip {
	margin: 0;
	width: 100%;
	max-width: 18rem;
}

@media (min-width: 737px) {
	.ux-proof-clip {
		max-width: none;
	}
}

.ux-proof-ph {
	position: relative;
	aspect-ratio: 3 / 4;
	max-height: 22rem;
	border-radius: 0.85rem;
	overflow: hidden;
	background: #0a0a10;
	border: 1px solid var(--ux-line-strong);
	box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ux-proof-ph video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ux-proof-ph:has(video)::after {
	display: none;
}

.ux-proof-ph::after {
	content: '';
	position: absolute;
	left: 4%;
	right: 4%;
	top: 38%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 140, 112, 0.4), transparent);
	pointer-events: none;
}

.ux-proof-rec {
	position: absolute;
	top: 0.8rem;
	left: 0.9rem;
	font-family: var(--ux-mono);
	font-size: 0.62rem;
	letter-spacing: 0.18rem;
	color: #ff9b85;
}

.ux-proof-rec::before {
	content: '';
	display: inline-block;
	width: 0.45rem;
	height: 0.45rem;
	margin-right: 0.45rem;
	border-radius: 50%;
	background: #ff5c49;
	box-shadow: 0 0 0.5rem rgba(255, 92, 73, 0.8);
}

.ux-proof-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 3.2rem;
	height: 3.2rem;
	padding: 0;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: rgba(16, 16, 26, 0.62);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.35s var(--ux-ease-spring), border-color 0.3s ease, opacity 0.25s ease, background-color 0.3s ease;
}

.ux-proof-play svg {
	width: 1.15rem;
	height: 1.15rem;
	margin-left: 0.12rem;
	fill: #fff;
}

.ux-proof-ph:hover .ux-proof-play,
.ux-proof-play:focus-visible {
	transform: translate(-50%, -50%) scale(1.08);
	border-color: rgba(255, 140, 112, 0.75);
	background: rgba(16, 16, 26, 0.78);
}

.ux-proof-ph.is-playing .ux-proof-play {
	opacity: 0;
	pointer-events: none;
}

.ux-proof-cap {
	margin-top: 0.7rem;
	font-family: var(--ux-mono);
	font-size: 0.7rem;
	letter-spacing: 0.03em;
	line-height: 1.5;
	color: var(--ux-text-2);
}

.ux-proof-cap a {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid rgba(185, 173, 247, 0.35);
}

.ux-proof-cap a:hover {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.55);
}

#proof,
#process {
	margin-top: 4.5rem !important;
	margin-bottom: 4.5rem !important;
}

#process > .ux-section-inner > .text-component.style-4 {
	margin-bottom: 3rem !important;
}

.ux-steps {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	text-align: left;
}

.ux-steps::before {
	content: '';
	position: absolute;
	left: 1.35rem;
	top: 1.35rem;
	bottom: 1.6rem;
	width: 1px;
	background: linear-gradient(180deg, rgba(148, 131, 255, 0.45), rgba(148, 131, 255, 0.08));
	pointer-events: none;
}

.ux-step {
	display: grid;
	grid-template-columns: 2.7rem 1fr;
	grid-template-rows: auto auto auto;
	column-gap: 1.15rem;
	padding: 0 0 2.15rem;
	background: none;
	border: none;
}

.ux-step:last-child {
	padding-bottom: 0;
}

.ux-step-ico {
	grid-column: 1;
	grid-row: 1 / span 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.7rem;
	height: 2.7rem;
	margin-top: 0.05rem;
	border-radius: 50%;
	border: 1px solid var(--ux-line-strong);
	background: var(--ux-bg);
	color: var(--ux-violet-soft);
	position: relative;
	z-index: 1;
}

.ux-step-ico svg {
	width: 1.15rem;
	height: 1.15rem;
}

.ux-step-num {
	grid-column: 2;
	display: block;
	font-family: var(--ux-mono);
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	margin-bottom: 0.35rem;
	color: var(--ux-text-3);
	background: none;
	-webkit-text-fill-color: unset;
}

.ux-step .text-component.style-1 {
	grid-column: 2;
	font-family: 'Chakra Petch', sans-serif;
	font-size: 1.05rem;
	letter-spacing: 0.03em;
	line-height: 1.3;
	text-transform: none;
	color: var(--ux-text);
	min-height: 0;
	margin-bottom: 0.45rem !important;
}

.ux-step .text-component.style-3 {
	grid-column: 2;
	font-size: 0.9rem;
	line-height: 1.7;
	margin: 0 !important;
}

@media (min-width: 900px) {
	.ux-steps {
		grid-template-columns: repeat(4, 1fr);
		grid-template-rows: auto auto auto 1fr;
		gap: 0 1.25rem;
	}

	.ux-steps::before {
		left: 12.5%;
		right: 12.5%;
		top: 1.35rem;
		bottom: auto;
		width: auto;
		height: 1px;
		background: linear-gradient(90deg, transparent, rgba(148, 131, 255, 0.4), transparent);
	}

	.ux-step {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: subgrid;
		grid-row: span 4;
		justify-items: center;
		padding: 0;
		text-align: center;
	}

	.ux-step-ico {
		grid-column: 1;
		grid-row: auto;
		margin: 0 0 0.9rem;
	}

	.ux-step-num {
		grid-column: 1;
		margin-bottom: 0.55rem;
	}

	.ux-step .text-component.style-1 {
		grid-column: 1;
		margin-bottom: 0.55rem !important;
	}

	.ux-step .text-component.style-3 {
		grid-column: 1;
	}
}

/* ---------- services: one dossier, not seven product tiles ---------- */

#container09 {
	background: none !important;
	background-color: transparent !important;
	border: none !important;
	box-shadow: none !important;
	border-radius: 0 !important;
}

#container09::before {
	display: none;
}

#container09 > .wrapper > .inner {
	padding: 0;
	border: 1px solid var(--ux-line);
	border-radius: 1.15rem;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.02);
}

.ux-tile {
	position: relative;
	display: grid;
	grid-template-columns: 2.4rem 1fr;
	grid-template-rows: auto auto;
	column-gap: 1rem;
	margin: 0 !important;
	padding: 1.45rem 1.5rem 1.4rem;
	background: none;
	border: none;
	border-radius: 0;
	border-bottom: 1px solid var(--ux-line);
	align-items: start;
}

.ux-tile-ico {
	display: flex;
	align-items: center;
	justify-content: center;
	grid-column: 1;
	grid-row: 1;
	width: 2.4rem;
	height: 2.4rem;
	margin: 0;
	border: 1px solid var(--ux-line);
	border-radius: 0.55rem;
	background: rgba(140, 112, 255, 0.08);
	color: var(--ux-violet-soft);
}

.ux-tile-ico svg {
	width: 1.15rem;
	height: 1.15rem;
}

.ux-tile .text-component.style-1 {
	grid-column: 2;
	grid-row: 1;
	font-family: 'Chakra Petch', sans-serif;
	font-size: 1.02rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: none;
	color: var(--ux-text);
	margin-bottom: 0.55rem !important;
}

.ux-tile .text-component.style-3 {
	grid-column: 2;
	grid-row: 2;
	font-size: 0.9rem;
	line-height: 1.7;
	margin: 0 !important;
}

.ux-out {
	display: block;
	margin-top: 0.7rem;
	font-family: var(--ux-mono);
	font-size: 0.72rem;
	letter-spacing: 0.02em;
	color: var(--ux-violet-soft);
}

.ux-out::before {
	content: '▸ ';
	color: var(--ux-coral);
}

.ux-tile-flagship {
	padding: 2.1rem 2rem 2rem 2.2rem;
	background: linear-gradient(110deg, rgba(255, 140, 112, 0.1), rgba(255, 140, 112, 0.02) 48%, transparent 72%);
}

.ux-tile-flagship .ux-tile-ico {
	width: 2.9rem;
	height: 2.9rem;
	border-color: rgba(255, 140, 112, 0.4);
	background: rgba(255, 140, 112, 0.1);
	color: var(--ux-coral);
}

.ux-tile-flagship .text-component.style-1 {
	font-size: clamp(1.55rem, 3.4vw, 2.05rem);
	letter-spacing: 0.02em;
	margin-bottom: 0.85rem !important;
}

.ux-tile-flagship .text-component.style-3 {
	max-width: 36rem;
	font-size: 0.98rem;
	line-height: 1.75;
}

.ux-tile-core .text-component.style-1 {
	font-size: 1.18rem;
}

@media (min-width: 737px) {
	#container09 > .wrapper > .inner {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0;
		align-items: stretch;
	}

	#container09 > .wrapper > .inner > div {
		display: contents;
	}

	#container09 > .wrapper > .inner > div:nth-child(2) > .ux-tile:nth-child(1) {
		grid-row: 1;
		grid-column: 1 / -1;
	}

	#container09 > .wrapper > .inner > div:nth-child(1) > .ux-tile:nth-child(1) {
		grid-row: 2;
		grid-column: 1;
		border-right: 1px solid var(--ux-line);
	}

	#container09 > .wrapper > .inner > div:nth-child(3) > .ux-tile {
		grid-row: 2;
		grid-column: 2;
	}

	#container09 > .wrapper > .inner > div:nth-child(1) > .ux-tile:nth-child(2) {
		grid-row: 3;
		grid-column: 1;
		border-right: 1px solid var(--ux-line);
	}

	#container09 > .wrapper > .inner > div:nth-child(2) > .ux-tile:nth-child(2) {
		grid-row: 3;
		grid-column: 2;
	}

	#container09 > .wrapper > .inner > div:nth-child(1) > .ux-tile:nth-child(3) {
		grid-row: 4;
		grid-column: 1;
		border-right: 1px solid var(--ux-line);
		border-bottom: none;
	}

	#container09 > .wrapper > .inner > div:nth-child(2) > .ux-tile:nth-child(3) {
		grid-row: 4;
		grid-column: 2;
		border-bottom: none;
	}

	.ux-tile-flagship {
		padding: 2.55rem 2.7rem 2.4rem;
	}

	.ux-tile-flagship .text-component.style-1 {
		margin-bottom: 0.95rem !important;
	}

	.ux-tile-flagship .text-component.style-3 {
		max-width: 38rem;
	}

	.ux-tile-core,
	#container09 .ux-tile:not(.ux-tile-flagship):not(.ux-tile-core) {
		padding: 1.7rem 1.75rem 1.6rem;
	}
}

/* ---------- FAQ ---------- */

#faq {
	margin-top: 4.5rem !important;
	margin-bottom: 4.5rem !important;
}

#faq > .ux-section-inner > .text-component.style-4 {
	margin-bottom: 2.5rem !important;
}

.ux-faq {
	max-width: 48rem;
	margin: 0 auto;
	text-align: left;
}

.ux-faq-item {
	border: 1px solid var(--ux-line);
	border-radius: 1rem;
	background: linear-gradient(150deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008) 55%);
	margin-bottom: 0.85rem;
	overflow: hidden;
	transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.ux-faq-item:hover {
	border-color: var(--ux-line-strong);
}

.ux-faq-item[open] {
	border-color: var(--ux-line-strong);
	box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ux-faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	font-family: 'Chakra Petch', sans-serif;
	font-size: 1.02rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--ux-text);
	cursor: pointer;
	list-style: none;
	user-select: none;
}

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

.ux-faq-q:hover {
	color: #fff;
}

.ux-faq-ico {
	position: relative;
	flex: 0 0 auto;
	width: 1.5rem;
	height: 1.5rem;
	border: 1px solid var(--ux-line-strong);
	border-radius: 50%;
	transition: transform 0.35s var(--ux-ease-spring), background-color 0.3s ease, border-color 0.3s ease;
}

.ux-faq-ico::before,
.ux-faq-ico::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	background: var(--ux-violet-soft);
	transition: background-color 0.3s ease;
}

.ux-faq-ico::before {
	width: 0.55rem;
	height: 1.5px;
	transform: translate(-50%, -50%);
}

.ux-faq-ico::after {
	width: 1.5px;
	height: 0.55rem;
	transform: translate(-50%, -50%);
	transition: transform 0.35s var(--ux-ease-spring), background-color 0.3s ease;
}

.ux-faq-item[open] .ux-faq-ico {
	background: var(--ux-violet);
	border-color: var(--ux-violet);
	transform: rotate(180deg);
}

.ux-faq-item[open] .ux-faq-ico::before,
.ux-faq-item[open] .ux-faq-ico::after {
	background: #fff;
}

.ux-faq-item[open] .ux-faq-ico::after {
	transform: translate(-50%, -50%) scaleY(0);
}

.ux-faq-a {
	padding: 0 1.5rem 1.35rem;
	font-size: 0.94rem;
	line-height: 1.75;
	color: var(--ux-text-2);
}

.ux-faq-a strong {
	color: #fff;
	font-weight: 600;
}

/* ---------- contact panel ---------- */

#container04 > .wrapper {
	max-width: 34rem;
	position: relative;
	overflow: hidden;
	background: linear-gradient(165deg, rgba(140, 112, 255, 0.1), rgba(255, 255, 255, 0.02) 45%), var(--ux-panel);
	border: 1px solid var(--ux-line-strong);
	border-radius: 1.75rem;
	box-shadow: 0 2.5rem 5rem rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

#container04 > .wrapper > .inner {
	padding: 3.5rem 3.25rem;
}

/* keyhole watermark (path from assets/images/logo-keyhole.svg) */
#container04 > .wrapper::before {
	content: '';
	position: absolute;
	right: -2.5rem;
	top: 50%;
	width: 14rem;
	height: 32.4rem;
	transform: translateY(-50%);
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='533 143 344 797'%3E%3Cpath fill='%23FF8C70' fill-opacity='0.06' d='M533.00,922.15C528.12,896.13 635.00,419.00 635.00,419.00C635.00,419.00 465.00,171.91 715.00,142.91C956.00,141.91 791.00,421.00 791.00,421.00C791.00,421.00 884.16,909.14 876.03,925.40C867.90,941.65 537.88,948.16 533.00,922.15Z'/%3E%3C/svg%3E") center / contain no-repeat;
	pointer-events: none;
}

/* slow scanline */
#container04 > .wrapper::after {
	content: '';
	position: absolute;
	left: 6%;
	right: 6%;
	top: -4%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 140, 112, 0.55), transparent);
	opacity: 0;
	pointer-events: none;
}

body.ux-motion #container04 > .wrapper::before {
	animation: uxFloat 10s ease-in-out infinite alternate;
}

body.ux-motion #container04 > .wrapper::after {
	animation: uxScan 7.5s cubic-bezier(0.45, 0, 0.55, 1) 3s infinite;
}

#text25 {
	margin-bottom: 1.5rem !important;
	font-size: 0.78em;
	letter-spacing: 0.24rem;
}

#text17 {
	margin-bottom: 1.15rem !important;
}

#text22 {
	margin: 0 0 0 !important;
	max-width: 26rem;
	margin-left: auto;
	margin-right: auto;
}

#text85 {
	margin: 0.9rem auto 0 !important;
	max-width: 26rem;
	font-size: 0.93rem;
	line-height: 1.7;
	color: var(--ux-text-2);
}

#icons01 {
	margin-top: 2.9rem !important;
	margin-bottom: 0 !important;
	gap: 1.1rem;
	font-size: 1.55em;
}

#icons01 > li > a {
	border-color: rgba(244, 243, 251, 0.14);
	background: rgba(255, 255, 255, 0.03);
	transition: transform 0.45s var(--ux-ease-spring), box-shadow 0.4s ease, border-color 0.35s ease, background-color 0.35s ease;
}

#icons01 > li > a:hover {
	border-color: rgba(148, 131, 255, 0.7) !important;
	background: rgba(140, 112, 255, 0.16) !important;
	transform: translateY(-4px);
	box-shadow: 0 1rem 2rem rgba(112, 0, 255, 0.35);
}

#icons01 > li > a:hover > svg {
	fill: #fff !important;
}

#text19 {
	margin-top: 2.25rem !important;
	margin-bottom: 0 !important;
	font-family: var(--ux-mono);
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	color: #cfc9e8;
	font-weight: 400;
}

/* ---------- partners ---------- */

#container03 {
	background: rgba(140, 112, 255, 0.04);
	border: 1px solid var(--ux-line);
	border-radius: 1.75rem;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

#container03 > .wrapper > .inner {
	padding: 2.25rem 2rem;
}

#container03 > .wrapper > .inner > div {
	width: calc(50% - 0.75rem) !important;
	margin-left: 0 !important;
	padding-left: 0 !important;
}

#container03 > .wrapper > .inner > div:nth-child(2) {
	margin-left: 1.5rem !important;
}

/* partner cards (wrapped by custom.js) */
.ux-partner {
	position: relative;
	margin: 0 !important;
	padding: 1.65rem 1.5rem 1.55rem;
	background: linear-gradient(150deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012) 55%);
	border: 1px solid var(--ux-line);
	border-radius: 1.25rem;
	transition: transform 0.5s var(--ux-ease-out), border-color 0.4s ease, box-shadow 0.5s ease;
}

.ux-partner + .ux-partner {
	margin-top: 1.5rem !important;
}

.ux-partner::after {
	content: '↗';
	position: absolute;
	top: 1.05rem;
	right: 1.15rem;
	font-family: 'Chakra Petch', sans-serif;
	font-size: 0.95rem;
	line-height: 1;
	color: rgba(148, 131, 255, 0.45);
	transition: transform 0.35s var(--ux-ease-out), color 0.35s ease;
}

.ux-partner:hover {
	border-color: var(--ux-line-strong);
}

.ux-partner:hover::after {
	color: var(--ux-coral);
	transform: translate(0.125rem, -0.125rem);
}

.ux-partner .text-component.style-6 {
	font-size: 1.02rem;
	letter-spacing: 0.06em;
	margin: 0 !important;
}

.ux-partner .text-component.style-6 a {
	color: #f4f3fb;
	text-decoration: none;
	transition: color 0.3s ease, text-shadow 0.3s ease;
}

.ux-partner .text-component.style-6 a:hover,
.ux-partner:hover .text-component.style-6 a {
	color: #fff;
	text-shadow: 0 0 1.2rem rgba(140, 112, 255, 0.55);
}

.ux-partner .text-component.style-5 {
	margin: 0.6rem 0 0 !important;
	color: var(--ux-text-2);
	font-size: 0.9rem;
	line-height: 1.7;
}

/* ---------- footer ---------- */

#text16 {
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	padding-top: 2.4rem;
	color: var(--ux-text-3);
	font-size: 0.78rem;
	line-height: 1.9;
	letter-spacing: 0.05em;
	font-weight: 400;
}

#text16::before {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--ux-coral);
	box-shadow: 0 0 12px rgba(255, 140, 112, 0.9), 0 0 4px rgba(255, 140, 112, 0.8);
	margin: 0 auto 1.5rem;
}

#text-entity {
	max-width: 40rem;
	margin: 1.5rem auto 0 !important;
	font-size: 0.72rem;
	line-height: 1.8;
	color: var(--ux-text-3);
}

/* ---------- HUD brackets + scroll cue (injected by custom.js) ---------- */

.ux-hud {
	position: absolute;
	inset: 1.1rem;
	pointer-events: none;
	z-index: 3;
}

.ux-hud span {
	position: absolute;
	width: 1.6rem;
	height: 1.6rem;
	border: 0 solid rgba(148, 131, 255, 0.4);
	animation: uxFadeIn 1.1s var(--ux-ease-out) 1.5s both;
}

.ux-hud .ux-hud-tl {
	top: 0;
	left: 0;
	border-top-width: 2px;
	border-left-width: 2px;
	border-top-left-radius: 5px;
}

.ux-hud .ux-hud-tr {
	top: 0;
	right: 0;
	border-top-width: 2px;
	border-right-width: 2px;
	border-top-right-radius: 5px;
}

.ux-hud .ux-hud-bl {
	bottom: 0;
	left: 0;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-bottom-left-radius: 5px;
}

.ux-hud .ux-hud-br {
	bottom: 0;
	right: 0;
	border-bottom-width: 2px;
	border-right-width: 2px;
	border-bottom-right-radius: 5px;
}

.ux-cue {
	position: absolute;
	left: 50%;
	bottom: 1.1rem;
	transform: translateX(-50%);
	width: 2px;
	height: 2.9rem;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.08);
	overflow: hidden;
	pointer-events: none;
	animation: uxFadeIn 1.1s var(--ux-ease-out) 2.2s both;
}

.ux-cue-dot {
	position: absolute;
	left: 0;
	top: -0.7rem;
	width: 100%;
	height: 0.7rem;
	border-radius: 2px;
	background: linear-gradient(180deg, transparent, var(--ux-violet-soft));
	animation: uxCue 2.4s cubic-bezier(0.45, 0, 0.55, 1) 2.6s infinite;
}

/* ---------- keyframes ---------- */

@keyframes uxAurora {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		transform: translate3d(2.5%, -2%, 0) scale(1.05);
	}
	100% {
		transform: translate3d(-2.5%, 1.5%, 0) scale(1.02);
	}
}

@keyframes uxFloat {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-0.45rem);
	}
}

@keyframes uxBreathe {
	0%,
	100% {
		opacity: 0.8;
		transform: scale(1);
	}
	50% {
		opacity: 1;
		transform: scale(1.06);
	}
}

@keyframes uxGlow {
	0%,
	100% {
		filter: drop-shadow(0 0 1.1rem rgba(140, 112, 255, 0.35));
	}
	50% {
		filter: drop-shadow(0 0 1.9rem rgba(140, 112, 255, 0.55));
	}
}

@keyframes uxDot {
	0%,
	100% {
		opacity: 0.55;
		box-shadow: 0 0 6px rgba(255, 140, 112, 0.6);
	}
	50% {
		opacity: 1;
		box-shadow: 0 0 12px rgba(255, 140, 112, 0.95);
	}
}

@keyframes uxScan {
	0% {
		top: -4%;
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	85% {
		opacity: 1;
	}
	100% {
		top: 102%;
		opacity: 0;
	}
}

@keyframes uxCue {
	0% {
		transform: translateY(0);
		opacity: 0;
	}
	25% {
		opacity: 1;
	}
	75% {
		opacity: 1;
	}
	100% {
		transform: translateY(3.6rem);
		opacity: 0;
	}
}

@keyframes uxFadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* ---------- reduced motion ---------- */

@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;
		transition-delay: 0ms !important;
		animation-delay: 0ms !important;
	}
}

/* ---------- mobile ---------- */

@media (max-width: 736px) {
	#container01 {
		min-height: 100svh;
		padding: 2.5rem 1.15rem 2rem;
	}

	/* must beat the blanket #container01 .inner > * rule (specificity 1,1,0) */
	#container01 .inner > #text23 {
		font-size: 0.64em;
		letter-spacing: 0.08em;
		padding: 0.4rem calc(0.9rem - 0.08em) 0.4rem 0.9rem;
		margin-bottom: 2.4rem !important;
	}

	#container01 .inner > #image03 {
		margin-bottom: 1.9rem !important;
	}

	.image-component.style-3 > .frame {
		width: 10.5rem;
	}

	#container01 .inner > #text07 {
		margin-bottom: 2.5rem !important;
	}

	/* threat cards stack */
	#container13 > .wrapper > .inner > div,
	#container14 > .wrapper > .inner > div,
	#container02 > .wrapper > .inner > div {
		width: 100% !important;
		margin: 0 0 1.5rem !important;
		padding: 1.9rem 1.5rem !important;
	}

	#container13 > .wrapper > .inner > div:nth-child(2),
	#container14 > .wrapper > .inner > div:nth-child(2),
	#container02 > .wrapper > .inner > div:nth-child(2) {
		margin-left: 0 !important;
	}

	#container13 > .wrapper > .inner > div:last-child,
	#container14 > .wrapper > .inner > div:last-child,
	#container02 > .wrapper > .inner > div:last-child {
		margin-bottom: 0 !important;
	}

	/* hero buttons stack */
	#buttons02 {
		gap: 0.9rem;
	}

	#buttons02 > li {
		width: 100% !important;
	}

	#buttons02 > li > a {
		justify-content: center;
	}

	#text72 {
		width: calc(100% - 2rem);
		font-size: 0.78rem;
		margin-top: 1.25rem;
	}

	/* proof */
	#proof > .ux-section-inner > .text-component.style-3 {
		margin-bottom: 2.25rem !important;
	}

	#container09 > .wrapper > .inner {
		display: flex;
		flex-direction: column;
		gap: 0;
		padding: 0;
	}

	#container09 > .wrapper > .inner > div {
		display: contents;
	}

	#container09 > .wrapper > .inner > div:nth-child(2) > .ux-tile:nth-child(1) { order: 1; }
	#container09 > .wrapper > .inner > div:nth-child(1) > .ux-tile:nth-child(1) { order: 2; }
	#container09 > .wrapper > .inner > div:nth-child(3) > .ux-tile { order: 3; }
	#container09 > .wrapper > .inner > div:nth-child(1) > .ux-tile:nth-child(2) { order: 4; }
	#container09 > .wrapper > .inner > div:nth-child(2) > .ux-tile:nth-child(2) { order: 5; }
	#container09 > .wrapper > .inner > div:nth-child(1) > .ux-tile:nth-child(3) { order: 6; }
	#container09 > .wrapper > .inner > div:nth-child(2) > .ux-tile:nth-child(3) { order: 7; border-bottom: none; }

	.ux-tile-flagship {
		padding-right: 1.75rem;
	}

	.ux-tile {
		padding: 1.4rem 1.35rem 1.35rem;
	}

	.ux-tile-ico {
		width: 2.2rem;
		height: 2.2rem;
	}

	.ux-tile-flagship {
		padding: 1.9rem 1.6rem 1.8rem 1.8rem;
	}

	.ux-tile-flagship .ux-tile-ico {
		width: 2.6rem;
		height: 2.6rem;
	}

	/* contact panel */
	#container04 > .wrapper {
		max-width: 100%;
	}

	#container04 > .wrapper > .inner {
		padding: 2.9rem 1.75rem;
	}

	#container04 > .wrapper::before {
		width: 10rem;
		height: 23.1rem;
		right: -2rem;
	}

	/* partners stack — beat Carrd column-reverse + 50% widths */
	#container03 > .wrapper > .inner {
		display: flex !important;
		flex-direction: column !important;
		flex-wrap: nowrap !important;
		align-items: stretch !important;
		padding: 2.25rem 1.5rem;
	}

	#container03 > .wrapper > .inner > div,
	#container03 > .wrapper > .inner > div:nth-child(1),
	#container03 > .wrapper > .inner > div:nth-child(2) {
		width: 100% !important;
		max-width: 100% !important;
		flex: 0 0 auto !important;
		margin: 0 0 1.5rem !important;
		padding: 0 !important;
		min-height: 0 !important;
	}

	#container03 > .wrapper > .inner > div:last-child {
		margin-bottom: 0 !important;
	}

	#container03 .ux-partner {
		width: 100% !important;
	}

	#text16 {
		margin-top: 6rem !important;
	}

	#lang-switcher {
		top: 0.8rem;
		right: 0.8rem;
	}
}

@media (max-width: 360px) {
	#container01 {
		min-height: 100svh;
		padding: 2.1rem 0.9rem 1.6rem;
	}
}

@media (max-height: 820px) {
	#container01 {
		padding-top: 2.75rem;
		padding-bottom: 4.25rem;
	}

	#container01 .inner > #text23 {
		margin-bottom: 1.75rem !important;
	}

	#container01 .inner > #image03 {
		margin-bottom: 1.35rem !important;
	}

	#container01 .inner > #text03 {
		margin-bottom: 0.9rem !important;
	}

	#container01 .inner > #text07 {
		margin-bottom: 1.75rem !important;
	}

	#container01 .image-component.style-3 > .frame {
		width: 10rem;
	}
}
