:root {
  --ink: #0a0503;
  --ink-2: #14090a;
  --ink-3: #1e1310;
  --paper: #ffffff;
  --terra: #b85c38;
  --terra-light: #d68865;
  --gold: #c89647;
  --jade: #1e5c42;
  --jade-light: #4a8067;
  --live: #cc1f1f;
  --muted: rgba(255,255,255,0.5);
  --muted-2: rgba(255,255,255,0.3);
  --line: rgba(255,255,255,0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--ink);
  color: var(--paper);
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink);
  padding: 28px 48px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo-signal {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
  cursor: pointer;
  padding: 8px 0;
}
.logo-signal svg {
  height: 76px; width: auto;
  display: block;
  overflow: visible;
}

/* Animation continue des ondes - plus marquée et plus visible */
@keyframes signal-wave-1 {
  0% { transform: scale(0.6); opacity: 0; }
  15% { opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}
@keyframes signal-wave-2 {
  0% { transform: scale(0.6); opacity: 0; }
  15% { opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}
@keyframes signal-wave-3 {
  0% { transform: scale(0.6); opacity: 0; }
  15% { opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}

.logo-signal svg .wave-1 {
  transform-origin: center;
  transform-box: fill-box;
  animation: signal-wave-1 2.4s ease-out infinite;
  stroke-width: 2;
}
.logo-signal svg .wave-2 {
  transform-origin: center;
  transform-box: fill-box;
  animation: signal-wave-2 2.4s ease-out infinite;
  animation-delay: 0.8s;
  stroke-width: 2;
}
.logo-signal svg .wave-3 {
  transform-origin: center;
  transform-box: fill-box;
  animation: signal-wave-3 2.4s ease-out infinite;
  animation-delay: 1.6s;
  stroke-width: 2;
}

/* Animation glow continue plus marquée */
@keyframes signal-center-pulse {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(228, 193, 120, 0.6));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 24px rgba(228, 193, 120, 1));
    transform: scale(1.08);
  }
}
.logo-signal svg .center-glow {
  animation: signal-center-pulse 2s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.cta-signup {
  color: var(--paper);
  font-size: 14px; font-weight: 500;
  text-decoration: none; padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  transition: all 0.2s; cursor: pointer;
}
.cta-signup:hover { background: var(--paper); color: var(--ink); }

/* ============================================================
   LAYOUT
   ============================================================ */
.app-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: calc(100vh - 90px);
}
.sidebar {
  padding: 24px 0 24px 48px;
  display: flex; flex-direction: column;
  min-height: calc(100vh - 90px);
}
.sidebar nav { list-style: none; }
.sidebar nav a {
  display: block; padding: 14px 0;
  font-size: 15px; font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: -0.1px;
  transition: color 0.2s; cursor: pointer;
}
.sidebar nav a:hover { color: var(--paper); }
.sidebar nav a.active { color: var(--paper); font-weight: 500; }

/* Footer de sidebar avec le domaine geniacademy.africa */
.sidebar-footer {
  margin-top: auto;
  padding: 24px 24px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: auto;
}
.domain-block {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 16px;
}
.domain-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(200, 150, 71, 0.6);
  animation: domain-pulse 2.5s ease-in-out infinite;
}
@keyframes domain-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(200, 150, 71, 0.5); }
  50% { box-shadow: 0 0 16px rgba(200, 150, 71, 1); }
}
.domain-text {
  display: flex; flex-direction: column;
  gap: 2px;
}
.domain-text a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--paper);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: -0.2px;
  transition: color 0.2s;
}
.domain-text a:hover { color: var(--gold); }
.domain-tag {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}
.contact-block {
  margin-bottom: 14px;
  padding-top: 10px;
}
.contact-block a {
  font-size: 11.5px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-block a:hover { color: var(--paper); }
.legal-block {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

.stage { padding: 24px 60px 80px 24px; max-width: 1280px; }

.page { display: none; animation: fadeIn 0.4s ease; }
.page.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   BREADCRUMB (Retour)
   ============================================================ */
.breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted);
  margin-bottom: 28px; cursor: pointer;
  transition: color 0.2s;
}
.breadcrumb:hover { color: var(--paper); }
.breadcrumb::before { content: '←'; font-size: 16px; }

/* ============================================================
   PAGE TITLES
   ============================================================ */
.page-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 36px;
  letter-spacing: -1.2px;
  line-height: 1.05;
  color: var(--paper);
  margin-top: 50px;
  max-width: 720px;
}
.page-title em { font-style: italic; color: var(--terra-light); }

/* ============================================================
   PAGE 1 — ACCUEIL
   ============================================================ */
.video-player {
  background: #000;
  border-radius: 14px;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  margin-bottom: 36px;
  cursor: pointer;
}
.video-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 35% 50%, rgba(184, 92, 56, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 50%, rgba(200, 150, 71, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, #1a0e08 0%, #0a0503 100%);
}
.speaker {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  display: flex; flex-direction: column; align-items: center;
  z-index: 2;
}
.speaker-avatar {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--terra) 100%);
  margin-bottom: 24px;
  box-shadow: 0 20px 60px rgba(184, 92, 56, 0.4);
}
.speaker-name {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 24px; color: var(--paper);
  letter-spacing: -0.3px; margin-bottom: 6px;
}
.speaker-loc {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 14px; color: var(--muted);
}
.live-badge-overlay {
  position: absolute; top: 24px; left: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--live); color: var(--paper);
  padding: 6px 14px; border-radius: 4px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em;
  z-index: 3;
  box-shadow: 0 4px 16px rgba(204, 31, 31, 0.5);
}
.live-dot-white {
  width: 6px; height: 6px;
  background: var(--paper); border-radius: 50%;
  animation: pulse-white 1.5s infinite;
}
@keyframes pulse-white {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.live-badge {
  position: absolute; top: 24px; left: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--paper);
  letter-spacing: 0.15em; z-index: 3;
}
.live-dot {
  width: 8px; height: 8px;
  background: var(--live); border-radius: 50%;
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 12px var(--live);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}
.play-control { position: absolute; bottom: 24px; left: 24px; z-index: 3; }
.play-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--paper); font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  padding-left: 3px;
}
.expand-control {
  position: absolute; bottom: 24px; right: 24px; z-index: 3;
  display: flex; align-items: center; gap: 8px;
}
.time-text { font-size: 12px; color: var(--muted); letter-spacing: 0.05em; }
.expand-btn {
  width: 36px; height: 36px;
  background: transparent; border: none;
  color: var(--muted); font-size: 14px; cursor: pointer;
}

/* ============================================================
   PAGE FORMATIONS — Sections live/upcoming/replays
   ============================================================ */
.section-block { margin-bottom: 64px; }
.section-block:last-child { margin-bottom: 0; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 20px;
}
.section-label {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted);
}
.section-label.live { color: var(--paper); }
.section-label .indicator {
  width: 8px; height: 8px; border-radius: 50%;
}
.section-label .indicator.red {
  background: var(--live);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 12px var(--live);
}
.section-label .indicator.yellow { background: var(--gold); }
.section-label .indicator.green { background: var(--jade-light); }
.section-link {
  font-size: 13px; color: var(--muted);
  text-decoration: none; cursor: pointer;
}
.section-link:hover { color: var(--paper); }

/* Live feature */
.live-feature {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.live-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.live-thumb {
  background: #000;
  border-radius: 10px;
  aspect-ratio: 21/9;
  position: relative;
  overflow: hidden;
}
.live-speaker-avatar-sm {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--terra) 100%);
  margin-bottom: 16px;
  box-shadow: 0 12px 40px rgba(184, 92, 56, 0.4);
}
.live-speaker-name-sm {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 18px; color: var(--paper);
  margin-bottom: 4px;
}
.live-speaker-loc-sm {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 12px; color: var(--muted);
}
.live-viewers {
  position: absolute; top: 16px; right: 16px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  padding: 6px 12px; border-radius: 4px;
  font-size: 11px; color: var(--paper);
  z-index: 3;
}
.live-info { padding: 24px 16px 8px; }
.live-title {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 26px; letter-spacing: -0.5px;
  line-height: 1.15; margin-bottom: 8px;
}
.live-meta {
  font-size: 13px; color: var(--muted);
  display: flex; gap: 16px; align-items: center;
  flex-wrap: wrap;
}
.lock-status {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-weight: 500;
}

/* Upcoming grid */
.upcoming-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.upcoming-tile {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden; cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
}
.upcoming-tile:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.upcoming-thumb {
  aspect-ratio: 16/9; position: relative; overflow: hidden;
}
.upcoming-thumb-bg {
  position: absolute; inset: 0;
}
.upcoming-thumb-bg.ia {
  background:
    radial-gradient(ellipse at center, rgba(200, 150, 71, 0.3) 0%, transparent 65%),
    linear-gradient(135deg, #1a0e08 0%, #0a0503 100%);
}
.upcoming-thumb-bg.ecom {
  background:
    radial-gradient(ellipse at center, rgba(30, 92, 66, 0.3) 0%, transparent 65%),
    linear-gradient(135deg, #1a0e08 0%, #0a0503 100%);
}
.upcoming-thumb-bg.chinois {
  background:
    radial-gradient(ellipse at center, rgba(214, 136, 101, 0.3) 0%, transparent 65%),
    linear-gradient(135deg, #1a0e08 0%, #0a0503 100%);
}
.upcoming-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
}
.upcoming-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(200, 150, 71, 0.15);
  border: 1px solid rgba(200, 150, 71, 0.4);
  backdrop-filter: blur(10px);
  padding: 4px 10px; border-radius: 4px;
  font-size: 10px; color: var(--gold);
  font-weight: 600; letter-spacing: 0.15em;
}
.upcoming-info { padding: 16px 18px 18px; }
.upcoming-title {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 16px; margin-bottom: 8px; line-height: 1.25;
}
.upcoming-time {
  font-size: 12px; color: var(--gold);
  font-weight: 500; margin-bottom: 4px;
}
.upcoming-speaker {
  font-size: 12px; color: var(--muted);
  font-family: 'Fraunces', serif; font-style: italic;
}

/* Replays grid */
.replays-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.replay-tile { cursor: pointer; transition: transform 0.2s; }
.replay-tile:hover { transform: translateY(-3px); }
.replay-thumb {
  background: var(--ink-2);
  aspect-ratio: 16/9;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}
.replay-thumb-bg { position: absolute; inset: 0; }
.replay-thumb-bg.drone {
  background:
    radial-gradient(ellipse at center, rgba(184, 92, 56, 0.3) 0%, transparent 65%),
    linear-gradient(135deg, #1a0e08 0%, #0a0503 100%);
}
.replay-thumb-bg.maint {
  background:
    radial-gradient(ellipse at center, rgba(214, 136, 101, 0.3) 0%, transparent 65%),
    linear-gradient(135deg, #1a0e08 0%, #0a0503 100%);
}
.replay-thumb-bg.iot {
  background:
    radial-gradient(ellipse at center, rgba(200, 150, 71, 0.25) 0%, transparent 65%),
    linear-gradient(135deg, #1a0e08 0%, #0a0503 100%);
}
.replay-thumb-bg.ia {
  background:
    radial-gradient(ellipse at center, rgba(184, 92, 56, 0.25) 0%, transparent 65%),
    linear-gradient(135deg, #1a0e08 0%, #0a0503 100%);
}
.replay-thumb-bg.ecom2 {
  background:
    radial-gradient(ellipse at center, rgba(30, 92, 66, 0.3) 0%, transparent 65%),
    linear-gradient(135deg, #1a0e08 0%, #0a0503 100%);
}
.replay-thumb-bg.chinois2 {
  background:
    radial-gradient(ellipse at center, rgba(200, 150, 71, 0.2) 0%, transparent 65%),
    linear-gradient(135deg, #1a0e08 0%, #0a0503 100%);
}
.replay-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 56px;
}
.replay-duration {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(0,0,0,0.85);
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 11px; color: var(--paper);
}
.replay-lock {
  position: absolute;
  top: 8px; right: 8px;
  width: 26px; height: 26px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}
.replay-lock.locked { color: var(--gold); }
.replay-lock.unlocked { color: var(--jade-light); }
.replay-title {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 16px; margin-bottom: 6px; line-height: 1.25;
}
.replay-meta {
  font-size: 12px; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.replay-meta .sep::before { content: '•'; margin: 0 4px; }

/* ============================================================
   PAGE ÉCOSYSTÈME
   ============================================================ */
.fondateur-block {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 40px;
}
.portrait-frame {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--ink-2) 0%, var(--ink) 100%);
  border: 1px solid var(--line);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.portrait-frame::before {
  content: '';
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--terra) 100%);
  opacity: 0.4;
}
.portrait-frame::after {
  content: 'Portrait';
  position: absolute; bottom: 24px;
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.fondateur-info .name {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 42px; letter-spacing: -1.2px;
  margin-bottom: 8px;
}
.fondateur-info .titre {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 16px; color: var(--muted);
  margin-bottom: 30px; line-height: 1.5;
}
.fondateur-info .quote {
  font-family: 'Fraunces', serif;
  font-style: italic; font-weight: 300;
  font-size: 22px; color: var(--paper);
  line-height: 1.45;
  border-left: 2px solid var(--terra);
  padding-left: 22px;
}

/* ============================================================
   PAGE PARTENAIRES
   ============================================================ */
.agreements-list { margin-bottom: 50px; border-top: 1px solid var(--line); }
.agreement-row {
  display: grid;
  grid-template-columns: 60px 1fr 200px 120px;
  gap: 30px;
  padding: 22px 0;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.agreement-row .num {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 32px; color: var(--terra-light);
}
.agreement-row .titre {
  font-family: 'Fraunces', serif; font-weight: 500; font-size: 18px;
}
.agreement-row .organ {
  font-size: 13px; color: var(--muted); font-style: italic;
}
.agreement-row .status {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-align: right;
}
.agreement-row .status.ok { color: var(--jade-light); }
.agreement-row .status.wait { color: var(--gold); }

/* ============================================================
   PAGE PRO
   ============================================================ */
.pro-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 60px;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
}
.pro-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(184, 92, 56, 0.15) 0%, transparent 70%);
}
.pro-card .label {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--terra-light);
  margin-bottom: 18px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}
.pro-card .headline {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 38px; letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 18px;
  position: relative;
  max-width: 620px;
}
.pro-card .headline em { font-style: italic; color: var(--terra-light); }
.pro-card .lead {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 16px; color: var(--muted);
  max-width: 560px;
  margin-bottom: 32px;
  position: relative;
  line-height: 1.6;
}
.pro-btn {
  background: var(--terra); color: var(--paper);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  border: none; cursor: pointer;
  position: relative;
}
.pro-btn::after { content: '→'; }

/* ============================================================
   PAGE RESSOURCES
   ============================================================ */
.articles-list { margin-bottom: 50px; border-top: 1px solid var(--line); }
.article-row {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 100px;
  gap: 30px;
  align-items: center;
  cursor: pointer;
  transition: padding 0.2s;
}
.article-row:hover { padding-left: 8px; }
.article-row .tag {
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--terra-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.article-row .article-title {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 22px; letter-spacing: -0.4px;
  line-height: 1.25;
  color: var(--paper);
}
.article-row .read-time {
  font-size: 12px; color: var(--muted);
  text-align: right;
}

/* ============================================================
   PAGE LECTEUR VIDÉO (Quand on accède au live ou replay)
   ============================================================ */
.video-watch-wrap {
  margin-bottom: 36px;
}
.video-watch-player {
  background: #000;
  border-radius: 14px;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  margin-bottom: 24px;
}
.video-watch-info {
  padding: 8px 0;
}
.video-watch-title {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 28px; letter-spacing: -0.6px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.video-watch-meta {
  display: flex; gap: 16px; align-items: center;
  font-size: 13px; color: var(--muted);
  flex-wrap: wrap; margin-bottom: 24px;
}
.video-watch-meta .status-live {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--live); font-weight: 600;
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.video-instructor-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ============================================================
   ACCESSIBILITÉ LINGUISTIQUE — Sélecteur audio + sous-titres
   ============================================================ */
.accessibility-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap; gap: 16px;
}
.access-group {
  display: flex; align-items: center; gap: 10px;
}
.access-label {
  font-size: 11px; letter-spacing: 0.15em;
  color: var(--muted); text-transform: uppercase;
  margin-right: 4px;
}
.access-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 500;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer; transition: all 0.2s;
}
.access-chip:hover { color: var(--paper); }
.access-chip.active {
  background: rgba(184, 92, 56, 0.15);
  border-color: var(--terra);
  color: var(--paper);
}
.access-chip.active .dot {
  background: var(--terra);
}
.access-chip .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
}
.audio-track-hint {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(74, 128, 103, 0.08);
  border: 1px solid rgba(74, 128, 103, 0.2);
  border-radius: 8px;
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--paper);
}
.audio-track-hint .ico {
  font-size: 18px;
}
.audio-track-hint em {
  color: var(--jade-light); font-style: italic;
}

/* ============================================================
   INSCRIPTION ASSISTÉE WHATSAPP — Sur la page inscription
   ============================================================ */
.inscription-mode-switch {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 24px;
}
.mode-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.mode-card:hover { border-color: rgba(255,255,255,0.2); }
.mode-card.active {
  background: rgba(184, 92, 56, 0.1);
  border-color: var(--terra);
}
.mode-card .mode-icon {
  font-size: 28px; margin-bottom: 10px;
}
.mode-card .mode-title {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 17px; margin-bottom: 6px;
}
.mode-card .mode-desc {
  font-size: 12.5px; color: var(--muted); line-height: 1.45;
}

/* Mode WhatsApp pleine page */
.whatsapp-mode {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, rgba(37, 211, 102, 0.02) 100%);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 14px;
  padding: 36px 40px;
  margin-bottom: 24px;
  display: none;
}
.whatsapp-mode.active { display: block; animation: fadeIn 0.4s ease; }
.whatsapp-mode .wa-icon {
  width: 56px; height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}
.whatsapp-mode h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 24px; margin-bottom: 10px;
}
.whatsapp-mode p {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 14px; color: var(--muted);
  line-height: 1.55; margin-bottom: 24px;
  max-width: 460px;
}
.whatsapp-mode .wa-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-bottom: 28px;
}
.wa-step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  background: rgba(37, 211, 102, 0.15);
  color: var(--whatsapp);
  border-radius: 50%;
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: 13px;
  margin-bottom: 8px;
}
.wa-step .step-text {
  font-size: 13px; color: var(--paper);
  line-height: 1.5;
}
.wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--whatsapp); color: var(--paper);
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  cursor: pointer; border: none;
}
.wa-btn::before { content: '💬'; }

/* ============================================================
   MODE SPLIT SCREEN — Lecteur avec zone de pratique
   ============================================================ */
.split-screen-toggle {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: rgba(184, 92, 56, 0.08);
  border: 1px solid rgba(184, 92, 56, 0.25);
  border-radius: 100px;
  cursor: pointer;
  margin: 16px 0;
  width: fit-content;
  transition: all 0.2s;
}
.split-screen-toggle:hover {
  background: rgba(184, 92, 56, 0.15);
}
.split-screen-toggle.active {
  background: var(--terra);
  border-color: var(--terra);
}
.split-screen-toggle .split-ico {
  font-size: 16px;
}
.split-screen-toggle .split-label {
  font-size: 13px; font-weight: 500;
  color: var(--paper);
}
.split-screen-toggle .split-hint {
  font-size: 11px; color: var(--muted);
  font-style: italic;
}
.split-screen-toggle.active .split-hint {
  color: rgba(255,255,255,0.8);
}

/* Layout split screen */
.video-watch-wrap.split-mode .video-watch-player {
  aspect-ratio: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4px;
  height: 540px;
  position: relative;
}
.video-watch-wrap.split-mode .video-side {
  position: relative;
  background: #000;
  border-radius: 14px 0 0 14px;
  overflow: hidden;
}
.video-watch-wrap.split-mode .split-side-work {
  display: flex !important;
}

/* Mode normal : la vidéo prend tout */
.video-side {
  position: absolute;
  inset: 0;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
}
.split-side-work {
  display: none;
  background: var(--ink);
  border-radius: 0 14px 14px 0;
  flex-direction: column;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.split-side-work .work-header {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}
.split-side-work .work-icon {
  width: 32px; height: 32px;
  background: rgba(184, 92, 56, 0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.split-side-work .work-title {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 16px; color: var(--paper);
}
.split-side-work .work-tabs {
  display: flex; gap: 6px; margin-bottom: 14px;
}
.split-side-work .work-tab {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  cursor: pointer;
  border: 1px solid var(--line);
}
.split-side-work .work-tab.active {
  background: rgba(184, 92, 56, 0.15);
  color: var(--paper);
  border-color: var(--terra);
}
.split-side-work .work-content {
  flex: 1;
  background: var(--ink-2);
  border-radius: 8px;
  padding: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  overflow-y: auto;
  line-height: 1.6;
}
.split-side-work .work-content .prompt-line {
  color: var(--gold);
  margin-bottom: 8px;
}
.split-side-work .work-content .response {
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
  padding-left: 8px;
  border-left: 2px solid rgba(255,255,255,0.1);
}
.split-side-work .work-input {
  display: flex; gap: 6px;
  margin-top: 12px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px;
}
.split-side-work .work-input input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--paper);
  padding: 6px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  outline: none;
}
.split-side-work .work-input input::placeholder {
  color: var(--muted-2);
}
.split-side-work .work-send {
  background: var(--terra);
  border: none;
  border-radius: 6px;
  color: var(--paper);
  padding: 5px 12px;
  font-size: 11px;
  cursor: pointer;
}

/* Cache la mosaique en mode split */
.video-watch-wrap.split-mode .speaker {
  transform: translate(-50%, -50%);
}
.video-watch-wrap.split-mode .speaker-avatar {
  width: 80px; height: 80px;
}
.video-watch-wrap.split-mode .speaker-name {
  font-size: 16px;
}
.video-watch-wrap.split-mode .speaker-loc {
  font-size: 12px;
}

/* ============================================================
   BADGES PAR MODÈLE PÉDAGOGIQUE (sur les cartes formations)
   ============================================================ */
.model-badge {
  position: absolute; top: 12px; right: 12px;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(10px);
}
.model-badge.presentiel {
  background: rgba(184, 92, 56, 0.85);
  color: var(--paper);
}
.model-badge.hybride {
  background: rgba(74, 128, 103, 0.85);
  color: var(--paper);
}
.model-badge.enligne {
  background: rgba(200, 150, 71, 0.85);
  color: var(--ink);
}

/* Conteneurs pour positionner les badges relativement */
.upcoming-thumb,
.replay-thumb,
.live-thumb {
  position: relative;
}

/* ============================================================
   SÉLECTEUR DE LANGUE — 5 langues dans le top bar
   ============================================================ */
.lang-selector {
  position: relative;
  display: flex; align-items: center; gap: 4px;
  margin-right: 14px;
}
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--paper);
  font-size: 12px; font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}
.lang-btn .flag {
  font-size: 14px;
}
.lang-btn .lang-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
}
.lang-btn .caret {
  font-size: 9px;
  opacity: 0.6;
  margin-left: 2px;
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px); right: 0;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px;
  min-width: 220px;
  z-index: 200;
  display: none;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.lang-dropdown.open { display: block; animation: fadeIn 0.2s ease; }
.lang-option {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  color: var(--paper);
  transition: background 0.15s;
}
.lang-option:hover { background: rgba(255,255,255,0.05); }
.lang-option.active {
  background: rgba(184, 92, 56, 0.15);
}
.lang-option .flag { font-size: 18px; }
.lang-option .name {
  flex: 1;
  font-weight: 500;
}
.lang-option .native {
  font-size: 11px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
}
.lang-option.active::after {
  content: '✓';
  color: var(--terra);
  font-weight: bold;
}

/* RTL pour l'arabe */
body.lang-ar { direction: rtl; }
body.lang-ar .sidebar { padding: 24px 48px 24px 0; }
body.lang-ar .lang-selector { margin-left: 14px; margin-right: 0; }

/* Polices spécifiques pour les écritures asiatiques et cyrillique */
body.lang-zh .page-title,
body.lang-zh h1, body.lang-zh h2, body.lang-zh h3 {
  font-family: 'Noto Serif SC', 'Fraunces', serif !important;
}
body.lang-ja .page-title,
body.lang-ja h1, body.lang-ja h2, body.lang-ja h3 {
  font-family: 'Noto Serif JP', 'Fraunces', serif !important;
}
body.lang-ko .page-title,
body.lang-ko h1, body.lang-ko h2, body.lang-ko h3 {
  font-family: 'Noto Serif KR', 'Fraunces', serif !important;
}

/* Le russe utilise Fraunces qui supporte le cyrillique nativement,
   mais on ajuste légèrement le letter-spacing pour la lisibilité */
body.lang-ru .page-title { letter-spacing: -1px; }

/* ============================================================
   INDICATEUR DE DIFFUSION — Sur le lecteur vidéo
   ============================================================ */
.stream-info {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: rgba(74, 128, 103, 0.08);
  border: 1px solid rgba(74, 128, 103, 0.2);
  border-radius: 8px;
  margin-top: 16px;
  margin-bottom: 8px;
}
.stream-info .stream-icon {
  width: 32px; height: 32px;
  background: rgba(74, 128, 103, 0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.stream-info .stream-text {
  flex: 1;
  font-size: 13px;
  color: var(--paper);
  line-height: 1.5;
}
.stream-info .stream-text em {
  color: var(--jade-light);
  font-style: italic;
}
.stream-info .stream-metrics {
  display: flex; gap: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.05em;
  flex-wrap: wrap;
}
.stream-info .stream-metrics .metric strong {
  color: var(--paper); font-weight: 600;
}

.stream-tech-bar {
  display: flex; align-items: center;
  gap: 18px;
  padding: 10px 16px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  position: absolute;
  bottom: 80px;
  left: 24px;
  z-index: 4;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.1);
  letter-spacing: 0.05em;
}
.stream-tech-bar .tech-metric {
  display: flex; align-items: center; gap: 6px;
}
.stream-tech-bar .tech-metric .dot {
  width: 6px; height: 6px;
  background: var(--jade-light);
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.stream-tech-bar .tech-label {
  color: rgba(255,255,255,0.5);
}
.stream-tech-bar .tech-value {
  color: var(--paper); font-weight: 600;
}
.instructor-avatar-sm {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--terra) 100%);
  flex-shrink: 0;
}
.instructor-info-block { flex: 1; }
.instructor-name-sm {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 15px;
}
.instructor-role-sm {
  font-size: 12px; color: var(--muted);
  margin-top: 1px;
}

/* ============================================================
   PAGE INSCRIPTION
   ============================================================ */
.inscription-wrap {
  max-width: 580px;
  margin: 0 auto;
}
.inscription-summary {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 28px;
}
.inscription-summary .lbl {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--terra-light);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 500;
}
.inscription-summary .formation-name {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 22px;
  margin-bottom: 14px;
}
.inscription-summary .formation-meta {
  display: flex; gap: 16px;
  font-size: 13px; color: var(--muted);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.inscription-summary .total-row {
  display: flex; justify-content: space-between;
  align-items: baseline;
}
.inscription-summary .total-label {
  font-size: 13px; color: var(--muted);
}
.inscription-summary .total-amount {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 32px; color: var(--paper);
}

.form-block {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
  margin-bottom: 24px;
}
.form-block-title {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 18px; margin-bottom: 22px;
}
.form-row {
  margin-bottom: 18px;
}
.form-row label {
  display: block;
  font-size: 11px; letter-spacing: 0.15em;
  color: var(--muted); text-transform: uppercase;
  margin-bottom: 8px; font-weight: 500;
}
.form-row input, .form-row select {
  width: 100%;
  padding: 14px 16px;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--paper);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-row input:focus, .form-row select:focus {
  border-color: var(--terra);
}
.form-row input::placeholder { color: var(--muted-2); }

/* Méthodes de paiement */
.payment-methods {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin-bottom: 18px;
}
.payment-method {
  padding: 16px 12px;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}
.payment-method.active {
  border-color: var(--terra);
  background: rgba(184, 92, 56, 0.1);
}
.payment-method .ico {
  font-size: 22px; margin-bottom: 6px;
}
.payment-method .name {
  font-size: 12px; font-weight: 500;
}
.payment-method .sub {
  font-size: 10px; color: var(--muted); margin-top: 2px;
}

.btn-pay {
  display: block; width: 100%;
  background: var(--terra); color: var(--paper);
  padding: 18px 22px;
  border-radius: 100px;
  font-size: 15px; font-weight: 600;
  text-align: center;
  border: none; cursor: pointer;
  text-decoration: none;
}
.btn-pay::after { content: ' →'; }

/* ============================================================
   PAGE CONFIRMATION
   ============================================================ */
.confirmation-wrap {
  text-align: center;
  padding: 80px 20px;
  max-width: 600px;
  margin: 0 auto;
}
.confirmation-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(74, 128, 103, 0.15);
  border: 1px solid rgba(74, 128, 103, 0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px;
  font-size: 32px;
  color: var(--jade-light);
}
.confirmation-title {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 44px; letter-spacing: -1.2px;
  line-height: 1.05;
  margin-bottom: 18px;
}
.confirmation-title em { font-style: italic; color: var(--terra-light); }
.confirmation-text {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 17px; color: var(--muted);
  line-height: 1.5;
  margin-bottom: 36px;
}
.confirmation-actions {
  display: flex; gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-action {
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--paper);
  background: transparent;
}
.btn-action.primary {
  background: var(--terra);
  border-color: var(--terra);
  font-weight: 600;
}

/* ============================================================
   MODALS
   ============================================================ */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(10, 5, 3, 0.85);
  backdrop-filter: blur(20px);
  z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  animation: fadeIn 0.3s ease;
}
.modal-backdrop.active { display: flex; }

.modal-content {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  width: 90%; max-width: 540px;
  padding: 48px 44px;
  position: relative;
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-size: 16px; cursor: pointer;
}
.modal-close:hover {
  color: var(--paper); border-color: var(--paper);
}
.modal-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra-light);
  font-weight: 500;
  margin-bottom: 16px;
}
.modal-title {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 32px; letter-spacing: -0.8px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.modal-title em { font-style: italic; color: var(--terra-light); }
.modal-description {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 15px; color: var(--muted);
  line-height: 1.5; margin-bottom: 28px;
}
.modal-price-block {
  background: var(--ink);
  border-radius: 10px;
  padding: 22px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
}
.modal-price-label {
  font-size: 11px; letter-spacing: 0.15em;
  color: var(--muted); text-transform: uppercase;
  margin-bottom: 6px;
}
.modal-price-amount {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 32px;
}
.modal-price-note {
  font-size: 12px; color: var(--muted); margin-top: 4px;
}
.modal-btn {
  display: block; width: 100%;
  background: var(--terra); color: var(--paper);
  padding: 16px 22px;
  border-radius: 100px;
  font-size: 14px; font-weight: 600;
  text-align: center;
  border: none; cursor: pointer;
  margin-bottom: 10px;
  text-decoration: none;
}
.modal-btn::after { content: ' →'; }
.modal-btn.secondary {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.2);
}
.modal-btn.secondary::after { content: ''; }
.modal-content.access {
  text-align: center;
  padding: 56px 44px;
}
.modal-content.access .access-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(74, 128, 103, 0.15);
  border: 1px solid rgba(74, 128, 103, 0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
}

/* Modal de contact / inscription rapide */
.modal-content.contact-form {
  max-width: 480px;
}
.modal-form-row { margin-bottom: 16px; }
.modal-form-row label {
  display: block;
  font-size: 10px; letter-spacing: 0.15em;
  color: var(--muted); text-transform: uppercase;
  margin-bottom: 8px; font-weight: 500;
}
.modal-form-row input,
.modal-form-row select {
  width: 100%;
  padding: 12px 14px;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--paper);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .top-bar { padding: 20px 24px; }
  .app-layout { grid-template-columns: 1fr; }
  .sidebar {
    padding: 0 24px;
    display: flex; gap: 20px;
    overflow-x: auto;
    border-bottom: 1px solid var(--line);
  }
  .sidebar nav { display: flex; gap: 20px; }
  .sidebar nav a { padding: 12px 0; white-space: nowrap; font-size: 13px; }
  .stage { padding: 24px; }
  .page-title { font-size: 28px; letter-spacing: -0.8px; }
  .live-title { font-size: 20px; }
  .upcoming-grid, .replays-grid { grid-template-columns: 1fr; }
  .fondateur-block { grid-template-columns: 1fr; gap: 30px; }
  .pro-card { padding: 30px; }
  .pro-card .headline { font-size: 28px; }
  .agreement-row { grid-template-columns: 40px 1fr; gap: 16px; }
  .agreement-row .organ, .agreement-row .status { display: none; }
  .article-row { grid-template-columns: 1fr; gap: 10px; }
  .modal-content { padding: 36px 28px; }
  .modal-title { font-size: 24px; }
  .payment-methods { grid-template-columns: 1fr; }
  .confirmation-title { font-size: 32px; }
}
