/* ==========================================================================
   Caraïbes Water — Premium Apple-inspired light theme
   ========================================================================== */

:root {
	--color-bg: #ffffff;
	--color-bg-subtle: #f2fcfd;
	--color-bg-elevated: #e9f9fb;
	--color-bg-card: #ffffff;
	--color-surface: #e8e8ed;
	--color-text: #141c2e;
	--color-text-muted: #5c6578;
	--gradient-brand: linear-gradient(135deg, #01bace 0%, #38bdf8 34%, #3b82f6 68%, #2563eb 100%);
	--gradient-brand-hover: linear-gradient(135deg, #019fb3 0%, #0ea5e9 34%, #2563eb 68%, #1d4ed8 100%);
	--gradient-sky: linear-gradient(160deg, #e4f9fc 0%, #f0f7ff 50%, #ffffff 100%);
	--gradient-section: linear-gradient(180deg, #edf9fb 0%, #f5fbff 55%, #ffffff 100%);
	--color-pure-deep: #1e40af;
	--color-pure-light: #eff6ff;
	--color-accent: #2563eb;
	--color-accent-hover: #1d4ed8;
	--color-accent-soft: #60a5fa;
	--color-brand-teal: #01bace;
	--color-brand-teal-soft: #e6f9fc;
	--color-brand-teal-muted: rgba(1, 186, 206, 0.16);
	--color-brand-blue: #0176fe;
	--color-link: #1d4ed8;
	--font-sans: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--radius-sm: 8px;
	--radius-md: 16px;
	--radius-lg: 20px;
	--radius-full: 980px;
	--header-height: 90px;
	--header-height-compact: 64px;
	--layout-gutter: clamp(1.25rem, 2.5vw, 2rem);
	--layout-max-width: 1440px;
	--transition: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
	--shadow-product: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
	--shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
}

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

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: var(--font-sans);
	background: var(--color-bg);
	color: var(--color-text);
	line-height: 1.5;
	letter-spacing: -0.015em;
	overflow-x: hidden;
}

h1, h2, h3,
.video-hero__title,
.hero__title,
.hero__product-name,
.section-title,
.brand-logo__wordmark,
.stats__number {
	font-family: var(--font-sans);
	font-weight: 800;
	letter-spacing: -0.035em;
}

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

a {
	color: inherit;
	text-decoration: none;
}

/* Dégradé marque */
.brand-pure {
	background: var(--gradient-brand);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.brand-caribbean,
.brand-logo__name {
	color: var(--color-brand-teal);
}

/* Hero vidéo — section 1 */
.video-hero {
	position: relative;
	min-height: calc(100dvh - var(--header-height));
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
	background: var(--gradient-sky);
}

.video-hero__scene {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.video-hero__backdrop {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	background: linear-gradient(160deg, #bae6fd 0%, #e0f2fe 38%, #f0f9ff 72%, #ffffff 100%);
}

.video-hero__backdrop-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.08);
	transform-origin: center center;
	animation: video-hero-water-drift 28s ease-in-out infinite alternate;
	will-change: transform;
}

.video-hero__backdrop-shimmer {
	position: absolute;
	inset: -20%;
	background: linear-gradient(
		105deg,
		transparent 38%,
		rgba(255, 255, 255, 0.22) 48%,
		rgba(186, 230, 253, 0.35) 52%,
		rgba(1, 186, 206, 0.18) 54%,
		transparent 62%
	);
	animation: video-hero-shimmer 10s ease-in-out infinite;
	pointer-events: none;
}

@keyframes video-hero-water-drift {
	0% {
		transform: scale(1.08) translate(0, 0);
	}
	100% {
		transform: scale(1.12) translate(-1.2%, -0.6%);
	}
}

@keyframes video-hero-shimmer {
	0%,
	100% {
		opacity: 0.35;
		transform: translateX(-18%) rotate(0deg);
	}
	50% {
		opacity: 0.65;
		transform: translateX(18%) rotate(0deg);
	}
}

.video-hero__media {
	position: absolute;
	inset: 0;
	z-index: 1;
	-webkit-mask-image: linear-gradient(
		180deg,
		#000 0%,
		#000 58%,
		rgba(0, 0, 0, 0.75) 78%,
		rgba(0, 0, 0, 0.25) 92%,
		transparent 100%
	);
	mask-image: linear-gradient(
		180deg,
		#000 0%,
		#000 58%,
		rgba(0, 0, 0, 0.75) 78%,
		rgba(0, 0, 0, 0.25) 92%,
		transparent 100%
	);
}

.video-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.04);
	transform-origin: center center;
	opacity: 0;
	transition: opacity 0.85s ease-in-out;
	z-index: 1;
}

.video-hero__video.is-active {
	opacity: 1;
	z-index: 2;
}

.video-hero__video.is-active.is-leaving {
	opacity: 0;
	z-index: 1;
}

.video-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		radial-gradient(
			ellipse 72% 58% at 30% 48%,
			rgba(255, 255, 255, 0.96) 0%,
			rgba(255, 255, 255, 0.78) 52%,
			rgba(255, 255, 255, 0.2) 100%
		),
		radial-gradient(
			ellipse 58% 68% at 82% 42%,
			rgba(255, 255, 255, 0.92) 0%,
			rgba(255, 255, 255, 0.72) 55%,
			rgba(255, 255, 255, 0.15) 100%
		),
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.45) 0%,
			rgba(255, 255, 255, 0.2) 35%,
			rgba(255, 255, 255, 0.55) 100%
		);
	pointer-events: none;
}

.video-hero::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: min(42vh, 420px);
	z-index: 1;
	background: linear-gradient(
		180deg,
		transparent 0%,
		rgba(255, 255, 255, 0.55) 38%,
		rgba(255, 255, 255, 0.92) 72%,
		#ffffff 100%
	);
	pointer-events: none;
}

.video-hero__content {
	position: relative;
	z-index: 2;
	text-align: left;
	max-width: 100%;
	width: 100%;
	min-height: calc(100dvh - var(--header-height));
	padding: 1rem var(--layout-gutter) 0.75rem;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
}

.video-hero__main {
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	gap: clamp(0.5rem, 1.5vw, 1.25rem);
	width: 100%;
}

.video-hero__product {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	line-height: 0;
	min-height: 0;
	overflow: visible;
}

.video-hero__product-img {
	width: auto;
	max-width: min(100%, 720px);
	height: auto;
	max-height: calc(100dvh - var(--header-height) - 4rem);
	object-fit: contain;
	object-position: center center;
	filter: drop-shadow(0 22px 44px rgba(37, 99, 235, 0.16));
}

.video-hero__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	text-align: left;
	max-width: none;
	gap: 0;
}

.video-hero__brand {
	margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.brand-logo--hero .brand-logo__mark {
	height: clamp(3rem, 5.5vw, 4.5rem);
}

.brand-logo--hero .brand-logo__wordmark {
	font-size: clamp(1.875rem, 3.8vw, 2.875rem);
	font-weight: 700;
}

.brand-logo--showcase .brand-logo__mark {
	height: clamp(2.75rem, 5vw, 4rem);
}

.brand-logo--showcase .brand-logo__wordmark {
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	font-weight: 700;
}

.video-hero__subtitle {
	font-size: clamp(1.125rem, 2.6vw, 1.5rem);
	font-weight: 500;
	color: var(--color-text-muted);
	margin-bottom: 0.625rem;
	line-height: 1.3;
	letter-spacing: -0.02em;
	max-width: none;
}

.video-hero__subtitle::before {
	content: '';
	display: inline-block;
	width: 0.45rem;
	height: 0.45rem;
	margin-right: 0.55rem;
	border-radius: 50%;
	background: var(--color-brand-teal);
	box-shadow: 0 0 10px rgba(1, 186, 206, 0.45);
	vertical-align: 0.1em;
}

.video-hero__title {
	font-size: clamp(2.25rem, 9vw, 3.25rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1;
	color: var(--color-text);
	margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.video-hero__title-line {
	display: block;
}

.video-hero__title-line--keep {
	white-space: nowrap;
}

.video-hero__title-line--top {
	white-space: nowrap;
}

.video-hero__title-glow {
	display: inline;
	background: linear-gradient(105deg, #01bace 0%, #38bdf8 24%, #3b82f6 52%, #2563eb 76%, #01bace 100%);
	background-size: 220% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	animation: video-hero-title-luminous 7.5s ease-in-out infinite;
	will-change: filter, background-position;
}

@keyframes video-hero-title-luminous {
	0%,
	100% {
		background-position: 0% 50%;
		filter: drop-shadow(0 0 4px rgba(1, 186, 206, 0.24)) drop-shadow(0 0 10px rgba(37, 99, 235, 0.12));
	}

	50% {
		background-position: 100% 50%;
		filter: drop-shadow(0 0 8px rgba(1, 186, 206, 0.46)) drop-shadow(0 0 18px rgba(37, 99, 235, 0.24));
	}
}

.video-hero__actions {
	display: flex;
	gap: 1rem;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	margin-top: 0;
}

.video-hero__actions .btn--hero {
	min-width: 220px;
	padding: 1rem 2.25rem;
	font-size: 1.125rem;
}

@media (min-width: 769px) {
	.video-hero__content {
		max-width: var(--layout-max-width);
		margin: 0 auto;
		padding: 1.25rem var(--layout-gutter) 0.25rem;
		width: 100%;
	}

	.video-hero__main {
		grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
		gap: clamp(0.125rem, 0.5vw, 0.375rem);
		min-height: calc(100dvh - var(--header-height) - 3.5rem);
		align-items: stretch;
	}

	.video-hero__copy {
		justify-content: center;
		padding-right: 0;
	}

	.video-hero__product {
		justify-content: flex-end;
		align-items: center;
		align-self: stretch;
		height: 100%;
		min-height: 0;
		margin-right: 0;
	}

	.video-hero__product-img {
		display: block;
		width: auto;
		max-width: 100%;
		height: 100%;
		max-height: calc(100dvh - var(--header-height) - 1rem);
		min-height: calc(100dvh - var(--header-height) - 3.5rem);
		object-fit: contain;
		object-position: center bottom;
	}

	.video-hero__title {
		font-size: clamp(5.75rem, 7vw, 7.75rem);
		line-height: 0.94;
		letter-spacing: -0.045em;
		margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
	}

	.video-hero__subtitle {
		font-size: clamp(1.1875rem, 1.8vw, 1.625rem);
		margin-bottom: 0.75rem;
	}

	.video-hero__actions .btn--hero {
		min-width: 240px;
		padding: 1.0625rem 2.5rem;
		font-size: 1.1875rem;
	}
}

/* Product images — PNG transparent sur fond blanc */
.showcase__product-frame {
	position: relative;
	width: 100%;
	aspect-ratio: 883 / 974;
}

.showcase__product-frame img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.showcase__product-img--profile {
	opacity: 0;
}

/* Hero — Apple Mac Studio */
.hero {
	position: relative;
	z-index: 5;
	isolation: isolate;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 1.25rem 1rem 3rem;
	background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 55%, #ffffff 100%);
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 55%;
	background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.hero__content {
	position: relative;
	z-index: 3;
	max-width: 900px;
	margin-bottom: 2rem;
}

.hero__product-name {
	font-size: clamp(1.375rem, 3.5vw, 1.75rem);
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--color-text);
	margin-bottom: clamp(1rem, 2.5vw, 1.75rem);
}

.hero__title {
	font-size: clamp(2.25rem, 7vw, 4.25rem);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1.05;
	color: var(--color-text);
}

.hero__visual {
	position: relative;
	width: min(96vw, 960px);
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0.5rem 0 0;
	z-index: 1;
	min-height: 0;
	background: transparent;
}

.hero__product-preview {
	will-change: transform, opacity;
	width: 100%;
	-webkit-mask-image: linear-gradient(
		180deg,
		#000 0%,
		#000 58%,
		rgba(0, 0, 0, 0.75) 78%,
		rgba(0, 0, 0, 0.2) 94%,
		transparent 100%
	);
	mask-image: linear-gradient(
		180deg,
		#000 0%,
		#000 58%,
		rgba(0, 0, 0, 0.75) 78%,
		rgba(0, 0, 0, 0.2) 94%,
		transparent 100%
	);
}

.hero__visual::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 42%;
	background: linear-gradient(
		180deg,
		transparent 0%,
		rgba(255, 255, 255, 0.55) 42%,
		rgba(255, 255, 255, 0.92) 78%,
		#ffffff 100%
	);
	pointer-events: none;
	z-index: 2;
}

.hero__product-img {
	width: 100%;
	max-height: min(62vh, 780px);
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 32px 64px rgba(37, 99, 235, 0.14));
}

.hero__footer {
	position: relative;
	z-index: 5;
	width: 100%;
	max-width: none;
	margin-top: 0;
	padding: 2.5rem 1.5rem 0;
}

/* Fond blanc permanent — texte lisible dès le départ */
.hero__footer-bg {
	position: absolute;
	top: -180px;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	bottom: -3rem;
	z-index: 0;
	pointer-events: none;
	opacity: 1;
}

.hero__footer-bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 180px;
	background: linear-gradient(
		to bottom,
		transparent 0%,
		rgba(255, 255, 255, 0.45) 35%,
		rgba(255, 255, 255, 0.88) 72%,
		#ffffff 100%
	);
}

.hero__footer-bg::after {
	content: '';
	position: absolute;
	top: 180px;
	left: 0;
	right: 0;
	bottom: 0;
	background: #ffffff;
}

.hero__footer-inner {
	position: relative;
	z-index: 2;
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

.hero__subtitle {
	font-size: clamp(1.0625rem, 2.5vw, 1.3125rem);
	color: var(--color-text-muted);
	line-height: 1.5;
	margin-bottom: 1.75rem;
	font-weight: 400;
}

.hero__actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	padding: 0.6875rem 1.375rem;
	border-radius: var(--radius-full);
	font-size: 1.0625rem;
	font-weight: 400;
	letter-spacing: -0.01em;
	border: none;
	cursor: pointer;
	transition: all var(--transition);
	white-space: nowrap;
}

.btn--primary {
	background: var(--gradient-brand);
	color: #fff;
	box-shadow: 0 4px 14px rgba(1, 186, 206, 0.22), 0 4px 14px rgba(37, 99, 235, 0.28);
}

.btn--primary:hover {
	background: var(--gradient-brand-hover);
	transform: scale(1.03);
	box-shadow: 0 6px 20px rgba(1, 186, 206, 0.28), 0 6px 20px rgba(37, 99, 235, 0.34);
}

.btn--secondary {
	background: #fff;
	color: var(--color-brand-teal);
	border: 2px solid var(--color-brand-teal);
	padding: calc(0.6875rem - 2px) calc(1.375rem - 2px);
}

.btn--secondary:hover {
	background: var(--color-brand-teal-soft);
	color: #0192a8;
	border-color: #0192a8;
	transform: scale(1.03);
}

.btn--hero {
	min-width: 200px;
	padding: 0.875rem 2rem;
	font-size: 1.0625rem;
	font-weight: 500;
}

.btn--link {
	background: transparent;
	color: var(--color-link);
	font-size: 1.0625rem;
	padding: 0.6875rem 0.75rem;
}

.btn--link:hover {
	text-decoration: underline;
}

.btn--outline {
	background: transparent;
	color: var(--color-accent);
	border: 2px solid var(--color-accent);
}

.btn--outline:hover {
	background: var(--color-accent);
	color: #fff;
}

.btn--sm {
	padding: 1rem 1.125rem;
	font-size: 1rem;
	font-weight: 900;
}

.btn--lg {
	padding: 0.875rem 1.75rem;
	font-size: 1.0625rem;
}

/* Brand logo */
.brand-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	text-decoration: none;
	color: var(--color-text);
}

.brand-logo__mark {
	display: block;
	flex-shrink: 0;
	width: auto;
	height: 2.25rem;
	max-width: none;
}

.brand-logo__mark--svg {
	overflow: visible;
	color: var(--color-accent);
}

.brand-logo__mark--img {
	object-fit: contain;
}

.brand-logo__wordmark {
	display: inline-flex;
	align-items: baseline;
	gap: 0.3rem;
	font-weight: 600;
	letter-spacing: -0.025em;
	line-height: 1;
}

.brand-logo__accent {
	font-weight: 600;
}

.brand-logo--sm .brand-logo__mark {
	height: 2.625rem;
}

.brand-logo--sm .brand-logo__wordmark {
	font-size: 1.4375rem;
	font-weight: 700;
}

.brand-logo--md .brand-logo__mark {
	height: 2.25rem;
}

.brand-logo--md .brand-logo__wordmark {
	font-size: 1.375rem;
}

.brand-logo--lg .brand-logo__mark {
	height: 2.75rem;
}

.brand-logo--lg .brand-logo__wordmark {
	font-size: clamp(1.375rem, 3.5vw, 1.875rem);
}

.brand-logo--mark-only {
	gap: 0;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	width: 100%;
	height: var(--header-height);
	background: #ffffff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	transition:
		height 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
		box-shadow 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.site-header.is-scrolled {
	height: var(--header-height-compact);
	background: #ffffff;
	border-bottom-color: rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 24px rgba(1, 186, 206, 0.08);
}

.site-header.is-scrolled .brand-logo--sm .brand-logo__mark {
	height: 2rem;
}

.site-header.is-scrolled .brand-logo--sm .brand-logo__wordmark {
	font-size: 1.25rem;
}

.site-header.is-scrolled .btn--sm {
	padding: 0.75rem 1rem;
	font-size: 0.9375rem;
}

.site-header.is-scrolled .site-nav__list a {
	font-size: 0.875rem;
}

.site-header__inner {
	position: relative;
	max-width: var(--layout-max-width);
	margin: 0 auto;
	padding: 0 var(--layout-gutter);
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	gap: 1.5rem;
}

.site-header__brand {
	justify-self: start;
	flex-shrink: 0;
}

.site-header__end {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.site-nav {
	justify-self: center;
}

.site-logo__text {
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--color-text);
}

.site-header .brand-logo {
	flex-shrink: 0;
	gap: 0.75rem;
}

.site-header .brand-logo__mark {
	filter: drop-shadow(0 2px 8px rgba(1, 186, 206, 0.22));
}

.site-header .brand-logo__name,
.site-header .brand-logo__accent {
	font-weight: 700;
}

.site-logo__accent {
	background: var(--gradient-brand);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	font-weight: 600;
}

.site-nav__list {
	display: flex;
	list-style: none;
	gap: 1.75rem;
}

.site-nav__list a {
	font-size: 0.9375rem;
	font-weight: 800;
	color: rgb(16, 34, 144);
	transition: color var(--transition);
}

.site-nav__list a:hover {
	color: var(--color-brand-teal);
	opacity: 1;
}

.site-header__burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
	width: 44px;
	height: 44px;
}

.site-header__burger span {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--color-text);
	border-radius: 2px;
	transition: transform 0.35s ease, opacity 0.25s ease, background 0.35s ease;
	transform-origin: center;
}

.site-nav__water,
.site-nav__mobile-cta,
.site-nav__close {
	display: none;
}

.site-nav__panel {
	display: contents;
}

/* Showcase */
.showcase {
	position: relative;
	background: var(--gradient-section);
}

.showcase__pin {
	height: 100vh;
	height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.showcase__spacer {
	height: 1px;
}

.showcase__stage {
	position: relative;
	width: 100%;
	max-width: 1100px;
	height: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 1.5rem;
}

.showcase__brand {
	position: absolute;
	top: clamp(1.5rem, 7vh, 4.5rem);
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	pointer-events: none;
}

.showcase__brand-logo {
	opacity: 0.88;
	filter: drop-shadow(0 8px 24px rgba(1, 186, 206, 0.12));
}

.showcase__ambient {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.showcase__drop {
	display: none;
}

.showcase__ring {
	position: absolute;
	top: 50%;
	left: 50%;
	border: 1px solid var(--color-brand-teal-muted);
	border-radius: 50%;
	transform-origin: center center;
	will-change: transform;
}

.showcase__ring--1 {
	width: 65vmin;
	height: 65vmin;
	border-color: rgba(59, 130, 246, 0.14);
	background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 68%);
}

.showcase__ring--2 {
	width: 85vmin;
	height: 85vmin;
	border-color: rgba(37, 99, 235, 0.08);
	background: radial-gradient(circle at 50% 50%, rgba(96, 165, 250, 0.04) 0%, transparent 70%);
}

.showcase__leaders {
	position: absolute;
	inset: 0;
	z-index: 15;
	width: 100%;
	height: 100%;
	pointer-events: none;
	overflow: visible;
}

.showcase__leader-line {
	fill: none;
	stroke: url(#showcase-leader-gradient);
	stroke-width: 1.75;
	stroke-linecap: round;
	opacity: 0;
	transition: opacity 0.35s ease;
}

.showcase__leader-dot {
	fill: var(--color-accent);
	opacity: 0;
	transition: opacity 0.35s ease;
}

.showcase__leader-line.is-active,
.showcase__leader-dot.is-active {
	opacity: 1;
}

.showcase__floor {
	display: none;
}

.showcase__product-3d {
	position: relative;
	z-index: 10;
	perspective: 1400px;
	width: min(50vw, 420px);
}

.showcase__product-inner {
	position: relative;
	transform-style: preserve-3d;
	will-change: transform;
}

.showcase__product-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	backface-visibility: hidden;
	filter: drop-shadow(0 20px 40px rgba(0, 80, 120, 0.1));
}

/* Feature callouts */
.showcase__features {
	position: absolute;
	inset: 0;
	z-index: 20;
	pointer-events: none;
}

.showcase__feature {
	position: absolute;
	max-width: 260px;
	padding: 1.125rem 1.25rem;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--color-brand-teal-muted);
	border-left: 3px solid var(--color-brand-teal);
	border-radius: var(--radius-lg);
	box-shadow: 0 8px 32px rgba(1, 186, 206, 0.08);
	opacity: 0;
	will-change: opacity, transform;
}

.showcase__feature[data-feature-index="1"],
.showcase__feature[data-feature-index="3"] {
	border-left-color: var(--color-accent-soft);
}

.showcase__feature[data-feature-index="2"] {
	border-left-color: var(--color-brand-teal);
}

.showcase__feature[data-feature-index="4"] {
	border-left-color: var(--color-brand-blue);
}

.showcase__feature-icon {
	width: 32px;
	height: 32px;
	margin-bottom: 0.625rem;
	color: var(--color-brand-teal);
}

.showcase__feature-icon svg {
	width: 100%;
	height: 100%;
}

.showcase__feature-title {
	font-family: var(--font-sans);
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0.25rem;
	color: var(--color-text);
}

.showcase__feature-desc {
	font-size: 0.8125rem;
	color: var(--color-text-muted);
	line-height: 1.45;
}

.showcase__progress {
	position: absolute;
	bottom: 2.5rem;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 2px;
	background: rgba(0, 0, 0, 0.08);
	border-radius: 2px;
	overflow: hidden;
	z-index: 30;
}

.showcase__progress-bar {
	height: 100%;
	width: 0;
	background: var(--gradient-brand);
	border-radius: 2px;
	transition: width 0.1s linear;
}

/* Stats */
.stats {
	padding: 5rem 1.5rem;
	background: linear-gradient(180deg, #ffffff 0%, #f2fcfd 100%);
	border-top: 1px solid var(--color-brand-teal-muted);
}

.stats__inner {
	max-width: 980px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	text-align: center;
}

.stats__item {
	opacity: 0;
	transform: translateY(28px);
}

.stats__number {
	display: block;
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #01bace 0%, #38bdf8 45%, #2563eb 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	margin-bottom: 0.375rem;
	font-variant-numeric: tabular-nums;
}

.stats__number small {
	font-size: 0.45em;
	font-weight: 600;
	color: var(--color-text-muted);
}

.stats__label {
	font-size: 0.875rem;
	color: var(--color-text-muted);
	font-weight: 400;
}

/* Benefits */
.benefits {
	padding: 6rem 1.5rem 7rem;
	background: linear-gradient(180deg, #f5fdfe 0%, #eef8ff 55%, #ffffff 100%);
}

.benefits__inner {
	max-width: 1024px;
	margin: 0 auto;
	text-align: center;
}

.section-title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	letter-spacing: -0.035em;
	margin-bottom: 0.75rem;
	color: var(--color-text);
}

.section-subtitle {
	font-size: 1.1875rem;
	color: var(--color-text-muted);
	max-width: 580px;
	margin: 0 auto 3.5rem;
	line-height: 1.5;
	font-weight: 400;
}

.section-subtitle::before {
	content: '';
	display: block;
	width: 2.5rem;
	height: 3px;
	margin: 0 auto 1rem;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--color-brand-teal), var(--color-brand-blue));
}

.benefits__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	text-align: left;
}

.benefit-card {
	padding: 2rem 1.75rem;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid var(--color-brand-teal-muted);
	border-top: 3px solid var(--color-brand-teal);
	border-radius: var(--radius-lg);
	box-shadow: 0 4px 20px rgba(1, 186, 206, 0.08);
	transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:nth-child(2) {
	border-top-color: var(--color-accent-soft);
}

.benefit-card:nth-child(3) {
	border-top-color: var(--color-brand-blue);
}

.benefit-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.benefit-card__icon {
	width: 40px;
	height: 40px;
	color: var(--color-brand-teal);
	margin-bottom: 1rem;
}

.benefit-card__icon svg {
	width: 100%;
	height: 100%;
}

.benefit-card h3 {
	font-size: 1.1875rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	letter-spacing: -0.02em;
}

.benefit-card p {
	font-size: 0.9375rem;
	color: var(--color-text-muted);
	line-height: 1.5;
}

/* CTA Section */
.cta-section {
	position: relative;
	overflow: hidden;
	padding: 0;
	background: #ffffff;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.cta-section__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(22rem, 0.8fr);
	align-items: stretch;
	width: 100%;
	max-width: none;
	margin: 0;
	min-height: clamp(32rem, 64vh, 46rem);
}

.cta-section__visual {
	position: relative;
	overflow: hidden;
	min-height: 100%;
}

.cta-section__bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 20% 36%;
}

.cta-section__visual-fade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 10%, transparent 90%, rgba(255, 255, 255, 0.12) 100%),
		linear-gradient(90deg, transparent 0%, transparent 48%, rgba(255, 255, 255, 0.55) 66%, rgba(255, 255, 255, 0.94) 82%, #ffffff 100%);
	pointer-events: none;
}

.cta-section__inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	text-align: left;
	padding: clamp(3rem, 6vw, 5rem) var(--layout-gutter) clamp(3rem, 6vw, 5rem) clamp(1.5rem, 3vw, 2.5rem);
	background: #ffffff;
	max-width: 36rem;
}

.cta-section__title {
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 800;
	letter-spacing: -0.035em;
	margin-bottom: 1rem;
	color: var(--color-text);
}

.cta-section__text {
	font-size: 1.125rem;
	color: var(--color-text-muted);
	line-height: 1.55;
	margin-bottom: 2rem;
	max-width: 30rem;
}

.cta-section__actions {
	display: flex;
	gap: 1rem;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-bottom: 1.25rem;
}

.cta-section__note {
	font-size: 0.75rem;
	color: var(--color-text-muted);
}

.cta-section__booking {
	width: 100%;
	max-width: 30rem;
	margin: 0 auto 1.25rem;
}

.cta-section__phone {
	margin-bottom: 1.25rem;
}

/* Footer */
.site-footer {
	padding: 2.5rem 1.5rem;
	border-top: 1px solid var(--color-brand-teal-muted);
	background: linear-gradient(180deg, #eef9fb 0%, #f8fdfe 100%);
}

.site-footer__inner {
	max-width: 1024px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.site-footer__tagline {
	font-size: 0.75rem;
	color: var(--color-text-muted);
	margin-top: 0.25rem;
}

.site-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	text-align: right;
}

.site-footer__contact a {
	font-size: 0.8125rem;
	color: var(--color-text-muted);
	transition: color var(--transition);
}

.site-footer__contact a:hover {
	color: var(--color-brand-teal);
}

.site-footer__copy {
	width: 100%;
	text-align: center;
	font-size: 0.75rem;
	color: var(--color-text-muted);
	margin-top: 1rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(0, 0, 0, 0.04);
}

/* Bouton flottant RDV */
.floating-cta-wrap {
	position: fixed;
	bottom: 1.25rem;
	right: 1.25rem;
	z-index: 900;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.625rem;
	opacity: 0;
	visibility: hidden;
	transform: translate3d(0, 16px, 0);
	transition: opacity 0.55s ease, visibility 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.floating-cta-wrap.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
}

/* Masqué pendant la réservation (mobile) */
body.cwb-booking-active .floating-cta-wrap,
body.cwb-booking-in-view .floating-cta-wrap {
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
	transform: translate3d(0, 16px, 0) !important;
}

.floating-cta__hint {
	position: relative;
	margin: 0;
	padding: 0.5rem 0.875rem;
	border-radius: 12px;
	background: #ffffff;
	color: rgb(16, 34, 144);
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.01em;
	white-space: nowrap;
	box-shadow:
		0 10px 28px rgba(16, 34, 144, 0.14),
		0 0 0 1px rgba(59, 130, 246, 0.12);
	opacity: 0;
	transform: translate3d(0, 10px, 0) scale(0.96);
	pointer-events: none;
	animation: floating-cta-hint-cycle 14s ease-in-out infinite;
}

.floating-cta__hint::after {
	content: '';
	position: absolute;
	right: 1.5rem;
	bottom: -6px;
	width: 12px;
	height: 12px;
	background: #ffffff;
	border-right: 1px solid rgba(59, 130, 246, 0.12);
	border-bottom: 1px solid rgba(59, 130, 246, 0.12);
	transform: rotate(45deg);
}

.floating-cta-wrap.is-paused .floating-cta__hint {
	animation: none;
	opacity: 0;
	transform: translate3d(0, 8px, 0) scale(0.98);
}

@keyframes floating-cta-hint-cycle {
	0%,
	18%,
	72%,
	100% {
		opacity: 0;
		transform: translate3d(0, 10px, 0) scale(0.96);
	}
	28%,
	62% {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1);
	}
}

.floating-cta {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9375rem 1.5rem;
	border-radius: 999px;
	background: var(--gradient-brand);
	color: #fff;
	font-size: 0.9375rem;
	font-weight: 800;
	text-decoration: none;
	letter-spacing: -0.02em;
	box-shadow: 0 8px 28px rgba(37, 99, 235, 0.32);
	animation: floating-cta-zen 4.8s ease-in-out infinite;
}

.floating-cta::before {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: inherit;
	border: 2px solid rgba(59, 130, 246, 0.45);
	opacity: 0;
	animation: floating-cta-pulse 3.2s ease-out infinite;
	pointer-events: none;
}

.floating-cta:hover {
	color: #fff;
	filter: brightness(1.06);
	transform: translate3d(0, -2px, 0);
}

.floating-cta-wrap.is-paused .floating-cta {
	animation-play-state: paused;
}

.floating-cta-wrap.is-paused .floating-cta::before {
	animation-play-state: paused;
	opacity: 0;
}

@keyframes floating-cta-zen {
	0%,
	100% {
		transform: translate3d(0, 0, 0);
		box-shadow: 0 8px 28px rgba(37, 99, 235, 0.3);
	}
	50% {
		transform: translate3d(0, -5px, 0);
		box-shadow: 0 14px 36px rgba(37, 99, 235, 0.42);
	}
}

@keyframes floating-cta-pulse {
	0% {
		transform: scale(1);
		opacity: 0.55;
	}
	75%,
	100% {
		transform: scale(1.22);
		opacity: 0;
	}
}

/* Page content */
.page-content {
	padding: 3rem 1.5rem 4rem;
	max-width: 800px;
	margin: 0 auto;
}

.page-article__title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 2rem;
	letter-spacing: -0.03em;
}

.page-article__body {
	color: var(--color-text-muted);
	line-height: 1.8;
}

/* Responsive */
@media (max-width: 900px) {
	.site-nav {
		display: block;
		position: fixed;
		inset: 0;
		width: 100vw;
		height: 100dvh;
		max-width: none;
		margin: 0;
		z-index: 180;
		pointer-events: none;
		visibility: hidden;
		justify-self: auto;
	}

	.site-nav__water,
	.site-nav__panel,
	.site-nav__close {
		display: block;
	}

	.site-nav__close {
		position: absolute;
		top: max(1rem, env(safe-area-inset-top, 0px));
		right: max(1rem, env(safe-area-inset-right, 0px));
		z-index: 30;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 2.75rem;
		height: 2.75rem;
		padding: 0;
		border: 1px solid rgba(20, 28, 46, 0.12);
		border-radius: 50%;
		background: #ffffff;
		box-shadow: 0 4px 14px rgba(1, 186, 206, 0.12);
		cursor: pointer;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.3s ease 0.15s, transform 0.3s ease;
	}

	.site-nav__close span {
		position: absolute;
		display: block;
		width: 1.125rem;
		height: 2px;
		background: var(--color-text);
		border-radius: 2px;
	}

	.site-nav__close span:first-child {
		transform: rotate(45deg);
	}

	.site-nav__close span:last-child {
		transform: rotate(-45deg);
	}

	body.nav-open .site-nav__close {
		opacity: 1;
		pointer-events: auto;
	}

	.site-nav__water {
		position: absolute;
		inset: 0;
		background: #ffffff;
		transform: translateY(100%);
		border-radius: 0;
		will-change: transform;
	}

	.site-nav__water::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 4px;
		background: linear-gradient(90deg, var(--color-brand-teal), var(--color-brand-blue));
	}

	.site-nav__panel {
		position: relative;
		z-index: 2;
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: center;
		gap: 2rem;
		padding: calc(var(--header-height) + 1.5rem) 1.75rem calc(2rem + env(safe-area-inset-bottom, 0px));
		opacity: 0;
		transform: translateY(20px);
		transition: opacity 0.4s ease 0.2s, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
	}

	.site-nav__mobile-cta {
		display: inline-flex;
		width: 100%;
		justify-content: center;
		padding: 1rem 1.75rem;
		font-size: 1.0625rem;
		font-weight: 600;
		margin-top: 0.5rem;
	}

	body.nav-open {
		overflow: hidden;
	}

	body.nav-open .site-nav {
		pointer-events: auto;
		visibility: visible;
	}

	body.nav-open .site-nav__water {
		animation: mobile-nav-slide-up 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	}

	body.nav-open .site-nav__panel {
		opacity: 1;
		transform: translateY(0);
	}

	body.nav-open .site-header {
		z-index: 200;
		background: #ffffff;
		border-bottom-color: rgba(0, 0, 0, 0.08);
		box-shadow: none;
	}

	body.nav-open .site-header__burger {
		visibility: hidden;
		pointer-events: none;
	}

	.site-header__cta {
		display: none;
	}

	.site-header__burger {
		display: flex;
		margin-left: auto;
	}

	.site-header__inner {
		grid-template-columns: 1fr auto;
	}

	.site-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		list-style: none;
		width: 100%;
	}

	.site-nav__list li {
		border-bottom: 1px solid rgba(1, 186, 206, 0.12);
	}

	.site-nav__list li:first-child {
		border-top: 1px solid rgba(1, 186, 206, 0.12);
	}

	.site-nav__list a {
		display: block;
		padding: 1.125rem 0.25rem;
		font-size: clamp(1.375rem, 5.5vw, 1.75rem);
		font-weight: 800;
		color: var(--color-text);
		letter-spacing: -0.03em;
		text-shadow: none;
		transition: color var(--transition), padding-left var(--transition);
	}

	.site-nav__list a:hover,
	.site-nav__list a:focus-visible {
		color: var(--color-brand-teal);
		padding-left: 0.5rem;
		opacity: 1;
	}

	@keyframes mobile-nav-slide-up {
		0% {
			transform: translateY(100%);
		}

		100% {
			transform: translateY(0);
		}
	}

	.stats__inner {
		grid-template-columns: repeat(2, 1fr);
		gap: 2.5rem;
	}

	.benefits__grid {
		grid-template-columns: 1fr;
	}

	.showcase__feature {
		max-width: 200px;
		padding: 0.875rem 1rem;
	}

	.showcase__product-3d {
		width: min(70vw, 300px);
	}

	.showcase__brand {
		top: 1.25rem;
	}

	.brand-logo--showcase .brand-logo__mark {
		height: 2.5rem;
	}

	.brand-logo--showcase .brand-logo__wordmark {
		font-size: 1.5rem;
	}

	.site-footer__inner {
		flex-direction: column;
		text-align: center;
	}

	.site-footer__contact {
		text-align: center;
	}

	.cta-section__layout {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.cta-section__visual {
		min-height: clamp(16rem, 48vw, 22rem);
	}

	.cta-section__bg {
		object-position: 22% 32%;
	}

	.cta-section__visual-fade {
		background:
			linear-gradient(180deg, transparent 0%, transparent 55%, rgba(255, 255, 255, 0.88) 82%, #ffffff 100%),
			linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
	}

	.cta-section__inner {
		align-items: center;
		text-align: center;
		padding: 2rem 1.25rem 2.5rem;
	}

	.cta-section__booking {
		max-width: 100%;
		width: calc(100% + 0.5rem);
		margin-left: -0.25rem;
		margin-right: -0.25rem;
	}

	.cta-section__booking .cwb-booking {
		max-width: 100%;
	}

	.cta-section__booking .cwb-booking__shell {
		border-radius: 16px;
		box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
	}

	.cta-section__text {
		margin-bottom: 1.25rem;
	}

	.cta-section__actions {
		justify-content: center;
		width: 100%;
	}

	.cta-section__actions .btn {
		width: 100%;
		max-width: 320px;
	}
}

@media (max-width: 768px) {
	.video-hero {
		align-items: stretch;
		min-height: calc(100dvh - var(--header-height));
	}

	.video-hero__content {
		flex: 1;
		min-height: calc(100dvh - var(--header-height));
		padding: 0.75rem 1.25rem calc(1rem + env(safe-area-inset-bottom, 0px));
		justify-content: stretch;
	}

	.video-hero__main {
		flex: 1;
		display: flex;
		flex-direction: column;
		grid-template-columns: 1fr;
		gap: 0.5rem;
		min-height: 0;
	}

	.video-hero__product {
		order: -1;
		flex: 0 0 auto;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.video-hero__product-img {
		width: auto;
		max-width: min(96vw, 480px);
		max-height: min(54vh, 520px);
		height: auto;
		margin: 0 auto;
	}

	.video-hero__copy {
		flex: 1;
		display: flex;
		flex-direction: column;
		max-width: none;
		align-items: flex-start;
		text-align: left;
		min-height: 0;
	}

	.video-hero__title {
		font-size: clamp(2.625rem, 11.5vw, 3.5rem);
		line-height: 0.94;
		letter-spacing: -0.045em;
		margin-bottom: 0;
	}

	.video-hero__subtitle {
		margin-bottom: 0.375rem;
		font-size: 1.0625rem;
	}

	.video-hero__actions {
		flex-direction: column;
		gap: 0.75rem;
		align-items: stretch;
		width: 100%;
		margin-top: auto;
		padding-top: 1rem;
		padding-bottom: 0.25rem;
	}

	.video-hero__actions .btn {
		width: 100%;
		min-width: 0;
		justify-content: center;
		padding: 0.9375rem 1.25rem;
		font-size: 1rem;
	}

	.floating-cta-wrap {
		bottom: 1rem;
		right: 1rem;
	}

	.floating-cta__hint {
		font-size: 0.75rem;
		white-space: normal;
		max-width: 11rem;
		text-align: right;
	}

	.floating-cta {
		padding: 0.875rem 1.25rem;
		font-size: 0.875rem;
	}
}

@media (max-width: 600px) {
	.video-hero__title {
		font-size: clamp(2.5rem, 12vw, 3.25rem);
	}

	.video-hero__product-img {
		max-width: min(98vw, 460px);
		max-height: min(50vh, 480px);
	}

	.showcase__feature {
		max-width: 170px;
	}

	.showcase__feature-title {
		font-size: 0.8125rem;
	}

	.showcase__feature-desc {
		font-size: 0.6875rem;
	}

	.hero__visual {
		width: min(98vw, 560px);
	}

	.hero__product-img {
		max-height: min(50vh, 520px);
	}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}

	.video-hero__video {
		transition-duration: 0.85s !important;
	}

	.video-hero__backdrop-img,
	.video-hero__backdrop-shimmer {
		animation: none !important;
	}

	.floating-cta-wrap.is-visible,
	.floating-cta,
	.floating-cta__hint {
		animation: none !important;
	}

	.floating-cta-wrap {
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.showcase__feature {
		opacity: 1 !important;
		position: relative !important;
		top: auto !important;
		left: auto !important;
		right: auto !important;
		margin: 1rem auto;
		max-width: 400px;
	}

	.showcase__features {
		position: relative;
		display: flex;
		flex-direction: column;
		padding: 2rem;
	}

	.showcase__product-img--profile {
		opacity: 1 !important;
		position: relative !important;
	}

	.stats__item {
		opacity: 1 !important;
		transform: none !important;
	}

	body.nav-open .site-nav__water {
		animation: none !important;
		transform: translateY(0);
	}

	body.nav-open .site-nav__panel {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}
