/* ==========================================================================
   ADOQ-Lab — Design System v1.0
   Langage visuel commun au site web et à la famille d'applications macOS.
   Aucune dépendance externe : polices système, aucun CDN, aucun appel réseau.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Surfaces — graphite, calquées sur la hiérarchie d'une fenêtre macOS sombre */
  --bg:            #0C0E10;   /* fond application / page          */
  --surface-1:     #121519;   /* panneau, carte                   */
  --surface-2:     #181C21;   /* ligne de liste, élément surélevé */
  --surface-3:     #1F242A;   /* survol                           */
  --line:          #272D34;   /* séparateur                       */
  --line-strong:   #38414A;   /* bordure marquée, contour fenêtre */

  /* Texte — contrastes vérifiés sur --bg (AAA) */
  --text:          #F2F3F4;   /* 17.4:1 */
  --text-soft:     #C6CBD0;   /* 11.8:1 */
  --text-muted:    #99A2AA;   /*  7.5:1 */

  /* Accents de marque.
     --accent-lab  : identité ADOQ-Lab, neutre, commune à tout le site.
     --accent-<x>  : accent propre à chaque application de la famille.
     Le token actif est --accent ; il se redéfinit par [data-product]. */
  --accent-lab:    #8FA8BC;   /* acier      — ADOQ-Lab          7.8:1 */
  --accent-vm:     #C9A85F;   /* or         — Voyager Manager   8.5:1 */
  --accent-mu:     #6FB1A8;   /* turquoise  — MIDI Utilities    7.9:1 */
  --accent-res-1:  #B08AC4;   /* réservé    — futur produit           */
  --accent-res-2:  #C08D6A;   /* réservé    — futur produit           */

  --accent:        var(--accent-lab);
  --accent-ink:    #0B0D0F;   /* texte posé sur un aplat d'accent 7.6:1+ */

  /* États fonctionnels */
  --success:       #7FB069;
  --warning:       #D3A34A;
  --danger:        #C4756F;

  /* Typographie — pile système : le site rend avec la même police que les apps */
  --font-ui:   -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* Échelle typographique fluide */
  --fs-display: clamp(52px, 7.2vw, 104px);
  --fs-h1:      clamp(38px, 4.6vw, 62px);
  --fs-h2:      clamp(28px, 3.1vw, 42px);
  --fs-h3:      19px;
  --fs-body:    17px;
  --fs-small:   15px;
  --fs-mono:    11px;

  /* Espacement — base 4 */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;

  /* Formes — rayon retenu du langage macOS, volontairement discret */
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 10px;

  /* Élévation */
  --shadow-panel:  0 1px 2px rgba(0,0,0,.4);
  --shadow-window: 0 24px 70px rgba(0,0,0,.55);

  /* Mouvement */
  --motion: 170ms cubic-bezier(.4,0,.2,1);

  /* Gabarit */
  --max:    1240px;
  --gutter: 28px;
}

/* Accent par produit — se pose sur <html data-product="..."> */
[data-product="voyager-manager"] { --accent: var(--accent-vm); }
[data-product="midi-utilities"]  { --accent: var(--accent-mu); }

/* --------------------------------------------------------------------------
   2. BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
p { margin: 0 0 var(--s-4); }
h1, h2, h3 { margin: 0; line-height: 1.1; letter-spacing: -.02em; }
svg { display: block; }
img { max-width: 100%; height: auto; }

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

.skip-link {
  position: absolute; left: var(--s-4); top: -60px; z-index: 100;
  padding: var(--s-3) var(--s-5);
  background: var(--accent); color: var(--accent-ink);
  font-weight: 700; border-radius: var(--r-md);
  transition: top var(--motion);
}
.skip-link:focus { top: var(--s-4); }

.shell { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }

/* Libellé technique monospace — signature visuelle partagée avec les apps */
.kicker,
.section-head > p,
.meta-row,
.status-pill,
.coming-soon,
.product-copy > p:first-child,
.status-card > div > span:first-child {
  margin: 0;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lead { max-width: 60ch; font-size: clamp(18px, 1.5vw, 21px); color: var(--text-soft); }
.muted { color: var(--text-muted); }
.text-link { display: inline-block; color: var(--accent); font-weight: 600; font-size: var(--fs-small); }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

/* --------------------------------------------------------------------------
   3. EN-TÊTE ET NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12,14,16,.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
  width: 100%; max-width: var(--max); margin-inline: auto;
  min-height: 74px; padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-5);
}

/* Marque : signature typographique seule. Aucun symbole n'est posé devant le
   nom tant qu'un logo n'a pas été arrêté. */
.brand { display: flex; align-items: center; font-weight: 800; letter-spacing: .01em; }
.brand-name { font-size: 20px; }
.brand:hover .brand-name { color: var(--text); }

.nav-right { display: flex; align-items: center; gap: var(--s-5); }

.main-nav { display: flex; align-items: center; gap: var(--s-5); }
.main-nav a {
  position: relative; padding-block: var(--s-2);
  font-size: var(--fs-small); color: var(--text-muted);
  transition: color var(--motion);
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--text); }
.main-nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--accent);
}

.lang-switch {
  display: flex; align-items: center; flex: none;
  padding: 2px; border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--surface-1);
}
.lang-switch a {
  min-width: 38px; padding: 5px 8px; border-radius: var(--r-sm);
  font-family: var(--font-mono); font-size: var(--fs-mono); font-weight: 600;
  letter-spacing: .1em; text-align: center; color: var(--text-muted);
  transition: color var(--motion), background var(--motion);
}
.lang-switch a:hover { color: var(--text); }
.lang-switch a[aria-current="true"] { background: var(--accent); color: var(--accent-ink); }

/* Bouton du menu mobile — masqué tant que la navigation tient en ligne */
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 42px; height: 38px; padding: 0;
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--surface-1); color: var(--text); cursor: pointer;
}
.nav-toggle span {
  position: relative; display: block; width: 16px; height: 1.5px;
  background: currentColor; transition: background var(--motion);
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 16px; height: 1.5px;
  background: currentColor; transition: transform var(--motion), top var(--motion);
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after  { top:  5px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* --------------------------------------------------------------------------
   4. SECTIONS
   -------------------------------------------------------------------------- */
.section {
  width: 100%; max-width: var(--max); margin-inline: auto;
  padding: var(--s-9) var(--gutter);
  border-top: 1px solid var(--line);
}

.section-head {
  display: grid; grid-template-columns: 200px 1fr; gap: var(--s-7);
  align-items: start; margin-bottom: var(--s-7);
}
.section-head h2 { font-size: var(--fs-h2); }
.section-head > div > p { margin-top: var(--s-4); color: var(--text-muted); max-width: 62ch; }

/* --------------------------------------------------------------------------
   5. HERO
   -------------------------------------------------------------------------- */
.hero {
  width: 100%; max-width: var(--max); margin-inline: auto;
  padding: var(--s-10) var(--gutter);
  display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--s-8);
  align-items: center;
}
.hero h1 { font-size: var(--fs-display); line-height: .9; letter-spacing: -.045em; margin: var(--s-5) 0; }
.hero h1 span { color: var(--accent); }
.hero .lead { margin-bottom: 0; }

.page-hero {
  width: 100%; max-width: var(--max); margin-inline: auto;
  padding: var(--s-9) var(--gutter) var(--s-8);
}
.page-hero h1 { font-size: var(--fs-h1); margin: var(--s-5) 0; }

.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-6); }

.meta-row { display: flex; flex-wrap: wrap; gap: var(--s-5); margin-top: var(--s-6); }

/* --------------------------------------------------------------------------
   6. BOUTONS
   -------------------------------------------------------------------------- */
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding-inline: var(--s-5);
  border: 1px solid var(--line-strong); border-radius: var(--r-md);
  font-size: var(--fs-small); font-weight: 700;
  transition: background var(--motion), border-color var(--motion), color var(--motion);
}
.button.primary { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.button.primary:hover { filter: brightness(1.08); }
.button.ghost:hover { border-color: var(--accent); color: var(--accent); }
.button[aria-disabled="true"] { opacity: .45; pointer-events: none; }

/* --------------------------------------------------------------------------
   7. FENÊTRE D'APPLICATION (visuel CSS)
   Reproduit la structure d'une fenêtre de la famille ADOQ-Lab : barre de titre,
   colonne latérale de navigation, zone de contenu. C'est la pièce qui relie
   visuellement le site aux applications ; elle ne pèse aucun octet d'image.
   -------------------------------------------------------------------------- */
.app-window {
  border: 1px solid var(--line-strong); border-radius: var(--r-lg);
  background: var(--surface-1); box-shadow: var(--shadow-window);
  overflow: hidden;
}
.app-window-bar {
  display: flex; align-items: center; gap: var(--s-2);
  height: 42px; padding-inline: var(--s-4);
  background: var(--surface-2); border-bottom: 1px solid var(--line);
}
.app-window-bar i { width: 8px; height: 8px; border-radius: 50%; background: var(--line-strong); flex: none; }
.app-window-bar b {
  margin-left: var(--s-3);
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: .16em; color: var(--text-muted);
}
.app-window-body { display: grid; grid-template-columns: 158px 1fr; min-height: 380px; }

.app-sidebar {
  display: flex; flex-direction: column; gap: var(--s-3);
  padding: var(--s-5) var(--s-4);
  border-right: 1px solid var(--line); background: var(--surface-1);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em;
  color: var(--text-muted);
}
.app-sidebar b { color: var(--accent); font-weight: 700; letter-spacing: .16em; }
.app-sidebar b + span { margin-top: -2px; }
.app-sidebar span.on { color: var(--text); }

.app-main { padding: var(--s-6); background: var(--surface-1); }
.app-main > p {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: var(--s-4);
}
.app-main h3 {
  font-family: var(--font-mono); font-size: clamp(20px, 2vw, 27px);
  font-weight: 700; letter-spacing: -.02em; margin-bottom: var(--s-6);
}
.app-rows { display: grid; gap: var(--s-2); }
.app-rows i {
  display: block; height: 30px; border-radius: var(--r-sm);
  background: var(--surface-2); border-left: 2px solid transparent;
}
.app-rows i.sel { border-left-color: var(--accent); background: var(--surface-3); }
.app-meter { height: 3px; margin-top: var(--s-6); border-radius: 2px; background: var(--surface-3); }
.app-meter i { display: block; width: 68%; height: 100%; border-radius: 2px; background: var(--accent); }

/* --------------------------------------------------------------------------
   8. GRILLES ET CARTES
   -------------------------------------------------------------------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }

.card {
  padding: var(--s-6);
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--surface-1); box-shadow: var(--shadow-panel);
}
.card > span {
  display: block; margin-bottom: var(--s-4);
  font-family: var(--font-mono); font-size: var(--fs-mono); font-weight: 600;
  letter-spacing: .16em; color: var(--accent);
}
.card h3 { font-size: var(--fs-h3); margin-bottom: var(--s-3); }
.card p:last-child { margin-bottom: 0; color: var(--text-muted); font-size: var(--fs-small); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }

/* Carte produit */
.product-card {
  display: grid; grid-template-columns: 168px 1fr auto; align-items: stretch;
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--surface-1); overflow: hidden;
  transition: border-color var(--motion), background var(--motion);
}
.product-card:hover { border-color: var(--accent); background: var(--surface-2); }
.product-id {
  display: grid; place-content: center; gap: var(--s-2); text-align: center;
  padding: var(--s-6); border-right: 1px solid var(--line); background: var(--surface-2);
}
.product-id span {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; color: var(--text-muted);
}
.product-id b { font-family: var(--font-mono); font-size: 40px; color: var(--accent-vm); letter-spacing: -.03em; }
.product-copy { padding: var(--s-6); }
.product-copy h3 { font-size: 27px; margin: var(--s-3) 0; }
.product-copy > p:last-of-type { color: var(--text-muted); max-width: 64ch; }
.product-status {
  display: grid; place-content: center; gap: var(--s-3); justify-items: center;
  padding: var(--s-6); border-left: 1px solid var(--line);
}

/* Pastille d'état */
.status-pill {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: var(--s-2) var(--s-3);
  border: 1px solid var(--line-strong); border-radius: 999px;
  background: var(--surface-2); color: var(--text-soft); white-space: nowrap;
}
.status-pill::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--warning); flex: none;
}
.status-pill.is-off::before { background: var(--text-muted); }
.status-pill.is-on::before  { background: var(--success); }

/* Panneau d'état large */
.status-card {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-7);
  padding: var(--s-6);
  border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface-1);
}
.status-card h3 { font-size: var(--fs-h3); margin: var(--s-3) 0; }
.status-card p { margin-bottom: 0; color: var(--text-muted); max-width: 72ch; font-size: var(--fs-small); }

.panel {
  padding: var(--s-6);
  border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface-1);
}
.panel p:last-child { margin-bottom: 0; }
.panel p { max-width: 78ch; }

/* Section À propos : un seul bloc, au registre personnel, légèrement mis en
   avant par le filet d'accent et un corps de texte un peu plus grand. */
.about-lead { border-left: 2px solid var(--accent); }
.about-lead p { color: var(--text-soft); font-size: 18px; }

.coming-soon {
  margin-top: var(--s-6); padding: var(--s-6);
  border: 1px dashed var(--line-strong); border-radius: var(--r-md);
  text-align: center; color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   GALERIE DE CAPTURES
   Les captures sont posées en background-image et non en <img> : un clic droit
   sur un fond CSS n'offre pas « Enregistrer l'image sous », et aucun lien ne
   pointe vers le fichier. La protection réelle reste le filigrane incrusté
   dans le pixel — une image affichée par un navigateur est toujours présente
   dans son cache, aucune technique web ne change cela.
   -------------------------------------------------------------------------- */
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4);
}
.shot { margin: 0; display: flex; flex-direction: column; gap: var(--s-3); }
.shot-wide { grid-column: span 2; grid-row: span 2; }

.shot-open {
  display: block; width: 100%; padding: 0; cursor: zoom-in;
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--surface-1); overflow: hidden;
  transition: border-color var(--motion), transform var(--motion);
}
.shot-open:hover { border-color: var(--accent); }
.shot-open:hover .shot-img { transform: scale(1.015); }

.shot-img {
  display: block; width: 100%; aspect-ratio: 1800 / 1088;
  background-size: cover; background-position: top center; background-repeat: no-repeat;
  transition: transform var(--motion);
  /* neutralise la sélection, le glisser-déposer et l'appui long mobile */
  -webkit-user-select: none; user-select: none;
  -webkit-user-drag: none; -webkit-touch-callout: none;
  pointer-events: none;
}
.shot figcaption { font-size: var(--fs-small); color: var(--text-muted); }
.shot-wide figcaption { font-size: var(--fs-body); color: var(--text-soft); }

/* Visionneuse */
.lightbox {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center; padding: var(--s-5);
  background: rgba(6, 8, 9, .93);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.lightbox.is-open { display: flex; }
body.lightbox-open { overflow: hidden; }

.lightbox-dialog {
  position: relative; width: min(1500px, 100%); max-height: 100%;
  display: flex; flex-direction: column; gap: var(--s-4);
}
.lightbox-img {
  width: 100%; aspect-ratio: 1800 / 1088; max-height: calc(100vh - 190px);
  border: 1px solid var(--line-strong); border-radius: var(--r-lg);
  background-size: contain; background-position: center; background-repeat: no-repeat;
  background-color: var(--surface-1);
  -webkit-user-select: none; user-select: none;
  -webkit-user-drag: none; -webkit-touch-callout: none;
}
.lightbox-bar {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
}
.lightbox-caption { font-size: var(--fs-small); color: var(--text-soft); margin: 0; }
.lightbox-count {
  flex: none; font-family: var(--font-mono); font-size: var(--fs-mono);
  letter-spacing: .14em; color: var(--text-muted);
}
.lightbox-controls { display: flex; gap: var(--s-2); }
.lightbox-btn {
  display: grid; place-items: center; width: 42px; height: 42px; padding: 0;
  border: 1px solid var(--line-strong); border-radius: var(--r-md);
  background: var(--surface-1); color: var(--text); cursor: pointer;
  font-size: 18px; line-height: 1;
  transition: border-color var(--motion), color var(--motion);
}
.lightbox-btn:hover { border-color: var(--accent); color: var(--accent); }
.lightbox-close { position: absolute; top: calc(-1 * var(--s-6)); right: 0; }

@media (max-width: 1000px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .shot-wide { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 720px) {
  .gallery { grid-template-columns: 1fr; }
  .shot-wide { grid-column: auto; }
  .lightbox { padding: var(--s-3); }
  .lightbox-close { top: calc(-1 * var(--s-5)); }
  .lightbox-bar { flex-wrap: wrap; }
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-7); }
.contact-mail {
  display: inline-block; margin-bottom: var(--s-4);
  font-size: clamp(20px, 2.2vw, 28px); font-weight: 700; color: var(--accent);
  word-break: break-word;
}
.contact-mail:hover { text-decoration: underline; text-underline-offset: 5px; }

/* Mention légale */
.legal-box { border-left: 2px solid var(--accent); }
.legal-box p { font-size: var(--fs-small); }

/* --------------------------------------------------------------------------
   9. PIED DE PAGE
   -------------------------------------------------------------------------- */
.site-footer {
  width: 100%; max-width: var(--max); margin-inline: auto;
  padding: var(--s-7) var(--gutter);
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: var(--s-5);
}
.site-footer strong { display: block; font-size: var(--fs-small); }
.site-footer span { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; color: var(--text-muted); }
.footer-right { text-align: right; }

.socials { display: flex; gap: var(--s-2); }
.socials a {
  display: grid; place-items: center; width: 38px; height: 38px;
  border: 1px solid var(--line); border-radius: var(--r-md);
  color: var(--text-muted);
  transition: color var(--motion), border-color var(--motion);
}
.socials a:hover { color: var(--accent); border-color: var(--accent); }
.socials svg { width: 17px; height: 17px; fill: currentColor; }

/* --------------------------------------------------------------------------
   10. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; gap: var(--s-7); padding-block: var(--s-8); }
  .section-head { grid-template-columns: 1fr; gap: var(--s-4); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card { grid-template-columns: 140px 1fr; }
  .product-status { grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--line); }
}

@media (max-width: 860px) {
  /* La navigation bascule en panneau déroulant : aucun lien n'est perdu. */
  .nav-toggle { display: inline-flex; }
  .main-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: var(--s-3) var(--gutter) var(--s-5);
    background: var(--bg); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-window);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: var(--s-4) 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a[aria-current="page"]::after { display: none; }
  .main-nav a[aria-current="page"] { color: var(--accent); }
  .site-header { position: sticky; }
  .nav-shell { position: relative; }
}

@media (max-width: 720px) {
  :root { --gutter: 18px; --s-9: 64px; --s-10: 72px; }
  .grid-3, .grid-2, .feature-grid, .contact-grid { grid-template-columns: 1fr; }
  .product-card { grid-template-columns: 1fr; }
  .product-id { border-right: 0; border-bottom: 1px solid var(--line); padding-block: var(--s-5); }
  .product-id b { font-size: 34px; }
  .app-window-body { grid-template-columns: 112px 1fr; min-height: 300px; }
  .app-sidebar { padding: var(--s-4) var(--s-3); font-size: 9px; }
  .app-main { padding: var(--s-5); }
  .status-card { flex-direction: column; align-items: flex-start; gap: var(--s-5); }
  .site-footer { grid-template-columns: 1fr; text-align: left; }
  .footer-right { text-align: left; }
  .hero-actions .button { flex: 1 1 auto; }
}

/* --------------------------------------------------------------------------
   11. PRÉFÉRENCES UTILISATEUR
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
}

@media print {
  .site-header, .socials, .hero-actions, .skip-link { display: none; }
  body { background: #fff; color: #000; }
}
