﻿:root {
	--bg-dark: #201335;
	--bg-light: #fbde23;
	--card: #f8f8f7;
	--ink: #111214;
	--muted: #4d3f66;
	--line: #201335;
	--accent-chip: #ff8833;
	--accent-purple: #201335;
	--accent-orange: #ff8833;
	--accent-yellow: #fbde23;
	--btn-shadow: 0 16px 30px rgba(8, 12, 18, 0.16);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: "Manrope", sans-serif;
	color: var(--ink);
	background:
		radial-gradient(1200px 560px at 84% 2%, #ffb26e 0%, #ff8833 30%, transparent 72%),
		radial-gradient(960px 420px at 12% 100%, #4a2c73 0%, #201335 74%),
		linear-gradient(160deg, #4d2d77 0%, #2b1848 34%, #201335 56%, #ff8833 100%);
	display: grid;
	place-items: center;
	padding: 0;
}

body.loading {
	background: var(--card);
	overflow: hidden;
}

body.loading .shell {
	opacity: 0;
	visibility: hidden;
}

.status-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1305;
	pointer-events: none;
}

.status-bar::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 34px;
	background: rgba(248, 248, 247, 0.52);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(32, 19, 53, 0.08);
	pointer-events: none;
}

.status-bar-inner {
	width: min(1040px, calc(100% - 24px));
	height: 26px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #111214;
	padding: 6px 2px 0;
	position: relative;
	z-index: 1;
	pointer-events: auto;
	cursor: pointer;
}

.status-left-logo {
	position: absolute;
	left: 0;
	top: 1px;
	width: 64px;
	height: auto;
	filter: invert(1);
	opacity: 0;
	transform: translateY(-4px);
	transition: opacity 220ms ease, transform 260ms ease;
}

.status-time {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1;
}

.status-icons {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	line-height: 1;
}

.status-center-logo {
	position: absolute;
	left: 50%;
	top: 1px;
	width: 132px;
	height: auto;
	transform: translate(-50%, 18px) scale(1);
	transform-origin: center;
	opacity: 0;
	filter: invert(1);
	transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease;
}

body.notif-center-open .status-time {
	opacity: 0;
}

body.notif-center-open .status-left-logo {
	opacity: 1;
	transform: translateY(0);
}

body.notif-center-open .status-center-logo {
	opacity: 0;
}

.notif-center {
	position: fixed;
	inset: 0;
	z-index: 1700;
	opacity: 0;
	pointer-events: none;
	transition: opacity 260ms ease;
}

.notif-center-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(12, 16, 26, 0.34);
	backdrop-filter: blur(12px) saturate(110%);
	-webkit-backdrop-filter: blur(12px) saturate(110%);
}

.notif-center-body {
	position: relative;
	height: 0;
	overflow: hidden;
	padding: 44px 18px 24px;
	transition: height 460ms cubic-bezier(0.22, 1, 0.36, 1);
	background: linear-gradient(180deg, rgba(68, 78, 96, 0.78), rgba(52, 60, 76, 0.7));
}

.notif-center-clock {
	text-align: center;
	padding-top: 14px;
	opacity: 0;
	transform: translateY(-10px);
	transition: transform 300ms ease, opacity 240ms ease;
}

.notif-center-big-time {
	margin: 0;
	font-size: clamp(72px, 14vw, 122px);
	line-height: 0.9;
	font-weight: 500;
	letter-spacing: -0.03em;
	color: #0b0f16;
	text-shadow: 0 2px 12px rgba(235, 240, 248, 0.15);
}

.notif-center-date {
	margin: 8px 0 0;
	font-size: clamp(22px, 3.2vw, 38px);
	font-weight: 500;
	letter-spacing: -0.01em;
	color: rgba(10, 14, 20, 0.92);
}

.notif-center-close {
	position: absolute;
	top: 44px;
	right: 18px;
	border: 1px solid rgba(255, 255, 255, 0.58);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.4);
	width: 34px;
	height: 34px;
	padding: 0;
	font-size: 24px;
	font-weight: 600;
	line-height: 1;
	color: #0f1622;
	cursor: pointer;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	z-index: 4;
}

.notif-center-card {
	margin: 26px auto 0;
	width: min(920px, 100%);
	padding: 14px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	text-decoration: none;
	border-radius: 18px;
	background: linear-gradient(140deg, rgba(234, 240, 249, 0.68), rgba(205, 219, 236, 0.56));
	border: 1px solid rgba(255, 255, 255, 0.66);
	box-shadow: 0 14px 24px rgba(28, 38, 54, 0.16);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	opacity: 0;
	transform: translateY(14px);
	transition: transform 320ms ease, opacity 280ms ease;
}

.notif-center-card-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.28);
	border: 1px solid rgba(255, 255, 255, 0.42);
	padding: 0;
	object-fit: cover;
	overflow: hidden;
	display: block;
	flex-shrink: 0;
}

.notif-center-card-content {
	min-width: 0;
	color: #202633;
}

.notif-center-card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.notif-center-card-name,
.notif-center-card-time,
.notif-center-card-text {
	margin: 0;
}

.notif-center-card-name {
	font-size: 17px;
	font-weight: 700;
}

.notif-center-card-time {
	font-size: 15px;
	font-weight: 500;
	color: rgba(32, 38, 51, 0.74);
}

.notif-center-card-text {
	margin-top: 6px;
	font-size: 28px;
	line-height: 1.34;
	color: rgba(27, 33, 45, 0.95);
}

body.notif-center-open {
	overflow: hidden;
}

body.notif-center-open .trend-notif {
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, -145%);
}

body.notif-center-open .notif-center {
	opacity: 1;
	pointer-events: auto;
}

body.notif-center-open .notif-center-body {
	height: 100vh;
}

body.notif-center-open .notif-center-clock,
body.notif-center-open .notif-center-card {
	opacity: 1;
	transform: translateY(0);
}

.status-icon {
	display: block;
	height: 14.4px;
	width: auto;
	fill: currentColor;
	color: #111214;
	object-fit: contain;
}

.preloader {
	position: fixed;
	inset: 0;
	background: var(--card);
	z-index: 1200;
	display: grid;
	place-content: center;
	justify-items: center;
	gap: 16px;
	transition: opacity 320ms ease, visibility 320ms ease;
}

.preloader-logo {
	width: min(180px, 40vw);
	height: auto;
	filter: invert(1);
	animation: preloader-pulse 1150ms ease-in-out infinite;
}

.preloader-text {
	margin: 0;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--accent-purple);
}

body.loaded .preloader {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.trend-notif {
	position: fixed;
	top: 40px;
	left: 50%;
	width: min(840px, calc(100% - 26px));
	padding: 12px 14px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	text-decoration: none;
	color: #0f1115;
	background: linear-gradient(140deg, rgba(132, 138, 151, 0.42), rgba(96, 104, 120, 0.34));
	border: 1px solid rgba(255, 255, 255, 0.44);
	border-radius: 18px;
	backdrop-filter: blur(18px) saturate(170%);
	-webkit-backdrop-filter: blur(18px) saturate(170%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.55),
		0 16px 38px rgba(12, 18, 34, 0.26);
	transform: translate(-50%, -145%);
	opacity: 0;
	pointer-events: none;
	transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1), opacity 320ms ease;
	z-index: 1500;
	overflow: hidden;
}

.trend-notif::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0) 45%);
	pointer-events: none;
}

.trend-notif.is-visible {
	transform: translate(-50%, 0);
	opacity: 1;
	pointer-events: auto;
}

.trend-notif-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.34);
	background: rgba(255, 255, 255, 0.24);
	object-fit: cover;
	padding: 0;
	overflow: hidden;
	display: block;
	flex-shrink: 0;
	box-shadow: 0 8px 18px rgba(10, 15, 30, 0.18);
	position: relative;
	z-index: 1;
}

.trend-notif-content {
	position: relative;
	z-index: 1;
	min-width: 0;
}

.trend-notif-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.trend-notif-name {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.03em;
	color: #0b0d10;
}

.trend-notif-time {
	margin: 0;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.2;
	color: rgba(8, 10, 14, 0.72);
	white-space: nowrap;
}

.trend-notif-text {
	margin: 4px 0 0;
	font-size: 14px;
	line-height: 1.35;
	color: rgba(8, 10, 14, 0.9);
}

.shell {
	width: 100%;
	min-height: 100vh;
	background: var(--card);
	border: 0;
	box-shadow: none;
	position: relative;
	overflow: clip; /* Remplace hidden par clip */
	animation: panel-in 700ms ease-out;
}


.inner {
	position: relative;
	z-index: 2;
	width: min(1040px, 100% - 60px);
	margin: 0 auto;
}

.topbar {
	height: auto;
	padding-top: 80px;
	padding-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
}

.topbar-logo {
	width: min(160px, 31vw);
	height: auto;
	display: block;
	filter: invert(1);
	transition: transform 360ms ease, opacity 260ms ease;
}

body.logo-in-status .status-center-logo {
	transform: translate(-50%, -2px) scale(0.5);
	opacity: 1;
}

body.logo-in-status .topbar-logo {
	transform: translateY(-44px) scale(0.74);
	opacity: 0;
}

.left,
.center,
.right {
	display: flex;
	align-items: center;
	gap: 14px;
}

.center {
	gap: 32px;
}

.logo {
	width: 26px;
	height: 26px;
	display: inline-grid;
	place-items: center;
	margin-right: 8px;
}

.tab {
	font-size: 12px;
	font-weight: 600;
	border: 1px solid transparent;
	border-radius: 999px;
	padding: 6px 13px;
}

.tab.active {
	border-color: var(--line);
	background: #ffffff;
}

.navlink {
	color: var(--accent-purple);
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: -0.01em;
}

.signup {
	border: 1px solid var(--accent-purple);
	border-radius: 999px;
	text-decoration: none;
	color: var(--accent-purple);
	font-size: 16px;
	font-weight: 600;
	padding: 10px 28px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 146px;
	height: 50px;
}

.hero {
	max-width: 900px;
	margin: 50px auto 0;
	text-align: center;
	position: relative;
}

@media (min-width: 981px) {
	.hero {
		padding-bottom: clamp(18px, 3.2vh, 40px);
	}

	.cta-row {
		margin-top: 54px !important;
	}

	.trust {
		margin-top: 74px !important;
	}

	.brands {
		margin-top: 10px !important;
	}

	.hero-vision-jump {
		margin-top: 2px !important;
		margin-bottom: 4px !important;
	}
}

.hero-side-videos {
	--hero-side-gap: 10px;
	--hero-side-column-gap: calc(var(--hero-side-gap));
	--hero-side-video-width-base: 210px;
	--hero-side-video-width: var(--hero-side-video-width-base);
	position: absolute;
	top: -200px;
	bottom: 0;
	overflow: hidden;
	pointer-events: none;
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: max-content;
	justify-content: center;
	column-gap: var(--hero-side-column-gap);
}

.hero-side-videos-left {
	left: calc(-1 * ((100vw - 100%) / 2 + 28px));
	width: calc((100vw - 100%) / 2 + 28px);
	justify-content: start;
	-webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 52%), linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 62%, rgba(0,0,0,0) 100%);
	mask-image: linear-gradient(to left, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 52%), linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 62%, rgba(0,0,0,0) 100%);
	-webkit-mask-composite: destination-in;
	mask-composite: intersect;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%, 100% 100%;
	mask-size: 100% 100%, 100% 100%;
}

.hero-side-videos-right {
	right: calc(-1 * ((100vw - 100%) / 2 + 28px));
	width: calc((100vw - 100%) / 2 + 28px);
	justify-content: end;
	-webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 52%), linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 62%, rgba(0,0,0,0) 100%);
	mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 52%), linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 62%, rgba(0,0,0,0) 100%);
	-webkit-mask-composite: destination-in;
	mask-composite: intersect;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%, 100% 100%;
	mask-size: 100% 100%, 100% 100%;
}

.hero-side-track {
	display: flex;
	flex-direction: column;
	gap: var(--hero-side-gap);
	height: 100%;
	will-change: transform;
}

.hero-side-track-up {
	animation: hero-side-up 120s linear infinite;
}

.hero-side-track-down {
	animation: hero-side-down 120s linear infinite;
}

.hero.animations-paused .hero-side-track {
	animation-play-state: paused;
}

.hero-side-stack {
	display: flex;
	flex-direction: column;
	gap: var(--hero-side-gap);
}

.hero-side-video {
	width: var(--hero-side-video-width);
	height: calc(var(--hero-side-video-width) * 1.7714285714);
	border-radius: 18px;
	object-fit: contain;
	opacity: 0.82;
	box-shadow: 0 8px 14px rgba(15, 20, 29, 0.16);
	margin: 0 auto;
	will-change: transform, opacity;
	backface-visibility: hidden;
	transform: translateZ(0);
}

.hero-side-track:nth-child(even) .hero-side-video {
	opacity: 0.5;
}

.hero-side-stack .hero-side-video:nth-child(even) {
	opacity: 0.6;
}

.chip {
	display: inline-block;
	padding: 8px 14px;
	border-radius: 999px;
	background: var(--accent-chip);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	animation: float-in 900ms ease-out 220ms both;
}

h1 {
	font-family: "Noto Serif", serif;
	font-size: clamp(43px, 6vw, 74px);
	line-height: 0.98;
	letter-spacing: -0.022em;
	margin: 26px 0 22px;
	font-weight: 600;
	text-align: center;
	animation: float-in 900ms ease-out 280ms both;
}

.lead {
	margin: 0 auto;
	max-width: 900px;
	color: var(--muted);
	font-size: clamp(16px, 1.4vw, 20px);
	line-height: 1.62;
	letter-spacing: -0.008em;
	text-align: center;
	text-align-last: center;
	hyphens: none;
	animation: float-in 900ms ease-out 360ms both;
}

.cta-row {
	margin-top: 22px;
	display: inline-flex;
	gap: 14px;
	animation: float-in 900ms ease-out 450ms both;
}

.btn {
	border-radius: 999px;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	padding: 12px 24px;
	min-width: 142px;
	height: 52px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	letter-spacing: -0.01em;
	transition: all 320ms cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
	overflow: hidden;
}

.btn.light::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.8), transparent 50%);
	opacity: 0;
	transition: opacity 320ms ease;
	pointer-events: none;
	z-index: 1;
}

.btn.light:hover::before {
	opacity: 0.6;
}

.btn > * {
	position: relative;
	z-index: 2;
}

.btn.dark {
	background: #050607;
	color: #fff;
	box-shadow: 0 12px 24px rgba(8, 12, 18, 0.2);
	border: 1px solid rgba(0, 0, 0, 0.3);
	transition: all 280ms ease;
}

.btn.dark:hover {
	background: #1a1a1a;
	box-shadow: 0 16px 32px rgba(8, 12, 18, 0.3);
}

.btn.light {
	border: 2px solid rgba(255, 136, 51, 0.5);
	color: var(--accent-purple);
	background: rgba(255, 136, 51, 0.3);
	backdrop-filter: blur(20px) brightness(0.98) saturate(120%);
	-webkit-backdrop-filter: blur(20px) brightness(0.98) saturate(120%);
	box-shadow: 
		inset 0 2px 0 rgba(255, 255, 255, 0.8),
		inset 0 -2px 0 rgba(255, 136, 51, 0.2),
		0 10px 30px rgba(255, 136, 51, 0.22),
		0 0 40px rgba(255, 136, 51, 0.12);
}

.btn.light:hover {
	background: rgba(255, 136, 51, 0.45);
	border-color: rgba(255, 136, 51, 0.75);
	box-shadow: 
		inset 0 2px 0 rgba(255, 255, 255, 1),
		inset 0 -2px 0 rgba(255, 136, 51, 0.3),
		0 14px 40px rgba(255, 136, 51, 0.32),
		0 0 50px rgba(255, 136, 51, 0.18);
}

.trust {
	margin-top: 34px;
	color: #6a5a86;
	font-size: 11px;
	letter-spacing: 0.01em;
	animation: float-in 900ms ease-out 540ms both;
}

.brands {
	margin-top: 14px;
	position: relative;
	width: min(760px, 100%);
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	padding: 14px 0;
	-webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 12%, rgba(0, 0, 0, 1) 88%, rgba(0, 0, 0, 0) 100%);
	mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 12%, rgba(0, 0, 0, 1) 88%, rgba(0, 0, 0, 0) 100%);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
}

.hero-vision-jump {
	width: max-content;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 34px auto 6px;
	padding: 8px;
	border-radius: 999px;
	text-decoration: none;
	appearance: none;
	-webkit-appearance: none;
	font: inherit;
	cursor: pointer;
	background: transparent;
	border: 1px solid transparent;
	transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.hero-vision-jump-icon {
	display: block;
	width: 20px;
	height: 20px;
	object-fit: contain;
	filter: brightness(0) saturate(100%);
	transform: translateY(0);
	transition: transform 220ms ease;
}

.hero-vision-jump:hover {
	border-color: rgba(32, 19, 53, 0.22);
	background: rgba(255, 255, 255, 0.72);
	transform: translateY(1px);
}

.hero-vision-jump:hover .hero-vision-jump-icon {
	transform: translateY(2px);
}

.brands-track {
	display: flex;
	width: max-content;
	align-items: center;
	animation: brands-scroll 34s linear infinite;
}

.brands:hover .brands-track {
	animation-play-state: paused;
}

.brands-set {
	display: flex;
	align-items: center;
	gap: 24px;
	padding-right: 24px;
}

.brand-logo {
	height: 40px;
	width: 105px;
	object-fit: contain;
	object-position: center;
	filter: grayscale(1);
	opacity: 0.95;
	transition: transform 220ms ease, filter 220ms ease, opacity 220ms ease;
	transform-origin: center;
}

.brand-logo:hover {
	transform: scale(1.2);
	filter: none;
	opacity: 1;
}

.pain-point,
.method-yunee {
	margin-top: 34px;
	padding: 28px;
	border-radius: 24px;
	border: 1px solid rgba(32, 19, 53, 0.14);
	background: #fffdfa;
	box-shadow: 0 10px 28px rgba(19, 12, 34, 0.05);
	text-align: center;
}

.section-head {
	text-align: center;
	margin: 56px 0 18px;
}

.pain-point {
	margin-top: 64px;
	scroll-margin-top: 40px;
	position: relative;
	padding: 58px 48px 52px;
	border: 1px solid rgba(32, 19, 53, 0.14);
	background: #fffdfa;
	box-shadow:
		0 18px 42px rgba(19, 12, 34, 0.07),
		inset 0 1px 0 rgba(255, 255, 255, 0.82);
	overflow: hidden;
}

.pain-point::before,
.pain-point::after {
	content: "";
	position: absolute;
	pointer-events: none;
	z-index: 0;
}

.pain-point::before {
	inset: 0;
	background-image:
		linear-gradient(to right, rgba(32, 19, 53, 0.05) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(32, 19, 53, 0.04) 1px, transparent 1px);
	background-size: 104px 104px;
	opacity: 0.26;
}

.pain-point::after {
	width: 560px;
	height: 280px;
	top: -108px;
	right: -124px;
	background:
		radial-gradient(65% 55% at 38% 80%, rgba(77, 63, 102, 0.15), rgba(77, 63, 102, 0)),
		radial-gradient(58% 48% at 62% 12%, rgba(255, 136, 51, 0.16), rgba(255, 136, 51, 0));
	filter: blur(14px);
}

.pain-point-label,
.method-yunee-label {
	margin: 0;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent-orange);
}

.pain-point-title,
.method-yunee-title {
	margin: 10px 0 0;
	font-family: "Noto Serif", serif;
	font-size: clamp(28px, 3vw, 38px);
	line-height: 1.08;
	letter-spacing: -0.015em;
	color: #111214;
}

.pain-point-title {
	max-width: 860px;
	margin-left: auto;
	margin-right: auto;
	font-size: clamp(22px, 2.9vw, 36px);
	line-height: 0.98;
	letter-spacing: -0.03em;
	color: #111214;
	text-wrap: balance;
	position: relative;
	z-index: 1;
}

.pain-point-subtitle {
	margin: 18px auto 0;
	max-width: 780px;
	font-size: clamp(13px, 1.05vw, 15px);
	line-height: 1.46;
	color: rgba(46, 32, 80, 0.8);
	position: relative;
	z-index: 1;
}

.pain-point-grid {
	margin-top: 38px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 11px;
	max-width: 736px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 2;
}

.pain-point-card-slot {
	position: relative;
}

.pain-point-card-slot.is-animating > .pain-point-card {
	position: absolute;
	inset: 0;
	margin: 0;
}

.pain-point-card-slot.is-animating > .pain-point-card-ad {
	z-index: 2;
}

.pain-point-card {
	position: relative;
	text-align: left;
	padding: 14px 16px;
	border-radius: 16px;
	border: 1px solid rgba(32, 19, 53, 0.16);
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.52));
	box-shadow:
		0 12px 22px rgba(32, 19, 53, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.84);
	backdrop-filter: blur(14px) saturate(118%);
	-webkit-backdrop-filter: blur(14px) saturate(118%);
	overflow: hidden;
	opacity: 0;
	transform: translateY(20px);
	transition: transform 620ms ease-in-out, opacity 620ms ease-in-out, border-color 240ms ease, box-shadow 240ms ease;
}

.pain-point.is-revealed .pain-point-card {
	opacity: 1;
	transform: translateY(0);
}

.pain-point.is-revealed .pain-point-card-talents {
	transition-delay: 200ms;
}

.pain-point.is-revealed .pain-point-card-codes {
	transition-delay: 400ms;
}

.pain-point-card.is-evicted {
	opacity: 0;
	transform: translateX(-188%) scale(0.88);
	filter: blur(2px);
	pointer-events: none;
	transition:
		transform 520ms cubic-bezier(0.18, 0.94, 0.2, 1),
		opacity 280ms ease,
		filter 280ms ease;
}

.pain-point-card::before {
	display: none;
}

.pain-point-card::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 3px;
	background: linear-gradient(90deg, rgba(32, 19, 53, 0.9) 0%, rgba(77, 63, 102, 0.88) 60%, rgba(255, 136, 51, 0.84) 100%);
	opacity: 0.18;
	transition: opacity 260ms ease;
	pointer-events: none;
}

.pain-point-card:hover {
	transform: translateY(-5px);
	border-color: rgba(32, 19, 53, 0.28);
	box-shadow:
		0 18px 28px rgba(32, 19, 53, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.pain-point-card:hover::before,
.pain-point-card:hover::after {
	opacity: 0.95;
}

.pain-point-search-meta {
	display: flex;
	align-items: center;
	gap: 8px;
}

.pain-point-search-favicon {
	width: 20px;
	height: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 2px;
	border-radius: 999px;
	font-size: 8px;
	font-weight: 700;
	color: #201335;
	background: linear-gradient(140deg, rgba(255, 136, 51, 0.3), rgba(255, 255, 255, 0.86));
	border: 1px solid rgba(32, 19, 53, 0.18);
	flex-shrink: 0;
	object-fit: contain;
}

.pain-point-search-source {
	min-width: 0;
}

.pain-point-search-site,
.pain-point-search-url {
	margin: 0;
	line-height: 1.2;
}

.pain-point-search-site {
	font-size: 11px;
	color: #1f2027;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pain-point-search-url {
	margin-top: 2px;
	font-size: 9px;
	color: rgba(46, 32, 80, 0.68);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pain-point-search-more {
	margin-left: auto;
	font-size: 14px;
	line-height: 1;
	color: rgba(46, 32, 80, 0.58);
	letter-spacing: 0.04em;
	transform: translateY(-2px);
}

.pain-point-search-badge {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 9px;
	border-radius: 999px;
	border: 1px solid rgba(255, 196, 62, 0.58);
	background: rgba(255, 214, 92, 0.9);
	font-size: 10px;
	line-height: 1;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #5b3a00;
	box-shadow: inset 0 1px 0 rgba(255, 245, 201, 0.75);
}

.pain-point-search-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	padding: 0;
	border: 1px solid rgba(32, 19, 53, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	color: rgba(32, 19, 53, 0.82);
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
	flex-shrink: 0;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.pain-point-search-close:hover {
	background: rgba(255, 255, 255, 0.94);
	border-color: rgba(255, 196, 62, 0.5);
	color: #201335;
	transform: scale(1.05);
}

.pain-point-search-title {
	margin: 8px 0 0;
	font-size: clamp(15px, 1.28vw, 18px);
	line-height: 1.25;
	font-weight: 500;
	letter-spacing: -0.012em;
	color: #223fbe;
	text-decoration: none;
}

.pain-point-search-snippet {
	margin: 6px 0 0;
	font-size: 12px;
	line-height: 1.52;
	color: rgba(36, 31, 53, 0.82);
}

.pain-point-card-ad {
	background: linear-gradient(165deg, rgba(255, 251, 238, 0.9), rgba(255, 246, 214, 0.78));
	border-color: rgba(255, 136, 51, 0.22);
	box-shadow:
		0 16px 30px rgba(32, 19, 53, 0.11),
		inset 0 1px 0 rgba(255, 255, 255, 0.84);
	backdrop-filter: blur(14px) saturate(118%);
	-webkit-backdrop-filter: blur(14px) saturate(118%);
	transition:
		transform 620ms cubic-bezier(0.12, 0.96, 0.18, 1),
		opacity 320ms ease,
		border-color 240ms ease,
		box-shadow 240ms ease;
}

.pain-point-card-ad::after {
	display: none;
}

.pain-point-card-ad .pain-point-search-favicon {
	background: linear-gradient(140deg, rgba(255, 196, 62, 0.28), rgba(255, 255, 255, 0.86));
	border-color: rgba(255, 196, 62, 0.28);
	filter: none;
}

.pain-point-card-ad .pain-point-search-site {
	color: #201335;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.pain-point-card-ad .pain-point-search-url {
	color: rgba(46, 32, 80, 0.68);
}

.pain-point-card-ad .pain-point-search-title {
	color: #223fbe;
}

.pain-point-card-ad .pain-point-search-snippet {
	color: rgba(36, 31, 53, 0.82);
}

.pain-point-ad-progress {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 4px;
	border-radius: 0;
	overflow: hidden;
	background: rgba(255, 214, 92, 0.18);
	pointer-events: none;
}

.pain-point-ad-progress-bar {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 0;
	transform-origin: left center;
	transform: scaleX(0);
	background: linear-gradient(90deg, rgba(255, 196, 62, 0.98) 0%, rgba(255, 214, 92, 0.98) 100%);
	animation: painPointAdCountdown 15s linear forwards;
	box-shadow: 0 0 12px rgba(255, 196, 62, 0.35);
}

@keyframes painPointAdCountdown {
	from {
		transform: scaleX(0);
	}

	to {
		transform: scaleX(1);
	}
}

.pain-point-card-ad.is-entering {
	opacity: 0.9;
	transform: translateX(calc(142% + 96px)) scale(0.95);
	pointer-events: none;
	box-shadow:
		0 28px 54px rgba(32, 19, 53, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.pain-point-card-ad.is-entering.is-active {
	opacity: 1;
	transform: translateX(0) rotate(0) scale(1);
}

.pain-point-next-era {
	justify-self: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 6px;
	min-width: 142px;
	height: 52px;
	padding: 12px 24px;
	border-radius: 999px;
	border: 2px solid rgba(255, 136, 51, 0.5);
	background: rgba(255, 136, 51, 0.3);
	box-shadow:
		inset 0 2px 0 rgba(255, 255, 255, 0.8),
		inset 0 -2px 0 rgba(255, 136, 51, 0.2),
		0 10px 30px rgba(255, 136, 51, 0.22),
		0 0 40px rgba(255, 136, 51, 0.12);
	font-family: "Noto Serif", serif;
	font-size: 15px;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: var(--accent-purple);
	text-decoration: none;
	transition: border-color 220ms ease, color 220ms ease, background-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.pain-point-next-era-icon {
	width: 14px;
	height: 14px;
	object-fit: contain;
	transform: translateY(0);
	transition: transform 220ms ease;
}

.pain-point-next-era:hover {
	border-color: rgba(255, 136, 51, 0.75);
	background: rgba(255, 136, 51, 0.45);
	color: var(--accent-purple);
	box-shadow:
		inset 0 2px 0 rgba(255, 255, 255, 1),
		inset 0 -2px 0 rgba(255, 136, 51, 0.3),
		0 14px 40px rgba(255, 136, 51, 0.32),
		0 0 50px rgba(255, 136, 51, 0.18);
	transform: translateX(2px);
}

.pain-point-next-era:hover .pain-point-next-era-icon {
	transform: translateY(2px);
}

.pain-point-proof {
	margin: 26px 0 0;
	font-size: 12px;
	line-height: 1.6;
	letter-spacing: 0.02em;
	color: rgba(46, 32, 80, 0.62);
	position: relative;
	z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
	.pain-point-card {
		opacity: 1;
		transform: none;
		transition: border-color 240ms ease, box-shadow 240ms ease;
	}
}

.method-yunee-subtitle {
	margin: 12px 0 0;
	font-size: 16px;
	line-height: 1.55;
	color: #42345f;
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

.method-yunee {
	--method-intro-offset: 72px; /* 44px de marge JS + 28px de padding */
	--method-intro-height: 142px;
	timeline-scope: --method-third; /* Partage le déclencheur d'animation avec le texte */
}

.method-yunee-intro {
	position: sticky;
	top: var(--method-intro-offset);
	z-index: 20;
	padding: 0 12px 14px;
	margin-bottom: 12px;
	background: transparent;
	will-change: transform, opacity;
}

.method-yunee-steps {
	margin: 20px auto 0;
	display: grid;
	grid-template-columns: 1fr;
	max-width: 480px;
	padding-bottom: 2vh;
	position: relative;
}

.method-stack-item {
	grid-column: 1;
	grid-row: 1;
	position: relative;
}

.method-stack-item::after {
	content: "";
	display: block;
	width: 100%;
}

.method-step {
	padding: 0;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: #fff;
	position: sticky !important;
	top: calc(var(--method-intro-offset) + var(--method-intro-height)) !important;
	overflow: hidden;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08), 0 0 0 0.5px rgba(0, 0, 0, 0.04);
	transform-origin: center top;
	will-change: transform, opacity, filter;
	transition: transform 420ms ease, opacity 420ms ease, filter 420ms ease;
}

.method-stack-item:nth-child(1) {
	margin-top: 0;
	z-index: 1;
}

.method-stack-item:nth-child(1)::after {
	height: 200vh;
}

.method-stack-item:nth-child(2) {
	margin-top: 100vh;
	z-index: 2;
}

.method-stack-item:nth-child(2)::after {
	height: 100vh;
}

.method-stack-item:nth-child(3) {
	margin-top: 200vh;
	z-index: 3;
}

.method-stack-item:nth-child(3)::after {
	height: 0;
}

.method-step::before {
	display: none;
}

@supports (animation-timeline: view()) {
	.method-stack-item {
		view-timeline-name: --method-card;
		view-timeline-axis: block;
	}

	.method-stack-item .method-step {
		animation-name: methodStackDepth;
		animation-duration: 1ms;
		animation-timing-function: linear;
		animation-fill-mode: both;
		animation-timeline: --method-card;
		animation-range: exit 0% exit 88%;
	}

	.method-stack-item:last-child .method-step {
		animation-range: exit 24% exit 100%;
	}

	.method-stack-item:nth-child(3) {
		view-timeline-name: --method-third;
		view-timeline-axis: block;
	}

	.method-yunee-intro {
		animation-name: methodIntroExit;
		animation-duration: 1ms;
		animation-timing-function: linear;
		animation-fill-mode: both;
		animation-timeline: --method-third;
		animation-range: entry 90% entry 100%; 
	}
}

@keyframes methodStackDepth {
	to {
		transform: scale(0.95);
		opacity: 0.74;
		filter: saturate(0.84);
	}
}

@keyframes methodIntroExit {
	from {
		opacity: 1;
		transform: translateY(0);
	}

	to {
		opacity: 0;
		transform: translateY(-86px);
	}
}

.method-yunee + .section-head {
	margin-top: 26px;
}

@media (prefers-reduced-motion: reduce) {
	.method-step {
		animation: none !important;
		transition: none;
		transform: none;
		opacity: 1;
		filter: none;
	}
}

/* ---- Instagram post chrome ---- */

.ig-post-header {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 10px 12px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ig-post-avatar {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	border: 2px solid transparent;
	background:
		linear-gradient(white, white) padding-box,
		linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) border-box;
}

.ig-post-account {
	display: flex;
	align-items: center;
	gap: 4px;
	flex: 1;
	min-width: 0;
}

.ig-post-username {
	font-size: 13px;
	font-weight: 700;
	color: #0f0f0f;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1;
}

.ig-post-verified {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	display: block;
}

.ig-post-more {
	background: none;
	border: none;
	padding: 4px 2px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	flex-shrink: 0;
	opacity: 1;
}

.ig-post-more img {
	width: 18px;
	height: 18px;
	display: block;
	object-fit: contain;
	filter: brightness(0);
	opacity: 1;
}

.ig-post-visual {
	width: 100%;
	aspect-ratio: 1 / 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0;
	gap: 0;
	overflow: hidden;
}

.ig-post-photo {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.ig-post-visual--1 {
	background: linear-gradient(148deg, #201335 0%, #2e2050 55%, #4d3f66 100%);
}

.ig-post-visual--2 {
	background: linear-gradient(148deg, #b34000 0%, #e86820 50%, #ff8833 100%);
}

.ig-post-visual--3 {
	background: linear-gradient(148deg, #201335 0%, #3d2460 45%, #ff8833 100%);
}

.ig-post-step-index {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.58);
}

.ig-post-step-title {
	margin: 4px 0 0;
	font-size: clamp(22px, 2.4vw, 30px);
	font-weight: 700;
	line-height: 1.06;
	letter-spacing: -0.022em;
	color: #fff;
}

.ig-post-step-text {
	margin: 6px 0 0;
	font-size: 13px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.74);
}

.ig-post-actions {
	display: flex;
	align-items: center;
	padding: 8px 8px 4px;
}

.ig-post-actions-left {
	display: flex;
	align-items: center;
	flex: 1;
}

.ig-post-action-btn {
	background: none;
	border: none;
	padding: 6px 7px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 160ms ease, opacity 160ms ease;
}

.ig-post-action-btn:hover {
	transform: scale(1.16);
	opacity: 0.72;
}

.ig-post-action-btn img {
	width: 24px;
	height: 24px;
	display: block;
	filter: brightness(0);
	transition: filter 160ms ease;
}



.ig-like-btn {
	position: static;
	width: auto;
	height: auto;
}

.ig-post-action-btn .ig-like-icon {
	width: 24px;
	height: 24px;
	display: block;
	object-fit: contain;
	position: static;
	transform: none;
	filter: none !important;
}

.ig-post-action-btn .ig-like-icon-default {
	filter: brightness(0) !important;
}

.ig-post-action-btn .ig-like-icon-active {
	display: none;
}

.ig-like-btn.is-liked .ig-like-icon-default {
	display: none;
}

.ig-like-btn.is-liked .ig-like-icon-active {
	display: block;
}

.ig-save-btn svg {
	width: 24px;
	height: 24px;
	display: block;
	transition: fill 160ms ease, stroke 160ms ease;
}

.ig-save-btn {
	color: #000;
}

.ig-save-btn svg polygon {
	fill: none;
	stroke: currentColor !important;
	stroke-width: 2px;
	stroke-linecap: round;
	stroke-linejoin: round;
}


.ig-save-btn.is-saved svg polygon {
	fill: currentColor !important;
	stroke: currentColor !important;
}

.ig-post-action-group {
	display: flex;
	align-items: center;
	gap: 3px;
	padding-right: 4px;
}

.ig-post-action-count {
	font-size: 13px;
	font-weight: 700;
	color: #0f0f0f;
	line-height: 1;
}

.ig-post-caption {
	margin: 0;
	padding: 0 14px 14px;
	font-size: 13px;
	line-height: 1.45;
	color: #0f0f0f;
	text-align: left;
}

.ig-post-caption-author {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	font-weight: 700;
	vertical-align: middle;
}

.ig-post-caption-check {
	display: block;
	flex-shrink: 0;
}

.section-no-frame {
	border: 0;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	padding-left: 0;
	padding-right: 0;
}

.section-no-frame::before,
.section-no-frame::after {
	display: none;
}

.section-no-frame:not(.about-box):hover {
	border: 0;
	background: transparent;
	box-shadow: none;
}

.case-client {
	margin-top: 0;
	padding: 18px;
	border-radius: 28px;
	border: 1.5px solid rgba(255, 136, 51, 0.35);
	background: 
		linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 248, 240, 0.4) 100%),
		radial-gradient(at 20% 50%, rgba(255, 200, 100, 0.08), transparent 50%);
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto auto;
	gap: 28px;
	align-items: start;
	justify-items: center;
	width: min(480px, 100%);
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	position: relative;
	backdrop-filter: blur(30px) saturate(220%) brightness(1.05);
	-webkit-backdrop-filter: blur(30px) saturate(220%) brightness(1.05);
	box-shadow: 
		inset 0 2px 0 rgba(255, 255, 255, 0.7),
		inset 0 -1px 0 rgba(255, 136, 51, 0.15),
		24px 14px 54px rgba(32, 19, 53, 0.08),
		24px 0 80px rgba(255, 136, 51, 0.1);
	transition: all 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.case-client::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -20%;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(255, 200, 100, 0.25), transparent 70%);
	pointer-events: none;
	filter: blur(40px);
	z-index: 1;
}

.case-client:hover {
	border-color: rgba(255, 136, 51, 0.55);
	background: 
		linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 248, 240, 0.55) 100%),
		radial-gradient(at 20% 50%, rgba(255, 200, 100, 0.12), transparent 50%);
	box-shadow: 
		inset 0 2px 0 rgba(255, 255, 255, 0.9),
		inset 0 -1px 0 rgba(255, 136, 51, 0.25),
		24px 18px 64px rgba(32, 19, 53, 0.14),
		24px 0 100px rgba(255, 136, 51, 0.16);
}

.case-stories {
	grid-column: 1 / -1;
	grid-row: 1;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 12px;
	width: 100%;
	overflow-x: auto;
	overflow-y: visible;
	padding: 14px 8px 12px;
	margin: 0;
	cursor: grab;
	user-select: none;
	touch-action: pan-x;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.case-stories.is-dragging {
	cursor: grabbing;
}

.case-stories.is-dragging .case-story-item {
	pointer-events: none;
}

.case-stories::-webkit-scrollbar {
	display: none;
}

.case-story-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 7px;
	border: none;
	background: none;
	padding: 2px 0;
	cursor: pointer;
	flex-shrink: 0;
	transition: transform 240ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 220ms ease;
}

.case-story-item:not(.is-active) {
	opacity: 1;
}

.case-story-item.is-active {
	opacity: 1;
}

.case-story-item.is-seen:not(.is-active) {
	opacity: 0.58;
}

.case-story-item.is-seen:not(.is-active) .case-story-ring {
	background: linear-gradient(145deg, rgba(172, 172, 186, 0.86), rgba(141, 141, 157, 0.84));
}

.case-story-item:hover {
	transform: scale(1.07);
	opacity: 1;
}

.case-story-ring {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	padding: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(45deg, #f9ce34, #ee2a7b 45%, #6228d7);
	transition: background 300ms ease;
}

.case-story-item.is-active .case-story-ring {
	background: linear-gradient(45deg, #f9ce34, #ee2a7b 45%, #6228d7);
}

.case-story-inner {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
	overflow: hidden;
}

.case-story-logo {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.case-story-name {
	font-size: 11px;
	font-weight: 400;
	color: #2e2050;
	text-align: center;
	line-height: 1.1;
	max-width: 72px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.case-nav {
	position: relative;
	padding: 10px 12px;
	border: 1.5px solid rgba(255, 136, 51, 0.45);
	background: rgba(255, 255, 255, 0.35);
	color: var(--accent-orange);
	font-size: 34px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 200ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 200ms ease, background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
	opacity: 0.75;
	align-self: center;
	border-radius: 14px;
	backdrop-filter: blur(14px) saturate(150%);
	-webkit-backdrop-filter: blur(14px) saturate(150%);
	box-shadow: 
		inset 0 1.5px 0 rgba(255, 255, 255, 0.5),
		0 10px 25px rgba(255, 136, 51, 0.15);
	overflow: hidden;
}

.case-nav::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5), transparent);
	opacity: 0;
	transition: opacity 300ms ease;
	pointer-events: none;
}

.case-nav:hover {
	transform: scale(1.12);
	opacity: 1;
	background: rgba(255, 255, 255, 0.5);
	border-color: rgba(255, 136, 51, 0.7);
	box-shadow: 
		inset 0 1.5px 0 rgba(255, 255, 255, 0.7),
		0 14px 32px rgba(255, 136, 51, 0.25);
}

.case-nav:hover::before {
	opacity: 0.8;
}

.case-media {
	grid-column: 1;
	grid-row: 2;
	justify-self: center;
	width: 100%;
	position: relative;
	padding: 0;
	overflow: visible;
}

.case-video {
	width: 100%;
	height: 100%;
	aspect-ratio: 9 / 16;
	position: relative;
	border-radius: 0;
	clip-path: none;
	border: 0;
	object-fit: cover;
	background: #111214;
	display: block;
	box-shadow: none;
	transition: opacity 300ms ease;
}

.case-carousel {
	position: relative;
	width: 100%;
	margin: 0 auto;
	aspect-ratio: 9 / 16;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 24px 32px 72px rgba(10, 13, 20, 0.44);
}

.case-video-main {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	box-shadow: none;
	transition: opacity 300ms ease;
}

.case-video-side {
	position: absolute;
	top: 10%;
	left: 0;
	z-index: 2;
	opacity: 0.4;
	pointer-events: auto;
	cursor: pointer;
	filter: saturate(0.9) contrast(0.95);
	height: 80%;
	border-radius: 16px;
	box-shadow: 0 10px 22px rgba(10, 13, 20, 0.18);
}

.case-video-left {
	transform: translateX(-24%);
}

.case-video-right {
	transform: translateX(24%);
}

.case-carousel.is-animating .case-video {
	pointer-events: none;
}

.case-carousel.promote-left .case-video-left {
	transform: translateX(0);
	opacity: 1;
	filter: none;
	z-index: 4;
}

.case-carousel.promote-left .case-video-main {
	transform: translateX(30%);
	opacity: 0.4;
	filter: saturate(0.9) contrast(0.95);
	z-index: 2;
}

.case-carousel.promote-left .case-video-right {
	transform: translateX(48%);
	opacity: 0.2;
}

.case-carousel.promote-right .case-video-right {
	transform: translateX(0);
	opacity: 1;
	filter: none;
	z-index: 4;
}

.case-carousel.promote-right .case-video-main {
	transform: translateX(-30%);
	opacity: 0.4;
	filter: saturate(0.9) contrast(0.95);
	z-index: 2;
}

.case-carousel.promote-right .case-video-left {
	transform: translateX(-48%);
	opacity: 0.2;
}

/* Story overlay UI */
.story-progress-bars {
	position: absolute;
	top: 10px;
	left: 8px;
	right: 8px;
	z-index: 10;
	display: flex;
	gap: 3px;
	align-items: center;
	pointer-events: none;
}

.story-progress-bar {
	flex: 1;
	height: 2px;
	background: rgba(255, 255, 255, 0.35);
	border-radius: 2px;
	overflow: hidden;
}

.story-progress-fill {
	height: 100%;
	background: #fff;
	width: 0%;
	border-radius: 2px;
}

.story-header {
	position: absolute;
	top: 22px;
	left: 8px;
	right: 8px;
	z-index: 10;
	display: flex;
	align-items: center;
	gap: 6px;
}

.story-header-logo {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: contain;
	background: #fff;
	padding: 3px;
	border: 1.5px solid rgba(255, 255, 255, 0.6);
	flex-shrink: 0;
}

.story-header-name {
	font-size: 15.6px;
	font-weight: 600;
	color: #fff;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.65);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.story-header-identity {
	display: flex;
	align-items: center;
	gap: 3px;
	flex: 1;
	min-width: 0;
	overflow: hidden;
}

.story-icon.story-header-coche {
	width: 15px;
	height: 15px;
	flex-shrink: 0;
}

.story-header-actions {
	display: flex;
	align-items: center;
	gap: 2px;
	flex-shrink: 0;
	margin-left: auto;
}

.story-icon {
	width: 22px;
	height: 22px;
	display: block;
	filter: brightness(0) invert(1) drop-shadow(0 1px 4px rgba(0, 0, 0, 0.5));
}

.story-header-btn {
	background: none;
	border: none;
	padding: 5px;
	cursor: pointer;
	flex-shrink: 0;
	line-height: 0;
	transition: opacity 200ms ease, transform 200ms ease;
	opacity: 0.9;
}

.story-header-btn:hover {
	opacity: 1;
	transform: scale(1.12);
}

/* Pause / Play toggle */
.story-pause-btn .story-play-icon {
	display: none;
}

.story-pause-btn.is-paused .story-pause-icon {
	display: none;
}

.story-pause-btn.is-paused .story-play-icon {
	display: block;
}

/* Sound toggle — starts muted (sound_off visible) */
.story-sound-btn .story-sound-on-icon {
	display: none;
}

.story-sound-btn.is-sound-on .story-sound-off-icon {
	display: none;
}

.story-sound-btn.is-sound-on .story-sound-on-icon {
	display: block;
}

.story-tap-zone {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 8;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	width: 38%;
}

.story-tap-left {
	left: 0;
}

.story-tap-right {
	right: 0;
}

/* Story footer — reply + actions */
.story-footer {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10;
	padding: 32px 10px 14px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
	display: flex;
	align-items: center;
	gap: 8px;
	pointer-events: none;
}

.story-reply {
	flex: 1;
	border: 1.5px solid rgba(255, 255, 255, 0.6);
	border-radius: 22px;
	padding: 8px 14px;
	min-width: 0;
	pointer-events: auto;
	cursor: text;
}

.story-reply-text {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.8);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.story-footer-actions {
	display: flex;
	align-items: center;
	gap: 4px;
	flex-shrink: 0;
}

.story-footer-btn {
	background: none;
	border: none;
	padding: 5px;
	cursor: pointer;
	line-height: 0;
	transition: opacity 200ms ease, transform 200ms ease;
	opacity: 0.9;
	pointer-events: auto;
}

.story-footer-btn:hover {
	opacity: 1;
	transform: scale(1.12);
}

/* Like toggle */
.story-like-btn .story-like-active {
	display: none;
}

.story-like-btn.is-liked .story-like-default {
	display: none;
}

.story-like-btn.is-liked .story-like-active {
	display: block;
	filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.5));
}

.case-content {
	grid-column: 1;
	grid-row: 3;
	width: 100%;
	text-align: center;
}

.case-label {
	display: none;
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent-orange);
}

.case-logo {
	display: none;
	height: 42px;
	width: auto;
	max-width: 280px;
	object-fit: contain;
	filter: none;
	margin: 0 auto;
}

.case-description {
	display: none;
	margin: 0;
	max-width: 700px;
	font-size: 16px;
	line-height: 1.65;
	color: #2e2050;
	margin-left: auto;
	margin-right: auto;
}

.case-stats {
	display: none !important;
	margin-top: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.case-stat {
	padding: 14px 12px;
	border-radius: 14px;
	border: 1px solid rgba(32, 19, 53, 0.14);
	background: rgba(255, 136, 51, 0.14);
	text-align: center;
	box-shadow: 0 8px 18px rgba(16, 20, 28, 0.08);
}

.case-stat-value {
	color: var(--accent-purple);
}

.case-stat-value {
	display: block;
	font-size: 26px;
	line-height: 1;
	font-weight: 700;
	color: #111214;
}

.case-stat-label {
	display: block;
	margin-top: 6px;
	font-size: 12px;
	font-weight: 600;
	color: #5a447f;
}

.center-light {
	position: absolute;
	inset: auto 18% -34% 18%;
	height: 68%;
	z-index: 1;
	pointer-events: none;
	background: radial-gradient(closest-side, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
}

.hero::before {
	content: "";
	position: absolute;
	top: -100px;
	left: -300px;
	width: 450px;
	height: 450px;
	background: radial-gradient(circle, rgba(107, 70, 193, 0.25), transparent 70%);
	border-radius: 50%;
	filter: blur(70px);
	pointer-events: none;
	z-index: 0;
	animation: float-halo-traverse-left 16s linear infinite;
}

.hero::after {
	content: "";
	position: absolute;
	top: -50px;
	right: -300px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255, 136, 51, 0.2), transparent 70%);
	border-radius: 50%;
	filter: blur(80px);
	pointer-events: none;
	z-index: 0;
	animation: float-halo-traverse-right 18s linear infinite;
}

.hero.animations-paused::before,
.hero.animations-paused::after {
	animation-play-state: paused;
}


.about-box {
	margin-top: 0;
	margin-bottom: 72px;
	padding: 0;
	border-radius: 32px;
	border: 1.5px solid rgba(255, 136, 51, 0.32);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 248, 240, 0.42) 100%),
		radial-gradient(at 18% 18%, rgba(255, 200, 100, 0.12), transparent 40%),
		radial-gradient(at 82% 82%, rgba(77, 63, 102, 0.14), transparent 44%);
	position: relative;
	overflow: hidden;
	z-index: 2;
	text-align: left;
	backdrop-filter: blur(30px) saturate(220%) brightness(1.04);
	-webkit-backdrop-filter: blur(30px) saturate(220%) brightness(1.04);
	box-shadow:
		inset 0 2px 0 rgba(255, 255, 255, 0.72),
		inset 0 -1px 0 rgba(255, 136, 51, 0.14),
		0 20px 60px rgba(32, 19, 53, 0.12),
		0 0 80px rgba(255, 136, 51, 0.1);
	transition: border-color 400ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 400ms cubic-bezier(0.34, 1.56, 0.64, 1), background 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-box:hover {
	border-color: rgba(255, 136, 51, 0.58);
	box-shadow:
		inset 0 2px 0 rgba(255, 255, 255, 0.9),
		inset 0 -1px 0 rgba(255, 136, 51, 0.24),
		0 28px 72px rgba(32, 19, 53, 0.18),
		0 0 100px rgba(255, 136, 51, 0.16);
}

.about-box::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 38%),
		radial-gradient(circle at 12% 14%, rgba(255, 179, 102, 0.22), transparent 24%),
		radial-gradient(circle at 88% 86%, rgba(77, 63, 102, 0.16), transparent 22%);
	pointer-events: none;
	z-index: 1;
}

.about-finder {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	min-height: 420px;
	background: linear-gradient(180deg, rgba(255, 252, 248, 0.64), rgba(255, 247, 238, 0.52));
}

.about-window-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	border-bottom: 1px solid rgba(255, 136, 51, 0.16);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 247, 238, 0.26));
}

.about-window-controls {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.about-window-control {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	display: block;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.about-window-control-close {
	background: #ff5f57;
}

.about-window-control-minimize {
	background: #febc2e;
}

.about-window-control-expand {
	background: #28c840;
}

.about-window-body {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	min-height: 0;
	flex: 1;
	background: transparent;
}

.about-sidebar {
	padding: 22px 18px;
	border-right: 1px solid rgba(255, 136, 51, 0.16);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 247, 236, 0.14));
}

.about-sidebar-label {
	margin: 0 0 10px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(77, 63, 102, 0.64);
}

.about-sidebar-item {
	display: flex;
	align-items: flex-start;
	width: 100%;
	gap: 10px;
	min-width: 0;
	padding: 12px;
	border-radius: 16px;
	border: 0;
	background: rgba(255, 255, 255, 0.18);
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	text-align: left;
	font-size: 14px;
	font-weight: 600;
	color: #2e2050;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
	transition: background-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.about-sidebar-item + .about-sidebar-item {
	margin-top: 6px;
}

.about-sidebar-item.is-active {
	background:
		linear-gradient(135deg, rgba(255, 136, 51, 0.28), rgba(255, 255, 255, 0.34)),
		radial-gradient(circle at top right, rgba(255, 196, 62, 0.22), transparent 42%);
	color: #201335;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.68),
		0 10px 22px rgba(255, 136, 51, 0.14);
}

.about-sidebar-item:focus-visible {
	outline: 2px solid rgba(255, 136, 51, 0.42);
	outline-offset: 2px;
}

.about-sidebar-dot {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	margin-top: 1px;
	display: block;
	filter: brightness(0) saturate(100%) invert(57%) sepia(96%) saturate(522%) hue-rotate(346deg) brightness(107%) contrast(102%);
}

.about-sidebar-name {
	flex: 1 1 auto;
	min-width: 0;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	line-height: 1.3;
	max-height: calc(1.3em * 2);
	word-break: normal;
	overflow-wrap: anywhere;
}

@media (min-width: 981px) {
	.about-sidebar-item {
		align-items: center;
	}

	.about-sidebar-name {
		display: block;
		white-space: nowrap;
		max-height: none;
		text-overflow: ellipsis;
	}
}

.about-main {
	padding: 28px;
	display: grid;
	align-items: center;
	min-width: 0;
	background: transparent;
}

.about-profile {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
}

.about-profile-card {
	display: grid;
	grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
	gap: 22px;
	align-items: stretch;
	padding: 18px;
	border-radius: 28px;
	border: 1.5px solid rgba(255, 136, 51, 0.22);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 248, 240, 0.26)),
		radial-gradient(at 78% 22%, rgba(255, 196, 62, 0.16), transparent 34%),
		radial-gradient(at 16% 88%, rgba(77, 63, 102, 0.14), transparent 34%);
	backdrop-filter: blur(18px) saturate(180%);
	-webkit-backdrop-filter: blur(18px) saturate(180%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.74),
		0 20px 44px rgba(32, 19, 53, 0.12);
}

.about-person-photo {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	border-radius: 22px;
	display: block;
	object-fit: cover;
	align-self: start;
	box-shadow: 0 18px 34px rgba(32, 19, 53, 0.16);
}

.about-profile-copy {
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.about-title {
	margin: 0;
	font-family: "Noto Serif", serif;
	font-weight: 700;
	font-size: clamp(28px, 2.7vw, 40px);
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #201335;
}

.about-person-role {
	margin: 10px 0 0;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent-orange);
}

.about-text {
	margin: 10px 0 0;
	max-width: 520px;
	font-size: clamp(15px, 1.05vw, 17px);
	line-height: 1.62;
	color: #4d3f66;
}

@media (max-width: 980px) {
	.about-box {
		margin-top: 56px;
		margin-bottom: 56px;
		border-radius: 26px;
	}

	.about-window-bar {
		padding: 16px 18px;
	}

	.about-window-body {
		grid-template-columns: 1fr;
	}

	.about-sidebar {
		display: flex;
		gap: 8px;
		overflow-x: auto;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 136, 51, 0.16);
	}

	.about-sidebar-label {
		min-width: max-content;
		margin: 10px 6px 0 0;
	}

	.about-sidebar-item {
		min-width: 160px;
		margin-top: 0;
	}

	.about-main {
		padding: 22px;
	}

	.about-profile-card {
		grid-template-columns: 220px minmax(0, 1fr);
	}
}

@media (max-width: 640px) {
	.about-box {
		margin: 36px 0;
		border-radius: 22px;
	}

	.about-window-bar {
		padding: 14px 14px 12px;
		gap: 12px;
	}

	.about-sidebar {
		padding: 14px 12px;
	}

	.about-main {
		padding: 16px;
	}

	.about-profile-card {
		grid-template-columns: 1fr;
		padding: 16px;
		border-radius: 18px;
	}

	.about-person-photo {
		border-radius: 14px;
	}

	.about-title {
		font-size: clamp(28px, 8vw, 34px);
	}
}

.cta-final {
	margin-bottom: 72px;
	padding: 34px;
	border-radius: 28px;
	border: 1.5px solid rgba(255, 136, 51, 0.34);
	background:
		linear-gradient(132deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 247, 236, 0.56) 100%),
		radial-gradient(120% 100% at 78% -8%, rgba(255, 136, 51, 0.2) 0%, rgba(255, 136, 51, 0) 56%),
		radial-gradient(110% 110% at -6% 118%, rgba(77, 45, 119, 0.2) 0%, rgba(77, 45, 119, 0) 62%);
	text-align: center;
	box-shadow:
		inset 0 2px 0 rgba(255, 255, 255, 0.78),
		inset 0 -1px 0 rgba(255, 136, 51, 0.18),
		0 18px 52px rgba(32, 19, 53, 0.11),
		0 0 82px rgba(255, 136, 51, 0.14);
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0;
	align-items: center;
	backdrop-filter: blur(30px) saturate(180%) brightness(1.03);
	-webkit-backdrop-filter: blur(30px) saturate(180%) brightness(1.03);
	transition: border-color 300ms ease, box-shadow 340ms ease, transform 340ms ease;
}

.cta-final:hover {
	border-color: rgba(255, 136, 51, 0.52);
	box-shadow:
		inset 0 2px 0 rgba(255, 255, 255, 0.92),
		inset 0 -1px 0 rgba(255, 136, 51, 0.26),
		0 24px 58px rgba(32, 19, 53, 0.15),
		0 0 96px rgba(255, 136, 51, 0.2);
	transform: translateY(-2px);
}

.cta-final-label {
	margin: 0;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent-orange);
}

.cta-final-title {
	margin: 10px 0 0;
	font-family: "Noto Serif", serif;
	font-size: clamp(28px, 3.2vw, 42px);
	line-height: 1.1;
	letter-spacing: -0.015em;
	color: #15161c;
}

.cta-final-text {
	margin: 12px 0 20px;
	max-width: 680px;
	font-size: 16px;
	line-height: 1.6;
	color: #3a2a58;
	margin-left: auto;
	margin-right: auto;
}

.cta-final::before {
	content: "";
	position: absolute;
	inset: -24% auto auto -14%;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 195, 140, 0.36), rgba(255, 195, 140, 0));
	filter: blur(18px);
	pointer-events: none;
}

.cta-final::after {
	content: "";
	position: absolute;
	inset: auto -10% -28% auto;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(106, 72, 160, 0.24), rgba(106, 72, 160, 0));
	filter: blur(18px);
	pointer-events: none;
}

.cta-final-content {
	position: relative;
	z-index: 2;
}

.cta-final-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

.cta-final-btn {
	min-width: 286px;
	height: 56px;
	padding-left: 38px;
	padding-right: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 16px;
	background: linear-gradient(180deg, #ffb56f 0%, #ff8833 78%);
	color: #1c1031;
	border-color: rgba(255, 136, 51, 0.86);
	font-weight: 700;
	letter-spacing: 0.01em;
	animation: cta-rdv-pulse 2.8s ease-in-out infinite;
	box-shadow:
		inset 0 2px 0 rgba(255, 255, 255, 0.7),
		inset 0 -2px 0 rgba(165, 76, 18, 0.26),
		0 16px 36px rgba(255, 136, 51, 0.34),
		0 0 0 3px rgba(255, 136, 51, 0.14);
}

.cta-final-btn:hover {
	background: linear-gradient(180deg, #ffc286 0%, #ff9449 78%);
	animation-play-state: paused;
	box-shadow:
		inset 0 2px 0 rgba(255, 255, 255, 0.85),
		inset 0 -2px 0 rgba(165, 76, 18, 0.32),
		0 18px 40px rgba(255, 136, 51, 0.44),
		0 0 0 4px rgba(255, 136, 51, 0.22);
	transform: translateY(-1px) scale(1.01);
}

@keyframes cta-rdv-pulse {
	0%,
	100% {
		transform: translateY(0) scale(1);
		box-shadow:
			inset 0 2px 0 rgba(255, 255, 255, 0.7),
			inset 0 -2px 0 rgba(165, 76, 18, 0.26),
			0 16px 36px rgba(255, 136, 51, 0.34),
			0 0 0 3px rgba(255, 136, 51, 0.14);
	}
	50% {
		transform: translateY(-1px) scale(1.025);
		box-shadow:
			inset 0 2px 0 rgba(255, 255, 255, 0.82),
			inset 0 -2px 0 rgba(165, 76, 18, 0.32),
			0 22px 44px rgba(255, 136, 51, 0.42),
			0 0 0 6px rgba(255, 136, 51, 0.22);
	}
}

.cta-final-btn-icon {
	width: 18px;
	height: 18px;
	object-fit: contain;
	flex-shrink: 0;
}

.cta-final-btn-icon-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.cta-final-btn-icon-wrap::after {
	content: "";
	position: absolute;
	top: -4px;
	right: -5px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ff2d2d;
	box-shadow: 0 0 0 1.5px rgba(255, 244, 232, 0.95);
}

.cta-final-note {
	margin: 0;
	font-size: 13px;
	font-weight: 500;
	color: rgba(42, 30, 66, 0.68);
}

.site-footer {
	width: 100%;
	padding: 26px 0;
	background: #201335;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	position: relative;
	z-index: 4;
}

.site-footer-inner {
	width: min(1040px, 100% - 60px);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	text-align: center;
}

.site-footer-brand,
.site-footer-copy {
	margin: 0;
	color: #ffffff;
	font-size: 13px;
	letter-spacing: 0.01em;
}

.site-footer-brand {
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-footer-nav {
	display: inline-flex;
	align-items: center;
	gap: 18px;
}

.site-footer-nav a {
	color: rgba(255, 255, 255, 0.86);
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	transition: color 220ms ease;
}

.site-footer-nav a:hover {
	color: #ffb474;
}

@keyframes panel-in {
	from {
		opacity: 0;
		transform: translateY(8px) scale(0.985);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes float-in {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@keyframes preloader-pulse {
	0% {
		opacity: 0.5;
		transform: scale(0.96);
	}
	50% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0.5;
		transform: scale(0.96);
	}
}

@keyframes brands-scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

@keyframes hero-side-up {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-50%);
	}

}

@keyframes hero-side-down {
	0% {
		transform: translateY(-50%);
	}
	100% {
		transform: translateY(0);
	}
}

@keyframes float-halo-traverse-left {
	0% {
		left: -300px;
		top: 20px;
		opacity: 0;
	}
	8% {
		opacity: 0.8;
	}
	15% {
		opacity: 1;
	}
	18% {
		left: 15%;
		top: -120px;
	}
	30% {
		left: 35%;
		top: 80px;
	}
	42% {
		left: 50%;
		top: -60px;
	}
	55% {
		left: 65%;
		top: 60px;
	}
	68% {
		left: 80%;
		top: -40px;
	}
	80% {
		opacity: 1;
	}
	90% {
		opacity: 0.5;
	}
	100% {
		left: calc(100% + 300px);
		top: 20px;
		opacity: 0;
	}
}

@keyframes float-halo-traverse-right {
	0% {
		right: -300px;
		top: -80px;
		opacity: 0;
	}
	8% {
		opacity: 0.7;
	}
	15% {
		opacity: 1;
	}
	20% {
		right: 70%;
		top: 40px;
	}
	33% {
		right: 50%;
		top: -100px;
	}
	45% {
		right: 38%;
		top: 70px;
	}
	58% {
		right: 22%;
		top: -30px;
	}
	72% {
		right: 8%;
		top: 50px;
	}
	82% {
		opacity: 1;
	}
	92% {
		opacity: 0.4;
	}
	100% {
		right: calc(100% + 300px);
		top: -80px;
		opacity: 0;
	}
}


@media (max-width: 980px) {
	.shell {
		min-height: auto;
	}

	.inner {
		width: calc(100% - 30px);
	}

	.center {
		display: none;
	}

	.hero {
		margin-top: 36px;
		margin-bottom: 68px;
	}

	.hero-side-videos-left {
		left: calc(-1 * ((100vw - 100%) / 2 + 18px));
		width: calc((100vw - 100%) / 2 + 18px);
	}

	.hero-side-videos-right {
		right: calc(-1 * ((100vw - 100%) / 2 + 18px));
		width: calc((100vw - 100%) / 2 + 18px);
	}

	.hero-side-videos {
		--hero-side-video-width-base: 156px;
	}

	.about-box {
		margin-top: 56px;
		margin-bottom: 56px;
		padding: 22px;
	}

	.section-no-frame {
		padding-left: 0;
		padding-right: 0;
	}

	.cta-final {
		margin-bottom: 56px;
		padding: 24px;
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.site-footer-inner {
		width: calc(100% - 30px);
	}

	.pain-point,
	.section-head {
		text-align: center;
		margin-bottom: 28px;
	}

	.method-yunee {
		padding: 22px;
	}

	.case-client {
		width: min(420px, 100%);
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 22px;
	}

	.case-media {
		padding: 0;
	}

	.case-carousel {
		width: 100%;
	}

	.case-stat-value {
		font-size: 22px;
	}

	.brands {
		width: min(700px, 100%);
	}

}

@media (max-width: 640px) {
	.status-bar-inner {
		width: calc(100% - 12px);
		height: 24px;
		padding-top: 5px;
	}

	.status-left-logo {
		width: 56px;
		top: 0;
	}

	.status-bar::before {
		height: 30px;
	}

	.status-center-logo {
		width: 104px;
		top: 0;
	}

	.notif-center-body {
		padding: 38px 10px 16px;
	}

	.notif-center-close {
		top: 36px;
		right: 10px;
		width: 30px;
		height: 30px;
		padding: 0;
		font-size: 20px;
	}

	.notif-center-big-time {
		font-size: clamp(58px, 17vw, 84px);
	}

	.notif-center-date {
		font-size: clamp(18px, 5vw, 28px);
	}

	.notif-center-card {
		margin-top: 18px;
		padding: 11px;
	}

	.notif-center-card-icon {
		width: 38px;
		height: 38px;
		padding: 0;
	}

	.notif-center-card-name {
		font-size: 14px;
	}

	.notif-center-card-time {
		font-size: 12px;
	}

	.notif-center-card-text {
		font-size: 18px;
		line-height: 1.28;
	}

	.status-time {
		font-size: 12px;
	}

	.status-icons {
		gap: 6px;
	}

	.status-icon {
		height: 13.2px;
		width: auto;
	}

	.status-icon-signal {
		height: 11px;
	}

	.trend-notif {
		width: calc(100% - 14px);
		top: 34px;
		padding: 10px;
		border-radius: 14px;
		gap: 10px;
	}

	.trend-notif-icon {
		width: 38px;
		height: 38px;
		padding: 0;
		border-radius: 10px;
	}

	.trend-notif-name {
		font-size: 13px;
	}

	.trend-notif-text {
		font-size: 12px;
		line-height: 1.3;
	}

	.topbar {
		height: auto;
		padding-top: 56px;
	}

	.left {
		gap: 8px;
	}

	.tab {
		padding: 6px 10px;
	}

	.signup {
		min-width: 104px;
		height: 40px;
		font-size: 13px;
		padding: 8px 18px;
	}

	.chip {
		font-size: 11px;
	}

	.hero-side-videos {
		display: none;
	}

	.lead {
		line-height: 1.5;
	}

	.cta-row {
		width: 100%;
		flex-direction: column;
	}

	.btn {
		width: 100%;
		min-width: 0;
		justify-content: center;
	}

	.about-box {
		margin: 36px 0;
		padding: 18px;
		border-radius: 20px;
	}

	.section-no-frame {
		padding-left: 0;
		padding-right: 0;
		border-radius: 0;
	}

	.cta-final {
		margin-bottom: 42px;
		padding: 18px;
		border-radius: 20px;
		gap: 14px;
	}

	.cta-final-title {
		font-size: clamp(24px, 7vw, 30px);
	}

	.cta-final-actions {
		align-items: stretch;
	}

	.cta-final-btn {
		min-width: 0;
		width: 100%;
	}

	.site-footer {
		padding: 20px 0;
	}

	.site-footer-inner {
		justify-content: center;
		text-align: center;
		gap: 12px;
	}

	.site-footer-nav {
		width: 100%;
		justify-content: center;
	}

	.pain-point,
	.method-yunee {
		margin-top: 24px;
		padding: 22px 16px;
		border-radius: 20px;
	}

	.method-yunee-intro {
		padding-bottom: 6px;
	}

	.method-yunee {
		--method-intro-offset: 34px; /* 12px de marge JS mobile + 22px de padding */
		--method-intro-height: 124px;
	}

	.hero-vision-jump {
		margin-top: 0;
		margin-bottom: 2px;
	}

	.pain-point-title,
	.method-yunee-title {
		font-size: clamp(24px, 6vw, 30px);
	}

	.pain-point-title {
		font-size: clamp(21px, 6.5vw, 28px);
		line-height: 0.98;
	}

	.pain-point-subtitle {
		margin-top: 14px;
		font-size: 13px;
		line-height: 1.42;
	}

	.pain-point-grid,
	.method-yunee-steps {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.method-step {
		top: calc(var(--method-intro-offset) + var(--method-intro-height)) !important;
	}

	.pain-point-card {
		padding: 18px 16px;
	}

	.method-step {
		padding: 0;
	}

	.pain-point-card {
		transform: none;
	}

	.pain-point-card.is-evicted {
		transform: translateX(-152%) scale(0.9);
	}

	.pain-point-search-site {
		font-size: 12px;
	}

	.pain-point-search-url {
		font-size: 10px;
	}

	.pain-point-search-title {
		font-size: clamp(17px, 5vw, 20px);
	}

	.pain-point-search-snippet {
		font-size: 14px;
		line-height: 1.45;
	}

	.pain-point-search-badge {
		font-size: 9px;
		padding: 4px 8px;
	}

	.pain-point-search-close {
		width: 20px;
		height: 20px;
		font-size: 13px;
	}

	.pain-point-card-ad.is-entering {
		transform: translateX(calc(120% + 48px)) scale(0.96);
	}

	.pain-point-next-era {
		font-size: 14px;
		min-width: 132px;
		height: 46px;
		padding: 10px 20px;
	}

	.pain-point-proof {
		margin-top: 18px;
		font-size: 11px;
	}

	.case-client {
		margin-top: 40px;
		width: min(380px, 100%);
		padding: 18px 14px;
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto;
		gap: 16px;
	}

	.case-story-ring {
		width: 60px;
		height: 60px;
	}

	.case-story-name {
		max-width: 66px;
	}

	.case-media {
		grid-column: 1;
		grid-row: 2;
	}

	.case-carousel {
		width: 100%;
	}

	.case-content {
		grid-column: 1 / -1;
		grid-row: 3;
	}

	.case-video-left {
		transform: translateX(-21%);
	}

	.case-video-right {
		transform: translateX(21%);
	}

	.case-content {
		text-align: center;
	}

	.case-logo {
		margin: 0 auto;
	}

	.case-description {
		font-size: 15px;
		line-height: 1.55;
	}

	.case-stats {
		grid-template-columns: 1fr;
	}

	.about-text {
		line-height: 1.55;
	}

	.brands-set {
		gap: 18px;
		padding-right: 18px;
	}

}

/* =========================================================================
   Responsive layer (merged from style_resp.css). Everything below is scoped
   inside max-width media queries (or is a harmless mobile-only reset), so
   the desktop experience above 980px is unchanged.
   ========================================================================= */

/* Disable Android/Chrome mobile's automatic font-boosting ("text autosizer"),
   which silently inflates font-size in narrow text blocks and can overflow
   layouts that look fine in desktop devtools emulation. Harmless on desktop. */
html {
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

/* Story loading spinner: shown while the current story video is still
   buffering instead of a black screen. */
.story-loading {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	opacity: 0;
	transition: opacity 200ms ease;
	z-index: 3;
}

.story-loading.is-visible {
	opacity: 1;
}

.story-loading-spinner {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 3px solid rgba(255, 255, 255, 0.28);
	border-top-color: #fff;
	animation: story-loading-spin 800ms linear infinite;
}

@keyframes story-loading-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 980px) {
	/* --- Fix: body used display:grid + place-items:center, which sizes
	   .shell to its intrinsic (desktop) content width instead of the
	   viewport, causing horizontal overflow on small screens. --- */
	html {
		overflow-x: hidden;
	}

	body {
		display: block;
		overflow-x: hidden;
		width: 100%;
	}

	.shell {
		width: 100%;
		min-height: auto;
		overflow: clip;
	}

	.inner {
		width: calc(100% - 32px);
		max-width: 100%;
	}

	.site-footer-inner {
		width: calc(100% - 32px);
	}

	/* --- Hero: hide the side video columns entirely (JS also skips
	   creating/loading them). Texts adapt to the full available width. --- */
	.hero-side-videos {
		display: none !important;
	}

	.hero {
		max-width: 100%;
		padding: 0 4px;
		margin-top: 34px;
	}

	.lead {
		max-width: 100%;
	}

	.cta-row {
		flex-wrap: wrap;
		justify-content: center;
	}

	/* --- Le constat: prend toute la largeur disponible --- */
	.pain-point {
		padding: 32px 18px 28px;
		margin-top: 40px;
	}

	.pain-point-title,
	.pain-point-subtitle,
	.pain-point-grid {
		max-width: 100%;
	}

	/* --- La methode YUNEE: conteneur pleine largeur. Le systeme sticky/pile
	   du desktop repose sur une hauteur d'en-tete fixe en pixels ; des le
	   moment ou le texte passe sur plusieurs lignes (largeur mobile), ce
	   calcul casse et le titre se retrouve masque sous la 1ere carte.
	   On desactive donc le sticky-stack sur mobile et on affiche les 3
	   cartes normalement, les unes sous les autres. L'animation desktop
	   n'est pas touchee (regle scopee <=980px). --- */
	.method-yunee {
		padding: 20px 10px;
	}

	.method-yunee-steps {
		display: flex;
		flex-direction: column;
		gap: 18px;
		max-width: 100%;
		width: 100%;
		padding-bottom: 0;
	}

	.method-stack-item {
		margin-top: 0 !important;
	}

	.method-stack-item::after {
		display: none;
	}

	.method-step {
		position: static !important;
		top: auto !important;
		animation: none !important;
		transition: none !important;
		transform: none !important;
		opacity: 1 !important;
		filter: none !important;
	}

	.method-yunee-intro {
		position: static;
		top: auto;
		background: transparent;
		animation: none !important;
		opacity: 1 !important;
		transform: none !important;
		padding-left: 4px;
		padding-right: 4px;
	}

	.method-yunee-title {
		max-width: 100%;
	}

	/* --- Cas clients: les stories prennent toute la largeur, le titre
	   "Decouvrez nos contenus" est reduit pour laisser la place. --- */
	.case-client {
		width: 100%;
	}

	.case-stories {
		padding-left: 2px;
		padding-right: 2px;
	}

	.section-head-cases .method-yunee-title {
		max-width: 260px;
		margin-left: auto;
		margin-right: auto;
	}

	/* --- Behind the scenes: la sidebar "Finder" 2 colonnes ne marche pas
	   en mobile ; un empilement vertical plein-largeur etait correct mais
	   beaucoup trop haut (5 lignes). On utilise plutot une bande de pills
	   compactes, defilable horizontalement (photo + prenom), pour garder
	   une hauteur reduite. --- */
	.about-finder {
		min-height: auto;
	}

	.about-window-body {
		grid-template-columns: 1fr;
	}

	.about-sidebar {
		display: flex;
		flex-direction: row;
		align-items: center;
		overflow-x: auto;
		overflow-y: visible;
		gap: 8px;
		padding: 14px 12px;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	.about-sidebar::-webkit-scrollbar {
		display: none;
	}

	.about-sidebar-label {
		flex: 0 0 auto;
		margin: 0 4px 0 0;
	}

	.about-sidebar-item {
		flex: 0 0 auto;
		width: auto;
		min-width: 64px;
		flex-direction: column;
		align-items: center;
		gap: 4px;
		padding: 8px 10px;
		text-align: center;
	}

	.about-sidebar-item + .about-sidebar-item {
		margin-top: 0;
	}

	.about-sidebar-dot {
		margin-top: 0;
	}

	.about-sidebar-name {
		display: block;
		max-height: none;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: 84px;
		font-size: 11px;
	}

	.about-profile-card {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.about-person-photo {
		max-width: 220px;
		margin: 0 auto;
	}

	.about-profile-copy {
		align-items: center;
		text-align: center;
	}

	.about-text {
		max-width: 100%;
	}
}

@media (max-width: 640px) {
	.pain-point {
		padding: 24px 14px 22px;
	}

	.method-yunee {
		padding: 16px 8px;
	}

	.case-client {
		padding: 16px 12px;
	}

	.section-head-cases .method-yunee-title {
		max-width: 220px;
	}

	.about-sidebar-name {
		font-size: 13px;
	}

	.about-person-photo {
		max-width: 180px;
	}
}
