/* ═══════════════════════════════════════════════════════════════
   WOW · Boris Feune — Feuille de style commune
   Design 2026 : base claire et aérée, bandes sombres immersives,
   chaque page produit teintée par l'univers de son jeu.
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  /* Marque */
  --violet: #AF62FE;
  --violet-deep: #7a2fe0;
  --violet-light: #c98fff;
  --violet-soft: rgba(175, 98, 254, 0.12);

  /* Base claire */
  --paper: #faf9f7;
  --paper-2: #f4f1fb;
  --ink: #221b3a;
  --ink-soft: #4d4668;
  --ink-muted: #756f93;
  --line: rgba(34, 27, 58, 0.1);
  --card: #ffffff;
  --shadow-card: 0 2px 8px rgba(34,27,58,0.05), 0 12px 32px rgba(34,27,58,0.07);

  /* Sombre */
  --dark: #120e20;
  --dark-2: #1b1430;
  --dark-3: #241a40;
  --white: #ffffff;
  --on-dark-soft: rgba(255,255,255,0.72);
  --on-dark-muted: rgba(255,255,255,0.55);
  --border-dark: rgba(255,255,255,0.1);

  /* Thème produit par défaut (accueil = violet marque) */
  --accent: var(--violet);
  --accent-deep: var(--violet-deep);
  --accent-soft: var(--violet-soft);
  --tint: var(--paper-2);
}

/* ─── Thèmes produits — inspirés des écrans de chaque jeu ─── */

/* L'Arène : nuit violette, châteaux ocre, tactiques rouge/or */
body.theme-arene {
  --accent: #e85d4a;
  --accent-deep: #c73e2b;
  --accent-soft: rgba(232, 93, 74, 0.12);
  --accent-2: #f0a500;
  --tint: #fbf4ec;
  --hero-grad: linear-gradient(180deg, #241536 0%, #3c2358 55%, #4a2b52 100%);
}

/* Planètes : marine profond, vert vif des boutons, typo craie */
body.theme-planetes {
  --accent: #57b846;
  --accent-deep: #2f7d2a;
  --accent-soft: rgba(87, 184, 70, 0.14);
  --accent-2: #f6a04a;
  --tint: #eef6ef;
  --hero-grad: linear-gradient(180deg, #0b142e 0%, #10203f 60%, #0d1b35 100%);
}

/* École de l'IA : indigo doux, cyan de Pixel, or du bouton */
body.theme-ia {
  --accent: #38bdf8;
  --accent-deep: #0e7ec2;
  --accent-soft: rgba(56, 189, 248, 0.13);
  --accent-2: #fbbf24;
  --tint: #eff1fd;
  --hero-grad: linear-gradient(180deg, #221856 0%, #2d1b69 55%, #33227a 100%);
}
body.theme-celeste {
  --accent: #b892ff;
  --accent-deep: #8b5cf6;
  --accent-soft: rgba(184, 146, 255, 0.14);
  --accent-2: #ffb46e;
  --tint: #f2effc;
  --hero-grad: linear-gradient(180deg, #0d0d24 0%, #191340 55%, #241a5e 100%);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.display {
  font-family: 'Baloo 2', 'Poppins', sans-serif;
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION FIXE — claire, lisible sur sections claires ET sombres
═══════════════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__brand {
  font-family: 'Baloo 2', 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__brand-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--violet);
  display: inline-block;
  box-shadow: 0 0 0 4px var(--violet-soft);
}

.nav__brand-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-left: 6px;
  display: none;
}

@media (min-width: 768px) {
  .nav__brand-sub { display: inline; }
}

.nav__links {
  display: none;
  align-items: center;
  gap: 4px;
  list-style: none;
}

@media (min-width: 900px) {
  .nav__links { display: flex; }
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 16px;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.nav__link:hover { color: var(--ink); background: rgba(34,27,58,0.05); }
.nav__link.is-active { color: var(--violet-deep); background: var(--violet-soft); }

.nav__dropdown { position: relative; }

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 16px 48px rgba(34,27,58,0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-item {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  transition: background 0.2s, color 0.2s;
}
.nav__dropdown-item:hover { background: var(--violet-soft); color: var(--ink); }
.nav__dropdown-item strong { display: block; color: var(--ink); font-weight: 600; margin-bottom: 2px; }
.nav__dropdown-item span { font-size: 0.72rem; color: var(--ink-muted); }

.nav__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s;
  background: var(--card);
}
.nav__back:hover { border-color: var(--violet); color: var(--violet-deep); }

.nav__burger {
  background: none;
  border: none;
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
}
@media (min-width: 900px) { .nav__burger { display: none; } }

.nav__mobile {
  display: none;
  position: fixed;
  top: 62px;
  left: 0; right: 0;
  background: var(--card);
  border-bottom: 1px solid var(--line);
  padding: 16px 24px 24px;
  box-shadow: 0 24px 48px rgba(34,27,58,0.12);
}
.nav__mobile.is-open { display: block; }
.nav__mobile a {
  display: block;
  padding: 12px 8px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--line);
}
.nav__mobile a:last-child { border-bottom: none; }

/* ═══════════════════════════════════════════════════════════════
   COMPOSANTS COMMUNS
═══════════════════════════════════════════════════════════════ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.2s, background 0.25s, border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn--primary {
  background: var(--violet);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(175,98,254,0.35);
}
.btn--primary:hover { background: var(--violet-deep); transform: translateY(-2px); }

.btn--accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 24px var(--accent-soft);
}
.btn--accent:hover { background: var(--accent-deep); transform: translateY(-2px); }

/* ghost sur fond clair */
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(34,27,58,0.25);
}
.btn--ghost:hover { border-color: var(--violet); color: var(--violet-deep); transform: translateY(-2px); }

/* ghost sur fond sombre */
.section--dark .btn--ghost,
.on-dark .btn--ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.section--dark .btn--ghost:hover,
.on-dark .btn--ghost:hover { border-color: var(--violet-light); color: var(--violet-light); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  color: var(--accent-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
}
.on-dark .tag { color: var(--white); background: rgba(255,255,255,0.1); }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 12px;
  display: block;
}
.section--dark .eyebrow { color: var(--accent); }

.section-title {
  font-family: 'Baloo 2', 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.section--dark .section-title { color: var(--white); }

.section-lead {
  font-size: 1.02rem;
  color: var(--ink-muted);
  max-width: 640px;
  line-height: 1.75;
}
.section--dark .section-lead { color: var(--on-dark-muted); }

/* ═══════════════════════════════════════════════════════════════
   SECTIONS / UTILITAIRES
═══════════════════════════════════════════════════════════════ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 96px 0; }

.section--tint { background: var(--tint); }
.section--lavande { background: var(--paper-2); }

.section--dark {
  background: var(--dark-2);
  color: var(--white);
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .container { padding: 0 20px; }
  .nav__inner { padding: 12px 20px; }
}

/* Apparition douce au scroll — masqué uniquement si le JS a confirmé
   que l'observateur tourne (html.has-io), jamais de contenu invisible */
html.has-io .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
html.has-io .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.has-io .reveal { opacity: 1; transform: none; transition: none; }
}

/* ═══════════════════════════════════════════════════════════════
   GALERIE + LIGHTBOX
═══════════════════════════════════════════════════════════════ */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.gallery__item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  display: block;
  background: var(--dark-3);
  border: 1px solid var(--border-dark);
  cursor: zoom-in;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery__item:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.35); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.gallery__item--wide { grid-column: span 2; aspect-ratio: 16/9; }
.gallery__item--tall { aspect-ratio: 3/4; grid-row: span 2; }

.gallery__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,6,20,0.92), transparent);
  padding: 28px 16px 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  pointer-events: none;
}

/* Galerie sur fond clair */
.section:not(.section--dark) .gallery__item {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

@media (max-width: 768px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; aspect-ratio: 4/3; }
  .gallery__item--tall { grid-row: span 1; aspect-ratio: 4/3; }
}

/* Lightbox */
.lb {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 6, 20, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 48px 24px 32px;
}
.lb.is-open { display: flex; }
.lb__img {
  max-width: min(1400px, 92vw);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 32px 96px rgba(0,0,0,0.6);
}
.lb__caption {
  margin-top: 18px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  max-width: 720px;
}
.lb__close {
  position: absolute;
  top: 20px; right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.lb__close:hover { background: rgba(255,255,255,0.22); }
.lb__prev, .lb__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.lb__prev:hover, .lb__next:hover { background: rgba(255,255,255,0.22); }
.lb__prev { left: 20px; }
.lb__next { right: 20px; }
@media (max-width: 768px) {
  .lb__prev { left: 8px; }
  .lb__next { right: 8px; }
}

/* ═══════════════════════════════════════════════════════════════
   BLOCS PRODUITS PARTAGÉS (pages produit)
═══════════════════════════════════════════════════════════════ */

/* Hero produit — sombre, immersif, aux couleurs du jeu */
.p-hero {
  position: relative;
  padding: 150px 0 100px;
  overflow: hidden;
  background: var(--hero-grad, var(--dark-2));
  color: var(--white);
}
.p-hero__stars { position: absolute; inset: 0; pointer-events: none; }
.p-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.p-hero__title {
  font-family: 'Baloo 2', 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 24px 0 16px;
  color: var(--white);
}
.p-hero__title em { font-style: normal; color: var(--accent); }
.p-hero__hook { font-size: 1.25rem; color: var(--on-dark-soft); margin-bottom: 24px; font-weight: 500; }
.p-hero__desc { font-size: 0.95rem; color: var(--on-dark-muted); max-width: 480px; margin-bottom: 36px; line-height: 1.8; }
.p-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.p-hero__visual {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.12);
  cursor: zoom-in;
  transition: transform 0.3s ease;
}
.p-hero__visual:hover { transform: scale(1.015); }
.p-hero__visual img { display: block; width: 100%; }

/* Cartes d'atouts (fond clair) */
.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, border-color 0.25s;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.feature-card__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.feature-card__title { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.feature-card__text { font-size: 0.85rem; color: var(--ink-muted); line-height: 1.6; }

/* Liste à coches (fond clair) */
.check-list {
  list-style: none;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
}
.check-list li::before {
  content: '✓';
  color: var(--accent-deep);
  font-weight: 800;
  flex-shrink: 0;
}

/* CTA final produit — sombre */
.p-cta {
  padding: 110px 0;
  text-align: center;
  background: var(--hero-grad, var(--dark-2));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.p-cta::before {
  content: '';
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.p-cta__inner { position: relative; z-index: 2; }
.p-cta__title {
  font-family: 'Baloo 2', 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--white);
}
.p-cta__desc { font-size: 1rem; color: var(--on-dark-muted); max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }
.p-cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Découvrir aussi — fond clair */
.p-also { padding: 80px 0; background: var(--paper-2); }
.p-also__title {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 40px;
}
.p-also__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.also-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
  display: block;
  box-shadow: var(--shadow-card);
}
.also-card:hover { border-color: var(--violet); transform: translateY(-4px); }
.also-card__icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.also-card__title { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.also-card__desc { font-size: 0.82rem; color: var(--ink-muted); line-height: 1.55; margin-bottom: 14px; }
.also-card__link { font-size: 0.78rem; color: var(--violet-deep); font-weight: 600; }

@media (max-width: 768px) {
  .p-hero__inner { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .p-also__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   FORMULAIRE DE CONTACT
═══════════════════════════════════════════════════════════════ */

.contact { padding: 100px 0; background: var(--paper-2); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact__intro { padding-top: 8px; }
.contact__intro .section-title { margin-bottom: 20px; }
.contact__lead { font-size: 1.02rem; color: var(--ink-muted); line-height: 1.75; margin-bottom: 32px; }
.contact__details { display: grid; gap: 18px; }
.contact__detail { display: flex; align-items: center; gap: 14px; }
.contact__detail-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--violet-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact__detail-label { font-size: 0.75rem; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.contact__detail-value { font-size: 0.95rem; color: var(--ink); font-weight: 600; }
.contact__detail-value a { color: var(--violet-deep); }

.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.contact-card__title {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-card__sub { font-size: 0.88rem; color: var(--ink-muted); margin-bottom: 24px; }

.form-message {
  display: none;
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ink-muted); opacity: 0.7; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 4px var(--violet-soft);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-honeypot {
  display: none !important;
  position: absolute;
  left: -9999px;
}

.form-submit {
  width: 100%;
  padding: 15px 32px;
  border: none;
  border-radius: 100px;
  background: var(--violet);
  color: var(--white);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  box-shadow: 0 8px 24px rgba(175,98,254,0.32);
}
.form-submit:hover:not(:disabled) { background: var(--violet-deep); transform: translateY(-2px); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; }

.form-consent { font-size: 0.72rem; color: var(--ink-muted); margin-top: 14px; line-height: 1.5; text-align: center; }

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-card { padding: 28px; }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER — sombre, signature de la gamme
═══════════════════════════════════════════════════════════════ */

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 64px 32px 40px;
  text-align: center;
}

.footer__brand {
  font-family: 'Baloo 2', 'Poppins', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.footer__brand span { color: var(--violet); }

.footer__tagline {
  color: var(--on-dark-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.footer__links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer__link {
  font-size: 0.85rem;
  color: var(--on-dark-soft);
  transition: color 0.2s;
}
.footer__link:hover { color: var(--violet-light); }

.footer__contact { margin-bottom: 32px; font-size: 0.9rem; color: var(--on-dark-soft); }
.footer__contact a { color: var(--violet-light); font-weight: 600; }

.footer__legal {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid var(--border-dark);
  padding-top: 24px;
}
