/* ------------------------------------------------------------------
   Voxmatic — site vitrine
   Tokens repris de l'application (fond #0f1115, panneaux #181b22,
   accent orange #ff7a45, vert des étiquettes #34c759).
   ------------------------------------------------------------------ */

:root {
  --bg: #0f1115;
  --bg-soft: #12151b;
  --panel: #181b22;
  --panel-2: #1d212a;
  --border: #2a2f3a;
  --border-soft: #21262f;
  --accent: #ff7a45;
  --accent-2: #ffc24a;
  --green: #34c759;
  --text: #e6e8ee;
  --muted: #9aa3b2;
  --muted-dim: #6f7789;

  --grad-brand: linear-gradient(135deg, #ffc24a 0%, #ff9b3d 55%, #ff7a45 100%);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;

  --container: 1120px;
  --gutter: clamp(20px, 5vw, 40px);

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;

  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
  --ring: 0 0 0 3px rgba(255, 122, 69, 0.35);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

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

img, svg { max-width: 100%; }
a { color: inherit; }

h1, h2, h3, h4 {
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 6vw, 3.9rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.85rem, 4vw, 2.6rem); letter-spacing: -0.03em; }
h3 { font-size: 1.12rem; }

p { margin: 0 0 1em; }

::selection { background: rgba(255, 122, 69, 0.3); }

:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: var(--radius-sm);
}

/* ---------------------------------------------------------- layout */

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

.section { padding: clamp(72px, 11vw, 130px) 0; }
.section--tight { padding: clamp(56px, 8vw, 96px) 0; }
.section--alt { background: var(--bg-soft); border-block: 1px solid var(--border-soft); }

.section-head {
  max-width: 680px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}
.section-head p { color: var(--muted); font-size: 1.06rem; margin: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.section-head .eyebrow::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* --------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.97rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
    border-color 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--grad-brand);
  color: #14100c;
  box-shadow: 0 10px 30px -12px rgba(255, 122, 69, 0.85);
}
.btn--primary:hover { box-shadow: 0 16px 38px -12px rgba(255, 122, 69, 0.95); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border);
  color: var(--text);
}
.btn--ghost:hover { border-color: #3d434f; background: rgba(255, 255, 255, 0.06); }

.btn--lg { padding: 16px 30px; font-size: 1.03rem; }
.btn--sm { padding: 10px 18px; font-size: 0.9rem; }

.btn svg { width: 1.1em; height: 1.1em; flex: none; }

/* Lien d'évitement : hors écran, ramené au premier plan au focus clavier. */
.skip {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 90;
  padding: 11px 18px;
  background: var(--accent);
  color: #14100c;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}
.skip:focus-visible { transform: none; }

/* ---------------------------------------------------------- header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(15, 17, 21, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.16rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.brand__mark { width: 28px; height: 28px; flex: none; }
.brand__tld { color: var(--muted-dim); font-weight: 500; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
/* Les liens seuls : les boutons vivent aussi dans le <nav> (pour basculer
   avec lui en mobile) et gardent leur propre style. */
.nav a:not(.btn) {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav a:not(.btn):hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.nav .btn:first-of-type { margin-left: 10px; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  cursor: pointer;
}
.nav-toggle span {
  position: relative;
  display: block;
  width: 17px;
  height: 1.6px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 17px;
  height: 1.6px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before { top: -5.5px; }
.nav-toggle span::after { top: 5.5px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-5.5px) rotate(-45deg); }

/* ------------------------------------------------------------ hero */

.hero {
  position: relative;
  padding: clamp(128px, 17vw, 190px) 0 clamp(72px, 10vw, 110px);
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.hero__glow--a {
  width: 620px; height: 620px;
  top: -280px; left: 50%;
  transform: translateX(-58%);
  background: radial-gradient(circle, rgba(255, 122, 69, 0.42), transparent 68%);
}
.hero__glow--b {
  width: 460px; height: 460px;
  top: 90px; right: -180px;
  background: radial-gradient(circle, rgba(255, 194, 74, 0.18), transparent 70%);
}
.hero .container { position: relative; }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 14px 6px 8px;
  background: rgba(255, 122, 69, 0.09);
  border: 1px solid rgba(255, 122, 69, 0.28);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 26px;
}
.pill b {
  background: var(--grad-brand);
  color: #14100c;
  border-radius: 999px;
  padding: 2px 9px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 span {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lede {
  font-size: clamp(1.06rem, 1.6vw, 1.2rem);
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 32px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }

/* Deux colonnes, donc deux lignes pour quatre arguments : la liste reste
   compacte sous les boutons au lieu de s'étirer sur toute la largeur. */
.hero__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, auto));
  justify-content: start;
  gap: 10px 28px;
  color: var(--muted-dim);
  font-size: 0.87rem;
  margin: 0;
}
.hero__meta li { display: flex; align-items: center; gap: 7px; list-style: none; }
.hero__meta svg { width: 15px; height: 15px; color: var(--green); flex: none; }
.hero__meta ul, .hero__meta { padding: 0; }

/* -------------------------------------------------- maquette d'app */

.mockup {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.mockup__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
}
.mockup__dots { display: flex; gap: 6px; }
.mockup__dots i {
  width: 10px; height: 10px; border-radius: 50%;
  background: #2f3542; display: block;
}
.mockup__dots i:first-child { background: #43323a; }
.mockup__title {
  font-size: 0.78rem;
  color: var(--muted-dim);
  font-family: var(--mono);
}
.mockup__body { padding: 20px; display: grid; gap: 14px; }

.wave {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3px;
  height: 72px;
  padding: 0 2px;
}
.wave i {
  display: block;
  flex: 1;
  min-width: 2px;
  max-width: 6px;
  /* Hauteur de repli : l'animation la remplace, mais elle garde une forme
     d'onde lisible quand les animations sont désactivées. */
  height: 34%;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  opacity: 0.85;
  transform-origin: center;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { height: 14%; opacity: 0.45; }
  50% { height: 92%; opacity: 1; }
}

.rec-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.rec-row__ico {
  width: 34px; height: 34px; flex: none;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(255, 122, 69, 0.12);
  color: var(--accent);
}
.rec-row__ico svg { width: 18px; height: 18px; }
.rec-row__main { min-width: 0; flex: 1; }
.rec-row__name {
  font-size: 0.92rem; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rec-row__sub { font-size: 0.76rem; color: var(--muted-dim); }
.badge {
  font-size: 0.68rem; font-weight: 600;
  padding: 3px 9px; border-radius: 999px;
  white-space: nowrap;
}
.badge--ok { background: rgba(52, 199, 89, 0.14); color: var(--green); }
.badge--warm { background: rgba(255, 122, 69, 0.14); color: var(--accent); }

.transcript {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  font-size: 0.86rem;
  display: grid;
  gap: 11px;
}
.transcript__line { display: flex; gap: 10px; }
.transcript__time {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted-dim);
  padding-top: 2px;
  flex: none;
}
.transcript__who { color: var(--accent); font-weight: 600; }
.transcript__who--b { color: var(--green); }
.transcript p { margin: 0; color: #cfd4de; }
.caret {
  display: inline-block;
  width: 2px; height: 1em;
  background: var(--accent);
  vertical-align: -2px;
  animation: blink 1.05s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ------------------------------------------------------- bandeau 3 */

.strip { border-block: 1px solid var(--border-soft); background: var(--bg-soft); }
/* Les séparateurs sont des bordures portées par les cellules, et non des
   interstices laissant voir le fond de la grille : une cellule manquante ne
   laisse alors aucun bloc coloré derrière elle. */
.strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.strip__item {
  padding: 30px 22px;
  text-align: center;
  border-left: 1px solid var(--border-soft);
}
.strip__item:first-child { border-left: none; }
.strip__item b {
  display: block;
  font-size: clamp(1.5rem, 3vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.strip__item span { font-size: 0.85rem; color: var(--muted); }

/* ------------------------------------------------- cartes features */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: #39404d;
  background: var(--panel-2);
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.94rem; margin: 0; }

.card__ico {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: rgba(255, 122, 69, 0.1);
  border: 1px solid rgba(255, 122, 69, 0.22);
  color: var(--accent);
  margin-bottom: 18px;
}
.card__ico svg { width: 21px; height: 21px; }
.card--green .card__ico {
  background: rgba(52, 199, 89, 0.1);
  border-color: rgba(52, 199, 89, 0.24);
  color: var(--green);
}

/* ---------------------------------------------------------- étapes */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step { position: relative; padding-top: 22px; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}
.step::after {
  content: "";
  position: absolute;
  top: 10px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.4;
}
.step h3 { margin: 10px 0 6px; }
.step p { color: var(--muted); font-size: 0.93rem; margin: 0; }

/* ------------------------------------------------- section double */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 6vw, 68px);
  align-items: center;
}
.split__text h2 { margin-bottom: 14px; }
.split__text > p { color: var(--muted); font-size: 1.03rem; }

.ticks { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 13px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.96rem; }
.ticks svg { width: 19px; height: 19px; flex: none; margin-top: 3px; color: var(--green); }
.ticks b { display: block; font-weight: 600; }
.ticks span { color: var(--muted); font-size: 0.91rem; }

/* --------------------------------------------------- maquette iOS */

.phone {
  position: relative;
  width: min(290px, 78vw);
  margin-inline: auto;
  aspect-ratio: 9 / 18.6;
  background: var(--panel);
  border: 8px solid #23262e;
  border-radius: 42px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone::before {
  content: "";
  position: absolute;
  top: 9px; left: 50%;
  transform: translateX(-50%);
  width: 84px; height: 22px;
  background: #14161b;
  border-radius: 999px;
  z-index: 3;
}
.phone__head {
  padding: 44px 18px 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phone__head b { font-size: 1rem; }
.phone__head span { font-size: 0.72rem; color: var(--green); display: flex; align-items: center; gap: 5px; }
.phone__head span::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
}
.phone__list { padding: 14px; display: grid; gap: 10px; flex: 1; align-content: start; }
.phone__chips { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 2px; }
.chip {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 122, 69, 0.4);
  background: rgba(255, 122, 69, 0.08);
  color: var(--accent);
}
.chip--green {
  border-color: rgba(52, 199, 89, 0.4);
  background: rgba(52, 199, 89, 0.1);
  color: var(--green);
}
.phone__item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
}
.phone__item b { display: block; font-size: 0.83rem; font-weight: 600; }
.phone__item span { font-size: 0.7rem; color: var(--muted-dim); }
.phone__rec {
  margin-top: auto;
  padding: 16px 0 26px;
  display: grid;
  place-items: center;
  gap: 8px;
}
.phone__btn {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: grid; place-items: center;
  color: #14100c;
  box-shadow: 0 0 0 6px rgba(255, 122, 69, 0.12);
  animation: halo 2.4s ease-in-out infinite;
}
.phone__btn svg { width: 26px; height: 26px; }
@keyframes halo {
  50% { box-shadow: 0 0 0 14px rgba(255, 122, 69, 0.06); }
}
.phone__rec small { font-size: 0.7rem; color: var(--muted-dim); }

/* ------------------------------------------------------------ FAQ */

.faq { max-width: 780px; margin-inline: auto; display: grid; gap: 12px; }
.faq details {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 20px;
  transition: border-color 0.2s ease;
}
.faq details[open] { border-color: rgba(255, 122, 69, 0.35); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 10px; height: 10px;
  flex: none;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.faq p { color: var(--muted); font-size: 0.94rem; margin: 0 0 18px; }

/* ------------------------------------------------------------- CTA */

.cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 122, 69, 0.28);
  border-radius: clamp(20px, 3vw, 28px);
  background:
    radial-gradient(900px 300px at 50% -60%, rgba(255, 122, 69, 0.24), transparent 70%),
    var(--panel);
  padding: clamp(40px, 7vw, 72px) var(--gutter);
  text-align: center;
}
.cta h2 { margin-bottom: 12px; }
.cta p { color: var(--muted); max-width: 54ch; margin: 0 auto 30px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cta small { display: block; margin-top: 20px; color: var(--muted-dim); font-size: 0.83rem; }

/* ---------------------------------------------------------- footer */

.site-footer {
  border-top: 1px solid var(--border-soft);
  background: var(--bg-soft);
  padding: clamp(48px, 7vw, 72px) 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(140px, 1fr));
  gap: 40px 28px;
}
.footer__about p { color: var(--muted); font-size: 0.9rem; max-width: 34ch; margin: 14px 0 0; }
.footer h4 {
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dim);
  margin: 0 0 14px;
  font-weight: 600;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.15s ease;
}
.footer a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted-dim);
  font-size: 0.85rem;
}

/* ------------------------------------------------- pages de contenu */

.page-head { padding: clamp(120px, 15vw, 160px) 0 clamp(28px, 5vw, 48px); }
.page-head h1 { font-size: clamp(2rem, 5vw, 3rem); }
.page-head p { color: var(--muted); margin: 0; }

.prose { max-width: 760px; padding-bottom: clamp(64px, 9vw, 110px); }
.prose h2 { font-size: 1.35rem; margin: 42px 0 12px; }
.prose h3 { font-size: 1.02rem; margin: 26px 0 8px; }
.prose p, .prose li { color: var(--muted); font-size: 0.97rem; }
.prose ul { padding-left: 20px; display: grid; gap: 8px; margin-bottom: 20px; }
.prose a { color: var(--accent); text-decoration: none; }
.prose a:hover { text-decoration: underline; }
.prose strong { color: var(--text); font-weight: 600; }
.prose .note {
  background: var(--panel);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 24px 0;
}
.prose .note p:last-child { margin-bottom: 0; }
.prose table { width: 100%; border-collapse: collapse; font-size: 0.92rem; margin-bottom: 22px; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border-soft); }
.prose th { color: var(--muted-dim); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }
.prose td { color: var(--muted); }

/* -------------------------------------------------- apparition scroll */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

/* ------------------------------------------------------ responsive */

@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 520px; margin-inline: auto; width: 100%; }
  /* Deux colonnes : la bordure gauche ne subsiste que sur la colonne de
     droite, et les lignes suivantes se séparent par le haut. */
  .strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .strip__item:nth-child(odd) { border-left: none; }
  .strip__item:nth-child(n + 3) { border-top: 1px solid var(--border-soft); }
  .footer__grid { grid-template-columns: repeat(2, minmax(140px, 1fr)); }
  .footer__about { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 72px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin: 0;
    padding: 14px var(--gutter) 22px;
    background: rgba(15, 17, 21, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }
  .nav.is-open { opacity: 1; transform: none; visibility: visible; }
  .nav a { padding: 12px 14px; font-size: 1rem; }
  .nav .btn { margin: 8px 0 0; justify-content: center; }
  .nav .btn:first-of-type { margin-left: 0; }
}

@media (max-width: 560px) {
  .strip__grid { grid-template-columns: 1fr; }
  .strip__item { border-left: none; }
  .strip__item + .strip__item { border-top: 1px solid var(--border-soft); }
  /* Trop étroit pour deux colonnes : les arguments s'empilent. */
  .hero__meta { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1 1 100%; }
  .footer__bottom { justify-content: flex-start; }
}

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

/* Impression — pages légales lisibles sur papier. */
@media print {
  .site-header, .site-footer, .hero__glow { display: none; }
  body { background: #fff; color: #000; }
  .prose p, .prose li, .prose td { color: #333; }
}
