/**
 * FaraLabs Core — dark neon design system (RTL).
 * Palette: bg #060b18 · surface #0b1326 · cyan #22d3ee · blue #3b82f6
 */

@font-face {
	font-family: 'Vazirmatn';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/Vazirmatn-Regular.woff2') format('woff2');
}
@font-face {
	font-family: 'Vazirmatn';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('../fonts/Vazirmatn-Medium.woff2') format('woff2');
}
@font-face {
	font-family: 'Vazirmatn';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../fonts/Vazirmatn-Bold.woff2') format('woff2');
}
@font-face {
	font-family: 'Vazirmatn';
	font-style: normal;
	font-weight: 800;
	font-display: swap;
	src: url('../fonts/Vazirmatn-ExtraBold.woff2') format('woff2');
}

:root {
	--fl-bg: #060b18;
	--fl-bg-2: #0a1122;
	--fl-surface: #0b1326;
	--fl-surface-2: #0e1830;
	--fl-line: rgba(148, 163, 184, 0.14);
	--fl-line-strong: rgba(148, 163, 184, 0.26);
	--fl-text: #e2e8f0;
	--fl-muted: #94a3b8;
	--fl-cyan: #22d3ee;
	--fl-blue: #3b82f6;
	--fl-blue-deep: #2563eb;
	--fl-amber: #fbbf24;
	--fl-grad: linear-gradient(120deg, #22d3ee, #3b82f6 55%, #6366f1);
	--fl-radius: 18px;
	--fl-shadow: 0 18px 50px rgba(2, 6, 23, 0.55);
	--fl-glow: 0 0 0 1px rgba(34, 211, 238, 0.22), 0 10px 40px rgba(34, 211, 238, 0.12);
	--fl-font: 'Vazirmatn', Tahoma, 'Segoe UI', sans-serif;
}

/* ------------------------------------------------------------------ Base */

html { scroll-behavior: smooth; }

body.fl-body {
	background: var(--fl-bg);
	color: var(--fl-text);
	font-family: var(--fl-font);
	font-size: 16px;
	line-height: 1.9;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

body.fl-body.admin-bar .fl-header { top: 32px; }
@media screen and (max-width: 782px) {
	body.fl-body.admin-bar .fl-header { top: 46px; }
}

.fl-container {
	width: min(1180px, calc(100% - 48px));
	margin-inline: auto;
}

a { color: var(--fl-cyan); text-decoration: none; transition: color .2s ease; }
a:hover { color: #7dd3fc; }

img { max-width: 100%; height: auto; }

::selection { background: rgba(34, 211, 238, 0.35); color: #fff; }

/* --------------------------------------------------------------- Header */

.fl-header {
	position: fixed;
	inset-inline: 0;
	top: 0;
	z-index: 999;
	background: rgba(6, 11, 24, 0.72);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid transparent;
	transition: background .3s ease, border-color .3s ease;
}
.fl-header.is-scrolled {
	background: rgba(6, 11, 24, 0.92);
	border-bottom-color: var(--fl-line);
}

.fl-header__inner {
	display: flex;
	align-items: center;
	gap: 28px;
	min-height: 72px;
}

.fl-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--fl-text);
}
.fl-brand:hover { color: #fff; }

.fl-brand__logo {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	box-shadow: 0 4px 18px rgba(37, 99, 235, 0.45);
}

.fl-brand__text { display: flex; flex-direction: column; line-height: 1.25; }
.fl-brand__text strong { font-size: 19px; font-weight: 800; letter-spacing: .2px; }
.fl-brand__text small {
	font-size: 10px;
	letter-spacing: 4px;
	color: var(--fl-muted);
	font-weight: 500;
}

.fl-nav {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-inline-start: auto;
}

.fl-nav__link {
	color: var(--fl-muted);
	font-weight: 500;
	font-size: 15px;
	padding: 9px 14px;
	border-radius: 10px;
	transition: color .2s ease, background .2s ease;
}
.fl-nav__link:hover { color: var(--fl-text); background: rgba(148, 163, 184, 0.08); }
.fl-nav__link.is-active { color: var(--fl-cyan); background: rgba(34, 211, 238, 0.08); }

.fl-nav__cta { margin-inline-start: 12px; }

.fl-burger {
	display: none;
	margin-inline-start: auto;
	width: 44px;
	height: 44px;
	border: 1px solid var(--fl-line);
	border-radius: 12px;
	background: rgba(148, 163, 184, 0.06);
	cursor: pointer;
	padding: 10px 9px;
}
.fl-burger span {
	display: block;
	height: 2px;
	border-radius: 2px;
	background: var(--fl-text);
	margin: 5px 0;
	transition: transform .25s ease, opacity .25s ease;
}
.fl-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.fl-burger.is-open span:nth-child(2) { opacity: 0; }
.fl-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------------------- Buttons */

.fl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 30px;
	border-radius: 14px;
	font-family: var(--fl-font);
	font-size: 15.5px;
	font-weight: 700;
	line-height: 1.6;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.fl-btn--primary {
	background: var(--fl-grad);
	color: #04121f;
	box-shadow: 0 10px 30px rgba(34, 211, 238, 0.28);
}
.fl-btn--primary:hover {
	color: #04121f;
	transform: translateY(-2px);
	box-shadow: 0 14px 40px rgba(34, 211, 238, 0.4);
}

.fl-btn--ghost {
	background: rgba(148, 163, 184, 0.07);
	border-color: var(--fl-line-strong);
	color: var(--fl-text);
}
.fl-btn--ghost:hover { background: rgba(148, 163, 184, 0.14); color: #fff; transform: translateY(-2px); }

.fl-btn--outline {
	background: transparent;
	border-color: rgba(34, 211, 238, 0.45);
	color: var(--fl-cyan);
}
.fl-btn--outline:hover { background: rgba(34, 211, 238, 0.1); transform: translateY(-2px); }

.fl-btn--disabled {
	background: rgba(148, 163, 184, 0.08);
	color: var(--fl-muted);
	border-color: var(--fl-line);
	cursor: not-allowed;
}

/* ----------------------------------------------------------------- Hero */

.fl-hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	padding: 150px 0 90px;
	isolation: isolate;
}
.fl-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, transparent 55%, var(--fl-bg) 100%);
}

.fl-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 16px;
	border-radius: 999px;
	font-size: 13.5px;
	font-weight: 500;
	color: var(--fl-cyan);
	background: rgba(34, 211, 238, 0.09);
	border: 1px solid rgba(34, 211, 238, 0.3);
	box-shadow: inset 0 0 22px rgba(34, 211, 238, 0.06);
}

.fl-badge--soft {
	background: rgba(99, 102, 241, 0.12);
	border-color: rgba(99, 102, 241, 0.4);
	color: #a5b4fc;
}

.fl-badge--soon {
	background: rgba(251, 191, 36, 0.1);
	border-color: rgba(251, 191, 36, 0.35);
	color: var(--fl-amber);
}

.fl-hero__title {
	font-size: clamp(30px, 5vw, 54px);
	font-weight: 800;
	line-height: 1.5;
	margin: 22px 0 18px;
	max-width: 780px;
	text-wrap: balance;
}

.fl-grad {
	background: var(--fl-grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.fl-hero__lead {
	font-size: clamp(16px, 2vw, 19px);
	color: var(--fl-muted);
	max-width: 640px;
	margin: 0 0 34px;
}

.fl-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.fl-hero__cta--center { justify-content: center; }

.fl-hero__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	list-style: none;
	margin: 42px 0 0;
	padding: 0;
}
.fl-hero__pills li {
	font-size: 14px;
	font-weight: 500;
	color: var(--fl-muted);
	padding: 8px 18px;
	border-radius: 999px;
	border: 1px solid var(--fl-line);
	background: rgba(11, 19, 38, 0.55);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}
.fl-hero__pills li::before {
	content: '';
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--fl-cyan);
	box-shadow: 0 0 10px var(--fl-cyan);
	margin-inline-end: 9px;
	vertical-align: 1px;
}

/* ------------------------------------------------------------- Sections */

.fl-main { min-height: 60vh; }

.fl-section { padding: 92px 0; position: relative; }

.fl-section--soft {
	background:
		radial-gradient(900px 380px at 85% 0%, rgba(37, 99, 235, 0.09), transparent 60%),
		radial-gradient(700px 320px at 10% 100%, rgba(34, 211, 238, 0.07), transparent 55%),
		var(--fl-bg-2);
	border-block: 1px solid var(--fl-line);
}

.fl-section-head { text-align: center; margin-bottom: 54px; }

.fl-h1 {
	font-size: clamp(30px, 4.4vw, 44px);
	font-weight: 800;
	line-height: 1.45;
	margin: 0 0 12px;
}

.fl-h2 {
	font-size: clamp(24px, 3.2vw, 34px);
	font-weight: 800;
	line-height: 1.5;
	margin: 0 0 14px;
}

.fl-sub {
	color: var(--fl-muted);
	font-size: 16.5px;
	margin: 0 auto;
	max-width: 620px;
}

.fl-mt { margin-top: 56px; }

/* ---------------------------------------------------------------- Grids */

.fl-grid { display: grid; gap: 22px; }
.fl-grid--4 { grid-template-columns: repeat(4, 1fr); }
.fl-grid--3 { grid-template-columns: repeat(3, 1fr); }
.fl-grid--2 { grid-template-columns: repeat(2, 1fr); }

/* ---------------------------------------------------------------- Cards */

.fl-card {
	background: linear-gradient(180deg, rgba(148, 163, 184, 0.055), rgba(148, 163, 184, 0.02)), var(--fl-surface);
	border: 1px solid var(--fl-line);
	border-radius: var(--fl-radius);
	padding: 30px 28px;
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.fl-card:hover {
	transform: translateY(-5px);
	border-color: rgba(34, 211, 238, 0.4);
	box-shadow: var(--fl-glow);
}

.fl-card--ghost {
	background: transparent;
	border-style: dashed;
	border-color: var(--fl-line-strong);
}
.fl-card--ghost:hover { transform: none; box-shadow: none; border-color: rgba(34, 211, 238, 0.4); }

.fl-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 16px;
	color: var(--fl-cyan);
	background: rgba(34, 211, 238, 0.09);
	border: 1px solid rgba(34, 211, 238, 0.28);
	box-shadow: inset 0 0 24px rgba(34, 211, 238, 0.08);
	margin-bottom: 18px;
}

.fl-card__title { font-size: 18.5px; font-weight: 700; margin: 0 0 10px; }

.fl-card__text { color: var(--fl-muted); font-size: 15px; margin: 0; }

/* ---------------------------------------------------------------- Steps */

.fl-step {
	position: relative;
	background: linear-gradient(180deg, rgba(148, 163, 184, 0.05), transparent), var(--fl-surface);
	border: 1px solid var(--fl-line);
	border-radius: var(--fl-radius);
	padding: 32px 28px;
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.fl-step:hover { transform: translateY(-5px); border-color: rgba(59, 130, 246, 0.45); box-shadow: 0 10px 36px rgba(59, 130, 246, 0.14); }

.fl-step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	font-size: 20px;
	font-weight: 800;
	color: #04121f;
	background: var(--fl-grad);
	box-shadow: 0 8px 24px rgba(34, 211, 238, 0.3);
	margin-bottom: 16px;
}

/* ------------------------------------------------------------- Showcase */

.fl-showcase {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 48px;
	align-items: center;
}

.fl-showcase--reverse .fl-showcase__media { order: 2; }

.fl-showcase__media {
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid var(--fl-line-strong);
	box-shadow: var(--fl-shadow), 0 0 60px rgba(34, 211, 238, 0.1);
	position: relative;
}
.fl-showcase__media::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	border-radius: inherit;
	box-shadow: inset 0 0 90px rgba(6, 11, 24, 0.55);
	pointer-events: none;
}
.fl-showcase__media img { display: block; width: 100%; }

.fl-showcase__media--round { aspect-ratio: 1; }
.fl-showcase__media--round img { width: 100%; height: 100%; object-fit: cover; }

.fl-showcase__body .fl-btn { margin-top: 26px; }

.fl-checks {
	list-style: none;
	margin: 20px 0 0;
	padding: 0;
	display: grid;
	gap: 12px;
}
.fl-checks li {
	position: relative;
	padding-inline-start: 34px;
	color: var(--fl-muted);
	font-size: 15px;
}
.fl-checks li::before {
	content: '';
	position: absolute;
	inset-inline-start: 0;
	top: 9px;
	width: 20px;
	height: 20px;
	border-radius: 7px;
	background: rgba(34, 211, 238, 0.12);
	border: 1px solid rgba(34, 211, 238, 0.4);
}
.fl-checks li::after {
	content: '';
	position: absolute;
	inset-inline-start: 5px;
	top: 14px;
	width: 9px;
	height: 5px;
	border-inline-end: 2px solid var(--fl-cyan);
	border-bottom: 2px solid var(--fl-cyan);
	transform: rotate(45deg);
}

/* ------------------------------------------------------------------ CTA */

.fl-cta {
	padding: 96px 0;
	background:
		radial-gradient(760px 300px at 50% 0%, rgba(34, 211, 238, 0.12), transparent 65%),
		var(--fl-bg-2);
	border-top: 1px solid var(--fl-line);
	text-align: center;
}
.fl-cta__inner .fl-h2 { margin-bottom: 8px; }
.fl-cta__inner > p { color: var(--fl-muted); margin: 0 0 30px; }

.fl-cta--inline {
	padding: 44px;
	margin-top: 56px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 20px;
	border: 1px solid rgba(34, 211, 238, 0.3);
	border-radius: var(--fl-radius);
	background:
		radial-gradient(500px 200px at 80% 20%, rgba(34, 211, 238, 0.1), transparent 60%),
		var(--fl-surface);
}
.fl-cta--inline p { margin: 0; font-weight: 700; font-size: 17px; }

/* ------------------------------------------------------- Inner page band */

.fl-band {
	padding: 168px 0 72px;
	background:
		radial-gradient(820px 300px at 50% -80px, rgba(37, 99, 235, 0.22), transparent 70%),
		var(--fl-bg);
	border-bottom: 1px solid var(--fl-line);
	text-align: center;
	position: relative;
	overflow: hidden;
}
.fl-band::after {
	content: '';
	position: absolute;
	inset-inline: 0;
	bottom: -1px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.55), transparent);
}
.fl-band .fl-sub { margin-top: 4px; }

/* -------------------------------------------------------------- Product */

.fl-product {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 48px;
	align-items: center;
	background: linear-gradient(180deg, rgba(148, 163, 184, 0.05), transparent), var(--fl-surface);
	border: 1px solid var(--fl-line-strong);
	border-radius: 26px;
	padding: 44px;
	box-shadow: var(--fl-shadow);
}

.fl-product__media {
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--fl-line);
	box-shadow: 0 0 50px rgba(34, 211, 238, 0.12);
}
.fl-product__media img { display: block; width: 100%; }

.fl-product__body > p { color: var(--fl-muted); margin: 12px 0 4px; }

.fl-product__buy {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px dashed var(--fl-line-strong);
}

.fl-price {
	font-size: 16px;
	font-weight: 700;
	color: var(--fl-text);
}

/* ----------------------------------------------------------- Placeholder */

.fl-placeholder {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 130px;
	padding: 20px;
	border: 2px dashed rgba(34, 211, 238, 0.35);
	border-radius: 16px;
	background: rgba(34, 211, 238, 0.04);
	text-align: center;
}
.fl-placeholder__icon { color: rgba(34, 211, 238, 0.6); }
.fl-placeholder__label {
	font-size: 13.5px;
	color: var(--fl-muted);
	max-width: 420px;
	line-height: 1.8;
}

/* ------------------------------------------------------------ Docs page */

.fl-steps-mini { margin: 0; padding-inline-start: 20px; color: var(--fl-muted); font-size: 14.5px; }
.fl-steps-mini li { margin-bottom: 8px; padding-inline-start: 6px; }
.fl-steps-mini li::marker { color: var(--fl-cyan); font-weight: 700; }

.fl-faq { margin-top: 8px; display: grid; gap: 10px; }
.fl-faq__item {
	border: 1px solid var(--fl-line);
	border-radius: 14px;
	background: rgba(148, 163, 184, 0.04);
	overflow: hidden;
	transition: border-color .2s ease;
}
.fl-faq__item[open] { border-color: rgba(34, 211, 238, 0.4); }
.fl-faq__item summary {
	cursor: pointer;
	padding: 15px 18px;
	font-weight: 700;
	font-size: 15px;
	list-style: none;
	position: relative;
	padding-inline-end: 40px;
}
.fl-faq__item summary::-webkit-details-marker { display: none; }
.fl-faq__item summary::after {
	content: '';
	position: absolute;
	inset-inline-end: 18px;
	top: 22px;
	width: 9px;
	height: 9px;
	border-inline-end: 2px solid var(--fl-cyan);
	border-bottom: 2px solid var(--fl-cyan);
	transform: rotate(45deg);
	transition: transform .2s ease;
}
.fl-faq__item[open] summary::after { transform: rotate(-135deg); top: 26px; }
.fl-faq__item p {
	margin: 0;
	padding: 0 18px 16px;
	color: var(--fl-muted);
	font-size: 14.5px;
}

.fl-flow {
	margin-top: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
}
.fl-flow__item {
	padding: 12px 26px;
	border-radius: 999px;
	border: 1px solid var(--fl-line-strong);
	background: var(--fl-surface);
	font-weight: 700;
	font-size: 15px;
}
.fl-flow__item--accent {
	border-color: rgba(34, 211, 238, 0.5);
	color: var(--fl-cyan);
	box-shadow: 0 0 26px rgba(34, 211, 238, 0.14);
}
.fl-flow__arrow {
	width: 42px;
	height: 2px;
	background: linear-gradient(90deg, var(--fl-cyan), transparent);
	position: relative;
}
.fl-flow__arrow::after {
	content: '';
	position: absolute;
	inset-inline-start: -1px;
	top: -4px;
	width: 9px;
	height: 9px;
	border-inline-start: 2px solid var(--fl-cyan);
	border-bottom: 2px solid var(--fl-cyan);
	transform: rotate(45deg);
}

/* ------------------------------------------------------------ Contact */

.fl-contact {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 26px;
	align-items: start;
}

.fl-field { margin-bottom: 18px; }
.fl-field label {
	display: block;
	font-weight: 700;
	font-size: 14.5px;
	margin-bottom: 8px;
}
.fl-req { color: var(--fl-cyan); }

.fl-field input,
.fl-field select,
.fl-field textarea {
	width: 100%;
	background: rgba(6, 11, 24, 0.6);
	border: 1px solid var(--fl-line-strong);
	border-radius: 13px;
	padding: 13px 16px;
	color: var(--fl-text);
	font-family: var(--fl-font);
	font-size: 15px;
	line-height: 1.8;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.fl-field input:focus,
.fl-field select:focus,
.fl-field textarea:focus {
	outline: none;
	border-color: rgba(34, 211, 238, 0.6);
	box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.14);
}
.fl-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--fl-muted) 50%), linear-gradient(135deg, var(--fl-muted) 50%, transparent 50%); background-position: calc(0% + 18px) 55%, calc(0% + 23px) 55%; background-size: 5px 5px; background-repeat: no-repeat; }
.fl-field textarea { resize: vertical; min-height: 130px; }

.fl-hp {
	position: absolute !important;
	inset-inline-start: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.fl-notice {
	padding: 15px 20px;
	border-radius: 14px;
	margin-bottom: 24px;
	font-weight: 700;
	font-size: 15px;
}
.fl-notice--ok {
	background: rgba(52, 211, 153, 0.1);
	border: 1px solid rgba(52, 211, 153, 0.4);
	color: #6ee7b7;
}
.fl-notice--err {
	background: rgba(248, 113, 113, 0.1);
	border: 1px solid rgba(248, 113, 113, 0.4);
	color: #fca5a5;
}

.fl-info { list-style: none; margin: 6px 0 0; padding: 0; display: grid; gap: 12px; font-size: 15px; }
.fl-info span { color: var(--fl-muted); }

/* --------------------------------------------------------------- Footer */

.fl-footer {
	border-top: 1px solid var(--fl-line);
	background: linear-gradient(180deg, var(--fl-bg-2), #05080f);
	padding: 64px 0 0;
	margin-top: 0;
}

.fl-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 44px;
}

.fl-footer__about p {
	color: var(--fl-muted);
	font-size: 14.5px;
	margin: 18px 0 0;
	max-width: 380px;
}

.fl-footer__col h4 {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 16px;
	color: var(--fl-text);
}
.fl-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.fl-footer__col a, .fl-footer__col li { color: var(--fl-muted); font-size: 14.5px; }
.fl-footer__col a:hover { color: var(--fl-cyan); }

.fl-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 22px 0;
	border-top: 1px solid var(--fl-line);
	color: var(--fl-muted);
	font-size: 13.5px;
}
.fl-footer__en { letter-spacing: 2px; direction: ltr; }

/* ------------------------------------------------------------ Reveal fx */

.fl-reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .7s ease, transform .7s ease;
}
.fl-reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	.fl-reveal { opacity: 1; transform: none; transition: none; }
	html { scroll-behavior: auto; }
}

/* ----------------------------------------------------------- Responsive */

@media (max-width: 1024px) {
	.fl-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.fl-hero { min-height: 78vh; }
}

@media (max-width: 900px) {
	.fl-nav {
		position: fixed;
		inset: 72px 16px auto;
		z-index: 998;
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
		background: rgba(8, 14, 30, 0.97);
		border: 1px solid var(--fl-line-strong);
		border-radius: 20px;
		padding: 18px;
		box-shadow: var(--fl-shadow);
		display: none;
	}
	.fl-nav.is-open { display: flex; }
	.fl-nav__link { padding: 13px 16px; font-size: 16px; }
	.fl-nav__cta { margin: 8px 0 0; justify-content: center; }
	.fl-burger { display: block; }
	body.fl-body.admin-bar .fl-nav { inset: 118px 16px auto; }

	.fl-showcase, .fl-showcase--reverse { grid-template-columns: 1fr; gap: 30px; }
	.fl-showcase--reverse .fl-showcase__media { order: 0; }
	.fl-product { grid-template-columns: 1fr; padding: 28px; }
	.fl-contact { grid-template-columns: 1fr; }
	.fl-grid--3 { grid-template-columns: 1fr; }
	.fl-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
	.fl-section { padding: 64px 0; }
	.fl-grid--4, .fl-grid--2 { grid-template-columns: 1fr; }
	.fl-hero { padding: 130px 0 64px; min-height: auto; }
	.fl-band { padding: 140px 0 56px; }
	.fl-hero__cta .fl-btn, .fl-hero__cta .fl-btn--primary { width: 100%; }
	.fl-product__buy .fl-btn { width: 100%; }
	.fl-footer__grid { grid-template-columns: 1fr; gap: 28px; }
	.fl-brand__text small { display: none; }
	.fl-cta--inline { padding: 30px 22px; }
}
