/* Accord — site vitrine. Direction : dark luxury + glass, gradient de marque
   (violet → blurple → cyan) repris du logo. Auto-suffisant, sans dépendance. */

:root {
  --bg: #08090f;
  --bg-2: #0b0d17;
  --surface: rgba(255, 255, 255, 0.038);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #eceeffe6;
  --muted: #a2a6bd;
  --faint: #6b6f8c;

  --violet: #8b6fff;
  --blurple: #5b70f4;
  --cyan: #30cada;
  --grad: linear-gradient(125deg, var(--violet), var(--blurple) 52%, var(--cyan));
  --grad-soft: linear-gradient(125deg, rgba(139, 111, 255, 0.18), rgba(48, 202, 218, 0.14));

  --text-hero: clamp(2.7rem, 1.4rem + 5.4vw, 5.6rem);
  --text-h2: clamp(1.9rem, 1.2rem + 2.6vw, 3rem);
  --text-lead: clamp(1.05rem, 0.98rem + 0.5vw, 1.3rem);

  --space-section: clamp(4.5rem, 3rem + 7vw, 9rem);
  --radius: 20px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --maxw: 1160px;

  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Atmosphère : halos de marque fixés en fond, grain léger. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 50% at 15% -5%, rgba(139, 111, 255, 0.22), transparent 60%),
    radial-gradient(55% 45% at 92% 8%, rgba(48, 202, 218, 0.16), transparent 60%),
    radial-gradient(70% 60% at 50% 105%, rgba(91, 112, 244, 0.14), transparent 65%),
    var(--bg);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.2rem, 4vw, 2.4rem); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(1.4);
  background: rgba(8, 9, 15, 0.62);
  border-bottom: 1px solid var(--border);
}
.nav__inner { display: flex; align-items: center; gap: 1.5rem; height: 66px; }
.brand { display: flex; align-items: center; gap: 0.65rem; font-weight: 650; letter-spacing: -0.01em; }
.brand img { width: 30px; height: 30px; }
.nav__links { margin-left: auto; display: flex; align-items: center; gap: 1.7rem; }
.nav__links a { color: var(--muted); font-size: 0.95rem; transition: color 0.2s var(--ease); }
.nav__links a:hover { color: var(--text); }
.nav__cta { padding: 0.5rem 1.05rem; border-radius: 999px; background: var(--grad); color: #fff; font-weight: 600; font-size: 0.9rem; box-shadow: 0 6px 20px -8px rgba(91, 112, 244, 0.7); transition: transform 0.25s var(--ease), filter 0.25s var(--ease); }
.nav__cta:hover { transform: translateY(-1px); filter: brightness(1.08); }
.lang { padding: 0.3rem 0.7rem; border-radius: 999px; border: 1px solid rgba(148, 163, 210, 0.28); font-size: 0.8rem !important; font-weight: 700; letter-spacing: 0.06em; }
.lang:hover { border-color: rgba(148, 163, 210, 0.55); }
@media (max-width: 680px) { .nav__links a:not(.nav__cta):not(.lang) { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(3.5rem, 6vw, 6rem); padding-bottom: var(--space-section); text-align: center; }
.hero__logo { width: 92px; height: 92px; margin: 0 auto 1.8rem; filter: drop-shadow(0 12px 34px rgba(91, 112, 244, 0.45)); animation: float 7s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.hero h1 { font-size: var(--text-hero); line-height: 0.98; letter-spacing: -0.035em; font-weight: 720; margin: 0 0 1.2rem; }
.hero h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: var(--text-lead); color: var(--muted); max-width: 40ch; margin: 0 auto 2.3rem; }
.hero__cta { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

.btn { display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.85rem 1.6rem; border-radius: 14px; font-weight: 600; font-size: 1rem; border: 1px solid transparent; transition: transform 0.25s var(--ease), filter 0.25s var(--ease), background 0.25s var(--ease); }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 14px 40px -14px rgba(91, 112, 244, 0.8); }
.btn--primary:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn--ghost { background: var(--surface); border-color: var(--border-strong); color: var(--text); }
.btn--ghost:hover { background: var(--surface-strong); transform: translateY(-2px); }
.btn__sub { font-size: 0.78rem; color: rgba(255, 255, 255, 0.72); font-weight: 500; }

.pill { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0.95rem; border-radius: 999px; border: 1px solid var(--border-strong); background: var(--surface); font-size: 0.82rem; color: var(--muted); margin-bottom: 1.8rem; }
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }

/* ---------- Showcase ---------- */
.showcase { position: relative; margin-top: 1rem; }
.showcase__frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-strong); box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(255, 255, 255, 0.03) inset; background: var(--bg-2); }
.showcase__frame img { width: 100%; }
.showcase::after { content: ""; position: absolute; inset: -6% -4% auto; height: 60%; background: var(--grad-soft); filter: blur(70px); z-index: -1; opacity: 0.7; }

/* ---------- Sections ---------- */
section { padding-block: var(--space-section); }
.section-head { max-width: 44ch; margin-bottom: clamp(2.4rem, 4vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow { display: inline-block; font-size: 0.8rem; font-weight: 650; letter-spacing: 0.12em; text-transform: uppercase; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 0.9rem; }
h2 { font-size: var(--text-h2); line-height: 1.05; letter-spacing: -0.03em; font-weight: 680; margin: 0 0 0.9rem; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin: 0; }

/* ---------- Bento features ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.1rem; }
.card { position: relative; border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius); padding: 1.6rem; overflow: hidden; transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease); }
.card:hover { transform: translateY(-4px); border-color: var(--border-strong); background: var(--surface-strong); }
.card__icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--grad-soft); border: 1px solid var(--border-strong); font-size: 1.3rem; margin-bottom: 1rem; }
.card h3 { margin: 0 0 0.4rem; font-size: 1.18rem; letter-spacing: -0.01em; }
.card p { margin: 0; color: var(--muted); font-size: 0.96rem; }
.card--wide { grid-column: span 3; }
.card--half { grid-column: span 3; }
.card--third { grid-column: span 2; }
.card--feature { grid-column: span 6; display: grid; grid-template-columns: 1.05fr 1fr; gap: 2rem; align-items: center; padding: 0; }
.card--feature .card__body { padding: clamp(1.8rem, 3vw, 2.8rem); }
.card--feature img { border-left: 1px solid var(--border); height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .card--wide, .card--half, .card--third, .card--feature { grid-column: span 2; }
  .card--feature { grid-template-columns: 1fr; }
  .card--feature img { border-left: 0; border-top: 1px solid var(--border); }
}
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } .card--wide, .card--half, .card--third, .card--feature { grid-column: span 1; } }

/* ---------- Security strip ---------- */
.strip { border: 1px solid var(--border); border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(139, 111, 255, 0.08), rgba(48, 202, 218, 0.05)); padding: clamp(2rem, 4vw, 3.4rem); }
.strip__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.stat b { display: block; font-size: 1.7rem; letter-spacing: -0.02em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--muted); font-size: 0.95rem; }
@media (max-width: 700px) { .strip__grid { grid-template-columns: 1fr; gap: 1.3rem; } }

/* ---------- Download ---------- */
.dl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.dl-card { border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius); padding: 1.7rem; text-align: center; transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease); }
.dl-card:hover { transform: translateY(-4px); border-color: var(--border-strong); background: var(--surface-strong); }
.dl-card .os { font-size: 2rem; margin-bottom: 0.6rem; }
.dl-card h3 { margin: 0 0 0.2rem; font-size: 1.2rem; }
.dl-card p { margin: 0 0 1.2rem; color: var(--faint); font-size: 0.86rem; }
.dl-card .btn { width: 100%; justify-content: center; }
@media (max-width: 700px) { .dl-grid { grid-template-columns: 1fr; } }

/* ---------- Guide ---------- */
.guide { max-width: 780px; }
.guide h2 { margin-top: 2.6rem; scroll-margin-top: 90px; }
.guide h3 { margin-top: 1.8rem; font-size: 1.2rem; letter-spacing: -0.01em; }
.guide p, .guide li { color: var(--muted); }
.guide strong { color: var(--text); font-weight: 640; }
.guide ol, .guide ul { padding-left: 1.3rem; }
.guide li { margin-bottom: 0.5rem; }
.steps { list-style: none; counter-reset: s; padding: 0; }
.steps > li { counter-increment: s; position: relative; padding: 1.2rem 1.2rem 1.2rem 3.8rem; border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius); margin-bottom: 1rem; color: var(--text); }
.steps > li::before { content: counter(s); position: absolute; left: 1.1rem; top: 1.1rem; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: var(--grad); color: #fff; font-weight: 700; }
.callout { border: 1px solid var(--border-strong); border-left: 3px solid var(--cyan); background: var(--surface); border-radius: 12px; padding: 1rem 1.2rem; margin: 1.4rem 0; color: var(--muted); font-size: 0.95rem; }
.callout.warn { border-left-color: var(--violet); }
.toc { border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem 1.4rem; background: var(--surface); margin-bottom: 2.4rem; }
.toc b { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--faint); }
.toc ul { list-style: none; padding: 0; margin: 0.7rem 0 0; display: grid; gap: 0.4rem; }
.toc a { color: var(--muted); transition: color 0.2s; }
.toc a:hover { color: var(--text); }

/* ---------- Nouveautés ---------- */
.release { border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1.4rem; transition: border-color 0.35s var(--ease), background 0.35s var(--ease); }
.release:hover { border-color: var(--border-strong); background: var(--surface-strong); }
.release__head { display: flex; align-items: baseline; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 0.9rem; }
.release__version { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.release__date { color: var(--faint); font-size: 0.88rem; }
.release__link { margin-left: auto; color: var(--muted); font-size: 0.88rem; text-decoration: underline; transition: color 0.2s; }
.release__link:hover { color: var(--text); }
.release h3 { margin: 1.1rem 0 0.3rem; font-size: 1.05rem; letter-spacing: -0.01em; }
.release p, .release li { color: var(--muted); font-size: 0.96rem; }
.release ul { padding-left: 1.2rem; margin: 0.4rem 0; }
.release li { margin-bottom: 0.45rem; }
.release strong { color: var(--text); font-weight: 640; }

/* ---------- Captures du guide ---------- */
.shot { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-strong); box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.8); background: var(--bg-2); margin: 1.4rem 0 2rem; }
.shot img { width: 100%; height: auto; }
.shot figcaption { padding: 0.6rem 1rem; font-size: 0.84rem; color: var(--faint); border-top: 1px solid var(--border); }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--border); padding-block: 3rem; margin-top: var(--space-section); }
.footer__inner { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between; }
.footer__inner .brand { opacity: 0.9; }
.footer__links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer__links a { color: var(--muted); font-size: 0.92rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--text); }
.footer__note { width: 100%; color: var(--faint); font-size: 0.85rem; margin-top: 0.5rem; }

/* Reveal on scroll (progressive enhancement) */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ================================================================
   v2 — refonte : animations, avantages, téléchargement direct.
   Additif uniquement : guide.html et nouveautes.html partagent ce
   fichier et ne doivent pas bouger.
   ================================================================ */

/* Révélation échelonnée : délai par carte via --d. */
.reveal { transition-delay: var(--d, 0s); }

/* ---------- Aurora du hero (transform/opacity uniquement) ---------- */
.hero { overflow: visible; }
.aurora { position: absolute; inset: -10% 0 0; z-index: -1; pointer-events: none; overflow: hidden; }
.aurora i {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5;
  will-change: transform;
}
.aurora i:nth-child(1) { width: 34rem; height: 34rem; left: -10%; top: -18%; background: rgba(139, 111, 255, 0.34); animation: aur-1 17s ease-in-out infinite; }
.aurora i:nth-child(2) { width: 28rem; height: 28rem; right: -8%; top: -6%; background: rgba(48, 202, 218, 0.26); animation: aur-2 21s ease-in-out infinite; }
.aurora i:nth-child(3) { width: 30rem; height: 30rem; left: 34%; top: 42%; background: rgba(91, 112, 244, 0.24); animation: aur-3 25s ease-in-out infinite; }
@keyframes aur-1 { 50% { transform: translate(3.5rem, 2.5rem) scale(1.12); } }
@keyframes aur-2 { 50% { transform: translate(-3rem, 3rem) scale(1.08); } }
@keyframes aur-3 { 50% { transform: translate(2.5rem, -3rem) scale(1.15); } }

/* Titre : gradient qui respire. */
.grad--anim { background-size: 220% 220%; animation: shimmer 7s ease-in-out infinite; }
@keyframes shimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* ---------- Capture du hero : entrée en perspective + chips flottantes ---------- */
.showcase--hero { perspective: 1200px; }
.showcase--hero .showcase__frame.reveal { transform: rotateX(9deg) translateY(2rem) scale(0.97); transition-duration: 1.1s; }
.showcase--hero .showcase__frame.reveal.in { transform: none; }
.showcase--hero img { will-change: transform; }
.chip {
  position: absolute; z-index: 2; display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1rem; border-radius: 999px; border: 1px solid var(--border-strong);
  background: rgba(11, 13, 23, 0.78); backdrop-filter: blur(12px);
  font-size: 0.86rem; font-weight: 600; white-space: nowrap;
  box-shadow: 0 14px 34px -14px rgba(0, 0, 0, 0.7);
  animation: float 7s ease-in-out infinite;
}
.chip--1 { left: -1.4rem; top: 12%; animation-duration: 8s; }
.chip--2 { right: -1.2rem; top: 32%; animation-duration: 6.4s; animation-delay: 0.7s; }
.chip--3 { left: 5%; bottom: -1.1rem; animation-duration: 7.4s; animation-delay: 0.3s; }
@media (max-width: 940px) { .chip { display: none; } }

/* ---------- Compteurs ---------- */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.metric {
  text-align: center; border: 1px solid var(--border); background: var(--surface);
  border-radius: var(--radius); padding: 1.5rem 1rem;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.metric:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.metric b {
  display: block; font-size: 2.2rem; letter-spacing: -0.03em; line-height: 1.1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.metric span { color: var(--muted); font-size: 0.92rem; }
@media (max-width: 700px) { .metrics { grid-template-columns: repeat(2, 1fr); } }

/* ---------- « Comment ça marche » ---------- */
.how { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.8rem, 4vw, 3.2rem); align-items: center; }
@media (max-width: 900px) { .how { grid-template-columns: 1fr; } }

/* ---------- Bande des thèmes ---------- */
.marquee {
  overflow: hidden; margin-top: 1.7rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee__track { display: flex; gap: 0.7rem; width: max-content; padding-block: 0.2rem; animation: marquee 44s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.theme-chip {
  display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.5rem 1rem;
  border-radius: 999px; border: 1px solid var(--border-strong); background: var(--surface);
  font-size: 0.86rem; color: var(--muted); white-space: nowrap;
}
.theme-chip i { width: 14px; height: 14px; border-radius: 50%; background: var(--sw, var(--grad)); box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14) inset; }

/* ---------- Avantages (Accord vs Discord) ---------- */
.compare-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); }
.compare { width: 100%; min-width: 620px; border-collapse: collapse; font-size: 0.98rem; }
.compare th, .compare td { padding: 1.05rem 1.4rem; text-align: left; border-bottom: 1px solid var(--border); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare thead th { font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--faint); font-weight: 650; }
.compare tbody th { font-weight: 550; color: var(--text); }
.compare .col-accord { background: linear-gradient(180deg, rgba(139, 111, 255, 0.10), rgba(48, 202, 218, 0.06)); }
.compare thead .col-accord { color: var(--text); }
.compare td { color: var(--muted); }
.compare .yes { color: var(--cyan); font-weight: 700; }
.compare .no { color: #e2607a; font-weight: 700; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin-inline: auto; display: grid; gap: 0.8rem; }
.faq details {
  border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.faq details[open] { border-color: var(--border-strong); background: var(--surface-strong); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.15rem 1.35rem; font-weight: 600; letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.35rem; line-height: 1; color: var(--faint); transition: transform 0.3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq__body { padding: 0 1.35rem 1.25rem; color: var(--muted); font-size: 0.97rem; }
.faq__body a { color: var(--text); text-decoration: underline; }

/* ---------- Bande d'appel finale ---------- */
.cta-band {
  position: relative; overflow: hidden; text-align: center;
  border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  padding: clamp(2.6rem, 6vw, 4.4rem);
  background: linear-gradient(135deg, rgba(139, 111, 255, 0.16), rgba(91, 112, 244, 0.10) 50%, rgba(48, 202, 218, 0.14));
}
.cta-band p { color: var(--muted); max-width: 46ch; margin: 0 auto 1.9rem; }
.cta-band .hero__cta { margin-top: 0; }

/* ---------- Téléchargement : carte du système détecté + métadonnées ---------- */
.dl-card { position: relative; }
.dl-card--mine {
  border-color: rgba(91, 112, 244, 0.6); background: var(--surface-strong);
  box-shadow: 0 22px 60px -26px rgba(91, 112, 244, 0.6);
}
.dl-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.05em; padding: 0.22rem 0.75rem; border-radius: 999px; white-space: nowrap;
}
.dl-meta { display: block; margin-top: 0.7rem; color: var(--faint); font-size: 0.8rem; min-height: 1.2em; font-variant-numeric: tabular-nums; }
.dl-alt { margin-top: 0.35rem; font-size: 0.8rem; color: var(--faint); min-height: 1.2em; }
.dl-alt a { color: var(--muted); text-decoration: underline; }
.dl-fresh { text-align: center; color: var(--faint); font-size: 0.9rem; margin: -1.2rem 0 2rem; }
.dl-fresh b { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Nouveautés : notes tirées de GitHub (code + replis) ---------- */
.release code {
  font-family: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.86em; background: rgba(255, 255, 255, 0.08);
  padding: 0.1em 0.4em; border-radius: 6px;
}
.release pre {
  background: rgba(0, 0, 0, 0.38); border: 1px solid var(--border);
  border-radius: 10px; padding: 0.75rem 1rem; overflow-x: auto; margin: 0.7rem 0;
}
.release pre code { background: none; padding: 0; font-size: 0.85rem; color: var(--text); }
.release details {
  border: 1px solid var(--border); border-radius: 10px;
  background: rgba(255, 255, 255, 0.025); padding: 0.55rem 1rem; margin: 0.9rem 0;
}
.release details[open] { padding-bottom: 0.9rem; }
.release summary { cursor: pointer; font-weight: 600; color: var(--text); }
.release summary:hover { color: #fff; }
