/* ==========================================================================
   VOLEA — Fournisseur de raquettes de padel
   Palette : nuit profonde drenched + jaune fluo balle de padel
   Typo : Archivo variable (width + weight), une seule famille, contraste fort
   ========================================================================== */

:root {
  --bg: oklch(18% 0.045 265);
  --bg-deep: oklch(13.5% 0.04 267);
  --surface: oklch(23% 0.05 264);
  --line: oklch(33% 0.05 264);
  --ink: oklch(96% 0.01 250);
  --muted: oklch(80% 0.028 258);
  --accent: oklch(91% 0.215 118);
  --accent-soft: oklch(91% 0.215 118 / 0.14);
  --accent-ink: oklch(17% 0.05 265);

  --font: "Archivo", "Helvetica Neue", Arial, sans-serif;

  --step-0: clamp(0.95rem, 0.92rem + 0.15vw, 1.02rem);
  --step-1: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
  --step-2: clamp(1.3rem, 1.15rem + 0.6vw, 1.65rem);
  --step-3: clamp(1.7rem, 1.35rem + 1.5vw, 2.6rem);
  --step-4: clamp(2.2rem, 1.7rem + 2.4vw, 3.4rem);

  --space-section: clamp(3.5rem, 6vw, 5.5rem);
  --gutter: clamp(1.25rem, 4vw, 4rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --z-nav: 10;
  --z-buybar: 15;
  --z-grain: 20;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--accent-ink); }

h1, h2, h3 { text-wrap: balance; }
p { max-width: 65ch; text-wrap: pretty; }

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.final :focus-visible { outline-color: var(--accent-ink); }

section[id] { scroll-margin-top: 5rem; }

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

.wrap {
  width: min(1200px, 100% - 2 * var(--gutter));
  margin-inline: auto;
}

/* ---- Display type : Archivo étirée, lourde, capitale ---------------------- */

.display {
  font-stretch: 125%;
  font-weight: 860;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 1.02;
}

h2.display { font-size: var(--step-3); }
h3.display { font-size: var(--step-1); line-height: 1.1; }

.lede {
  font-size: var(--step-1);
  line-height: 1.45;
  color: var(--muted);
  font-weight: 420;
}

/* ---- Grain global --------------------------------------------------------- */

.grain {
  position: fixed;
  inset: 0;
  z-index: var(--z-grain);
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
}

/* ---- Nav ------------------------------------------------------------------ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: oklch(15% 0.042 266 / 0.86);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.1rem;
}

.wordmark {
  font-stretch: 125%;
  font-weight: 900;
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wordmark .dot {
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  list-style: none;
}

.nav-links a:not(.btn) {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.25s var(--ease-out);
}

.nav-links a:not(.btn):hover { color: var(--ink); }

@media (max-width: 720px) {
  .nav-links li.hide-mobile { display: none; }
  .wordmark { font-size: 1.25rem; }
  .nav .btn { padding: 0.5em 1em; font-size: 0.85rem; }
  .nav .btn .label-long { display: none; }
}

.nav .btn .label-short { display: none; }

@media (max-width: 720px) {
  .nav .btn .label-short { display: inline; }
}

/* ---- Boutons -------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out),
    color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.btn svg { width: 1.05em; height: 1.05em; flex: none; }

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn-primary:hover { transform: translateY(-2px); }

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover { border-color: var(--ink); }

.nav .btn { padding: 0.55em 1.2em; font-size: 0.92rem; }

/* ---- Hero ----------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: clip;
  background: radial-gradient(120% 90% at 78% 18%, oklch(24% 0.06 262) 0%, var(--bg) 55%, var(--bg-deep) 100%);
}

.hero-court {
  position: absolute;
  inset: auto 0 0 0;
  height: 46%;
  width: 100%;
  opacity: 0.5;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.72fr);
  min-width: 0;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(6rem, 12vh, 7.5rem) clamp(2.5rem, 6vh, 3.5rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
}

.hero h1 .accent-line { color: var(--accent); }

.hero .lede { margin-top: 1.1rem; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

.hero-meta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.hero-meta span { display: flex; align-items: center; gap: 0.55rem; }
.hero-meta svg { width: 1em; height: 1em; color: var(--accent); flex: none; }

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  translate: 4% 0;
}

.hero-racket {
  width: min(250px, 52vw);
  filter: drop-shadow(0 0 60px oklch(91% 0.215 118 / 0.28))
    drop-shadow(0 30px 50px oklch(10% 0.03 267 / 0.8));
  transform: rotate(10deg);
}

@media (max-width: 900px) {
  .hero { min-height: 0; }
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    padding-block: clamp(6.5rem, 16vh, 8rem) clamp(3rem, 8vh, 5rem);
  }
  .hero-visual { translate: 0 0; }
  .hero-racket { width: min(190px, 46vw); margin-top: 3.5rem; }
  .hero-court { height: 34%; opacity: 0.35; }
}

/* ---- Bandeau défilant ------------------------------------------------------ */

.marquee {
  background: var(--accent);
  color: var(--accent-ink);
  overflow: hidden;
  padding-block: 0.85rem;
  border-block: 1px solid oklch(30% 0.06 120 / 0.25);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee-track ul {
  display: flex;
  gap: 3rem;
  list-style: none;
  font-stretch: 118%;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.marquee-track li { display: flex; align-items: center; gap: 3rem; }
.marquee-track li::after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---- Sections communes ----------------------------------------------------- */

.section { padding-block: var(--space-section); }

.section-head {
  max-width: 620px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head .lede { margin-top: 0.8rem; }
/* ---- Badge hero ------------------------------------------------------------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem 0.45rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: oklch(21% 0.048 264 / 0.6);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 2.1rem;
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

/* ---- Bloc offre --------------------------------------------------------------- */

.offer-box {
  margin-top: 1.8rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: oklch(21% 0.048 264 / 0.55);
  max-width: 460px;
}

.offer-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.price-now {
  font-size: clamp(1.9rem, 3.6vw, 2.5rem);
  font-weight: 880;
  font-stretch: 120%;
  line-height: 1;
  color: var(--accent);
}

.price-before {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: line-through;
}

.price-tag {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  background: var(--accent);
  color: var(--accent-ink);
}

.btn-lg { font-size: 0.98rem; padding: 0.9em 1.7em; }

.offer-box .btn-lg { width: 100%; justify-content: center; }

.offer-note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.offer-note svg { width: 1.05em; height: 1.05em; flex: none; color: var(--accent); }

/* ---- Liste "inclus" du hero ------------------------------------------------------ */

.hero-includes {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin-top: 1.3rem;
}

.hero-includes li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.hero-includes svg { width: 1.05em; height: 1.05em; color: var(--accent); flex: none; }

/* ---- Value stack : 2 cartes compactes + CTA ---------------------------------------- */

.stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.3rem);
}

.stack-item {
  padding: clamp(1.3rem, 2.5vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: oklch(21% 0.048 264 / 0.5);
}

.stack-num {
  display: block;
  font-size: 0.95rem;
  font-weight: 850;
  font-stretch: 118%;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.stack-item h3 {
  font-size: 1.05rem;
  font-weight: 800;
  font-stretch: 112%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.stack-format {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  background: var(--accent);
  color: var(--accent-ink);
}

.stack-item p { margin-top: 0.4rem; color: var(--muted); font-size: 0.88rem; }

.stack-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  margin-top: clamp(1.5rem, 3vw, 2.2rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
}

.stack-cta span { font-size: 0.85rem; color: var(--muted); }

/* ---- Moyens de paiement ---------------------------------------------------------- */

.paylist {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.9rem;
}

.paylist li {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.28rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.paylist-final {
  justify-content: center;
  margin-top: 1.2rem;
}

.paylist-final li {
  color: oklch(32% 0.07 125);
  border-color: oklch(45% 0.1 125 / 0.4);
}

/* ---- Ce que tu reçois ---------------------------------------------------------- */

.inclus { background: var(--bg-deep); }

.benefits {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.3rem);
}

.benefit {
  padding: clamp(1.2rem, 2.2vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: oklch(21% 0.048 264 / 0.45);
  transition: border-color 0.35s var(--ease-out), background 0.35s var(--ease-out);
}

.benefit:hover {
  border-color: oklch(91% 0.215 118 / 0.42);
  background: var(--surface);
}

.benefit-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.benefit-icon svg { width: 1.05rem; height: 1.05rem; }

.benefit h3 {
  font-size: 1rem;
  font-weight: 780;
  font-stretch: 112%;
}

.benefit p { margin-top: 0.35rem; color: var(--muted); font-size: 0.88rem; }

/* ---- Aperçu du catalogue --------------------------------------------------------- */

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.catalogue-card {
  border-radius: 22px;
  padding: clamp(1.6rem, 3vw, 2.2rem) clamp(1rem, 2vw, 1.5rem) clamp(1.1rem, 2vw, 1.4rem);
  display: grid;
  justify-items: center;
  gap: 1.1rem;
  border: 1px solid var(--line);
  background: radial-gradient(110% 90% at 50% 12%, oklch(26% 0.06 262) 0%, var(--bg-deep) 78%);
}

.catalogue-card svg {
  width: min(118px, 32vw);
  filter: drop-shadow(0 0 40px oklch(91% 0.215 118 / 0.2))
    drop-shadow(0 24px 38px oklch(10% 0.03 267 / 0.72));
  transition: transform 0.6s var(--ease-out);
}

.catalogue-card:hover svg { transform: rotate(-5deg) translateY(-8px); }

.catalogue-card figcaption {
  font-size: 0.76rem;
  font-weight: 700;
  font-stretch: 112%;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
}

/* ---- Étapes ---------------------------------------------------------------------- */

.etapes-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.etapes-intro { position: sticky; top: 7rem; }
.etapes-intro .lede { margin-top: 1.2rem; }
.etapes-intro .btn { margin-top: 2rem; }

.steps { list-style: none; display: grid; gap: 0.8rem; }

.step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.1rem;
  align-items: start;
  padding: clamp(1.1rem, 2.2vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: oklch(21% 0.048 264 / 0.45);
}

.step-num {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 880;
  font-stretch: 115%;
  font-size: 1rem;
  flex: none;
}

.step h3 { font-size: 1.05rem; font-weight: 780; font-stretch: 112%; }
.step p { margin-top: 0.3rem; color: var(--muted); font-size: 0.88rem; }

@media (max-width: 820px) {
  .etapes-grid { grid-template-columns: minmax(0, 1fr); }
  .etapes-intro { position: static; }
}

/* ---- Comparaison ------------------------------------------------------------------- */

.compare { background: var(--bg-deep); }

.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.compare-col {
  padding: clamp(1.3rem, 2.5vw, 1.8rem);
  border-radius: 18px;
  border: 1px solid var(--line);
}

.compare-col h3 {
  font-size: 1.05rem;
  font-weight: 820;
  font-stretch: 118%;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}

.compare-col ul { list-style: none; display: grid; gap: 0.7rem; }

.compare-col li {
  display: grid;
  grid-template-columns: 1.4rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  color: var(--muted);
  font-size: 0.9rem;
}

.compare-col li::before {
  content: "";
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.28rem;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.7rem;
}

.compare-without { background: oklch(20% 0.03 20 / 0.35); }
.compare-without h3 { color: oklch(78% 0.09 25); }
.compare-without li::before {
  background-color: oklch(45% 0.12 25 / 0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffb3ae' stroke-width='3.4' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E");
}

.compare-with {
  background: oklch(23% 0.05 264 / 0.7);
  border-color: oklch(91% 0.215 118 / 0.35);
}
.compare-with h3 { color: var(--accent); }
.compare-with li::before {
  background-color: var(--accent-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dfff3d' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}

/* ---- Barre d'achat permanente -------------------------------------------------------- */

.buybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-buybar);
  background: oklch(15% 0.042 266 / 0.94);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  transform: translateY(105%);
  transition: transform 0.45s var(--ease-out);
}

.buybar.is-visible { transform: none; }

.buybar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  padding-block: 0.9rem;
}

.buybar-text { display: grid; }
.buybar-text strong { font-weight: 750; font-size: 1rem; }
.buybar-text span { font-size: 0.82rem; color: var(--muted); }

.buybar-action { display: flex; align-items: center; gap: 1rem; }

.buybar-price { display: flex; align-items: baseline; gap: 0.5rem; }
.buybar-price b { font-size: 1.5rem; font-weight: 880; font-stretch: 118%; color: var(--accent); }
.buybar-price s { font-size: 0.85rem; color: var(--muted); }

@media (max-width: 560px) {
  .buybar-text { display: none; }
  .buybar-inner { justify-content: center; }
  .buybar-action { width: 100%; justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  .buybar { transition: none; }
}

/* ---- FAQ ---------------------------------------------------------------------------- */

.faq { background: var(--bg-deep); }

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.faq-intro { position: sticky; top: 7rem; }
.faq-intro .lede { margin-top: 1.2rem; }

.faq-list { display: grid; gap: 0.6rem; }

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: oklch(21% 0.048 264 / 0.45);
  padding: 0 clamp(1.2rem, 2.5vw, 1.7rem);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding-block: 0.95rem;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  flex: none;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dfff3d' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  transition: rotate 0.3s var(--ease-out);
}

.faq-item[open] summary::after { rotate: 45deg; }

.faq-item p {
  padding-bottom: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  .faq-grid { grid-template-columns: minmax(0, 1fr); }
  .faq-intro { position: static; }
}

/* ---- CTA final (drench jaune) --------------------------------------------------------- */

.final {
  background: var(--accent);
  color: var(--accent-ink);
  text-align: center;
}

.final .h-mega {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-stretch: 125%;
  font-weight: 880;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 1.02;
}

.final .lede {
  color: oklch(30% 0.07 120);
  margin-inline: auto;
  margin-top: 1.4rem;
}

.final-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2.4rem;
}

.final-price .price-now { color: var(--accent-ink); }
.final-price .price-before { color: oklch(35% 0.08 125); }

.final .btn-primary {
  background: var(--accent-ink);
  color: var(--accent);
  margin-top: 1.8rem;
}

.final-note {
  margin-top: 1.4rem;
  margin-inline: auto;
  font-size: 0.88rem;
  font-weight: 600;
  color: oklch(32% 0.07 125);
}

.final :focus-visible { outline-color: var(--accent-ink); }
/* ---- Footer -------------------------------------------------------------------- */

.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 2rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-inner .wordmark { font-size: 1.1rem; }

/* ---- Pages légales ---------------------------------------------------------------- */

.footer-legal a {
  color: oklch(62% 0.02 258);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.25s var(--ease-out);
}

.footer-legal a:hover { color: var(--muted); text-decoration: underline; }

.legal { padding-block: clamp(7rem, 14vh, 9rem) clamp(3rem, 6vw, 5rem); }

.legal-inner { max-width: 760px; }

.legal h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 2.5rem; }

.legal h2 {
  font-size: 1.05rem;
  font-weight: 800;
  font-stretch: 112%;
  margin-top: 2.4rem;
  margin-bottom: 0.7rem;
  color: var(--accent);
}

.legal p, .legal li { color: var(--muted); font-size: 0.94rem; line-height: 1.7; }
.legal p + p { margin-top: 0.8rem; }

.legal ul { margin-top: 0.8rem; padding-left: 1.1rem; display: grid; gap: 0.5rem; }
.legal li::marker { color: var(--accent); }

.legal strong { color: var(--ink); }

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

.legal mark {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 0.1em 0.35em;
  border-radius: 4px;
  font-weight: 700;
}

.legal-date {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

/* ---- Reveals (progressive enhancement : visibles sans JS) ----------------------- */

/* Le contenu est visible par défaut. JS n'arme que ce qui est hors écran,
   donc un rendu sans JS (crawler, headless) affiche la page complète. */
.reveal {
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}

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

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---- Animation d'entrée hero ----------------------------------------------------- */

html.js .hero-enter {
  opacity: 0;
  transform: translateY(34px);
  animation: heroIn 1.1s var(--ease-out) forwards;
  animation-delay: var(--enter-delay, 0s);
}

html.js .hero-racket-enter {
  opacity: 0;
  transform: rotate(24deg) scale(0.92) translateY(30px);
  animation: racketIn 1.4s var(--ease-out) 0.35s forwards;
}

@keyframes heroIn {
  to { opacity: 1; transform: none; }
}

@keyframes racketIn {
  to { opacity: 1; transform: rotate(10deg) scale(1) translateY(0); }
}

/* ---- Flottement raquette hero ----------------------------------------------------- */

@keyframes floatRacket {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

html.js .hero-visual.settled .hero-racket {
  opacity: 1;
  transform: rotate(10deg);
  animation: floatRacket 7s ease-in-out infinite;
}

/* ---- Reduced motion ---------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal,
  .reveal.armed,
  html.js .hero-enter,
  html.js .hero-racket-enter {
    opacity: 1;
    transform: rotate(0deg);
    animation: none;
    transition: none;
  }

  html.js .hero-racket-enter { transform: rotate(10deg); }
  html.js .hero-visual.settled .hero-racket { animation: none; }

  .marquee-track { animation: none; flex-wrap: wrap; width: auto; }
  .marquee-track ul { flex-wrap: wrap; }
  .marquee-track ul[aria-hidden="true"] { display: none; }

  .btn-primary:hover { transform: none; }
}
