/* ==================================================================
   R180 OUTILS · Design System
   DA Renaissance 180 exacte (source: page atelier livree).
   Inspirations: Aesop, Augustinus Bader, Cereal, Smythson, menu de palace.
   Mobile d'abord (elles sont au telephone). Angles vifs (radius 2px),
   filets fins ocre, petites capitales espacees. Zero tiret cadratin.
   ================================================================== */

/* ============ TOKENS (hex verrouilles, DA atelier) ============ */
:root {
  /* Palette */
  --ocre:        #B58A3F;   /* accent signature, usage <=5% */
  --or-deep:     #8E6B2E;
  --creme:       #F5F0E6;   /* fond principal */
  --sable:       #EBE3D0;   /* sections alternees / placeholders */
  --anthracite:  #3E342A;   /* texte + fond boutons primaires */
  --brun:        #5A4E40;   /* titres secondaires, texte sourdine */
  --brun-soft:   #7A6F5F;   /* eyebrows, legendes */
  --white-ed:    #FAF6EE;   /* cartes/champs sur creme ou sable */
  --erreur:      #B8431F;   /* rouge terre */

  --rule:        rgba(62, 52, 42, 0.20);
  --rule-soft:   rgba(62, 52, 42, 0.10);
  --rule-or:     rgba(181, 138, 63, 0.45);

  /* Type */
  --display: "Playfair Display", "Didot", "Bodoni 72", "Times New Roman", serif;
  --italic:  "Cormorant Garamond", "Garamond", "Times New Roman", serif;
  --body:    "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:    "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Rythme / rayons (sharp = signature) */
  --r: 2px;
  --shadow-float: 0 24px 60px -20px rgba(62,52,42,0.55);
  --shadow-btn: 0 1px 0 rgba(62,52,42,0.06), 0 6px 18px -10px rgba(62,52,42,0.4);
  --shadow-card: 0 2px 0 rgba(62,52,42,0.03), 0 18px 40px -28px rgba(62,52,42,0.45);

  --z-top: 100;
}

/* ============ RESET / BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--anthracite);
}
body {
  margin: 0;
  min-height: 100vh;
  background: var(--creme);
  color: var(--anthracite);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;                 /* zero overflow horizontal */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
img, picture, svg, canvas { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; -webkit-tap-highlight-color: transparent; }
input, select, textarea { font: inherit; }
::selection { background: var(--ocre); color: var(--anthracite); }
a { color: inherit; }

/* Grain minéral tres discret sur le fond (texture editoriale, non criard) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background-image:
    radial-gradient(rgba(62,52,42,0.020) 1px, transparent 1px);
  background-size: 4px 4px;
}

/* ============ APP SHELL (flux plein ecran, mobile d'abord) ============ */
.app {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;                   /* colonne lecture confortable */
  margin: 0 auto;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 0 clamp(1.15rem, 5vw, 1.9rem);
}

/* ============ EN-TETE OUTIL (wordmark + eyebrow) ============ */
.app-head {
  padding: clamp(1.4rem, 5vw, 2.1rem) 0 clamp(0.9rem, 3vw, 1.3rem);
  text-align: center;
  flex-shrink: 0;
}
.app-wordmark {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--anthracite);
  margin: 0;
  line-height: 1;
}
.app-wordmark .num {
  font-family: var(--italic);
  font-style: italic;
  color: var(--ocre);
}
.app-kicker {
  margin-top: 0.55rem;
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--brun-soft);
  font-weight: 500;
}

/* ============ EYEBROW (label centre encadre de filets ocre) ============ */
.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ocre);
  font-weight: 500;
  margin: 0 0 1.4rem;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 46px;
  height: 1px;
  background: var(--ocre);
  opacity: 0.55;
  flex-shrink: 0;
}
@media (max-width: 400px) {
  .eyebrow { gap: 0.55rem; font-size: 0.56rem; letter-spacing: 0.28em; }
  .eyebrow::before, .eyebrow::after { width: 28px; }
}

/* ============ TITRES ============ */
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.14;
  color: var(--anthracite);
  text-wrap: balance;
  margin: 0;
}
.display em, em.em-ocre {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 500;
  color: var(--ocre);
}
h1.display { font-size: clamp(1.7rem, 6vw, 2.5rem); }
h2.display { font-size: clamp(1.4rem, 5vw, 2rem); }
.lede {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.08rem, 4vw, 1.28rem);
  line-height: 1.5;
  color: var(--brun);
  text-wrap: balance;
  margin: 0;
}

/* ============ CARTE (feuille posee, radius 2px) ============ */
.card {
  background: var(--white-ed);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: clamp(1.4rem, 5vw, 2rem);
  box-shadow: var(--shadow-card);
}
.card--flat { box-shadow: none; }
.card--sable { background: var(--sable); }

/* ============ BOUTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.8rem;
  min-height: 48px;
  font-family: var(--mono);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--r);
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  text-align: center;
  line-height: 1.2;
}
.btn:disabled, .btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}
.btn--primary {
  background: var(--anthracite);
  color: var(--creme);
  border-color: var(--anthracite);
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover {
  background: var(--ocre);
  color: var(--anthracite);
  border-color: var(--ocre);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--anthracite);
  border-color: var(--anthracite);
}
.btn--ghost:hover { background: var(--anthracite); color: var(--creme); }
.btn--block { width: 100%; }
.btn .btn-arrow { font-size: 1em; line-height: 1; transition: transform .25s ease; }
.btn--primary:hover .btn-arrow { transform: translateX(3px); }

/* rangee de soumission (plein largeur dans les flux) */
.submit-row { display: flex; margin-top: 0.4rem; }
.submit-row .btn { width: 100%; padding: 1.05rem 1.5rem; }

/* ============ CHAMP DE SAISIE ============ */
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brun);
  font-weight: 500;
}
.field .req { color: var(--ocre); }
.field input, .field select {
  background: var(--white-ed);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 0.9rem 1rem;
  font-family: var(--body);
  font-size: 16px;                    /* >=16px = pas de zoom iOS */
  color: var(--anthracite);
  width: 100%;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field input::placeholder { color: var(--brun-soft); opacity: 0.7; }
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--ocre);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(181,138,63,0.12);
}
.field.error input, .field.error select { border-color: var(--erreur); }
.field .err-msg {
  display: none;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--erreur);
}
.field.error .err-msg { display: block; }
.field-hint {
  font-family: var(--italic);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--brun-soft);
}

/* ============ BARRE DE PROGRESSION (filiforme, editoriale) ============ */
.progress {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
}
.progress-track {
  height: 3px;
  background: var(--rule-soft);
  border-radius: 2px;
  overflow: hidden;
}
.progress-fill {
  position: relative;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--or-deep), var(--ocre));
  border-radius: 2px;
  transition: width .42s cubic-bezier(.22,.61,.36,1);
}
/* Liseret lumineux en tete de barre (avance qui donne envie d'aller au bout) */
.progress-fill::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 5px;
  height: 5px;
  margin-top: -2.5px;
  border-radius: 50%;
  background: var(--ocre);
  box-shadow: 0 0 6px 1px rgba(181,138,63,0.6);
  opacity: 0;
  transition: opacity .3s ease;
}
.progress-fill[style*="width"]::after { opacity: 1; }
.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brun-soft);
  font-weight: 500;
}
.progress-meta .step-count { color: var(--brun); }

/* ============ ECRAN QUESTION (une question a la fois) ============ */
.step { display: none; }
.step.is-active { display: block; animation: stepIn .3s cubic-bezier(.22,.61,.36,1) both; }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(9px); }
  to   { opacity: 1; transform: translateY(0); }
}
.q-eyebrow {
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ocre);
  font-weight: 500;
  margin: 0 0 0.7rem;
}
.q-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.35rem, 5.2vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--anthracite);
  margin: 0 0 0.5rem;
  text-wrap: balance;
}
.q-sub {
  font-family: var(--italic);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--brun);
  margin: 0 0 1.5rem;
}

/* ============ OPTIONS (choix tactiles >=44px) ============ */
.options { display: flex; flex-direction: column; gap: 0.7rem; }
.option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  text-align: left;
  padding: 1rem 1.1rem;
  min-height: 58px;
  background: var(--white-ed);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  color: var(--anthracite);
  transition: border-color .18s ease, background .18s ease, transform .1s ease, box-shadow .18s ease;
  /* apparition douce et rapide, legerement decalee entre options */
  animation: optIn .34s cubic-bezier(.22,.61,.36,1) both;
}
.option:nth-child(1) { animation-delay: .02s; }
.option:nth-child(2) { animation-delay: .06s; }
.option:nth-child(3) { animation-delay: .10s; }
.option:nth-child(4) { animation-delay: .14s; }
.option:nth-child(5) { animation-delay: .18s; }
.option:nth-child(6) { animation-delay: .22s; }
@keyframes optIn {
  from { opacity: 0; transform: translateY(7px); }
  to   { opacity: 1; transform: translateY(0); }
}
.option:hover { border-color: var(--rule-or); }
.option:active { transform: scale(0.985); }
.option .opt-mark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.option .opt-mark::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ocre);
  transform: scale(0);
  transition: transform .18s ease;
}
.option .opt-label {
  font-family: var(--body);
  font-size: 0.98rem;
  line-height: 1.35;
  color: var(--anthracite);
}
/* Confirmation de selection : coche qui se remplit avec un petit rebond premium */
.option.is-selected {
  border-color: var(--ocre);
  background: #fff;
  box-shadow: 0 0 0 1px var(--ocre) inset, var(--shadow-btn);
  transform: translateY(-1px);
}
.option.is-selected .opt-mark {
  border-color: var(--ocre);
  box-shadow: 0 0 0 3px rgba(181,138,63,0.15);
}
.option.is-selected .opt-mark::after {
  transform: scale(1);
  animation: markPop .34s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes markPop {
  0%   { transform: scale(0); }
  55%  { transform: scale(1.28); }
  100% { transform: scale(1); }
}
.option.is-selected .opt-label { color: var(--anthracite); }

/* Navigation entre questions */
.step-nav {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.step-nav .btn { flex: 1; }
.step-back {
  background: transparent;
  border: none;
  color: var(--brun-soft);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.6rem 0.4rem;
  transition: color .2s ease;
}
.step-back:hover { color: var(--anthracite); }
.step-back[hidden] { display: none; }

/* ============ ECRAN IDENTITE ============ */
.identity-intro { text-align: center; margin-bottom: 1.6rem; }
.identity-fields { display: flex; flex-direction: column; gap: 1rem; }
.identity-legal {
  font-family: var(--italic);
  font-style: italic;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--brun-soft);
  text-align: center;
  margin: 1.1rem 0 0;
}

/* ============ ECRAN DE CHARGEMENT (mise en scene) ============ */
.loader {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  padding: 3rem 0;
  animation: fadeIn .4s ease both;
}
.loader.is-active { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Sceau tournant ocre (halo editorial, pas un spinner tech) */
.loader-seal {
  position: relative;
  width: 92px;
  height: 92px;
  margin-bottom: 2rem;
}
.loader-seal svg { width: 100%; height: 100%; }
.loader-seal .seal-ring {
  fill: none;
  stroke: var(--rule);
  stroke-width: 1;
}
.loader-seal .seal-arc {
  fill: none;
  stroke: var(--ocre);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 70 210;
  transform-origin: 50% 50%;
  animation: sealSpin 1.15s linear infinite;
}
@keyframes sealSpin { to { transform: rotate(360deg); } }
.loader-seal .seal-mono {
  font-family: var(--display);
  font-size: 20px;
  fill: var(--anthracite);
}
.loader-line {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.15rem, 4.6vw, 1.45rem);
  color: var(--anthracite);
  line-height: 1.3;
  min-height: 1.9em;
  text-wrap: balance;
  transition: opacity .22s ease;
}
.loader-line em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--ocre);
}
.loader-line.is-fading { opacity: 0.18; }
.loader-dots {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.5rem;
}
.loader-dots span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ocre);
  opacity: 0.3;
  animation: dotPulse 1.2s ease-in-out infinite;
}
.loader-dots span:nth-child(2) { animation-delay: .18s; }
.loader-dots span:nth-child(3) { animation-delay: .36s; }
@keyframes dotPulse { 0%,100%{opacity:.25;transform:translateY(0)} 50%{opacity:1;transform:translateY(-3px)} }

/* ============ ECRAN RESULTAT ============ */
.result {
  display: none;
  animation: resultIn .6s ease both;
  padding-bottom: 2rem;
}
.result.is-active { display: block; }
@keyframes resultIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.result-topline {
  text-align: center;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ocre);
  font-weight: 500;
  margin: 0 0 0.4rem;
}
.result-forname {
  text-align: center;
  font-family: var(--italic);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--brun);
  margin: 0 0 1.3rem;
}
/* Carte-verdict signature */
.verdict {
  position: relative;
  background: var(--white-ed);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: clamp(1.6rem, 6vw, 2.3rem) clamp(1.3rem, 5vw, 1.9rem);
  box-shadow: var(--shadow-card);
  text-align: center;
  overflow: hidden;
}
.verdict::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--ocre), transparent);
}
.verdict-eyebrow {
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brun-soft);
  font-weight: 500;
  margin: 0 0 0.9rem;
}
.verdict-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.9rem, 8vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--anthracite);
  margin: 0 0 0.2rem;
  text-wrap: balance;
}
.verdict-name em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--ocre);
}
.verdict-tag {
  font-family: var(--italic);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.45;
  color: var(--brun);
  margin: 0.8rem auto 0;
  max-width: 34ch;
  text-wrap: balance;
}
.verdict-score {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  margin: 1.2rem 0 0;
  font-family: var(--display);
  color: var(--anthracite);
}
.verdict-score .n { font-size: 2.4rem; line-height: 1; }
.verdict-score .d { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brun-soft); }

.result-body {
  margin-top: 1.5rem;
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--anthracite);
}
.result-body p { margin: 0 0 1rem; }
.result-body em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--or-deep);
  font-size: 1.06em;
}

/* Liste de leviers / points */
.levers { list-style: none; margin: 1.4rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.9rem; }
.levers li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.95rem 1.05rem;
  background: var(--sable);
  border: 1px solid var(--rule-soft);
  border-radius: var(--r);
}
.levers li .lever-mark {
  flex-shrink: 0;
  font-family: var(--display);
  font-size: 0.9rem;
  color: var(--ocre);
  line-height: 1.5;
  min-width: 1.1em;
}
.levers li .lever-text { font-size: 0.96rem; line-height: 1.5; color: var(--anthracite); }
.levers li .lever-text strong { font-weight: 600; }

/* Filet decoratif inter-sections */
.rule-mini {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--ocre);
  opacity: 0.5;
  margin: 1.8rem auto;
}

/* ============ BLOC "COPIER DANS LE CHAT" ============ */
.copybox {
  margin-top: 1.8rem;
  background: var(--anthracite);
  border-radius: var(--r);
  padding: clamp(1.3rem, 5vw, 1.7rem);
  text-align: center;
  color: var(--creme);
}
.copybox-label {
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ocre);
  font-weight: 500;
  margin: 0 0 0.9rem;
}
.copybox-phrase {
  font-family: var(--italic);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.4;
  color: var(--creme);
  margin: 0 0 1.2rem;
  text-wrap: balance;
}
.copybox .btn--copy {
  width: 100%;
  background: var(--ocre);
  color: var(--anthracite);
  border-color: var(--ocre);
}
.copybox .btn--copy:hover { background: var(--creme); border-color: var(--creme); transform: translateY(-1px); }
.copybox .btn--copy.is-copied { background: var(--creme); color: var(--anthracite); }
.copybox-hint {
  margin: 0.9rem 0 0;
  font-family: var(--body);
  font-size: 0.8rem;
  color: rgba(245,240,230,0.65);
  line-height: 1.4;
}

/* ============ TOAST (confirmation legere) ============ */
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: var(--anthracite);
  color: var(--creme);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 1.4rem;
  border-radius: var(--r);
  box-shadow: var(--shadow-float);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  z-index: var(--z-top);
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============ PIED / MENTIONS ============ */
.app-foot {
  flex-shrink: 0;
  text-align: center;
  padding: 1.6rem 0 2rem;
  margin-top: auto;
}
.app-foot .foot-rule { width: 30px; height: 1px; background: var(--rule); margin: 0 auto 1rem; }
.app-foot p {
  font-family: var(--italic);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--brun-soft);
  margin: 0;
  line-height: 1.5;
}

/* ============ HELPERS ============ */
.center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 1.6rem; }
[hidden] { display: none !important; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============ TRES PETITS ECRANS (320px) ============ */
@media (max-width: 340px) {
  body { font-size: 15px; }
  .app { padding: 0 1rem; }
  .verdict-name { font-size: 1.7rem; }
}

/* ============ DESKTOP (confort, reste centre editorial) ============ */
@media (min-width: 640px) {
  .app { padding: 0 2rem; }
  .app-head { padding-top: 2.6rem; }
}
