/* ============================================================
   UNCOVERT — landing pages
   Standalone styles for keyword landing pages (no Carrd runtime).
   Shares the design language of the main site (custom.css).
   ============================================================ */

: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-soft: #b9adf7;
	--ux-coral: #ff8c70;
	--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-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
	box-sizing: border-box;
}

html {
	background-color: var(--ux-bg);
	scroll-behavior: smooth;
}

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

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

a:focus-visible {
	outline: 2px solid var(--ux-violet-soft);
	outline-offset: 3px;
	border-radius: 0.4rem;
}

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

/* language switcher (matches main site) */
#lang-switcher {
	position: fixed;
	top: 1rem;
	right: 1rem;
	z-index: 10000;
	display: flex;
	gap: 0.35rem;
	background: rgba(10, 10, 17, 0.78);
	border: solid 1px rgba(148, 131, 255, 0.28);
	border-radius: 2rem;
	padding: 0.25rem 0.5rem;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.4);
}

#lang-switcher a {
	color: rgba(244, 243, 251, 0.45);
	font-family: 'Source Sans 3', sans-serif;
	font-size: 0.7rem;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 0.3em 0.6em;
	border-radius: 1em;
	transition: color 0.25s ease, background-color 0.25s ease;
}

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

#lang-switcher a.active {
	color: #3d2f78;
	background-color: #8c70ff;
}

.lp-inner {
	max-width: 46rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* ---------- top bar ---------- */

.lp-topbar {
	position: relative;
	z-index: 5;
	border-bottom: 1px solid var(--ux-line);
	background: rgba(11, 11, 18, 0.7);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.lp-topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 0.9rem;
	padding-bottom: 0.9rem;
}

.lp-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-family: 'Chakra Petch', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ux-text);
	text-decoration: none;
}

.lp-brand img {
	display: block;
	height: 1.7rem;
	width: auto;
	border-radius: 0.3rem;
}

.lp-brand:hover {
	color: #fff;
}

.lp-back {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--ux-text-2);
	text-decoration: none;
	transition: color 0.3s ease;
}

.lp-back svg {
	width: 1rem;
	height: 1rem;
}

.lp-back:hover {
	color: #fff;
}

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

.lp-hero {
	padding: 4.5rem 0 3.5rem;
	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%);
	border-bottom: 1px solid var(--ux-line);
}

.lp-kicker {
	font-family: var(--ux-mono);
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ux-violet-soft);
	margin: 0 0 1.25rem;
}

.lp-hero h1 {
	font-family: 'Chakra Petch', sans-serif;
	font-size: clamp(2.2rem, 6vw, 3.4rem);
	line-height: 1.1;
	margin: 0 0 1.25rem;
	letter-spacing: 0.01em;
}

.lp-intro {
	font-size: 1.1rem;
	line-height: 1.75;
	color: var(--ux-text-2);
	max-width: 40rem;
	margin: 0 0 2rem;
}

.lp-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
}

.lp-btn {
	display: inline-flex;
	align-items: center;
	padding: 0.8rem 1.4rem;
	border-radius: 2rem;
	border: 1px solid var(--ux-line-strong);
	color: var(--ux-text);
	text-decoration: none;
	font-weight: 600;
	transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.lp-btn:hover {
	border-color: var(--ux-violet-soft);
	transform: translateY(-2px);
}

.lp-btn-primary {
	background: var(--ux-violet);
	border-color: var(--ux-violet);
	color: #fff;
}

.lp-btn-primary:hover {
	background: #9d85ff;
	border-color: #9d85ff;
}

/* ---------- main ---------- */

.lp-main {
	padding: 3rem 0 4rem;
}

.lp-section {
	margin-bottom: 3rem;
}

.lp-section h2 {
	font-family: 'Chakra Petch', sans-serif;
	font-size: 1.5rem;
	letter-spacing: 0.02em;
	margin: 0 0 1rem;
}

.lp-section h2::after {
	content: '';
	display: block;
	width: 3.5rem;
	height: 2px;
	margin-top: 0.9rem;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--ux-violet), var(--ux-coral));
}

.lp-section p {
	color: var(--ux-text-2);
	font-size: 1rem;
	line-height: 1.8;
	margin: 0;
}

/* ---------- FAQ (accordion) ---------- */

.lp-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;
}

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

.lp-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);
}

.lp-faq-item summary {
	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;
}

.lp-faq-item summary::-webkit-details-marker {
	display: none;
}

.lp-faq-item summary:hover {
	color: #fff;
}

.lp-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;
}

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

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

.lp-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;
}

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

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

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

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

/* ---------- related ---------- */

.lp-related ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
}

.lp-related li a {
	display: inline-block;
	padding: 0.55rem 1rem;
	border: 1px solid var(--ux-line);
	border-radius: 2rem;
	text-decoration: none;
	color: var(--ux-text-2);
	font-size: 0.9rem;
	transition: border-color 0.3s ease, color 0.3s ease;
}

.lp-related li a:hover {
	border-color: var(--ux-violet-soft);
	color: #fff;
}

/* ---------- contact band ---------- */

.lp-contact {
	padding: 3.5rem 0;
	background: linear-gradient(165deg, rgba(140, 112, 255, 0.1), rgba(255, 255, 255, 0.02) 45%), var(--ux-panel);
	border-top: 1px solid var(--ux-line-strong);
	border-bottom: 1px solid var(--ux-line-strong);
	text-align: center;
}

.lp-contact h2 {
	font-family: 'Chakra Petch', sans-serif;
	font-size: 1.6rem;
	margin: 0 0 0.75rem;
}

.lp-contact p {
	color: var(--ux-text-2);
	margin: 0 0 1.75rem;
}

.lp-contact .lp-cta {
	justify-content: center;
}

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

.lp-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	padding: 2.5rem 0 3rem;
}

.lp-footer p {
	color: var(--ux-text-3);
	font-size: 0.8rem;
	line-height: 1.9;
	margin: 0;
}

.lp-footer .lp-entity {
	margin-top: 1rem;
	font-size: 0.72rem;
	line-height: 1.8;
}

@media (max-width: 736px) {
	.lp-hero {
		padding: 3.5rem 0 2.5rem;
	}

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

	.lp-topbar-inner {
		padding-top: 0.75rem;
		padding-bottom: 0.75rem;
	}

	.lp-back {
		font-size: 0.8rem;
	}
}
