/* ============================================================
   frederiquemarie.ca : design sombre, premium, futuriste, éditorial
   Fond noir profond, accents cyan et magenta parcimonieux,
   glassmorphism subtil, micro-interactions fluides.
   ============================================================ */

:root {
  --bg: #050505;
  --bg-2: #0a0b0f;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.075);
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.06);
  --ink: #f4f6fb;
  --ink-soft: #a9b1c3;
  --ink-faint: #6d7587;
  --cyan: #00f0ff;
  --cyan-deep: #00c4d6;
  --cyan-soft: rgba(0, 240, 255, 0.12);
  --magenta: #ff2d55;
  --magenta-soft: rgba(255, 45, 85, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 14px 40px rgba(0, 0, 0, 0.45);
  --glow-cyan: 0 0 24px rgba(0, 240, 255, 0.22);
  --font: "Inter", "Inter Display", "SF Pro Display", "Segoe UI", system-ui, -apple-system, Helvetica, Arial, sans-serif;
  --header-h: 64px;
  --bar-h: 50px;
  --blur: blur(16px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + var(--bar-h) + 14px); }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1100px 700px at 85% -10%, rgba(0, 240, 255, 0.07), transparent 60%),
    radial-gradient(900px 640px at -12% 28%, rgba(255, 45, 85, 0.05), transparent 60%),
    radial-gradient(1000px 800px at 50% 120%, rgba(0, 240, 255, 0.04), transparent 60%),
    var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Grain très léger par-dessus tout (texture noise) */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; }
a:hover { text-decoration: none; }
p a, .desc a { color: var(--cyan); }
h1, h2, h3, h4 { line-height: 1.12; margin: 0 0 0.5em; font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.12rem; letter-spacing: -0.015em; }

::selection { background: rgba(0, 240, 255, 0.28); color: #fff; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 22px; }
.section { padding: 92px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.018) 18%, rgba(255, 255, 255, 0.018) 82%, transparent); }
.section-lead { color: var(--ink-soft); max-width: 640px; margin: 0 0 2.4rem; font-size: 1.05rem; }
.section-note { color: var(--ink-faint); font-size: 0.9rem; margin-top: 2.2rem; max-width: 720px; }
.section-head { display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; align-items: flex-end; margin-bottom: 1.6rem; }
.section-head .section-lead { margin-bottom: 0; }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cyan); margin: 0 0 14px;
}
.kicker::before { content: ""; width: 22px; height: 1px; background: linear-gradient(90deg, var(--cyan), transparent); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip: rect(0 0 0 0); clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--cyan); color: #04141a; padding: 10px 16px; border-radius: 0 0 10px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

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

/* ---------- Verre (glassmorphism) ---------- */
.glass, .card, .featured-card, .reflexion-card, .podcast-card, .pricing-card, .form-card,
.quiz-box, .chat-rooms, .chat-main, .matinale-panel, .today-card, .format-card {
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-radius: var(--radius);
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 999px;
  font-weight: 700; font-size: 0.93rem; letter-spacing: 0.01em;
  border: 1px solid transparent; cursor: pointer; text-align: center;
  font-family: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(120deg, var(--cyan), #6ef7ff);
  color: #03161a;
  box-shadow: 0 6px 22px rgba(0, 240, 255, 0.28);
}
.btn-primary:hover { box-shadow: 0 10px 32px rgba(0, 240, 255, 0.42); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  border-color: var(--line);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}
.btn-ghost:hover { border-color: rgba(0, 240, 255, 0.5); box-shadow: var(--glow-cyan); }
.btn-sm { padding: 8px 16px; font-size: 0.84rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 120;
  background: rgba(5, 5, 5, 0.68);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 22px;
  height: var(--header-h);
  display: flex; align-items: center; gap: 1.25rem;
}
.brand { display: flex; align-items: center; gap: 11px; color: var(--ink); }
.brand-mark {
  width: 36px; height: 36px; border-radius: 11px;
  background: linear-gradient(135deg, #0e3f46, #00c4d6);
  color: #eafcff; font-weight: 800; font-size: 0.85rem;
  display: grid; place-items: center; letter-spacing: 0.02em;
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.25);
}
.brand-name { font-size: 1.02rem; white-space: nowrap; font-weight: 400; }
.brand-name strong { font-weight: 800; }

.main-nav { flex: 1; }
.main-nav > ul { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; justify-content: flex-end; }
.main-nav a, .nav-more-btn {
  display: flex; align-items: center; gap: 5px; padding: 8px 12px; border-radius: 9px;
  color: var(--ink-soft); font-weight: 500; font-size: 0.9rem;
  background: none; border: 0; cursor: pointer; font-family: inherit;
  transition: color 0.2s ease, background 0.2s ease;
}
.main-nav a:hover, .nav-more-btn:hover { color: var(--ink); background: rgba(255, 255, 255, 0.06); }
.nav-more { position: relative; }
.nav-more-menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: rgba(12, 13, 17, 0.92);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); list-style: none; margin: 0; padding: 6px;
  min-width: 190px; display: none;
}
.nav-more.is-open .nav-more-menu { display: block; }
.nav-more-menu a { padding: 9px 12px; display: block; }

.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  display: grid; place-items: center; width: 38px; height: 38px;
  border-radius: 11px; border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.04); color: var(--ink-soft); cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.icon-btn:hover { color: var(--ink); border-color: rgba(0, 240, 255, 0.45); box-shadow: var(--glow-cyan); }

/* Indicateur direct (header + hero) */
.live-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  font-size: 0.8rem; font-weight: 600; color: var(--ink);
  white-space: nowrap;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.live-chip:hover { border-color: rgba(0, 240, 255, 0.5); box-shadow: var(--glow-cyan); }
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.9);
  animation: pulse 1.8s ease-in-out infinite;
  flex: none;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.45); opacity: 0.55; }
}

.new-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: var(--magenta); box-shadow: 0 0 10px rgba(255, 45, 85, 0.8); }
.new-dot[hidden] { display: none; }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Recherche */
.search-panel {
  border-top: 1px solid var(--line-soft);
  background: rgba(8, 9, 12, 0.94);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  padding: 18px 22px 22px;
}
.search-panel-inner { max-width: 760px; margin: 0 auto; display: flex; gap: 10px; }
.search-panel input[type="search"] {
  flex: 1; padding: 13px 18px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.05);
  color: var(--ink); font-size: 1rem; font-family: inherit;
}
.search-panel input[type="search"]::placeholder { color: var(--ink-faint); }
.search-panel input[type="search"]:focus { outline: none; border-color: rgba(0, 240, 255, 0.55); box-shadow: var(--glow-cyan); }
.search-results { max-width: 760px; margin: 10px auto 0; display: flex; flex-direction: column; }
.search-results a {
  padding: 10px 14px; border-radius: 10px; color: var(--ink);
  display: flex; align-items: center; gap: 10px; font-size: 0.95rem;
}
.search-results a:hover { background: rgba(255, 255, 255, 0.06); }
.sr-cat { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); flex: none; }
.search-popular { max-width: 760px; margin: 12px auto 0; color: var(--ink-faint); font-size: 0.86rem; }
.search-popular a { color: var(--ink-soft); margin-right: 12px; border-bottom: 1px solid var(--line); }
.search-popular a:hover { color: var(--cyan); border-color: rgba(0, 240, 255, 0.5); }

/* Menu mobile */
.mobile-nav {
  border-top: 1px solid var(--line-soft);
  background: rgba(8, 9, 12, 0.97);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
}
.mobile-nav ul { list-style: none; margin: 0; padding: 10px 18px 18px; columns: 2; }
.mobile-nav a { display: block; padding: 11px 10px; color: var(--ink-soft); font-weight: 600; border-radius: 9px; }
.mobile-nav a:hover { color: var(--ink); background: rgba(255, 255, 255, 0.05); }

/* ---------- Bannière slot ---------- */
.site-banner { border-bottom: 1px solid var(--line-soft); background: rgba(255, 255, 255, 0.03); }
.banner-inner {
  max-width: 1200px; margin: 0 auto; padding: 12px 22px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.banner-label {
  flex: none; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; border: 1px solid var(--line); color: var(--ink-soft);
}
.banner-pub .banner-label { color: var(--magenta); border-color: rgba(255, 45, 85, 0.4); }
.banner-annonce .banner-label { color: var(--cyan); border-color: rgba(0, 240, 255, 0.4); }
.banner-text { margin: 0; flex: 1; min-width: 220px; font-size: 0.95rem; color: var(--ink-soft); }
.banner-text strong { color: var(--ink); }
.banner-visual { flex: 1; min-width: 220px; }
.banner-visual img { border-radius: 10px; max-height: 110px; object-fit: cover; width: 100%; }
.banner-cta { flex: none; }
.banner-close {
  flex: none; background: none; border: 0; color: var(--ink-faint); font-size: 1.4rem;
  cursor: pointer; line-height: 1; padding: 4px 8px; border-radius: 8px;
}
.banner-close:hover { color: var(--ink); background: rgba(255, 255, 255, 0.06); }

/* ---------- HERO immersif ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex; align-items: center;
  padding: 70px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(760px 520px at 74% 34%, rgba(0, 240, 255, 0.1), transparent 62%),
    radial-gradient(560px 480px at 86% 78%, rgba(255, 45, 85, 0.08), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 180px;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.9));
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center; width: 100%;
}
.hero-live { position: absolute; top: 26px; right: 22px; z-index: 2; }
.hero-kicker {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--cyan); margin: 0 0 20px; display: flex; align-items: center; gap: 10px;
}
.hero-kicker::before { content: ""; width: 30px; height: 1px; background: linear-gradient(90deg, var(--cyan), transparent); }
.hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.3rem);
  letter-spacing: -0.04em;
  margin: 0 0 22px;
  background: linear-gradient(115deg, #ffffff 30%, #9feaf2 78%, var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-lead { color: var(--ink-soft); font-size: 1.1rem; max-width: 540px; margin: 0 0 34px; }
.hero-formats { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-format {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 22px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  color: var(--ink); font-weight: 700; font-size: 0.93rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.hero-format svg { color: var(--cyan); }
.hero-format:hover { transform: translateY(-2px); border-color: rgba(0, 240, 255, 0.55); box-shadow: var(--glow-cyan); }
.hero-format.hf-magenta svg { color: var(--magenta); }
.hero-format.hf-magenta:hover { border-color: rgba(255, 45, 85, 0.55); box-shadow: 0 0 24px rgba(255, 45, 85, 0.2); }

/* Portrait dramatique (visuel abstrait en attendant la photo officielle) */
.hero-portrait {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #0b0d13, #05060a 60%);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  max-height: 640px;
}
.hero-portrait svg { width: 100%; height: 100%; display: block; }
.hero-portrait::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 40%, rgba(5, 5, 6, 0.85));
  pointer-events: none;
}
.hero-portrait figcaption {
  position: absolute; left: 24px; bottom: 20px; z-index: 1;
  font-size: 0.9rem; color: var(--ink-soft);
}
.hero-portrait figcaption strong { display: block; color: var(--ink); font-size: 1.05rem; letter-spacing: -0.01em; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  z-index: 2; color: var(--ink-faint); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-cue::after {
  content: ""; width: 1px; height: 34px;
  background: linear-gradient(180deg, var(--cyan), transparent);
  animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue { 0%, 100% { opacity: 0.25; } 50% { opacity: 1; } }

/* ---------- Barre de formats sticky ---------- */
.format-bar {
  position: sticky; top: var(--header-h); z-index: 110;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.format-bar ul {
  list-style: none; margin: 0 auto; padding: 0 22px;
  max-width: 1200px; height: var(--bar-h);
  display: flex; align-items: stretch; gap: 6px;
  overflow-x: auto; scrollbar-width: none;
}
.format-bar ul::-webkit-scrollbar { display: none; }
.format-bar a {
  display: flex; align-items: center; padding: 0 16px;
  color: var(--ink-soft); font-weight: 600; font-size: 0.88rem;
  white-space: nowrap; position: relative; transition: color 0.2s ease;
}
.format-bar a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(0, 240, 255, 0.2));
  border-radius: 2px 2px 0 0; opacity: 0; transition: opacity 0.2s ease;
}
.format-bar a:hover { color: var(--ink); }
.format-bar a.is-active { color: var(--ink); }
.format-bar a.is-active::after { opacity: 1; box-shadow: 0 0 12px rgba(0, 240, 255, 0.5); }

/* ---------- Section Aujourd'hui ---------- */
.today-grid {
  display: grid; grid-template-columns: 1.55fr 1fr; gap: 18px;
  grid-auto-rows: minmax(0, auto);
}
.today-card {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.today-card:hover { transform: translateY(-4px); border-color: rgba(0, 240, 255, 0.35); box-shadow: var(--glow-cyan); }
.today-une { grid-row: span 3; }
.today-cover { position: relative; overflow: hidden; }
.today-une .today-cover { aspect-ratio: 16 / 10; }
.today-side .today-cover { display: none; }
.today-cover .ph { height: 100%; }
.today-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.today-side .today-body { padding: 20px 22px; }
.today-tag {
  align-self: flex-start;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cyan); padding: 4px 11px; border-radius: 999px;
  border: 1px solid rgba(0, 240, 255, 0.35); background: rgba(0, 240, 255, 0.07);
}
.today-tag.tt-magenta { color: var(--magenta); border-color: rgba(255, 45, 85, 0.35); background: rgba(255, 45, 85, 0.07); }
.today-card h3 { margin: 0; font-size: 1.16rem; }
.today-une h3 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); }
.today-card h3 a::before { content: ""; position: absolute; inset: 0; }
.today-card .desc { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.today-meta { display: flex; flex-wrap: wrap; gap: 6px 16px; color: var(--ink-faint); font-size: 0.82rem; margin-top: auto; }
.today-wave { display: flex; align-items: flex-end; gap: 3px; height: 34px; margin: 4px 0 2px; }
.today-wave i {
  flex: 1; max-width: 6px; border-radius: 3px;
  background: linear-gradient(180deg, var(--cyan), rgba(0, 240, 255, 0.25));
  min-height: 6px;
}

/* ---------- La Matinale des idées ---------- */
.matinale-panel {
  border-radius: 24px;
  padding: clamp(26px, 4vw, 46px);
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(26px, 4vw, 52px);
  position: relative; overflow: hidden;
}
.matinale-panel::before {
  content: "";
  position: absolute; top: -140px; right: -120px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.13), transparent 65%);
  pointer-events: none;
}
.onair-label {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.76rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cyan); margin: 0 0 10px;
}
.onair-show { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; letter-spacing: -0.03em; margin: 0 0 4px; }
.onair-host { color: var(--ink-soft); margin: 0 0 20px; }

.waveform { display: flex; align-items: center; gap: 4px; height: 56px; margin: 6px 0 22px; }
.waveform i {
  width: 4px; border-radius: 3px; height: 22%;
  background: linear-gradient(180deg, var(--cyan), rgba(0, 240, 255, 0.3));
  transition: height 0.3s ease;
}
.is-playing .waveform i { animation: wave 1.1s ease-in-out infinite; animation-delay: calc(var(--d) * -1s); }
@keyframes wave {
  0%, 100% { height: 18%; }
  50% { height: var(--h, 80%); }
}

.radio-controls { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 16px; }
.volume-label { display: flex; align-items: center; gap: 10px; color: var(--ink-faint); font-size: 0.85rem; }
input[type="range"] { accent-color: var(--cyan); width: 130px; }
.radio-next { color: var(--ink-soft); font-size: 0.92rem; margin: 0 0 18px; }
.radio-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }

.matinale-guest {
  display: flex; align-items: center; gap: 15px;
  padding: 15px 18px; border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-soft);
  margin-bottom: 18px;
}
.guest-avatar {
  width: 52px; height: 52px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-weight: 800; color: #eafcff;
  background: linear-gradient(135deg, #12303e, #00a9c0);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.25);
}
.guest-label { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--magenta); margin: 0 0 2px; }
.guest-name { font-weight: 700; margin: 0; }
.guest-role { color: var(--ink-faint); font-size: 0.85rem; margin: 0; }

.tunein-guide { color: var(--ink-soft); font-size: 0.9rem; }
.tunein-guide summary { cursor: pointer; color: var(--ink-soft); font-weight: 600; }
.tunein-guide summary:hover { color: var(--cyan); }
.tunein-guide ol { margin: 10px 0 0; padding-left: 20px; }

.radio-schedule h3 { margin-bottom: 14px; }
.schedule-table { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
.schedule-table th {
  text-align: left; padding: 9px 12px; color: var(--ink-faint);
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.schedule-table td { padding: 11px 12px; border-bottom: 1px solid var(--line-soft); vertical-align: top; color: var(--ink-soft); }
.schedule-table td:first-child { white-space: nowrap; color: var(--ink-faint); font-variant-numeric: tabular-nums; }
.schedule-table .is-now td { color: var(--ink); background: rgba(0, 240, 255, 0.05); }
.schedule-table .is-now td:first-child { color: var(--cyan); font-weight: 700; box-shadow: inset 3px 0 0 var(--cyan); }
.show-desc { display: block; font-size: 0.82rem; color: var(--ink-faint); }

/* ---------- Formats (cartes illustrées) ---------- */
.formats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.format-card {
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.format-card:hover { transform: translateY(-5px); border-color: rgba(0, 240, 255, 0.35); box-shadow: var(--glow-cyan); }
.fc-visual { aspect-ratio: 300 / 170; overflow: hidden; }
.fc-visual svg { width: 100%; height: 100%; display: block; transition: transform 0.3s ease; }
.format-card:hover .fc-visual svg { transform: scale(1.045); }
.fc-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.fc-tag { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan); margin: 0; }
.fc-body h3 { margin: 0; font-size: 1.2rem; }
.fc-body h3 a { color: var(--ink); }
.fc-desc { color: var(--ink-soft); font-size: 0.92rem; margin: 0; flex: 1; }
.fc-btn {
  display: inline-flex; align-items: center; gap: 7px; align-self: flex-start;
  margin-top: 6px; padding: 9px 18px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--ink); font-weight: 700; font-size: 0.85rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, gap 0.2s ease;
}
.fc-btn:hover { border-color: rgba(0, 240, 255, 0.55); box-shadow: var(--glow-cyan); gap: 11px; }

/* ---------- Cartes génériques ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { overflow: hidden; display: flex; flex-direction: column; transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease; }
.card:hover { transform: translateY(-4px); border-color: rgba(0, 240, 255, 0.32); box-shadow: var(--glow-cyan); }
.card-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.ph {
  width: 100%; height: 100%; display: grid; place-items: center;
  color: rgba(255, 255, 255, 0.85); font-size: 2.6rem; font-weight: 800; font-style: normal;
}
.duration {
  position: absolute; right: 10px; bottom: 10px;
  background: rgba(3, 4, 6, 0.75); color: #fff;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  font-size: 0.76rem; font-weight: 700; padding: 3px 9px; border-radius: 7px;
  font-variant-numeric: tabular-nums;
}
.card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.card-meta { display: flex; flex-wrap: wrap; gap: 5px 14px; align-items: center; color: var(--ink-faint); font-size: 0.8rem; }
.card-cat {
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cyan); padding: 3px 9px; border-radius: 999px;
  border: 1px solid rgba(0, 240, 255, 0.3); background: rgba(0, 240, 255, 0.06);
}
.card h3 { margin: 0; font-size: 1.08rem; }
.card h3 a { color: var(--ink); }
.card h3 a:hover { color: var(--cyan); }
.desc { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.card-tags span {
  font-size: 0.74rem; color: var(--ink-faint);
  padding: 3px 10px; border-radius: 999px; border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.03);
}
.card-footer { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: auto; padding-top: 6px; }
.card-author { color: var(--ink-faint); font-size: 0.82rem; }

.featured-card { display: grid; grid-template-columns: 1.1fr 1fr; overflow: hidden; margin-bottom: 18px; transition: border-color 0.24s ease, box-shadow 0.24s ease; }
.featured-card:hover { border-color: rgba(0, 240, 255, 0.32); box-shadow: var(--glow-cyan); }
.featured-card .card-media { aspect-ratio: auto; min-height: 280px; }
.featured-card .card-body { padding: 28px 30px; }
.featured-card h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }

/* Filtres chips + onglets */
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 8px 17px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.04);
  color: var(--ink-soft); font-weight: 600; font-size: 0.85rem; font-family: inherit;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.chip:hover { color: var(--ink); border-color: rgba(0, 240, 255, 0.4); }
.chip.is-active {
  color: #03161a; background: linear-gradient(120deg, var(--cyan), #6ef7ff);
  border-color: transparent; box-shadow: 0 4px 16px rgba(0, 240, 255, 0.3);
}
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.4rem; }
.tab {
  padding: 9px 19px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.04);
  color: var(--ink-soft); font-weight: 600; font-size: 0.88rem; font-family: inherit;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.tab:hover { color: var(--ink); border-color: rgba(0, 240, 255, 0.4); }
.tab.is-active {
  color: #03161a; background: linear-gradient(120deg, var(--cyan), #6ef7ff);
  border-color: transparent; box-shadow: 0 4px 16px rgba(0, 240, 255, 0.3);
}

/* ---------- Réflexions et dossiers (liste éditoriale) ---------- */
.reflexions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.reflexion-card {
  padding: 26px 28px; display: flex; flex-direction: column; gap: 11px;
  position: relative; overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.reflexion-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--cyan), transparent 80%);
  opacity: 0.5; transition: opacity 0.24s ease;
}
.reflexion-card:hover { transform: translateY(-4px); border-color: rgba(0, 240, 255, 0.35); box-shadow: var(--glow-cyan); }
.reflexion-card:hover::before { opacity: 1; }
.reflexion-card h3 { font-size: 1.28rem; margin: 0; }
.reflexion-card blockquote {
  margin: 6px 0; padding: 14px 18px;
  border-left: 2px solid rgba(0, 240, 255, 0.5);
  background: rgba(0, 240, 255, 0.05); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink); font-style: italic; font-size: 0.98rem;
}
.reflexion-related { color: var(--ink-faint); font-size: 0.85rem; margin: 0; }
.reflexion-card .btn { align-self: flex-start; }

/* Coups de coeur */
.stars { display: inline-flex; gap: 2px; color: #e8c877; }
.stars svg { width: 15px; height: 15px; }
.reco-points { margin: 4px 0 0; padding-left: 18px; color: var(--ink-soft); font-size: 0.88rem; }
.reco-points li { margin: 2px 0; }

/* ---------- Quiz ---------- */
.quiz-container { max-width: 780px; }
.quiz-box { padding: clamp(24px, 4vw, 40px); }
.quiz-progress { height: 6px; border-radius: 999px; background: rgba(255, 255, 255, 0.07); overflow: hidden; margin-bottom: 18px; }
.quiz-progress-bar { height: 100%; background: linear-gradient(90deg, var(--cyan), #6ef7ff); border-radius: 999px; box-shadow: 0 0 12px rgba(0, 240, 255, 0.5); transition: width 0.3s ease; }
.quiz-count { color: var(--ink-faint); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; margin: 0 0 8px; }
.quiz-q { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.015em; margin: 0 0 20px; }
.quiz-options { display: grid; gap: 10px; }
.quiz-opt {
  text-align: left; padding: 15px 19px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.04);
  color: var(--ink); font-size: 0.97rem; font-family: inherit; cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.quiz-opt:hover:not(:disabled) { border-color: rgba(0, 240, 255, 0.5); box-shadow: var(--glow-cyan); }
.quiz-opt.is-correct { border-color: rgba(0, 240, 255, 0.7); background: rgba(0, 240, 255, 0.1); box-shadow: var(--glow-cyan); }
.quiz-opt.is-wrong { border-color: rgba(255, 45, 85, 0.6); background: rgba(255, 45, 85, 0.08); }
.quiz-opt:disabled { cursor: default; opacity: 0.85; }
.quiz-explain {
  margin: 18px 0; padding: 15px 18px; border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-soft);
  color: var(--ink-soft); font-size: 0.93rem;
}
.quiz-explain strong { color: var(--ink); }
.quiz-result { text-align: center; }
.quiz-score {
  font-size: 3.4rem; font-weight: 800; letter-spacing: -0.04em; margin: 0 0 8px;
  background: linear-gradient(115deg, #fff, var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.quiz-actions { display: flex; gap: 12px; justify-content: center; margin: 20px 0; flex-wrap: wrap; }
.quiz-related { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line-soft); }
.quiz-related h3 { font-size: 1rem; }

/* ---------- Balados ---------- */
.podcast-list { display: grid; gap: 18px; }
.podcast-card {
  display: grid; grid-template-columns: 150px 1fr; gap: 22px; padding: 22px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.podcast-card:hover { transform: translateY(-3px); border-color: rgba(0, 240, 255, 0.32); box-shadow: var(--glow-cyan); }
.podcast-cover {
  width: 150px; height: 150px; border-radius: var(--radius-sm);
  display: grid; place-items: center;
  color: rgba(255, 255, 255, 0.9); font-size: 2.2rem; font-weight: 800;
}
.podcast-body { display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.podcast-body h3 { margin: 0; font-size: 1.18rem; }
.podcast-player {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 11px 14px; border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-soft);
}
.play-btn {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  display: grid; place-items: center; cursor: pointer; border: 0;
  background: linear-gradient(120deg, var(--cyan), #6ef7ff); color: #03161a;
  box-shadow: 0 4px 16px rgba(0, 240, 255, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.play-btn:hover { transform: scale(1.07); box-shadow: 0 6px 22px rgba(0, 240, 255, 0.45); }
.pod-progress { flex: 1; min-width: 120px; height: 6px; border-radius: 999px; background: rgba(255, 255, 255, 0.08); cursor: pointer; }
.pod-progress-bar { height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--cyan), #6ef7ff); box-shadow: 0 0 10px rgba(0, 240, 255, 0.45); }
.pod-time { color: var(--ink-faint); font-size: 0.8rem; font-variant-numeric: tabular-nums; white-space: nowrap; }
.pod-volume { width: 90px; }
.pod-links { color: var(--ink-faint); font-size: 0.85rem; margin: 0; }
.pod-links a { color: var(--ink-soft); margin-left: 10px; border-bottom: 1px solid var(--line); }
.pod-links a:hover { color: var(--cyan); border-color: rgba(0, 240, 255, 0.5); }
.pod-transcript { color: var(--ink-soft); font-size: 0.9rem; }
.pod-transcript summary { cursor: pointer; font-weight: 600; }
.pod-transcript summary:hover { color: var(--cyan); }
.pod-transcript p { margin: 8px 0 0; }

/* ---------- Galerie masonry ---------- */
.gallery-grid { columns: 3; column-gap: 18px; }
.gallery-item {
  position: relative; display: block; width: 100%; margin: 0 0 18px;
  break-inside: avoid; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; cursor: pointer; padding: 0; background: none; font-family: inherit;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.gallery-item:hover { transform: translateY(-4px); border-color: rgba(0, 240, 255, 0.4); box-shadow: var(--glow-cyan); }
.g-visual {
  width: 100%; display: grid; place-items: center;
  color: rgba(255, 255, 255, 0.85); font-size: 2.4rem; font-weight: 800;
  transition: transform 0.35s ease;
}
.gallery-item:hover .g-visual { transform: scale(1.05); }
.g-info {
  position: absolute; inset: auto 0 0 0; padding: 34px 18px 15px;
  background: linear-gradient(180deg, transparent, rgba(3, 4, 6, 0.88));
  text-align: left; opacity: 0; transform: translateY(8px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}
.gallery-item:hover .g-info, .gallery-item:focus-visible .g-info { opacity: 1; transform: none; }
.g-info h3 { margin: 0 0 2px; font-size: 1rem; color: #fff; }
.g-info p { margin: 0; color: var(--ink-soft); font-size: 0.8rem; }

/* Visionneuse */
.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(3, 3, 4, 0.94);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center; padding: 30px;
}
.lightbox-figure { max-width: min(860px, 88vw); margin: 0; text-align: center; }
.lightbox-media {
  width: min(720px, 82vw); aspect-ratio: 4 / 3; border-radius: var(--radius);
  display: grid; place-items: center; color: rgba(255, 255, 255, 0.9);
  font-size: 4rem; font-weight: 800; cursor: zoom-in;
  border: 1px solid var(--line);
  transition: transform 0.3s ease;
}
.lightbox-media.is-zoomed { transform: scale(1.18); cursor: zoom-out; }
.lightbox-figure figcaption { margin-top: 18px; color: var(--ink-soft); font-size: 0.92rem; }
.lightbox-figure figcaption strong { color: var(--ink); }
.lightbox-close, .lightbox-nav {
  position: absolute; background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line); color: var(--ink); cursor: pointer;
  border-radius: 50%; width: 46px; height: 46px; font-size: 1.5rem; line-height: 1;
  display: grid; place-items: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lightbox-close:hover, .lightbox-nav:hover { border-color: rgba(0, 240, 255, 0.55); box-shadow: var(--glow-cyan); }
.lightbox-close { top: 22px; right: 22px; }
.lightbox-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ---------- Café des idées ---------- */
.chat-layout { display: grid; grid-template-columns: 250px 1fr; gap: 18px; align-items: start; }
.chat-rooms { padding: 20px; }
.chat-rooms h3 { font-size: 0.98rem; margin-bottom: 10px; }
.chat-rooms ul { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.chat-rooms button {
  width: 100%; text-align: left; padding: 9px 13px; border-radius: 9px;
  border: 1px solid transparent; background: none; color: var(--ink-soft);
  font-weight: 600; font-size: 0.9rem; font-family: inherit; cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.chat-rooms button:hover { color: var(--ink); background: rgba(255, 255, 255, 0.05); }
.chat-rooms button.is-active { color: var(--ink); background: rgba(0, 240, 255, 0.08); border-color: rgba(0, 240, 255, 0.3); }
.chat-rules { border-top: 1px solid var(--line-soft); padding-top: 14px; }
.chat-rules h4 { font-size: 0.82rem; margin-bottom: 6px; }
.chat-rules p { color: var(--ink-faint); font-size: 0.82rem; margin: 0; }
.chat-main { display: flex; flex-direction: column; overflow: hidden; }
.chat-header { padding: 15px 20px; border-bottom: 1px solid var(--line-soft); font-weight: 700; }
.chat-messages { padding: 18px 20px; display: flex; flex-direction: column; gap: 14px; max-height: 380px; overflow-y: auto; }
.chat-msg { display: flex; gap: 12px; align-items: flex-start; }
.chat-msg > div {
  flex: 1; min-width: 0;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-soft);
  border-radius: 4px var(--radius-sm) var(--radius-sm) var(--radius-sm);
  padding: 10px 14px;
}
.chat-avatar {
  width: 36px; height: 36px; border-radius: 50%; flex: none;
  display: grid; place-items: center; color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem; font-weight: 800;
}
.chat-msg-head { display: flex; align-items: baseline; gap: 10px; font-size: 0.83rem; }
.chat-msg-head time { color: var(--ink-faint); font-size: 0.74rem; }
.chat-msg p { margin: 3px 0 0; font-size: 0.93rem; color: var(--ink-soft); }
.chat-report { margin-left: auto; background: none; border: 0; color: var(--ink-faint); font-size: 0.72rem; cursor: pointer; font-family: inherit; }
.chat-report:hover { color: var(--magenta); }
.chat-form { display: flex; gap: 10px; padding: 15px 20px; border-top: 1px solid var(--line-soft); }
.chat-form input {
  flex: 1; padding: 12px 17px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.04);
  color: var(--ink); font-family: inherit; font-size: 0.95rem;
}
.chat-form input::placeholder { color: var(--ink-faint); }
.chat-form input:focus { outline: none; border-color: rgba(0, 240, 255, 0.5); box-shadow: var(--glow-cyan); }
.chat-note { color: var(--ink-faint); font-size: 0.8rem; margin: 0; padding: 0 20px 15px; }

/* ---------- Manchettes ---------- */
.headlines { list-style: none; margin: 0; padding: 0; counter-reset: hl; display: grid; gap: 12px; }
.headline {
  counter-increment: hl;
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 24px; border-radius: var(--radius);
  background: var(--panel); border: 1px solid var(--line);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.headline:hover { transform: translateY(-2px); border-color: rgba(0, 240, 255, 0.3); box-shadow: var(--glow-cyan); }
.headline::before {
  content: counter(hl, decimal-leading-zero);
  font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em;
  color: rgba(0, 240, 255, 0.55); flex: none; line-height: 1.3;
  font-variant-numeric: tabular-nums;
}
.headline h3 { font-size: 1.05rem; margin: 0 0 4px; }
.headline p { margin: 0 0 8px; color: var(--ink-soft); font-size: 0.92rem; }
.headline-meta { display: flex; flex-wrap: wrap; gap: 5px 14px; align-items: center; color: var(--ink-faint); font-size: 0.8rem; }
.headline-meta a { color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.headline-meta a:hover { color: var(--cyan); border-color: rgba(0, 240, 255, 0.5); }
.ai-badge {
  font-size: 0.7rem; font-weight: 700; color: var(--magenta);
  padding: 2px 9px; border-radius: 999px;
  border: 1px solid rgba(255, 45, 85, 0.35); background: rgba(255, 45, 85, 0.06);
}
.ai-disclosure { color: var(--ink-faint); font-size: 0.85rem; margin-top: 1.6rem; }

/* ---------- Publicité ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 1.4rem; }
.pricing-card { padding: 28px 26px; display: flex; flex-direction: column; gap: 8px; transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease; }
.pricing-card:hover { transform: translateY(-4px); border-color: rgba(0, 240, 255, 0.32); box-shadow: var(--glow-cyan); }
.pricing-featured { border-color: rgba(0, 240, 255, 0.45); box-shadow: var(--glow-cyan); position: relative; }
.pricing-sub { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }
.pricing-card ul { margin: 10px 0 18px; padding-left: 19px; color: var(--ink-soft); font-size: 0.92rem; flex: 1; }
.pricing-card li { margin: 5px 0; }
.pricing-card .btn { align-self: flex-start; }
.ad-transparency { color: var(--ink-faint); font-size: 0.85rem; margin: 0 0 2.4rem; }

/* ---------- Formulaires ---------- */
.form-card { padding: clamp(24px, 4vw, 38px); }
.form-card h3 { margin-bottom: 1.2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 18px; margin-bottom: 1.3rem; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
.req { color: var(--magenta); }
.field input, .field select, .field textarea {
  padding: 12px 15px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.04);
  color: var(--ink); font-family: inherit; font-size: 0.95rem;
}
.field select option { background: #101218; color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: rgba(0, 240, 255, 0.55); box-shadow: var(--glow-cyan);
}
.field .is-invalid { border-color: rgba(255, 45, 85, 0.65); }
.field-consent { flex-direction: row; align-items: flex-start; gap: 10px; }
.field-consent input { accent-color: var(--cyan); margin-top: 4px; }
.field-consent label { font-weight: 400; }
.field-hp { position: absolute; left: -9999px; }
.form-feedback { min-height: 1.3em; font-size: 0.9rem; margin: 10px 0 0; }
.form-feedback.ok { color: var(--cyan); }
.form-feedback.err { color: var(--magenta); }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; align-items: start; }
.contact-info { list-style: none; margin: 1.4rem 0 0; padding: 0; color: var(--ink-soft); display: grid; gap: 10px; }
.contact-info a { color: var(--cyan); }
.soc-links a { color: var(--ink-soft); }
.soc-links a:hover { color: var(--cyan); }

/* ---------- Lecteur sticky ---------- */
.sticky-player {
  position: fixed; left: 50%; bottom: 18px; transform: translate(-50%, 90px);
  z-index: 200; width: min(640px, calc(100vw - 28px));
  display: flex; align-items: center; gap: 14px;
  padding: 11px 16px; border-radius: 999px;
  background: rgba(10, 11, 15, 0.82);
  border: 1px solid var(--line);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  box-shadow: var(--shadow);
  opacity: 0; pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.sticky-player.is-visible { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
.sp-info { flex: 1; min-width: 0; display: flex; align-items: center; gap: 10px; }
.sp-title { font-weight: 700; font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sp-wave { display: flex; align-items: center; gap: 3px; height: 22px; flex: none; }
.sp-wave i { width: 3px; height: 20%; border-radius: 2px; background: var(--cyan); }
.is-playing .sp-wave i { animation: wave 1.1s ease-in-out infinite; animation-delay: calc(var(--d) * -1s); }
.sp-open { flex: none; color: var(--ink-soft); font-size: 0.82rem; font-weight: 600; border-bottom: 1px solid var(--line); }
.sp-open:hover { color: var(--cyan); border-color: rgba(0, 240, 255, 0.5); }
.sticky-player .play-btn { width: 38px; height: 38px; }

/* ---------- Footer minimal ---------- */
.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 56px 0 80px;
  background: linear-gradient(180deg, transparent, rgba(0, 240, 255, 0.025));
}
.footer-top {
  display: flex; flex-wrap: wrap; gap: 26px; align-items: center; justify-content: space-between;
  padding-bottom: 30px; border-bottom: 1px solid var(--line-soft); margin-bottom: 26px;
}
.footer-brand-block { display: flex; align-items: center; gap: 12px; }
.footer-brand { font-size: 1.1rem; margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 4px 20px; list-style: none; margin: 0; padding: 0; }
.footer-links a { color: var(--ink-soft); font-size: 0.9rem; font-weight: 600; }
.footer-links a:hover { color: var(--cyan); }
.footer-support { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-news { display: flex; flex-wrap: wrap; gap: 18px 30px; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.footer-news p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; max-width: 420px; }
.newsletter-form { display: flex; gap: 10px; flex: 1; min-width: 280px; max-width: 460px; }
.newsletter-form input[type="email"] {
  flex: 1; padding: 12px 17px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.04);
  color: var(--ink); font-family: inherit; font-size: 0.95rem;
}
.newsletter-form input[type="email"]::placeholder { color: var(--ink-faint); }
.newsletter-form input[type="email"]:focus { outline: none; border-color: rgba(0, 240, 255, 0.55); box-shadow: var(--glow-cyan); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center; justify-content: space-between; color: var(--ink-faint); font-size: 0.82rem; }
.footer-legal ul { display: flex; flex-wrap: wrap; gap: 4px 18px; list-style: none; margin: 0; padding: 0; }
.footer-legal a { color: var(--ink-faint); }
.footer-legal a:hover { color: var(--ink-soft); }
.footer-powered a { color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.footer-powered a:hover { color: var(--cyan); border-color: rgba(0, 240, 255, 0.5); }

/* ---------- Animations d'entrée ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .main-nav { display: none; }
  .burger { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-portrait { max-width: 440px; margin: 0 auto; }
  .formats-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .today-grid { grid-template-columns: 1fr; }
  .today-une { grid-row: auto; }
  .matinale-panel { grid-template-columns: 1fr; }
  .reflexions-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 30px; }
  .chat-layout { grid-template-columns: 1fr; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-card .card-media { min-height: 0; aspect-ratio: 16 / 9; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { padding: 46px 0 80px; }
  .hero-live { position: static; margin-bottom: 18px; display: inline-flex; }
  .formats-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .podcast-card { grid-template-columns: 1fr; }
  .podcast-cover { width: 100%; height: 130px; }
  .form-grid { grid-template-columns: 1fr; }
  .mobile-nav ul { columns: 1; }
  .brand-name { display: none; }
  .sp-wave { display: none; }
}

/* ---------- Mouvement réduit ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
