:root {
	--navy: #162636;
	--navy-2: #1d3246;
	--accent: #f08a1a;
	--text: #f7f7f8;
	--muted: rgba(255, 255, 255, .78);
	--card: rgba(12, 20, 30, .28);
	--shadow: 0 18px 50px rgba(0, 0, 0, .35);
	--radius: 22px;
	--maxw: 1080px;
}

* {
	box-sizing: border-box
}

html, body {
	height: 100%
}

body {
	margin: 0;
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
	color: var(--text);
	background: #0b121a;
	overflow-x: hidden;
}

/* couches background */
.video-bg {
	position: fixed;
	inset: 0;
	z-index: -2;
	overflow: hidden;
}

.video-bg video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* overlay plein écran AU-DESSUS de la vidéo */
.gradient-overlay {
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background: linear-gradient(120deg,
			rgba(8, 14, 22, 0.92) 0%,
			rgba(20, 40, 60, 0.85) 35%,
			rgba(20, 40, 60, 0.60) 60%,
			rgba(20, 40, 60, 0.20) 100%);
}

/* contenu au-dessus */
.wrap {
	position: relative;
	z-index: 1;
	min-height: 50%;
	display: flex;
	align-items: center;
}

.container {
	width: min(var(--maxw), calc(100% - 40px));
	margin: 0 auto;
	padding: clamp(28px, 6vw, 72px) 0;
}

.panel {
	/*max-width: 560px;*/
	background: linear-gradient(180deg, rgba(10, 16, 24, .35) 0%, rgba(10, 16, 24, .20) 100%);
	border: 1px solid rgba(255, 255, 255, .10);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: clamp(22px, 3.2vw, 34px);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.kicker {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	font-size: .78rem;
	color: rgba(255, 255, 255, .85);
}

.dot {
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: var(--accent);
	box-shadow: 0 0 0 6px rgba(240, 138, 26, .18);
}

h1 {
	margin: 12px 0 10px;
	font-size: clamp(2rem, 4.2vw, 3.1rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
	text-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.sub {
	margin: 0 0 18px;
	color: var(--muted);
	font-size: 1.05rem;
	line-height: 1.55;
}

.sub strong {
	color: #fff;
	font-weight: 650;
}

.actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin-top: 18px;
}

.social {
	display: flex;
	gap: 10px;
}


.icon-btn:hover {
	transform: translateY(-2px);
	background: rgba(240, 138, 26, .20);
	border-color: rgba(240, 138, 26, .35);
}

.icon {
	width: 22px;
	height: 22px;
	fill: #fff;
	opacity: .92;
}

.icon-btn {
	width: 46px;
	height: 46px;
	border-radius: 999px;
	display: grid;
	place-items: center;
}

.cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .6rem;
	height: 46px;
	padding: 0 18px;
	border-radius: 14px;
	font-weight: 700;
	border: 1px solid rgba(255, 255, 255, .12);
	background: linear-gradient(180deg, rgba(240, 138, 26, 1) 0%, rgba(222, 113, 20, 1) 100%);
	color: #1a1a1a;
	text-decoration: none;
	box-shadow: 0 14px 34px rgba(240, 138, 26, .22);
	transition: transform .12s ease, filter .12s ease;
	white-space: nowrap;
}

.cta:hover {
	transform: translateY(-2px);
	filter: brightness(1.05);
}

.footer {
	margin-top: 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	color: rgba(255, 255, 255, .55);
	font-size: .9rem;
}

.footer .name {
	letter-spacing: .08em;
	text-transform: uppercase;
	font-size: .82rem;
}