/* ============================================================
   Ose — Site vitrine
   Palette institutionnelle stricte
   ============================================================ */

:root {
  --bleu-profond: #0B3D91;
  --bleu-nuit: #08294F;
  --bleu-cyan: #1EA7FF;
  --cyan-clair: #4FC0FF;
  --vert-emeraude: #00B894;
  --texte: #0E1A26;
  --texte-sec: #5A6B7D;
  --fond: #F5F8FB;
  --filet: #E4EAF0;
  --blanc: #FFFFFF;
  --ombre: 0 4px 16px rgba(11, 61, 145, 0.08);
  --ombre-forte: 0 8px 28px rgba(11, 61, 145, 0.12);
  --rayon: 10px;
  --rayon-sm: 6px;
  --max: 1120px;
  --nav-h: 64px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Reset minimal */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--texte);
  background: var(--blanc);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--bleu-profond); text-decoration: none; }
a:hover { color: var(--bleu-cyan); }
ul, ol { list-style: none; }
code {
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, monospace;
  font-size: 0.9em;
  background: var(--fond);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

/* Utilitaires */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bleu-cyan);
  margin-bottom: 0.5rem;
}
.section {
  padding: 4.5rem 0;
}
.section--alt { background: var(--fond); }
.section--dark {
  background: linear-gradient(160deg, var(--bleu-nuit) 0%, var(--bleu-profond) 100%);
  color: var(--blanc);
}
.section__header {
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.section__header--light .eyebrow { color: var(--cyan-clair); }
.section__header--light h2 { color: var(--blanc); }
.section__header--light .section__intro { color: rgba(255,255,255,0.8); }
.section__intro {
  margin-top: 0.75rem;
  color: var(--texte-sec);
  font-size: 1.0625rem;
}
.section__cta { margin-top: 2rem; text-align: center; }

h1, h2, h3 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--texte);
}
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.125rem; }

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn--sm { padding: 0.5rem 1.1rem; font-size: 0.875rem; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--bleu-profond);
  color: var(--blanc);
  border-color: var(--bleu-profond);
}
.btn--primary:hover {
  background: var(--bleu-nuit);
  border-color: var(--bleu-nuit);
  color: var(--blanc);
}
.btn--secondary {
  background: var(--blanc);
  color: var(--bleu-profond);
  border-color: var(--bleu-profond);
}
.btn--secondary:hover {
  background: var(--fond);
  color: var(--bleu-profond);
}
.btn--ghost {
  background: transparent;
  color: var(--bleu-profond);
  border-color: var(--filet);
}
.btn--ghost:hover {
  border-color: var(--bleu-profond);
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--filet);
  backdrop-filter: blur(8px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--bleu-profond);
  text-decoration: none;
}
.nav__logo:hover { color: var(--bleu-profond); }
.nav__logo-mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav__menu ul {
  display: flex;
  gap: 1.25rem;
}
.nav__menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--texte-sec);
  text-decoration: none;
}
.nav__menu a:hover,
.nav__menu a:focus-visible {
  color: var(--bleu-profond);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--texte);
  border-radius: 1px;
}

/* Héros */
.hero {
  padding: 3.5rem 0 4rem;
  background: var(--fond);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero__lead {
  margin: 1rem 0 1.75rem;
  color: var(--texte-sec);
  font-size: 1.0625rem;
  max-width: 36em;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}
.hero__badges li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--texte-sec);
}
.badge-icon {
  color: var(--vert-emeraude);
  font-size: 0.7rem;
}
.screenshot-frame {
  background: var(--blanc);
  border-radius: var(--rayon);
  box-shadow: var(--ombre-forte);
  overflow: hidden;
  border: 1px solid var(--filet);
}
.screenshot-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: linear-gradient(135deg, #e8eef5 0%, #d0dce8 100%);
}

/* Stats */
.stats {
  padding: 2.5rem 0;
  background: var(--bleu-profond);
  color: var(--blanc);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat__icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  margin-bottom: 0.5rem;
  color: var(--cyan-clair);
  opacity: 0.85;
}
.stat__icon svg { width: 100%; height: 100%; }
.stat__value {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--cyan-clair);
  line-height: 1.2;
}
.stat__label {
  display: block;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  opacity: 0.9;
}

/* Cards */
.cards {
  display: grid;
  gap: 1.25rem;
}
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--highlight { margin-top: 1.5rem; }
.card {
  background: var(--blanc);
  border: 1px solid var(--filet);
  border-radius: var(--rayon);
  padding: 1.5rem;
  box-shadow: var(--ombre);
}
.card h3 { margin-bottom: 0.5rem; color: var(--bleu-profond); }
.card p { color: var(--texte-sec); font-size: 0.9375rem; }
.card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  color: var(--bleu-cyan);
}
.card__icon svg { width: 100%; height: 100%; }
.card--accent {
  border-color: var(--bleu-cyan);
  background: linear-gradient(135deg, #f0f8ff 0%, var(--blanc) 100%);
}
.card--download {
  text-align: center;
}
.card--download h3 { font-size: 1.375rem; }
.card__icon--os {
  margin-inline: auto;
  width: 44px;
  height: 44px;
}
.card__meta {
  font-size: 0.875rem;
  color: var(--texte-sec);
  margin-bottom: 1rem;
}
.card__list {
  text-align: left;
  margin: 1rem 0 1.5rem;
  font-size: 0.9375rem;
  color: var(--texte-sec);
}
.card__list li { padding: 0.25rem 0; }
.card__list li::before {
  content: "– ";
  color: var(--bleu-cyan);
}
.card__link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bleu-profond);
}
.card__link:hover { color: var(--bleu-cyan); }
.card--video .card__thumb {
  height: 120px;
  background: linear-gradient(135deg, var(--bleu-nuit), var(--bleu-profond));
  border-radius: var(--rayon-sm);
  margin-bottom: 1rem;
}

/* Gallery */
.gallery__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--filet);
  padding-bottom: 0.75rem;
}
.gallery__tabs button {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: inherit;
  background: transparent;
  border: none;
  border-radius: 999px;
  color: var(--texte-sec);
  cursor: pointer;
}
.gallery__tabs button[aria-selected="true"] {
  background: var(--bleu-profond);
  color: var(--blanc);
}
.gallery__tabs button:hover:not([aria-selected="true"]) {
  background: var(--filet);
  color: var(--texte);
}
.gallery__panel figure {
  background: var(--blanc);
  border-radius: var(--rayon);
  overflow: hidden;
  border: 1px solid var(--filet);
  box-shadow: var(--ombre);
}
.gallery__panel img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: linear-gradient(135deg, #e8eef5 0%, #d0dce8 100%);
}
.gallery__panel figcaption {
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--texte-sec);
}

/* Guide */
.guide {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
}
.guide__steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.guide__steps li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.guide__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bleu-profond);
  color: var(--blanc);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 50%;
}
.guide__steps h3 { margin-bottom: 0.25rem; }
.guide__steps p { color: var(--texte-sec); font-size: 0.9375rem; }
.guide__aside {
  background: var(--blanc);
  border: 1px solid var(--filet);
  border-radius: var(--rayon);
  padding: 1.5rem;
  box-shadow: var(--ombre);
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}
.guide__aside h3 { margin-bottom: 0.5rem; color: var(--bleu-profond); }
.guide__aside p { color: var(--texte-sec); font-size: 0.9375rem; margin-bottom: 1.25rem; }
.guide__aside .btn { margin-bottom: 0.5rem; }

/* Versions */
.versions__tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.versions__tabs button {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  background: var(--blanc);
  border: 1px solid var(--filet);
  border-radius: 999px;
  color: var(--texte-sec);
  cursor: pointer;
}
.versions__tabs button[aria-selected="true"] {
  background: var(--bleu-profond);
  border-color: var(--bleu-profond);
  color: var(--blanc);
}
.version {
  background: var(--blanc);
  border: 1px solid var(--filet);
  border-radius: var(--rayon);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}
.version__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.version__num {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--bleu-profond);
}
.version__date {
  font-size: 0.875rem;
  color: var(--texte-sec);
}
.tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}
.tag--current { background: var(--vert-emeraude); color: var(--blanc); }
.tag--new { background: #e8f4ff; color: var(--bleu-profond); }
.tag--fix { background: var(--filet); color: var(--texte-sec); }
.version ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--texte-sec);
  font-size: 0.9375rem;
}
.version li { margin-bottom: 0.25rem; }

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin-inline: auto;
}
.pricing--single {
  grid-template-columns: 1fr;
  max-width: 420px;
}
.pricing__card {
  background: var(--blanc);
  border: 1px solid var(--filet);
  border-radius: var(--rayon);
  padding: 2rem;
  box-shadow: var(--ombre);
  display: flex;
  flex-direction: column;
}
.pricing__card--featured {
  border-color: var(--vert-emeraude);
  border-width: 2px;
  box-shadow: var(--ombre-forte);
}
.pricing__badge {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--texte-sec);
  margin-bottom: 0.75rem;
}
.pricing__card--featured .pricing__badge { color: var(--vert-emeraude); }
.pricing__card h3 {
  font-size: 2.25rem;
  color: var(--bleu-profond);
  margin-bottom: 0.25rem;
}
.pricing__period {
  font-size: 0.875rem;
  color: var(--texte-sec);
  margin-bottom: 1.5rem;
}
.pricing__card ul {
  list-style: none;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}
.pricing__card li {
  padding: 0.4rem 0;
  font-size: 0.9375rem;
  color: var(--texte-sec);
  padding-left: 1.5rem;
  position: relative;
}
.pricing__card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--vert-emeraude);
  font-weight: 700;
}
.pricing__note {
  max-width: 640px;
  margin: 2.5rem auto 0;
  padding: 1.5rem;
  background: var(--fond);
  border-radius: var(--rayon);
  border: 1px solid var(--filet);
}
.pricing__note h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--bleu-profond);
}
.pricing__note p {
  font-size: 0.9375rem;
  color: var(--texte-sec);
}

/* FAQ */
.faq { max-width: 720px; }
.faq__item {
  border: 1px solid var(--filet);
  border-radius: var(--rayon);
  margin-bottom: 0.75rem;
  background: var(--blanc);
}
.faq__item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--bleu-cyan);
  flex-shrink: 0;
}
.faq__item[open] summary::after { content: "−"; }
.faq__body {
  padding: 0 1.25rem 1.25rem;
  color: var(--texte-sec);
  font-size: 0.9375rem;
}
.faq__body p { margin-bottom: 0.5rem; }

/* Contact */
.contact { text-align: center; }
.contact__cta { margin: 1.5rem 0 1rem; }
.contact__note {
  font-size: 0.875rem;
  color: var(--texte-sec);
}

/* Footer */
.footer {
  background: var(--bleu-nuit);
  color: rgba(255,255,255,0.85);
  padding-top: 3.5rem;
}
.footer a { color: rgba(255,255,255,0.75); }
.footer a:hover { color: var(--cyan-clair); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.footer__brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 0.25rem;
}
.footer__tagline {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.footer__credit {
  font-size: 0.8125rem;
  opacity: 0.7;
}
.footer__col h3 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cyan-clair);
  margin-bottom: 1rem;
}
.footer__col ul li { margin-bottom: 0.4rem; }
.footer__col ul a { font-size: 0.875rem; }
.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--blanc);
  transition: background 0.15s, transform 0.15s;
}
.footer__social a:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
.footer__social svg {
  width: 18px;
  height: 18px;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  font-size: 0.8125rem;
  opacity: 0.7;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bleu-nuit);
  color: var(--blanc);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
  box-shadow: var(--ombre-forte);
  z-index: 200;
}

/* Dark section cards */
.section--dark .card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: var(--blanc);
}
.section--dark .card h3 { color: var(--blanc); }
.section--dark .card p,
.section--dark .card__meta,
.section--dark .card__list { color: rgba(255,255,255,0.75); }
.section--dark .btn--primary {
  background: var(--cyan-clair);
  border-color: var(--cyan-clair);
  color: var(--bleu-nuit);
}
.section--dark .btn--primary:hover {
  background: var(--blanc);
  border-color: var(--blanc);
  color: var(--bleu-nuit);
}

/* Responsive */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .cards--3 { grid-template-columns: 1fr 1fr; }
  .guide { grid-template-columns: 1fr; }
  .guide__aside { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--blanc);
    border-bottom: 1px solid var(--filet);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.5rem;
    box-shadow: var(--ombre);
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu ul {
    flex-direction: column;
    gap: 0;
  }
  .nav__menu ul a {
    display: block;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--filet);
  }
  .nav__menu .btn { margin-top: 0.75rem; text-align: center; }
  .cards--2,
  .cards--3 { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero { padding: 2rem 0 3rem; }
  .section { padding: 3rem 0; }
  .gallery__tabs { gap: 0.35rem; }
  .gallery__tabs button { padding: 0.4rem 0.75rem; font-size: 0.8125rem; }
}

@media (max-width: 400px) {
  .stats__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--bleu-cyan);
  outline-offset: 2px;
}
button:focus:not(:focus-visible),
a:focus:not(:focus-visible) { outline: none; }

/* Page 404 */
.erreur {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.erreur__code {
  font-size: clamp(3.5rem, 12vw, 6rem);
  font-weight: 700;
  color: var(--bleu-profond);
  line-height: 1;
}

/* À propos */
.about__body {
  max-width: 760px;
  margin: 0 auto;
}
.about__body p {
  color: var(--texte-sec);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}
.about__body p:last-child { margin-bottom: 0; }

/* Formulaire de demande de licence */
.license-howto {
  max-width: 640px;
  margin: 0 auto 2rem;
  padding: 1rem 1.25rem;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: var(--rayon);
  font-size: 0.9375rem;
  color: var(--bleu-profond);
}
.license-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--blanc);
  border: 1px solid var(--filet);
  border-radius: var(--rayon);
  padding: 2rem;
  box-shadow: var(--ombre);
}
.license-form__hidden { display: none; }
.license-form__row { margin-bottom: 1.1rem; }
.license-form__row-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.1rem;
}
.license-form__row-group .license-form__row { margin-bottom: 0; }
.license-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bleu-profond);
  margin-bottom: 0.4rem;
}
.license-form input[type="text"],
.license-form input[type="email"],
.license-form input[type="tel"],
.license-form input[type="file"],
.license-form textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--filet);
  border-radius: 8px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--texte);
  background: var(--blanc);
}
.license-form textarea { resize: vertical; }
.license-form input:focus, .license-form textarea:focus {
  outline: 2px solid var(--bleu-cyan);
  outline-offset: 1px;
}
.license-form button[type="submit"] {
  margin-top: 0.5rem;
}
.license-form__note {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--texte-sec);
}
@media (max-width: 640px) {
  .license-form__row-group { grid-template-columns: 1fr; }
  .license-form { padding: 1.5rem 1.25rem; }
}
