@font-face {
	font-family: "Quicksand";
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("/static/fonts/quicksand-latin.woff2") format("woff2");
}

@font-face {
	font-family: "Quicksand";
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("/static/fonts/quicksand-latin-ext.woff2") format("woff2");
}

/*
 * Socle visuel des deux pré-landers /tonight/ et /match/.
 *
 * Parti pris 2026 : fond bleu nuit, accent rouge TwinkLove, rappels bleus,
 * rayons larges, surfaces plutôt que bordures et
 * mouvements courts. Pas de dégradé arc-en-ciel, pas de néon : la niche se
 * lasse vite des pages qui crient, et une page qui crie se lit comme une
 * publicité avant d'être lue tout court.
 *
 * Mobile d'abord : ces pages reçoivent leur trafic depuis un tube, au pouce.
 * Toute cible tapable fait au moins 44 px de haut.
 */

:root {
	color-scheme: dark;
	--lp-bg: #061018;
	--lp-bg-2: #0b1822;
	--lp-surface: #10232f;
	--lp-surface-2: #173543;
	--lp-line: rgba(255, 255, 255, .1);
	--lp-line-strong: rgba(255, 59, 95, .42);
	--lp-text: #f7fbff;
	--lp-muted: #9fb2bf;
	--lp-accent: #ff3b5f;
	--lp-accent-2: #d81843;
	--lp-secondary: #1594c6;
	--lp-online: #20c77a;
	--lp-shell: 640px;
	--lp-radius: 18px;
	--lp-safe: env(safe-area-inset-bottom, 0px);
	--lp-font: "Quicksand", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
	--lp-display: "Quicksand", ui-sans-serif, system-ui, sans-serif;
}

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

html {
	min-height: 100%;
	background: var(--lp-bg);
	text-size-adjust: 100%;
}

body {
	min-height: 100%;
	margin: 0;
	overflow-x: hidden;
	background:
		radial-gradient(90% 55% at 15% 0, rgba(255, 59, 95, .16), transparent 66%),
		radial-gradient(90% 58% at 100% 8%, rgba(21, 148, 198, .13), transparent 64%),
		var(--lp-bg);
	color: var(--lp-text);
	font-family: var(--lp-font);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

body.lp-locked { overflow: hidden; }

img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }

.lp-shell {
	width: 100%;
	max-width: var(--lp-shell);
	margin: 0 auto;
	padding: 0 16px;
}

.lp-sr {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
}

/* ---------- en-tête ---------- */

.lp-top {
	position: sticky;
	top: 0;
	z-index: 30;
	padding: 10px 0;
	background: rgba(6, 16, 24, .88);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--lp-line);
}

.lp-top__inner {
	display: flex;
	align-items: center;
	gap: 10px;
}

.lp-brand {
	display: flex;
	align-items: center;
	gap: 7px;
	font-family: var(--lp-display);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -.01em;
}

.lp-brand__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--lp-online);
	box-shadow: 0 0 0 4px rgba(61, 220, 132, .16);
}

.lp-top__age {
	margin-inline-start: auto;
	padding: 4px 9px;
	border: 1px solid var(--lp-line);
	border-radius: 999px;
	color: var(--lp-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .04em;
}

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

.lp-hero { padding: 26px 0 18px; }

.lp-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 10px;
	padding: 5px 11px;
	border-radius: 999px;
	background: rgba(255, 59, 95, .14);
	color: var(--lp-accent);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.lp-h1 {
	margin: 0;
	font-family: var(--lp-display);
	font-size: clamp(28px, 8vw, 40px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -.03em;
	text-wrap: balance;
}

.lp-h1 em {
	color: var(--lp-accent);
	font-style: normal;
}

.lp-sub {
	max-width: 34em;
	margin: 12px 0 0;
	color: var(--lp-muted);
	font-size: 15px;
	line-height: 1.55;
	text-wrap: pretty;
}

/* ---------- boutons ---------- */

.lp-btn {
	display: inline-flex;
	width: 100%;
	min-height: 52px;
	padding: 14px 20px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 0;
	border-radius: 14px;
	background: linear-gradient(180deg, var(--lp-accent), var(--lp-accent-2));
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: transform .16s ease, box-shadow .16s ease;
	box-shadow: 0 12px 30px -14px rgba(255, 59, 95, .72);
}

.lp-btn:active { transform: translateY(1px); }

.lp-btn--ghost {
	background: transparent;
	border: 1px solid var(--lp-line-strong);
	color: var(--lp-text);
	box-shadow: none;
}

/* ---------- barre collante ---------- */

.lp-dock {
	position: fixed;
	z-index: 40;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 10px 16px calc(10px + var(--lp-safe));
	background: linear-gradient(to top, rgba(6, 16, 24, .98) 62%, rgba(6, 16, 24, 0));
	transform: translateY(120%);
	transition: transform .28s cubic-bezier(.2, .8, .2, 1);
}

.lp-dock[data-shown="1"] { transform: none; }

.lp-dock__inner {
	max-width: var(--lp-shell);
	margin: 0 auto;
}

.lp-dock__note {
	margin: 0 0 7px;
	color: var(--lp-muted);
	font-size: 12px;
	text-align: center;
}

/* ---------- pied ---------- */

.lp-foot {
	margin-top: 30px;
	padding: 18px 0 130px;
	border-top: 1px solid var(--lp-line);
	color: var(--lp-muted);
	font-size: 11.5px;
	line-height: 1.6;
}

.lp-foot__row {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 14px;
}

/*
 * La ligne d'honnêteté. Elle dit ce que la page montre — des profils qui
 * illustrent le service — sans casser la lecture. Discrète, mais présente sur
 * les deux pages.
 */
.lp-honest {
	margin: 14px 0 0;
	color: #718795;
	font-size: 11px;
	line-height: 1.55;
}

/* Annonce de redirection : ce qui se passe après le clic, dit avant le clic. */
.lp-rnote {
	margin: 10px 0 0;
	color: #8fa3b1;
	font-size: 12.5px;
	line-height: 1.45;
	text-align: center;
}

/* ---------- feuille de conversion ---------- */

.lp-sheet {
	position: fixed;
	z-index: 60;
	inset: 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 0;
	background: rgba(2, 10, 15, .78);
	backdrop-filter: blur(6px);
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s ease;
}

.lp-sheet[data-open="1"] {
	opacity: 1;
	pointer-events: auto;
}

.lp-sheet__panel {
	width: 100%;
	max-width: var(--lp-shell);
	max-height: 92vh;
	padding: 8px 18px calc(22px + var(--lp-safe));
	overflow-y: auto;
	border-radius: 22px 22px 0 0;
	background: var(--lp-bg-2);
	border-top: 1px solid var(--lp-line-strong);
	transform: translateY(16px);
	transition: transform .26s cubic-bezier(.2, .8, .2, 1);
}

.lp-sheet[data-open="1"] .lp-sheet__panel { transform: none; }

.lp-sheet__grip {
	width: 40px;
	height: 4px;
	margin: 4px auto 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .22);
}

.lp-sheet__title {
	margin: 0 0 6px;
	font-family: var(--lp-display);
	font-size: 22px;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -.02em;
}

.lp-sheet__text {
	margin: 0 0 16px;
	color: var(--lp-muted);
	font-size: 14px;
}

.lp-sheet__faces {
	display: flex;
	margin: 0 0 14px;
	align-items: center;
}

.lp-sheet__faces img {
	width: 44px;
	height: 44px;
	border: 2px solid var(--lp-bg-2);
	border-radius: 50%;
	object-fit: cover;
}

.lp-sheet__faces img + img { margin-inline-start: -14px; }

.lp-sheet__close {
	position: absolute;
	top: 0;
	inset-inline-end: 0;
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	color: var(--lp-muted);
	font-size: 22px;
	cursor: pointer;
}

/* Le formulaire partenaire est monté dans #selector, lui-même contenu par #form. */
.lp-form {
	position: relative;
	min-height: 220px;
	margin: 4px 0 0;
	border-radius: 14px;
	background: #08161f;
}

.lp-form__mount { min-height: 220px; }

.lp-form__wait {
	position: absolute;
	z-index: 1;
	inset: 0;
	display: grid;
	padding: 26px 12px;
	place-items: center;
	color: var(--lp-muted);
	font-size: 13px;
	text-align: center;
	pointer-events: none;
}

.lp-form__wait[hidden],
.lp-form__fallback[hidden] { display: none !important; }

.lp-form.is-ready { background: transparent; }

.lp-form.is-unavailable {
	min-height: 0;
	background: transparent;
}

.lp-form.is-unavailable .lp-form__mount { min-height: 0; }

.lp-form__fallback {
	margin: 12px 0 0;
	color: var(--lp-muted);
	font-size: 12.5px;
	text-align: center;
}

.lp-form__fallback a { color: var(--lp-accent); }

/* Le logo fourni possède un fond blanc : la capsule préserve son contraste. */
.lp-brand--logo { gap: 0; }

.lp-brand__logo-wrap {
	display: inline-flex;
	align-items: center;
	padding: 4px 9px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 5px 18px rgba(0, 0, 0, .2);
}

.lp-brand__logo {
	width: 104px;
	height: auto;
	max-height: 28px;
	object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: .001ms !important;
		transition-duration: .001ms !important;
	}
	html { scroll-behavior: auto; }
}
