/* Page d’orientation `/` — couches locales minimales (charte 21bis). */
/* Interdit dans la charte : dégradés décoratifs — fond plat jetons. */

body.page-orientation {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--police);
  font-size: var(--t-corps);
  line-height: var(--i-corps);
  color: var(--texte-principal);
  background: var(--fond-app);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--esp-6);
  gap: var(--esp-8);
}

body.page-orientation .marque {
  margin: 0;
  font-family: var(--police-titre);
  font-size: var(--t-titre-1);
  font-weight: var(--g-forte);
  color: var(--texte-principal);
  letter-spacing: -0.02em;
}
body.page-orientation .marque::after {
  content: '.';
  color: var(--action);
}
body.page-orientation .accroche {
  margin: var(--esp-2) 0 0;
  color: var(--texte-secondaire);
  text-align: center;
  max-width: 22rem;
  font-size: var(--t-corps);
  font-weight: var(--g-normale);
}
body.page-orientation .choix {
  display: grid;
  gap: var(--esp-4);
  width: min(100%, 22rem);
}
body.page-orientation a.choix-carte {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: var(--esp-4);
  background: var(--surface);
  border: 1px solid var(--bordure);
  border-radius: var(--rayon-carte);
  box-shadow: var(--ombre-carte);
  min-height: var(--cible);
  transition: border-color 150ms ease-out, transform 150ms ease-out;
}
body.page-orientation a.choix-carte:hover,
body.page-orientation a.choix-carte:focus-visible {
  border-color: var(--bordure-active);
  outline: none;
  transform: translateY(-1px);
}
body.page-orientation a.choix-carte h2 {
  margin: 0 0 var(--esp-1);
  font-family: var(--police-titre);
  font-size: var(--t-titre-3);
  font-weight: var(--g-semi);
}
body.page-orientation a.choix-carte p {
  margin: 0;
  color: var(--texte-secondaire);
  font-size: var(--t-petit);
}
body.page-orientation .demo-acces {
  display: none;
  width: min(100%, 22rem);
  padding: var(--esp-4);
  border: 1px dashed var(--bordure);
  border-radius: var(--rayon-carte);
  background: var(--surface);
  gap: var(--esp-3);
  flex-direction: column;
}
body.page-orientation .demo-acces[data-visible='true'] {
  display: flex;
}
body.page-orientation .demo-acces h2 {
  margin: 0;
  font-family: var(--police-titre);
  font-size: var(--t-titre-3);
  font-weight: var(--g-semi);
}
body.page-orientation .demo-acces p {
  margin: 0;
  color: var(--texte-secondaire);
  font-size: var(--t-petit);
}
body.page-orientation .demo-actions {
  display: grid;
  gap: var(--esp-2);
}
body.page-orientation .demo-actions button {
  min-height: var(--cible);
  font: inherit;
  font-weight: var(--g-semi);
  border-radius: var(--rayon-controle);
  border: 1px solid var(--bordure);
  background: var(--surface);
  color: var(--texte-principal);
  cursor: pointer;
  padding: var(--esp-2) var(--esp-3);
}
body.page-orientation .demo-actions button:hover,
body.page-orientation .demo-actions button:focus-visible {
  border-color: var(--bordure-active);
  outline: none;
}
body.page-orientation #message-demo {
  margin: 0;
  font-size: var(--t-petit);
  color: var(--texte-secondaire);
  min-height: 1.2em;
}
@media (prefers-reduced-motion: reduce) {
  body.page-orientation a.choix-carte { transition: none; }
  body.page-orientation a.choix-carte:hover { transform: none; }
}
