/* =============================================================================
   FIVE.CLUB — Feuille de style principale
   Design : bento arrondi « disruptif mais noble », base claire + cartes sombres,
   violet #8752FA + lime #C6FF3E, display Archivo Expanded, texte Hanken Grotesk.
   ========================================================================== */

/* -----------------------------------------------------------------------------
   1. Polices variables (auto-hébergées)
   -------------------------------------------------------------------------- */

@font-face {
	font-family: 'Archivo';
	src: url('../fonts/Archivo-Variable.woff2') format('woff2-variations');
	font-weight: 100 900;
	font-stretch: 62% 125%;
	font-display: swap;
}

@font-face {
	font-family: 'Hanken Grotesk';
	src: url('../fonts/HankenGrotesk-Variable.woff2') format('woff2-variations');
	font-weight: 100 900;
	font-display: swap;
}

/* -----------------------------------------------------------------------------
   2. Design tokens
   -------------------------------------------------------------------------- */

:root {
	/* Couleurs de marque */
	--fc-violet: #8752FA;
	--fc-violet-deep: #4500F9;
	--fc-lilac: #CD83FF;
	--fc-lime: #C6FF3E;
	--fc-coral: #FE5442;
	--fc-dark: #09001B;
	--fc-dark-2: #12121B;
	--fc-bg: #F2F1ED;
	--fc-beige: #CFC9BB;
	--fc-taupe: #787765;

	/* Dérivés */
	--fc-ink: var(--fc-dark);
	--fc-ink-60: rgba(9, 0, 27, 0.6);
	--fc-ink-30: rgba(9, 0, 27, 0.3);
	--fc-paper-60: rgba(242, 241, 237, 0.6);
	--fc-white: #FFFFFF;
	--fc-gradient: linear-gradient(120deg, var(--fc-violet) 0%, var(--fc-violet-deep) 100%);
	--fc-gradient-soft: linear-gradient(120deg, var(--fc-violet) 0%, var(--fc-lilac) 100%);

	/* Typo */
	--font-display: 'Archivo', 'Arial Black', sans-serif;
	--font-body: 'Hanken Grotesk', 'Segoe UI', sans-serif;

	/* Rayons — l'arrondi est l'ADN du design */
	--r-xl: 44px;
	--r-lg: 32px;
	--r-md: 22px;
	--r-pill: 999px;

	/* Layout */
	--container: 1320px;
	--gutter: clamp(20px, 4vw, 48px);
	--header-h: 84px;

	/* Motion */
	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-luxe: cubic-bezier(0.65, 0, 0.35, 1);
	--dur: 0.65s;
}

/* -----------------------------------------------------------------------------
   3. Reset & base
   -------------------------------------------------------------------------- */

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

html { scroll-behavior: auto; }

body {
	margin: 0;
	background: var(--fc-bg);
	color: var(--fc-ink);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

body.menu-open { overflow: hidden; }

img, video { max-width: 100%; display: block; }

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

h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); line-height: 1.02; }

p { margin: 0; }

button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

::selection { background: var(--fc-violet); color: var(--fc-white); }

/* Curseur custom : on masque le natif seulement sur pointeur précis + JS actif */
@media (hover: hover) and (pointer: fine) {
	.fc-js body.fc-cursor-on,
	.fc-js body.fc-cursor-on a,
	.fc-js body.fc-cursor-on button { cursor: none; }
}

/* -----------------------------------------------------------------------------
   4. Utilitaires
   -------------------------------------------------------------------------- */

.fc-section__inner {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.fc-section__head { margin-bottom: clamp(36px, 6vw, 72px); }
.fc-section__head--center { text-align: center; }
.fc-section__head--center .fc-label { justify-content: center; }

/* Titres display */
.fc-h2 {
	font-size: clamp(2.6rem, 6vw, 5rem);
	font-weight: 800;
	font-stretch: 118%;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	margin-top: 18px;
}

.fc-h2 em {
	font-style: normal;
	color: transparent;
	background: var(--fc-gradient-soft);
	-webkit-background-clip: text;
	background-clip: text;
}

.fc-h2--light { color: var(--fc-bg); }
.fc-h2--light em {
	background: linear-gradient(120deg, var(--fc-lime) 0%, var(--fc-lilac) 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

/* Label de section (pill) */
.fc-label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 9px 18px;
	border: 1px solid var(--fc-ink-30);
	border-radius: var(--r-pill);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.fc-label__dot {
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--fc-violet);
	animation: fc-pulse 2.4s infinite var(--ease-luxe);
}

.fc-label--light { color: var(--fc-bg); border-color: rgba(242, 241, 237, 0.3); }
.fc-label--light .fc-label__dot { background: var(--fc-lime); }

@keyframes fc-pulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.55); opacity: 0.55; }
}

/* Grain photographique (noble) */
.fc-grain {
	position: absolute; inset: 0;
	pointer-events: none;
	opacity: 0.5;
	mix-blend-mode: overlay;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.32'/%3E%3C/svg%3E");
}

/* Verre (glass) */
.fc-glass {
	background: rgba(242, 241, 237, 0.12);
	border: 1px solid rgba(242, 241, 237, 0.22);
	backdrop-filter: blur(18px) saturate(1.4);
	-webkit-backdrop-filter: blur(18px) saturate(1.4);
	box-shadow: 0 18px 50px rgba(9, 0, 27, 0.35);
}

.fc-glass-dark {
	background: rgba(18, 18, 27, 0.55);
	border: 1px solid rgba(242, 241, 237, 0.12);
	backdrop-filter: blur(18px) saturate(1.2);
	-webkit-backdrop-filter: blur(18px) saturate(1.2);
}

/* -----------------------------------------------------------------------------
   5. Boutons
   -------------------------------------------------------------------------- */

.fc-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 15px 28px;
	border-radius: var(--r-pill);
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.01em;
	white-space: nowrap;
	overflow: hidden;
	transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), background-color 0.45s var(--ease-out), color 0.45s var(--ease-out);
	will-change: transform;
}

.fc-btn--big { padding: 19px 36px; font-size: 1.02rem; }

.fc-btn--lime { background: var(--fc-lime); color: var(--fc-dark); }
.fc-btn--lime:hover { box-shadow: 0 14px 38px rgba(198, 255, 62, 0.4); }

.fc-btn--dark { background: var(--fc-dark); color: var(--fc-bg); }
.fc-btn--dark:hover { box-shadow: 0 14px 38px rgba(9, 0, 27, 0.35); background: var(--fc-violet); }

.fc-btn--glass {
	background: rgba(242, 241, 237, 0.12);
	border: 1px solid rgba(242, 241, 237, 0.35);
	color: var(--fc-bg);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}
.fc-btn--glass:hover { background: rgba(242, 241, 237, 0.22); }

.fc-btn__arrow { transition: transform 0.45s var(--ease-out); }
.fc-btn:hover .fc-btn__arrow { transform: translateX(5px); }

/* -----------------------------------------------------------------------------
   6. Preloader (fade / glass)
   -------------------------------------------------------------------------- */

.fc-loader { display: none; }

.fc-js .fc-loader {
	display: grid;
	place-items: center;
	position: fixed; inset: 0;
	z-index: 1000;
	background: var(--fc-dark);
}

.fc-loader__inner {
	position: relative;
	z-index: 3;
	display: grid;
	justify-items: center;
	gap: 26px;
}

.fc-loader__mark { width: 74px; height: auto; }

.fc-loader__bar {
	width: 168px; height: 2px;
	border-radius: var(--r-pill);
	background: rgba(242, 241, 237, 0.14);
	overflow: hidden;
}

.fc-loader__bar-fill {
	display: block;
	width: 100%; height: 100%;
	background: var(--fc-lime);
	transform: scaleX(0);
	transform-origin: left;
}

/* Voiles « glass » qui balayent l'écran à la sortie du loader */
.fc-loader__veil {
	position: absolute; inset: 0;
	transform: translateY(101%);
}
.fc-loader__veil--1 { z-index: 1; background: var(--fc-violet); }
.fc-loader__veil--2 {
	z-index: 2;
	background: rgba(242, 241, 237, 0.16);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
}

/* -----------------------------------------------------------------------------
   7. Curseur custom
   -------------------------------------------------------------------------- */

.fc-cursor { display: none; }

@media (hover: hover) and (pointer: fine) {
	.fc-js .fc-cursor {
		display: block;
		position: fixed;
		top: 0; left: 0;
		z-index: 1100;
		pointer-events: none;
	}
}

.fc-cursor__dot {
	position: absolute;
	width: 8px; height: 8px;
	margin: -4px 0 0 -4px;
	border-radius: 50%;
	background: var(--fc-violet);
}

.fc-cursor__ring {
	position: absolute;
	display: grid;
	place-items: center;
	width: 42px; height: 42px;
	margin: -21px 0 0 -21px;
	border: 1.5px solid rgba(135, 82, 250, 0.55);
	border-radius: 50%;
	transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), margin 0.35s var(--ease-out), background-color 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.fc-cursor__label {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--fc-dark);
	opacity: 0;
	transition: opacity 0.25s;
}

/* état hover (liens) */
.fc-cursor.is-hover .fc-cursor__ring {
	width: 64px; height: 64px;
	margin: -32px 0 0 -32px;
	background: rgba(198, 255, 62, 0.16);
	border-color: var(--fc-lime);
}

/* état label (cartes) */
.fc-cursor.is-label .fc-cursor__ring {
	width: 88px; height: 88px;
	margin: -44px 0 0 -44px;
	background: var(--fc-lime);
	border-color: var(--fc-lime);
}
.fc-cursor.is-label .fc-cursor__label { opacity: 1; }
.fc-cursor.is-label .fc-cursor__dot { opacity: 0; }

/* -----------------------------------------------------------------------------
   8. Header & navigation pills
   -------------------------------------------------------------------------- */

.fc-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 900;
	transition: transform 0.6s var(--ease-luxe);
}

.fc-header.is-hidden { transform: translateY(-110%); }

.fc-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	max-width: 1560px;
	margin-inline: auto;
	padding: 18px var(--gutter);
	transition: padding 0.5s var(--ease-luxe);
}

.fc-header.is-scrolled .fc-header__inner { padding-block: 10px; }

.fc-header__logo { position: relative; display: block; flex: 0 0 auto; }
.fc-header__logo-img { height: 24px; width: auto; transition: opacity 0.4s; }
.fc-header__logo-img--light { position: absolute; inset: 0; opacity: 0; }

/* Sur le hero (fond sombre), on passe le logo en blanc */
body.fc-on-dark .fc-header__logo-img--dark { opacity: 0; }
body.fc-on-dark .fc-header__logo-img--light { opacity: 1; }

/* Piste de pills */
.fc-nav { flex: 0 1 auto; }

.fc-nav__pill-track {
	position: relative;
	display: flex;
	align-items: center;
	gap: 2px;
	padding: 6px;
	border-radius: var(--r-pill);
	background: rgba(242, 241, 237, 0.55);
	border: 1px solid rgba(9, 0, 27, 0.08);
	backdrop-filter: blur(20px) saturate(1.5);
	-webkit-backdrop-filter: blur(20px) saturate(1.5);
	box-shadow: 0 6px 30px rgba(9, 0, 27, 0.07);
	transition: background-color 0.4s, border-color 0.4s;
}

body.fc-on-dark .fc-nav__pill-track {
	background: rgba(9, 0, 27, 0.35);
	border-color: rgba(242, 241, 237, 0.14);
}

/* Le blob « lava » qui glisse sous le lien survolé */
.fc-nav__blob {
	position: absolute;
	top: 6px; left: 0;
	height: calc(100% - 12px);
	width: 60px;
	border-radius: var(--r-pill);
	background: var(--fc-dark);
	opacity: 0;
	pointer-events: none;
}

body.fc-on-dark .fc-nav__blob { background: var(--fc-lime); }

.fc-nav__link {
	position: relative;
	z-index: 1;
	padding: 10px 18px;
	border-radius: var(--r-pill);
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--fc-ink);
	transition: color 0.3s;
	overflow: hidden;
}

body.fc-on-dark .fc-nav__link { color: var(--fc-bg); }

.fc-nav__link.is-blob-on { color: var(--fc-bg); }
body.fc-on-dark .fc-nav__link.is-blob-on { color: var(--fc-dark); }

.fc-nav__link.is-active:not(.is-blob-on)::after {
	content: '';
	position: absolute;
	left: 50%; bottom: 5px;
	width: 4px; height: 4px;
	margin-left: -2px;
	border-radius: 50%;
	background: var(--fc-violet);
}

/* Texte qui roule au survol (deux copies empilées) */
.fc-nav__link-txt {
	position: relative;
	display: inline-block;
	transition: transform 0.4s var(--ease-out);
}
.fc-nav__link-txt::after {
	content: attr(data-text);
	position: absolute;
	left: 0; top: 100%;
}
.fc-nav__link:hover .fc-nav__link-txt { transform: translateY(-100%); }

.fc-header__actions { display: flex; align-items: center; gap: 12px; }

/* Burger (mobile) */
.fc-burger {
	display: none;
	position: relative;
	width: 48px; height: 48px;
	border-radius: 50%;
	background: var(--fc-dark);
}
.fc-burger span {
	position: absolute;
	left: 14px; right: 14px;
	height: 2px;
	background: var(--fc-bg);
	transition: transform 0.45s var(--ease-luxe), top 0.45s var(--ease-luxe);
}
.fc-burger span:nth-child(1) { top: 20px; }
.fc-burger span:nth-child(2) { top: 27px; }

body.menu-open .fc-burger span:nth-child(1) { top: 23px; transform: rotate(45deg); }
body.menu-open .fc-burger span:nth-child(2) { top: 23px; transform: rotate(-45deg); }

/* -----------------------------------------------------------------------------
   9. Menu overlay mobile
   -------------------------------------------------------------------------- */

.fc-menu-overlay {
	position: fixed; inset: 0;
	z-index: 850;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 100px var(--gutter) 40px;
	visibility: hidden;
	pointer-events: none;
}

body.menu-open .fc-menu-overlay { visibility: visible; pointer-events: auto; }

.fc-menu-overlay__bg {
	position: absolute; inset: 0;
	background: rgba(9, 0, 27, 0.92);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	opacity: 0;
	transition: opacity 0.5s var(--ease-luxe);
}
body.menu-open .fc-menu-overlay__bg { opacity: 1; }

.fc-menu-overlay__nav { position: relative; display: grid; gap: 6px; }

.fc-menu-overlay__link {
	display: flex;
	align-items: baseline;
	gap: 16px;
	font-family: var(--font-display);
	font-stretch: 115%;
	font-weight: 800;
	font-size: clamp(2rem, 8vw, 3.4rem);
	text-transform: uppercase;
	color: var(--fc-bg);
	opacity: 0;
	transform: translateY(36px);
	transition: opacity 0.5s var(--ease-out), transform 0.6s var(--ease-out);
	transition-delay: calc(var(--i) * 0.055s);
}

body.menu-open .fc-menu-overlay__link { opacity: 1; transform: none; }

.fc-menu-overlay__link.is-active { color: var(--fc-lime); }

.fc-menu-overlay__num {
	font-family: var(--font-body);
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--fc-lilac);
}

.fc-menu-overlay__foot {
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 48px;
	color: var(--fc-beige);
	font-size: 0.92rem;
	opacity: 0;
	transition: opacity 0.5s 0.3s;
}
body.menu-open .fc-menu-overlay__foot { opacity: 1; }

.fc-menu-overlay__socials { display: flex; gap: 18px; }

/* -----------------------------------------------------------------------------
   10. Rail fixe gauche
   -------------------------------------------------------------------------- */

.fc-rail {
	position: fixed;
	left: 26px; top: 0; bottom: 0;
	z-index: 800;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	padding: 110px 0 34px;
	width: 24px;
}

@media (min-width: 1200px) {
	.fc-js .fc-rail { display: flex; }
}

.fc-rail__top { display: flex; flex-direction: column; align-items: center; gap: 14px; }

.fc-rail__scroll-word {
	writing-mode: vertical-rl;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--fc-taupe);
}

.fc-rail__line {
	position: relative;
	width: 2px; height: 130px;
	background: rgba(9, 0, 27, 0.12);
	border-radius: var(--r-pill);
	overflow: hidden;
}
body.fc-on-dark .fc-rail__line { background: rgba(242, 241, 237, 0.18); }

.fc-rail__line-fill {
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 100%;
	background: var(--fc-violet);
	transform: scaleY(0);
	transform-origin: top;
}

.fc-rail__dots { display: grid; gap: 12px; }

.fc-rail__dot {
	position: relative;
	width: 8px; height: 8px;
	padding: 0;
	border-radius: 50%;
	background: rgba(9, 0, 27, 0.18);
	transition: background-color 0.3s, transform 0.3s var(--ease-out);
}
body.fc-on-dark .fc-rail__dot { background: rgba(242, 241, 237, 0.3); }

.fc-rail__dot.is-active { background: var(--fc-violet); transform: scale(1.5); }
body.fc-on-dark .fc-rail__dot.is-active { background: var(--fc-lime); }

/* Tooltip du dot */
.fc-rail__dot::after {
	content: attr(data-label);
	position: absolute;
	left: 18px; top: 50%;
	transform: translateY(-50%) translateX(-6px);
	padding: 4px 12px;
	border-radius: var(--r-pill);
	background: var(--fc-dark);
	color: var(--fc-bg);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s, transform 0.35s var(--ease-out);
}
.fc-rail__dot:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }

.fc-rail__socials { display: grid; gap: 14px; }
.fc-rail__socials a {
	color: var(--fc-taupe);
	transition: color 0.3s, transform 0.3s var(--ease-out);
}
body.fc-on-dark .fc-rail__socials a { color: var(--fc-beige); }
.fc-rail__socials a:hover { color: var(--fc-violet); transform: translateY(-2px); }

/* -----------------------------------------------------------------------------
   11. Hero
   -------------------------------------------------------------------------- */

.fc-hero {
	position: relative;
	min-height: 100svh;
	display: grid;
	align-items: center;
	overflow: clip;
	background: var(--fc-dark);
}

.fc-hero__media { position: absolute; inset: 0; }

.fc-hero__media-clip {
	position: absolute; inset: 0;
	overflow: hidden;
	border-radius: 0;
	/* le morph (inset + radius) est piloté en JS via ScrollTrigger */
}

.fc-hero__img {
	position: absolute;
	inset: -6%;
	width: 112%; height: 112%;
	object-fit: cover;
	transform-origin: center;
}

.fc-hero__overlay {
	position: absolute; inset: 0;
	background:
		linear-gradient(180deg, rgba(9, 0, 27, 0.55) 0%, rgba(9, 0, 27, 0.25) 45%, rgba(9, 0, 27, 0.78) 100%),
		radial-gradient(90% 70% at 25% 55%, rgba(9, 0, 27, 0.55) 0%, transparent 70%);
}

.fc-hero__content {
	position: relative;
	z-index: 2;
	max-width: var(--container);
	width: 100%;
	margin-inline: auto;
	padding: calc(var(--header-h) + 40px) var(--gutter) 120px;
	color: var(--fc-bg);
}

.fc-hero__kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 9px 18px;
	border-radius: var(--r-pill);
	border: 1px solid rgba(242, 241, 237, 0.28);
	background: rgba(242, 241, 237, 0.08);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.fc-hero__kicker-dot {
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--fc-lime);
	animation: fc-pulse 2.4s infinite var(--ease-luxe);
}

.fc-hero__title {
	margin: 26px 0 22px;
	font-size: clamp(3.4rem, 10.5vw, 9.2rem);
	font-weight: 850;
	font-stretch: 122%;
	line-height: 0.94;
	text-transform: uppercase;
	letter-spacing: -0.015em;
}

.fc-hero__line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.fc-hero__line-inner { display: inline-block; }

.fc-hero__line--accent .fc-hero__line-inner {
	color: transparent;
	background: linear-gradient(110deg, var(--fc-lilac) 0%, var(--fc-violet) 55%, var(--fc-violet-deep) 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

.fc-hero__dot { color: var(--fc-lime); }

/* Lettres (split) */
.fc-char { display: inline-block; will-change: transform; }

.fc-hero__sub {
	max-width: 480px;
	font-size: clamp(1rem, 1.4vw, 1.15rem);
	color: rgba(242, 241, 237, 0.82);
}

.fc-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 38px;
}

/* Cartes flottantes */
.fc-hero__float {
	position: absolute;
	z-index: 3;
	will-change: transform;
}

.fc-hero__float--video {
	right: clamp(20px, 7vw, 120px);
	top: 22%;
	width: clamp(150px, 15vw, 220px);
	aspect-ratio: 4 / 5;
	border-radius: var(--r-md);
	overflow: hidden;
	box-shadow: 0 30px 70px rgba(9, 0, 27, 0.5);
	transform: rotate(4deg);
	border: 1px solid rgba(242, 241, 237, 0.25);
}

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

.fc-hero__float-tag {
	position: absolute;
	left: 10px; bottom: 10px;
	padding: 6px 12px;
	border-radius: var(--r-pill);
	background: rgba(9, 0, 27, 0.55);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: var(--fc-bg);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.fc-hero__float--stat {
	right: clamp(60px, 14vw, 260px);
	bottom: 18%;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 22px 16px 16px;
	border-radius: var(--r-pill);
	color: var(--fc-bg);
}

.fc-hero__ring { width: 52px; height: 52px; transform: rotate(-90deg); }
.fc-hero__ring-bg, .fc-ring-bg { fill: none; stroke: rgba(242, 241, 237, 0.18); stroke-width: 5; }
.fc-hero__ring-fill, .fc-ring-fill {
	fill: none;
	stroke: var(--fc-lime);
	stroke-width: 5;
	stroke-linecap: round;
	stroke-dasharray: 170;
	stroke-dashoffset: 170;
}

.fc-hero__stat-txt { display: grid; line-height: 1.15; }
.fc-hero__stat-txt strong { font-family: var(--font-display); font-size: 1.5rem; font-stretch: 115%; }
.fc-hero__stat-txt span { font-size: 0.78rem; color: rgba(242, 241, 237, 0.7); }

.fc-hero__float--chip {
	left: clamp(20px, 6vw, 90px);
	bottom: 12%;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 13px 22px;
	border-radius: var(--r-pill);
	color: var(--fc-bg);
	font-size: 0.88rem;
	font-weight: 600;
}

.fc-hero__chip-flash { color: var(--fc-lime); }

/* Cue de scroll */
.fc-hero__scroll-cue {
	position: absolute;
	left: 50%;
	bottom: 26px;
	z-index: 3;
	transform: translateX(-50%);
	display: grid;
	justify-items: center;
	gap: 10px;
	color: rgba(242, 241, 237, 0.65);
}

.fc-hero__scroll-line {
	width: 1.5px; height: 44px;
	background: rgba(242, 241, 237, 0.35);
	position: relative;
	overflow: hidden;
}

.fc-hero__scroll-line::after {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--fc-lime);
	animation: fc-scroll-drip 1.9s infinite var(--ease-luxe);
}

@keyframes fc-scroll-drip {
	0% { transform: translateY(-100%); }
	55%, 100% { transform: translateY(100%); }
}

.fc-hero__scroll-txt {
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

/* -----------------------------------------------------------------------------
   12. Marquee
   -------------------------------------------------------------------------- */

.fc-marquee {
	position: relative;
	padding: 26px 0;
	background: var(--fc-bg);
	border-block: 1px solid rgba(9, 0, 27, 0.09);
	overflow: hidden;
}

.fc-marquee__track {
	display: flex;
	width: max-content;
	white-space: nowrap;
	will-change: transform;
}

.fc-marquee__item {
	font-family: var(--font-display);
	font-stretch: 118%;
	font-weight: 750;
	font-size: clamp(1.1rem, 2.4vw, 1.7rem);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	padding-right: 18px;
}

.fc-marquee__sep { color: var(--fc-violet); font-style: normal; padding-inline: 14px; }

/* -----------------------------------------------------------------------------
   13. Mission
   -------------------------------------------------------------------------- */

.fc-mission { padding: clamp(90px, 12vw, 170px) 0; }

.fc-mission__grid {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: clamp(24px, 5vw, 80px);
	align-items: start;
}

.fc-mission__side { position: sticky; top: 130px; }

.fc-mission__statement {
	font-family: var(--font-display);
	font-stretch: 112%;
	font-weight: 700;
	font-size: clamp(1.7rem, 3.6vw, 3.1rem);
	line-height: 1.18;
	letter-spacing: -0.01em;
}

.fc-mission__statement .fc-word { opacity: 0.14; display: inline-block; }

.fc-mission__cta { margin-top: 44px; }

/* -----------------------------------------------------------------------------
   14. Bento
   -------------------------------------------------------------------------- */

.fc-bento { padding-bottom: clamp(80px, 10vw, 150px); }

.fc-bento__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 235px;
	gap: 18px;
}

.fc-bento__cell--hero { grid-column: span 2; grid-row: span 2; }
.fc-bento__cell--tall { grid-row: span 2; }

/* Cartes */
.fc-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 28px;
	border-radius: var(--r-lg);
	overflow: hidden;
	transform-style: preserve-3d;
	transition: box-shadow 0.5s var(--ease-out);
}

.fc-card:hover { box-shadow: 0 26px 60px rgba(9, 0, 27, 0.16); }

.fc-card h3 {
	font-size: 1.25rem;
	font-weight: 800;
	font-stretch: 112%;
	text-transform: uppercase;
	letter-spacing: 0.005em;
	margin-bottom: 8px;
}

.fc-card p { font-size: 0.92rem; opacity: 0.82; }

.fc-card--photo { color: var(--fc-bg); }
.fc-card--photo img,
.fc-card--video video {
	position: absolute;
	inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 1s var(--ease-out);
}
.fc-card--photo:hover img, .fc-card--video:hover video { transform: scale(1.06); }

.fc-card__scrim {
	position: absolute; inset: 0;
	background: linear-gradient(185deg, transparent 40%, rgba(9, 0, 27, 0.82) 100%);
}

.fc-card__body { position: relative; }

.fc-card--video { color: var(--fc-bg); }

.fc-card--dark { background: var(--fc-dark); color: var(--fc-bg); }
.fc-card--lime { background: var(--fc-lime); color: var(--fc-dark); }
.fc-card--violet { background: var(--fc-gradient); color: var(--fc-white); }
.fc-card--light { background: var(--fc-white); border: 1px solid rgba(9, 0, 27, 0.08); }

.fc-card__pill {
	position: absolute;
	top: 20px; right: 20px;
	padding: 7px 15px;
	border-radius: var(--r-pill);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.fc-card__pill--lime { background: var(--fc-lime); color: var(--fc-dark); }
.fc-card__pill--dark { background: var(--fc-dark); color: var(--fc-bg); }
.fc-card__pill--light { background: rgba(255, 255, 255, 0.22); color: var(--fc-white); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }

.fc-card__ring-wrap {
	position: relative;
	width: 96px; height: 96px;
	margin-bottom: auto;
}
.fc-card__ring-wrap svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.fc-card__ring-wrap .fc-ring-fill { stroke-dasharray: 327; stroke-dashoffset: 327; }
.fc-card__ring-txt {
	position: absolute; inset: 0;
	display: grid;
	place-items: center;
	font-family: var(--font-display);
	font-weight: 800;
	font-stretch: 115%;
	font-size: 1.35rem;
}

.fc-card__big-emoji { font-size: 2.4rem; margin-bottom: auto; }

.fc-card__big-txt {
	font-family: var(--font-display);
	font-weight: 850;
	font-stretch: 125%;
	font-size: 2.6rem;
	line-height: 1;
	margin-bottom: auto;
	color: transparent;
	-webkit-text-stroke: 1.5px rgba(242, 241, 237, 0.4);
}

/* -----------------------------------------------------------------------------
   15. Stats
   -------------------------------------------------------------------------- */

.fc-stats {
	padding: clamp(70px, 9vw, 130px) 0;
	background: var(--fc-bg);
}

.fc-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	border-top: 1px solid rgba(9, 0, 27, 0.14);
	padding-top: clamp(40px, 6vw, 70px);
}

.fc-stats__item { display: grid; gap: 8px; }

.fc-stats__value {
	font-family: var(--font-display);
	font-weight: 850;
	font-stretch: 122%;
	font-size: clamp(3rem, 6.5vw, 5.6rem);
	line-height: 1;
	color: transparent;
	background: var(--fc-gradient-soft);
	-webkit-background-clip: text;
	background-clip: text;
}

.fc-stats__label {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--fc-taupe);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

/* -----------------------------------------------------------------------------
   16. Cours (section épinglée, scroll horizontal)
   -------------------------------------------------------------------------- */

.fc-cours {
	background: var(--fc-dark);
	border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.fc-cours__pin {
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(70px, 8vw, 110px) 0 60px;
	overflow: hidden;
}

.fc-cours__head {
	max-width: var(--container);
	width: 100%;
	margin-inline: auto;
	padding-inline: var(--gutter);
	margin-bottom: clamp(30px, 4vw, 56px);
}

.fc-cours__intro {
	max-width: 420px;
	margin-top: 18px;
	color: rgba(242, 241, 237, 0.66);
}

.fc-cours__track-wrap { width: 100%; }

.fc-cours__track {
	display: flex;
	gap: 20px;
	padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
	width: max-content;
	will-change: transform;
}

.fc-cours__card {
	position: relative;
	display: flex;
	flex-direction: column;
	width: clamp(280px, 26vw, 360px);
	min-height: 400px;
	padding: 30px;
	border-radius: var(--r-lg);
	background: var(--fc-dark-2);
	border: 1px solid rgba(242, 241, 237, 0.09);
	color: var(--fc-bg);
	transition: transform 0.6s var(--ease-out), border-color 0.4s, background-color 0.4s;
}

.fc-cours__card:hover {
	transform: translateY(-10px);
	border-color: rgba(198, 255, 62, 0.45);
}

.fc-cours__num {
	font-family: var(--font-display);
	font-weight: 800;
	font-stretch: 120%;
	font-size: 0.95rem;
	color: rgba(242, 241, 237, 0.35);
}

.fc-cours__picto {
	width: 84px; height: 84px;
	margin: 26px 0 auto;
	display: grid;
	place-items: center;
	border-radius: var(--r-md);
	background: rgba(198, 255, 62, 0.08);
	border: 1px solid rgba(198, 255, 62, 0.2);
	transition: transform 0.5s var(--ease-out), background-color 0.4s;
}

.fc-cours__card:hover .fc-cours__picto {
	transform: rotate(-6deg) scale(1.08);
	background: rgba(198, 255, 62, 0.16);
}

.fc-cours__picto img { width: 46px; height: 46px; object-fit: contain; }

.fc-cours__tag {
	align-self: flex-start;
	margin-top: 26px;
	padding: 6px 14px;
	border-radius: var(--r-pill);
	background: rgba(135, 82, 250, 0.22);
	color: var(--fc-lilac);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.fc-cours__card h3 {
	margin-top: 12px;
	font-size: 1.6rem;
	font-weight: 800;
	font-stretch: 116%;
	text-transform: uppercase;
}

.fc-cours__card p {
	margin-top: 10px;
	font-size: 0.92rem;
	color: rgba(242, 241, 237, 0.66);
}

.fc-cours__card--cta {
	justify-content: center;
	gap: 18px;
	background: var(--fc-gradient);
	border: 0;
}
.fc-cours__card--cta p { color: rgba(255, 255, 255, 0.8); }
.fc-cours__card--cta .fc-btn { align-self: flex-start; }

.fc-cours__progress {
	max-width: var(--container);
	width: calc(100% - var(--gutter) * 2);
	margin: 46px auto 0;
	height: 2px;
	background: rgba(242, 241, 237, 0.14);
	border-radius: var(--r-pill);
	overflow: hidden;
}

.fc-cours__progress-fill {
	display: block;
	height: 100%;
	width: 100%;
	background: var(--fc-lime);
	transform: scaleX(0);
	transform-origin: left;
}

/* -----------------------------------------------------------------------------
   17. Abonnements
   -------------------------------------------------------------------------- */

.fc-abos {
	padding: clamp(90px, 12vw, 170px) 0;
	background: var(--fc-bg);
	border-radius: 0 0 var(--r-xl) var(--r-xl);
}

.fc-abos__note { margin-top: 16px; color: var(--fc-taupe); }

.fc-abos__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	align-items: stretch;
}

.fc-abos__card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 36px 32px;
	border-radius: var(--r-lg);
	background: var(--fc-white);
	border: 1px solid rgba(9, 0, 27, 0.09);
	transition: box-shadow 0.5s var(--ease-out), border-color 0.4s;
}

.fc-abos__card:hover { box-shadow: 0 30px 70px rgba(9, 0, 27, 0.12); }

.fc-abos__card.is-featured {
	background: var(--fc-dark);
	color: var(--fc-bg);
	border: 0;
	transform: scale(1.03);
}

.fc-abos__badge {
	position: absolute;
	top: -14px; left: 50%;
	transform: translateX(-50%);
	padding: 8px 18px;
	border-radius: var(--r-pill);
	background: var(--fc-lime);
	color: var(--fc-dark);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	white-space: nowrap;
}

.fc-abos__card h3 {
	font-size: 1.1rem;
	font-weight: 800;
	font-stretch: 114%;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.fc-abos__price {
	display: flex;
	align-items: baseline;
	gap: 7px;
	margin: 18px 0 10px;
}

.fc-abos__chf { font-weight: 700; font-size: 0.95rem; opacity: 0.6; }

.fc-abos__amount {
	font-family: var(--font-display);
	font-weight: 850;
	font-stretch: 120%;
	font-size: clamp(2.8rem, 4.5vw, 3.8rem);
	line-height: 1;
}

.fc-abos__card.is-featured .fc-abos__amount { color: var(--fc-lime); }

.fc-abos__period { font-size: 0.95rem; opacity: 0.6; }

.fc-abos__desc { font-size: 0.94rem; opacity: 0.75; }

.fc-abos__features {
	list-style: none;
	margin: 24px 0 30px;
	padding: 0;
	display: grid;
	gap: 11px;
	font-size: 0.92rem;
}

.fc-abos__features li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.fc-abos__features li::before {
	content: '✓';
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 20px; height: 20px;
	border-radius: 50%;
	background: rgba(135, 82, 250, 0.14);
	color: var(--fc-violet);
	font-size: 0.7rem;
	font-weight: 800;
}

.fc-abos__card.is-featured .fc-abos__features li::before {
	background: rgba(198, 255, 62, 0.16);
	color: var(--fc-lime);
}

.fc-abos__card .fc-btn { margin-top: auto; justify-content: center; }

.fc-abos__more { text-align: center; margin-top: 42px; font-weight: 600; }
.fc-abos__more a { border-bottom: 1.5px solid var(--fc-violet); padding-bottom: 3px; transition: color 0.3s; }
.fc-abos__more a:hover { color: var(--fc-violet); }

/* -----------------------------------------------------------------------------
   18. Équipe
   -------------------------------------------------------------------------- */

.fc-equipe { padding: clamp(90px, 12vw, 160px) 0 clamp(70px, 9vw, 120px); }

.fc-equipe__scroller {
	overflow-x: auto;
	scrollbar-width: none;
	cursor: grab;
	-webkit-overflow-scrolling: touch;
}
.fc-equipe__scroller::-webkit-scrollbar { display: none; }
.fc-equipe__scroller.is-dragging { cursor: grabbing; }

.fc-equipe__row {
	display: flex;
	gap: 20px;
	padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
	width: max-content;
}

.fc-equipe__card {
	width: clamp(240px, 22vw, 300px);
	flex: 0 0 auto;
}

.fc-equipe__photo {
	position: relative;
	aspect-ratio: 4 / 5;
	border-radius: var(--r-lg);
	overflow: hidden;
	background: var(--fc-dark-2);
}

.fc-equipe__photo img {
	width: 100%; height: 100%;
	object-fit: cover;
	filter: grayscale(0.9);
	transition: filter 0.7s var(--ease-out), transform 0.9s var(--ease-out);
}

.fc-equipe__card:hover .fc-equipe__photo img {
	filter: grayscale(0);
	transform: scale(1.05);
}

.fc-equipe__meta { padding: 18px 6px 0; }

.fc-equipe__meta h3 {
	font-size: 1.25rem;
	font-weight: 800;
	font-stretch: 114%;
	text-transform: uppercase;
	display: inline;
}

.fc-equipe__role {
	display: inline-block;
	margin-left: 10px;
	padding: 5px 13px;
	border-radius: var(--r-pill);
	background: rgba(135, 82, 250, 0.12);
	color: var(--fc-violet);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	vertical-align: middle;
}

.fc-equipe__meta p {
	margin-top: 10px;
	font-size: 0.9rem;
	color: var(--fc-taupe);
}

/* -----------------------------------------------------------------------------
   19. Avis
   -------------------------------------------------------------------------- */

.fc-avis {
	padding: clamp(90px, 12vw, 160px) 0;
	background: var(--fc-dark);
	border-radius: var(--r-xl);
	margin-inline: clamp(8px, 1.2vw, 20px);
}

.fc-avis__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.fc-avis__card {
	position: relative;
	margin: 0;
	padding: 42px 36px 34px;
	border-radius: var(--r-lg);
	color: var(--fc-bg);
}

.fc-avis__quote {
	position: absolute;
	top: 6px; right: 26px;
	font-family: var(--font-display);
	font-size: 7rem;
	font-weight: 850;
	line-height: 1;
	color: rgba(135, 82, 250, 0.35);
	pointer-events: none;
}

.fc-avis__stars { color: var(--fc-lime); letter-spacing: 4px; margin-bottom: 18px; }

.fc-avis__card blockquote {
	margin: 0;
	font-size: 1.02rem;
	line-height: 1.7;
	color: rgba(242, 241, 237, 0.86);
}

.fc-avis__card figcaption {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 24px;
	font-weight: 700;
	font-size: 0.92rem;
}

.fc-avis__avatar {
	display: grid;
	place-items: center;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: var(--fc-gradient);
	font-family: var(--font-display);
	font-weight: 800;
}

/* -----------------------------------------------------------------------------
   20. CTA final
   -------------------------------------------------------------------------- */

.fc-cta { padding: clamp(90px, 12vw, 170px) 0; }

.fc-cta__card {
	position: relative;
	overflow: hidden;
	padding: clamp(60px, 9vw, 130px) clamp(28px, 6vw, 90px);
	border-radius: var(--r-xl);
	background: var(--fc-dark);
	color: var(--fc-bg);
	text-align: center;
}

.fc-cta__orbs { position: absolute; inset: 0; }

.fc-cta__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(70px);
	opacity: 0.75;
	will-change: transform;
}

.fc-cta__orb--1 { width: 460px; height: 460px; left: -120px; top: -140px; background: var(--fc-violet); }
.fc-cta__orb--2 { width: 340px; height: 340px; right: -90px; bottom: -120px; background: var(--fc-violet-deep); }
.fc-cta__orb--3 { width: 200px; height: 200px; right: 18%; top: -70px; background: var(--fc-lilac); opacity: 0.5; }

.fc-cta__mark { position: relative; margin: 0 auto 26px; width: 62px; height: auto; }

.fc-cta__title {
	position: relative;
	font-size: clamp(2.8rem, 7.5vw, 6.4rem);
	font-weight: 850;
	font-stretch: 120%;
	text-transform: uppercase;
	line-height: 0.98;
}

.fc-cta__title em {
	font-style: normal;
	color: var(--fc-lime);
}

.fc-cta__sub {
	position: relative;
	max-width: 430px;
	margin: 22px auto 0;
	color: rgba(242, 241, 237, 0.75);
}

.fc-cta__actions {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	margin-top: 42px;
}

.fc-cta__phone {
	font-size: 0.92rem;
	color: rgba(242, 241, 237, 0.65);
	border-bottom: 1px solid rgba(242, 241, 237, 0.25);
	padding-bottom: 2px;
	transition: color 0.3s, border-color 0.3s;
}
.fc-cta__phone:hover { color: var(--fc-lime); border-color: var(--fc-lime); }

/* -----------------------------------------------------------------------------
   21. Footer
   -------------------------------------------------------------------------- */

.fc-footer {
	background: var(--fc-dark);
	color: var(--fc-bg);
	border-radius: var(--r-xl) var(--r-xl) 0 0;
	overflow: hidden;
}

.fc-footer__inner {
	max-width: var(--container);
	margin-inline: auto;
	padding: clamp(60px, 8vw, 100px) var(--gutter) 30px;
}

.fc-footer__top {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
	gap: clamp(30px, 5vw, 70px);
	padding-bottom: clamp(46px, 6vw, 80px);
}

.fc-footer__brand img { height: 30px; width: auto; }
.fc-footer__brand p { margin-top: 18px; color: rgba(242, 241, 237, 0.65); font-size: 0.95rem; }

.fc-footer__socials { display: flex; gap: 18px; margin-top: 22px; }
.fc-footer__socials a {
	font-weight: 700;
	font-size: 0.9rem;
	border-bottom: 1.5px solid rgba(242, 241, 237, 0.3);
	padding-bottom: 2px;
	transition: color 0.3s, border-color 0.3s;
}
.fc-footer__socials a:hover { color: var(--fc-lime); border-color: var(--fc-lime); }

.fc-footer__col { display: grid; gap: 12px; align-content: start; }

.fc-footer__col h3 {
	font-size: 0.78rem;
	font-family: var(--font-body);
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--fc-lilac);
	margin-bottom: 8px;
}

.fc-footer__col a {
	font-size: 0.95rem;
	color: rgba(242, 241, 237, 0.8);
	transition: color 0.3s, transform 0.3s var(--ease-out);
}
.fc-footer__col a:hover { color: var(--fc-lime); }

.fc-footer__hours-row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	font-size: 0.92rem;
	color: rgba(242, 241, 237, 0.8);
}
.fc-footer__hours-row span:last-child { color: var(--fc-bg); font-weight: 600; }

.fc-footer__marquee {
	border-block: 1px solid rgba(242, 241, 237, 0.1);
	padding: 18px 0;
	overflow: hidden;
}

.fc-footer__marquee-track {
	display: flex;
	width: max-content;
	white-space: nowrap;
	font-family: var(--font-display);
	font-weight: 800;
	font-stretch: 122%;
	font-size: clamp(1.6rem, 4vw, 2.8rem);
	text-transform: uppercase;
	color: transparent;
	-webkit-text-stroke: 1px rgba(242, 241, 237, 0.25);
}

.fc-footer__bottom {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	padding-top: 26px;
	font-size: 0.82rem;
	color: rgba(242, 241, 237, 0.45);
}

/* -----------------------------------------------------------------------------
   22. Placeholder & 404
   -------------------------------------------------------------------------- */

.fc-placeholder {
	min-height: 100svh;
	display: grid;
	align-items: center;
	padding-top: var(--header-h);
}

.fc-placeholder__inner { display: grid; justify-items: start; gap: 22px; max-width: 720px; }

.fc-placeholder__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px; }

.fc-404__code {
	font-family: var(--font-display);
	font-weight: 850;
	font-stretch: 125%;
	font-size: clamp(6rem, 18vw, 13rem);
	line-height: 0.9;
	color: transparent;
	background: var(--fc-gradient-soft);
	-webkit-background-clip: text;
	background-clip: text;
}

/* -----------------------------------------------------------------------------
   23. États d'animation initiaux (uniquement si JS présent)
   -------------------------------------------------------------------------- */

.fc-js [data-reveal] { opacity: 0; transform: translateY(42px); }
.fc-js [data-hero-fade] { opacity: 0; transform: translateY(26px); }
.fc-js .fc-char { transform: translateY(110%); }
.fc-js [data-line-reveal] { display: inline-block; transform: translateY(110%); }
.fc-js .fc-hero__dot { display: inline-block; opacity: 0; transform: scale(0.4); }
.fc-js [data-split-lines] .fc-line-inner { transform: translateY(110%); display: inline-block; }
[data-split-lines] .fc-line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }

/* -----------------------------------------------------------------------------
   24. Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
	.fc-bento__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 225px; }
	.fc-abos__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
	.fc-abos__card.is-featured { transform: none; }
	.fc-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
	.fc-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
	.fc-nav { display: none; }
	.fc-burger { display: block; }
	.fc-header__cta { display: none; }
	.fc-mission__grid { grid-template-columns: 1fr; }
	.fc-mission__side { position: static; }
	.fc-avis__grid { grid-template-columns: 1fr; }
	.fc-hero__float--stat { display: none; }
	.fc-hero__float--video {
		top: auto; bottom: 24%;
		width: 128px;
	}
}

@media (max-width: 640px) {
	.fc-bento__grid { grid-template-columns: 1fr; grid-auto-rows: minmax(215px, auto); }
	.fc-bento__cell--hero { grid-column: auto; grid-row: span 2; }
	.fc-hero__float--video { display: none; }
	.fc-hero__float--chip { display: none; }
	.fc-hero__scroll-cue { display: none; }
	.fc-cta__card { text-align: left; }
	.fc-cta__mark { margin-inline: 0; }
	.fc-cta__actions { align-items: flex-start; }
	.fc-cta__sub { margin-inline: 0; }
	.fc-footer__top { grid-template-columns: 1fr; }
}

/* Sur mobile / tablette : la section cours devient un scroll horizontal natif */
@media (max-width: 1023px), (prefers-reduced-motion: reduce) {
	.fc-cours__pin { min-height: 0; }
	.fc-cours__track-wrap {
		overflow-x: auto;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
	}
	.fc-cours__track-wrap::-webkit-scrollbar { display: none; }
	.fc-cours__card { scroll-snap-align: center; }
	.fc-cours__progress { display: none; }
}

/* -----------------------------------------------------------------------------
   25. Reduced motion — l'accessibilité fait partie du « noble »
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
	.fc-js [data-reveal],
	.fc-js [data-hero-fade],
	.fc-js .fc-char,
	.fc-js [data-line-reveal],
	.fc-js .fc-hero__dot,
	.fc-js [data-split-lines] .fc-line-inner {
		opacity: 1 !important;
		transform: none !important;
	}

	.fc-label__dot,
	.fc-hero__kicker-dot,
	.fc-hero__scroll-line::after { animation: none; }

	.fc-marquee__track, .fc-footer__marquee-track { transform: none !important; }

	*, *::before, *::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
}

/* =============================================================================
   PAGES INTÉRIEURES
   ========================================================================== */

/* -----------------------------------------------------------------------------
   26. Hero de page (fc-phero)
   -------------------------------------------------------------------------- */

.fc-phero {
	position: relative;
	min-height: 74svh;
	display: grid;
	align-items: end;
	overflow: clip;
	background: var(--fc-dark);
}

.fc-phero__media { position: absolute; inset: 0; overflow: hidden; }

.fc-phero__img {
	position: absolute;
	inset: -5%;
	width: 110%; height: 110%;
	object-fit: cover;
}

.fc-phero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(9, 0, 27, 0.6) 0%, rgba(9, 0, 27, 0.3) 45%, rgba(9, 0, 27, 0.85) 100%);
}

/* Variante sans photo : gradient de marque */
.fc-phero--plain .fc-phero__media {
	background:
		radial-gradient(60% 90% at 80% 10%, rgba(69, 0, 249, 0.5) 0%, transparent 60%),
		radial-gradient(50% 80% at 15% 90%, rgba(135, 82, 250, 0.45) 0%, transparent 65%),
		var(--fc-dark);
}

.fc-phero__content {
	position: relative;
	z-index: 2;
	max-width: var(--container);
	width: 100%;
	margin-inline: auto;
	padding: calc(var(--header-h) + 80px) var(--gutter) clamp(50px, 8vw, 90px);
	color: var(--fc-bg);
}

.fc-phero__title {
	margin: 22px 0 0;
	font-size: clamp(2.8rem, 7.5vw, 6.6rem);
	font-weight: 850;
	font-stretch: 120%;
	line-height: 0.96;
	text-transform: uppercase;
	letter-spacing: -0.012em;
}

.fc-phero__title em {
	font-style: normal;
	color: transparent;
	background: linear-gradient(110deg, var(--fc-lilac) 0%, var(--fc-violet) 60%, var(--fc-violet-deep) 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

.fc-phero__sub {
	max-width: 520px;
	margin-top: 20px;
	color: rgba(242, 241, 237, 0.8);
	font-size: clamp(0.98rem, 1.3vw, 1.1rem);
}

/* -----------------------------------------------------------------------------
   27. Grille des cours (page Cours collectifs)
   -------------------------------------------------------------------------- */

.fc-courses-grid { padding: clamp(80px, 10vw, 150px) 0; }

.fc-courses-grid__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.fc-course-tile {
	position: relative;
	padding: 28px;
	border-radius: var(--r-lg);
	background: var(--fc-white);
	border: 1px solid rgba(9, 0, 27, 0.08);
	transition: box-shadow 0.5s var(--ease-out), border-color 0.4s;
}

.fc-course-tile:hover {
	box-shadow: 0 24px 54px rgba(9, 0, 27, 0.12);
	border-color: rgba(135, 82, 250, 0.35);
}

.fc-course-tile__picto {
	display: grid;
	place-items: center;
	width: 72px; height: 72px;
	border-radius: var(--r-md);
	background: rgba(135, 82, 250, 0.1);
	transition: transform 0.5s var(--ease-out), background-color 0.4s;
}

.fc-course-tile:hover .fc-course-tile__picto {
	transform: rotate(-6deg) scale(1.08);
	background: rgba(135, 82, 250, 0.18);
}

.fc-course-tile__picto img { width: 40px; height: 40px; object-fit: contain; }

.fc-course-tile__tag {
	display: inline-block;
	margin-top: 20px;
	padding: 5px 13px;
	border-radius: var(--r-pill);
	background: rgba(135, 82, 250, 0.1);
	color: var(--fc-violet);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.fc-course-tile h3 {
	margin-top: 10px;
	font-size: 1.2rem;
	font-weight: 800;
	font-stretch: 114%;
	text-transform: uppercase;
}

.fc-course-tile p { margin-top: 8px; font-size: 0.9rem; color: var(--fc-taupe); }

/* -----------------------------------------------------------------------------
   28. Planning hebdomadaire (tabs jours)
   -------------------------------------------------------------------------- */

.fc-plan {
	padding: clamp(80px, 10vw, 150px) 0;
	background: var(--fc-dark);
	border-radius: var(--r-xl);
	margin-inline: clamp(8px, 1.2vw, 20px);
}

.fc-plan__note { max-width: 460px; margin-top: 18px; color: rgba(242, 241, 237, 0.66); }

.fc-plan__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	padding: 6px;
	border-radius: var(--r-pill);
	background: rgba(242, 241, 237, 0.07);
	border: 1px solid rgba(242, 241, 237, 0.12);
	width: fit-content;
	max-width: 100%;
}

.fc-plan__tab {
	padding: 11px 20px;
	border-radius: var(--r-pill);
	color: rgba(242, 241, 237, 0.65);
	font-weight: 600;
	font-size: 0.9rem;
	transition: color 0.3s, background-color 0.3s, transform 0.3s var(--ease-out);
}

.fc-plan__tab:hover { color: var(--fc-bg); transform: translateY(-1px); }

.fc-plan__tab.is-active {
	background: var(--fc-lime);
	color: var(--fc-dark);
}

.fc-plan__tab-short { display: none; }

.fc-plan__panels { margin-top: 34px; }

.fc-plan__panel { display: grid; gap: 10px; }
.fc-plan__panel[hidden] { display: none; }

.fc-plan__row {
	display: grid;
	grid-template-columns: 70px 44px 1fr auto;
	align-items: center;
	gap: 16px;
	padding: 16px 22px;
	border-radius: var(--r-md);
	background: var(--fc-dark-2);
	border: 1px solid rgba(242, 241, 237, 0.08);
	color: var(--fc-bg);
	transition: border-color 0.3s, transform 0.4s var(--ease-out);
}

.fc-plan__row:hover {
	border-color: rgba(198, 255, 62, 0.4);
	transform: translateX(6px);
}

.fc-plan__time {
	font-family: var(--font-display);
	font-weight: 800;
	font-stretch: 116%;
	font-size: 1.05rem;
	color: var(--fc-lime);
}

.fc-plan__picto {
	display: grid;
	place-items: center;
	width: 44px; height: 44px;
	border-radius: 12px;
	background: rgba(198, 255, 62, 0.08);
	border: 1px solid rgba(198, 255, 62, 0.16);
}

.fc-plan__picto img { width: 24px; height: 24px; object-fit: contain; }

.fc-plan__name { font-weight: 700; }

.fc-plan__dur {
	padding: 5px 13px;
	border-radius: var(--r-pill);
	background: rgba(135, 82, 250, 0.22);
	color: var(--fc-lilac);
	font-size: 0.78rem;
	font-weight: 700;
}

.fc-plan__cta { margin-top: 38px; }

/* -----------------------------------------------------------------------------
   29. Coaching (2 colonnes)
   -------------------------------------------------------------------------- */

.fc-coaching { padding: clamp(80px, 11vw, 160px) 0; }

.fc-coaching__grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(28px, 5vw, 80px);
	align-items: center;
}

.fc-coaching__media {
	position: relative;
	border-radius: var(--r-lg);
	overflow: hidden;
	aspect-ratio: 4 / 5;
}

.fc-coaching__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 0.9s var(--ease-out);
}

.fc-coaching__media:hover img { transform: scale(1.05); }

.fc-coaching__body { display: grid; gap: 18px; justify-items: start; }
.fc-coaching__body p { color: var(--fc-taupe); max-width: 480px; }

/* -----------------------------------------------------------------------------
   30. Équipements (page Le Club)
   -------------------------------------------------------------------------- */

.fc-equip {
	padding: clamp(80px, 10vw, 150px) 0;
	background: var(--fc-dark);
	border-radius: var(--r-xl);
	margin-inline: clamp(8px, 1.2vw, 20px);
}

.fc-equip__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.fc-equip__item {
	padding: 26px;
	border-radius: var(--r-md);
	background: var(--fc-dark-2);
	border: 1px solid rgba(242, 241, 237, 0.08);
	color: var(--fc-bg);
	transition: border-color 0.3s, transform 0.4s var(--ease-out);
}

.fc-equip__item:hover {
	border-color: rgba(135, 82, 250, 0.5);
	transform: translateY(-6px);
}

.fc-equip__num {
	font-family: var(--font-display);
	font-weight: 800;
	font-stretch: 120%;
	font-size: 0.85rem;
	color: var(--fc-lilac);
}

.fc-equip__item h3 {
	margin-top: 14px;
	font-size: 1.05rem;
	font-weight: 800;
	font-stretch: 112%;
	text-transform: uppercase;
}

.fc-equip__item p { margin-top: 8px; font-size: 0.88rem; color: rgba(242, 241, 237, 0.62); }

/* -----------------------------------------------------------------------------
   31. Abonnements : promo + formules + inclus
   -------------------------------------------------------------------------- */

.fc-promo { padding: clamp(70px, 9vw, 130px) 0 0; }

.fc-promo__card {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1.3fr auto auto;
	align-items: center;
	gap: clamp(20px, 4vw, 50px);
	padding: clamp(30px, 5vw, 56px);
	border-radius: var(--r-xl);
	background: var(--fc-lime);
	color: var(--fc-dark);
}

.fc-promo__badge {
	position: absolute;
	top: 22px; right: 22px;
	padding: 8px 16px;
	border-radius: var(--r-pill);
	background: var(--fc-dark);
	color: var(--fc-lime);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.fc-promo__body h2 {
	font-size: clamp(1.6rem, 3.4vw, 2.6rem);
	font-weight: 850;
	font-stretch: 118%;
	text-transform: uppercase;
}

.fc-promo__body p { margin-top: 10px; font-weight: 500; opacity: 0.85; max-width: 420px; }

.fc-promo__price { display: grid; justify-items: start; gap: 4px; }

.fc-promo__old {
	font-weight: 700;
	text-decoration: line-through;
	opacity: 0.5;
}

.fc-promo__new {
	font-family: var(--font-display);
	font-weight: 850;
	font-stretch: 120%;
	font-size: clamp(2.2rem, 4.5vw, 3.4rem);
	line-height: 1;
}

.fc-promo__new small { font-size: 0.4em; font-weight: 700; }

.fc-passes { padding: clamp(80px, 10vw, 140px) 0; }

.fc-passes__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.fc-passes__window {
	align-self: flex-start;
	display: inline-block;
	margin-bottom: 14px;
	padding: 6px 14px;
	border-radius: var(--r-pill);
	background: rgba(135, 82, 250, 0.12);
	color: var(--fc-violet);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.fc-abos__card.is-featured .fc-passes__window {
	background: rgba(198, 255, 62, 0.14);
	color: var(--fc-lime);
}

.fc-passes .fc-abos__desc { margin-bottom: 26px; }

.fc-included { padding-bottom: clamp(80px, 10vw, 140px); }

.fc-included__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.fc-included__item {
	padding: 28px;
	border-radius: var(--r-lg);
	background: var(--fc-white);
	border: 1px solid rgba(9, 0, 27, 0.08);
}

.fc-included__item h3 {
	font-size: 1rem;
	font-weight: 800;
	font-stretch: 112%;
	text-transform: uppercase;
}

.fc-included__item p { margin-top: 8px; font-size: 0.88rem; color: var(--fc-taupe); }

/* -----------------------------------------------------------------------------
   32. FAQ (accordéon)
   -------------------------------------------------------------------------- */

.fc-faq { padding: clamp(80px, 10vw, 150px) 0 clamp(40px, 6vw, 80px); }

.fc-faq__inner { max-width: 880px; }

.fc-faq__list { display: grid; gap: 12px; }

.fc-faq__item {
	border-radius: var(--r-md);
	background: var(--fc-white);
	border: 1px solid rgba(9, 0, 27, 0.09);
	overflow: hidden;
	transition: border-color 0.3s, box-shadow 0.4s;
}

.fc-faq__item.is-open {
	border-color: rgba(135, 82, 250, 0.4);
	box-shadow: 0 18px 44px rgba(9, 0, 27, 0.08);
}

.fc-faq__q {
	display: flex;
	align-items: center;
	gap: 18px;
	width: 100%;
	padding: 22px 26px;
	text-align: left;
	font-weight: 700;
	font-size: 1.02rem;
}

.fc-faq__num {
	font-family: var(--font-display);
	font-weight: 800;
	font-stretch: 118%;
	font-size: 0.85rem;
	color: var(--fc-violet);
}

.fc-faq__q-txt { flex: 1; }

.fc-faq__icon {
	position: relative;
	flex: 0 0 auto;
	width: 34px; height: 34px;
	border-radius: 50%;
	background: rgba(135, 82, 250, 0.1);
	transition: background-color 0.3s, transform 0.45s var(--ease-luxe);
}

.fc-faq__icon::before,
.fc-faq__icon::after {
	content: '';
	position: absolute;
	top: 50%; left: 50%;
	width: 12px; height: 2px;
	margin: -1px 0 0 -6px;
	border-radius: 2px;
	background: var(--fc-violet);
	transition: transform 0.45s var(--ease-luxe);
}

.fc-faq__icon::after { transform: rotate(90deg); }

.fc-faq__item.is-open .fc-faq__icon {
	background: var(--fc-lime);
	transform: rotate(180deg);
}
.fc-faq__item.is-open .fc-faq__icon::before,
.fc-faq__item.is-open .fc-faq__icon::after { background: var(--fc-dark); }
.fc-faq__item.is-open .fc-faq__icon::after { transform: rotate(0deg); }

/* Fermé uniquement quand JS est là pour l'ouvrir ; sans JS tout reste lisible. */
.fc-js .fc-faq__a { height: 0; overflow: hidden; }

.fc-faq__a-inner { padding: 0 26px 24px 70px; color: var(--fc-taupe); }

/* -----------------------------------------------------------------------------
   33. Contact rapide, carte, réseaux
   -------------------------------------------------------------------------- */

.fc-quick { padding: clamp(40px, 6vw, 80px) 0 clamp(80px, 10vw, 140px); }

.fc-quick__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.fc-quick__card {
	display: grid;
	align-content: start;
	gap: 8px;
	padding: 30px;
	border-radius: var(--r-lg);
	background: var(--fc-white);
	border: 1px solid rgba(9, 0, 27, 0.09);
	transition: box-shadow 0.5s var(--ease-out), border-color 0.3s;
}

.fc-quick__card:hover {
	box-shadow: 0 24px 54px rgba(9, 0, 27, 0.12);
	border-color: rgba(135, 82, 250, 0.35);
}

.fc-quick__label {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--fc-violet);
}

.fc-quick__card strong {
	font-family: var(--font-display);
	font-weight: 800;
	font-stretch: 112%;
	font-size: 1.15rem;
	text-transform: uppercase;
	line-height: 1.2;
}

.fc-quick__card p { font-size: 0.88rem; color: var(--fc-taupe); }

.fc-contact { padding: clamp(60px, 8vw, 110px) 0; }

.fc-contact__grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 20px;
	align-items: stretch;
}

.fc-contact__cards { display: grid; gap: 16px; align-content: start; }

.fc-contact__map {
	border-radius: var(--r-xl);
	overflow: hidden;
	min-height: 460px;
	border: 1px solid rgba(9, 0, 27, 0.1);
	filter: grayscale(0.85) contrast(1.02);
	transition: filter 0.7s var(--ease-out);
}

.fc-contact__map:hover { filter: grayscale(0); }

.fc-contact__map iframe {
	width: 100%; height: 100%;
	min-height: 460px;
	border: 0;
	display: block;
}

.fc-socials-band { padding-bottom: clamp(40px, 6vw, 80px); }

.fc-socials-band__card {
	display: grid;
	gap: 18px;
	justify-items: start;
	padding: clamp(36px, 6vw, 70px);
	border-radius: var(--r-xl);
	background: var(--fc-white);
	border: 1px solid rgba(9, 0, 27, 0.08);
}

.fc-socials-band__card p { max-width: 440px; color: var(--fc-taupe); }

.fc-socials-band__links { display: flex; flex-wrap: wrap; gap: 12px; }

.fc-btn--glass-dark {
	border: 1.5px solid rgba(9, 0, 27, 0.25);
	color: var(--fc-ink);
	background: transparent;
}
.fc-btn--glass-dark:hover { border-color: var(--fc-violet); color: var(--fc-violet); }

.fc-quick__card--hours { cursor: default; }
.fc-quick__card--hours .fc-footer__hours-row { color: var(--fc-ink-60); }
.fc-quick__card--hours .fc-footer__hours-row span:last-child { color: var(--fc-ink); }

/* -----------------------------------------------------------------------------
   33b. Pages légales (sommaire sticky + prose)
   -------------------------------------------------------------------------- */

.fc-legal { padding: clamp(70px, 9vw, 130px) 0; }

.fc-legal__grid {
	display: grid;
	grid-template-columns: 250px 1fr;
	gap: clamp(30px, 5vw, 80px);
	align-items: start;
}

.fc-legal__aside { position: sticky; top: 120px; }

.fc-legal__toc {
	display: grid;
	gap: 4px;
	padding: 22px;
	border-radius: var(--r-lg);
	background: var(--fc-white);
	border: 1px solid rgba(9, 0, 27, 0.08);
}

.fc-legal__toc-title {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--fc-violet);
	margin-bottom: 8px;
}

.fc-legal__toc a {
	padding: 8px 12px;
	border-radius: 12px;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--fc-ink-60);
	transition: background-color 0.25s, color 0.25s, transform 0.3s var(--ease-out);
}

.fc-legal__toc a:hover {
	background: rgba(135, 82, 250, 0.08);
	color: var(--fc-violet);
	transform: translateX(3px);
}

.fc-legal__prose { max-width: 760px; }

.fc-legal__updated {
	display: inline-block;
	padding: 8px 16px;
	border-radius: var(--r-pill);
	background: rgba(135, 82, 250, 0.1);
	color: var(--fc-violet);
	font-size: 0.78rem;
	font-weight: 700;
	margin-bottom: 34px;
}

.fc-legal__prose h2 {
	margin: 44px 0 16px;
	font-size: clamp(1.3rem, 2.2vw, 1.7rem);
	font-weight: 800;
	font-stretch: 114%;
	text-transform: uppercase;
	scroll-margin-top: 110px;
}

.fc-legal__prose h2:first-of-type { margin-top: 0; }

.fc-legal__prose p { margin-bottom: 14px; color: var(--fc-ink-60); }
.fc-legal__prose strong { color: var(--fc-ink); }

.fc-legal__prose ul {
	margin: 0 0 14px;
	padding-left: 22px;
	color: var(--fc-ink-60);
	display: grid;
	gap: 8px;
}

.fc-legal__prose li::marker { color: var(--fc-violet); }

.fc-legal__prose a {
	color: var(--fc-violet);
	font-weight: 600;
	border-bottom: 1px solid rgba(135, 82, 250, 0.35);
	transition: border-color 0.25s;
}

.fc-legal__prose a:hover { border-color: var(--fc-violet); }

/* Liens légaux du footer */
.fc-footer__legal { display: flex; gap: 20px; }

.fc-footer__legal a {
	color: rgba(242, 241, 237, 0.45);
	transition: color 0.3s;
}

.fc-footer__legal a:hover { color: var(--fc-lime); }

/* -----------------------------------------------------------------------------
   34. Responsive pages intérieures
   -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
	.fc-courses-grid__grid { grid-template-columns: repeat(2, 1fr); }
	.fc-equip__grid { grid-template-columns: repeat(2, 1fr); }
	.fc-passes__grid { grid-template-columns: repeat(2, 1fr); }
	.fc-included__grid { grid-template-columns: repeat(2, 1fr); }
	.fc-promo__card { grid-template-columns: 1fr; justify-items: start; }
}

@media (max-width: 900px) {
	.fc-coaching__grid { grid-template-columns: 1fr; }
	.fc-contact__grid { grid-template-columns: 1fr; }
	.fc-quick__grid { grid-template-columns: 1fr; }
	.fc-plan__tab { padding: 10px 14px; }
	.fc-plan__tab-full { display: none; }
	.fc-plan__tab-short { display: inline; }
	.fc-legal__grid { grid-template-columns: 1fr; }
	.fc-legal__aside { position: static; }
	.fc-footer__legal { flex-wrap: wrap; gap: 14px; }
}

@media (max-width: 640px) {
	.fc-courses-grid__grid { grid-template-columns: 1fr; }
	.fc-passes__grid { grid-template-columns: 1fr; }
	.fc-included__grid { grid-template-columns: 1fr; }
	.fc-equip__grid { grid-template-columns: 1fr; }
	.fc-plan__row { grid-template-columns: 54px 38px 1fr auto; padding: 13px 14px; gap: 10px; }
	.fc-faq__a-inner { padding-left: 26px; }
}

