/* ==========================================================================
   MaxTracker — maxtracker.live
   Design system inspiré de l'environnement Ableton Live :
   gris profonds, surfaces mates, accent orange, ambre pour l'état "armé",
   bleu pour le solo, vert pour la tête de lecture.
   ========================================================================== */

:root {
  /* Surfaces — la hiérarchie de gris de Live */
  --bg:          #171717;
  --bg-2:        #1e1e1e;
  --panel:       #262626;
  --panel-2:     #2f2f2f;
  --panel-3:     #3a3a3a;
  --line:        #3d3d3d;
  --line-soft:   #303030;

  /* Texte */
  --fg:          #dcdcdc;
  --fg-strong:   #f2f2f2;
  --fg-dim:      #9a9a9a;
  --fg-faint:    #6d6d6d;

  /* Accents Live */
  --orange:      #ff7a29;
  --orange-hi:   #ff9552;
  --orange-lo:   #d95f16;
  --amber:       #ffb340;
  --blue:        #4a8fe7;
  --green:       #6fcf7f;
  --red:         #e2564a;

  /* Mesures */
  --radius:      3px;
  --radius-lg:   5px;
  --maxw:        1120px;
  --maxw-prose:  760px;

  --mono: "SFMono-Regular", Consolas, Menlo, "DejaVu Sans Mono",
          "Liberation Mono", "Andale Mono", monospace;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          Helvetica, Arial, sans-serif;

  color-scheme: dark;
}

/* --------------------------------------------------------------- reset -- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-hi); text-decoration: underline; }

h1, h2, h3, h4 {
  color: var(--fg-strong);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 1.2rem + 1.3vw, 2rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

hr {
  border: 0;
  border-top: 1px solid var(--line-soft);
  margin: 2.5rem 0;
}

code, kbd, samp, pre { font-family: var(--mono); }

code {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: .1em .38em;
  font-size: .88em;
  color: var(--amber);
}

pre {
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--orange);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  overflow-x: auto;
  font-size: .85rem;
  line-height: 1.55;
  color: var(--fg);
}
pre code { background: none; border: 0; padding: 0; color: inherit; }

kbd {
  display: inline-block;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: var(--radius);
  padding: .08em .45em;
  font-size: .8em;
  color: var(--fg-strong);
  white-space: nowrap;
}

::selection { background: var(--orange); color: #12100e; }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: 2px;
}

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* Une colonne de texte lisible, alignée sur le bord gauche du conteneur
   plutôt que centrée : un titre de page à gauche et son texte au milieu
   font sauter l'œil d'un bloc à l'autre. */
.prose { max-width: var(--maxw-prose); }
.wrap.prose { max-width: var(--maxw); }
.wrap.prose > * { max-width: var(--maxw-prose); }

section { padding: 72px 0; }
section.tight { padding: 44px 0; }
.alt { background: var(--bg-2); border-block: 1px solid var(--line-soft); }

.grid-2 { display: grid; gap: 28px; grid-template-columns: repeat(2, 1fr); }
.grid-3 { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
.grid-4 { display: grid; gap: 18px; grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  section { padding: 48px 0; }
}

.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 .9rem;
}

.lede {
  font-size: 1.12rem;
  color: var(--fg-dim);
  max-width: 62ch;
}

.muted { color: var(--fg-dim); }
.small { font-size: .875rem; }
.center { text-align: center; }
.mono { font-family: var(--mono); }

/* --------------------------------------------------------- topbar / nav -- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(23, 23, 23, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}

.topbar .wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 60px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--fg-strong);
  font-weight: 600;
  letter-spacing: -.01em;
  text-decoration: none;
  flex: none;
}
.brand:hover { color: var(--fg-strong); text-decoration: none; }
.brand .mark {
  width: 22px; height: 22px;
  flex: none;
  border-radius: 2px;
  background: var(--orange);
  position: relative;
}
.brand .mark::before,
.brand .mark::after {
  content: "";
  position: absolute;
  left: 18%; right: 18%;
  height: 9%;
  background: #171717;
}
.brand .mark::before { top: 27%; }
.brand .mark::after  { top: 59%; right: 41%; }

/* Version agrandie, pour l'en-tête de la page de paiement */
.brand.lg { font-size: 1.3rem; gap: 13px; }
.brand.lg .mark { width: 34px; height: 34px; border-radius: 4px; }
.brand.lg small { font-size: .58rem; margin-top: 4px; }
.brand small {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .12em;
  color: var(--fg-faint);
  text-transform: uppercase;
  display: block;
  line-height: 1;
  margin-top: 2px;
}

nav.main {
  display: flex;
  gap: 4px;
  margin-left: auto;
  align-items: center;
}

nav.main a {
  color: var(--fg-dim);
  font-size: .875rem;
  padding: 7px 11px;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
}
nav.main a:hover { color: var(--fg-strong); background: var(--panel); }
nav.main a[aria-current="page"] { color: var(--orange); }

.navtools { display: flex; align-items: center; gap: 10px; margin-left: 8px; }

.burger {
  display: none;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--fg);
  width: 34px; height: 32px;
  cursor: pointer;
  padding: 0;
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 960px) {
  .burger { display: block; margin-left: auto; }
  nav.main {
    position: absolute;
    top: 60px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    padding: 8px 16px 16px;
    margin-left: 0;
    display: none;
  }
  nav.main.open { display: flex; }
  nav.main a { padding: 11px 8px; border-bottom: 1px solid var(--line-soft); }
  .navtools { margin-left: 12px; }
}

/* ------------------------------------------------------ language picker -- */

.lang {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
}
.lang button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--fg-dim);
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .08em;
  padding: 6px 8px;
  cursor: pointer;
  border-right: 1px solid var(--line-soft);
}
.lang button:last-child { border-right: 0; }
.lang button:hover { color: var(--fg-strong); background: var(--panel-2); }
.lang button[aria-pressed="true"] {
  background: var(--orange);
  color: #14110e;
  font-weight: 700;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 600;
  line-height: 1;
  padding: 13px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background .12s ease, border-color .12s ease, color .12s ease;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--orange);
  color: #14110e;
  border-color: var(--orange-lo);
}
.btn-primary:hover { background: var(--orange-hi); color: #14110e; }

.btn-ghost {
  background: var(--panel);
  color: var(--fg-strong);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--panel-2); color: var(--fg-strong); }

.btn-link {
  background: none;
  border: 0;
  color: var(--orange);
  padding: 13px 4px;
}
.btn-link:hover { color: var(--orange-hi); text-decoration: underline; }

.btn-lg { font-size: 1rem; padding: 15px 28px; }
.btn-block { width: 100%; }

.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 72px;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(900px 420px at 78% -10%, rgba(255, 122, 41, .16), transparent 60%),
    radial-gradient(700px 380px at 10% 110%, rgba(74, 143, 231, .07), transparent 60%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
}

.hero h1 { margin-bottom: .35em; }
.hero .lede { font-size: 1.18rem; margin-bottom: 1.8rem; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 24px;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .06em;
  color: var(--fg-faint);
  text-transform: uppercase;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta span::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

/* -------------------------------------------- fausse grille de tracker -- */

.tracker {
  background: #141414;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .55);
  overflow: hidden;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1;
}

.tracker .titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border-bottom: 1px solid var(--line);
  padding: 7px 10px;
  font-size: 11px;
  color: var(--fg-dim);
}
.tracker .titlebar .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--panel-3); flex: none;
}
.tracker .titlebar .dot:first-child { background: #5a5a5a; }

.tracker .strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding: 8px 10px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line-soft);
  font-size: 10px;
  color: var(--fg-faint);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.tracker .strip b {
  color: var(--fg);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 3px 6px;
  font-weight: 500;
  letter-spacing: 0;
}
.tracker .strip .follow {
  color: #14110e;
  background: var(--amber);
  border-color: #b47d21;
}

.tracker .body {
  padding: 8px 0 10px;
  overflow-x: auto;
  border-top: 1px solid #0d0d0d;
}

.trow {
  display: block;
  white-space: pre;
  padding: 1px 10px;
  color: var(--fg);
}
.trow .rn { color: var(--fg-faint); }
.trow.beat .rn { color: var(--fg-dim); }
.trow.beat { background: rgba(255, 255, 255, .022); }
.trow.play { background: rgba(111, 207, 127, .10); box-shadow: inset 2px 0 0 var(--green); }

.cell { padding: 0 10px 0 0; }
.n  { color: #eaeaea; }
.n.off { color: var(--fg-faint); }
.l  { color: #8fb3d9; }
.v  { color: #c9a86b; }
.fx { color: var(--orange); }
.dots { color: #4a4a4a; }
.lbl  { color: #6d6d6d; }
.cur { background: var(--orange); color: #14110e; }

.tracker .heads {
  display: block;
  padding: 7px 10px 6px;
  white-space: pre;
  color: var(--fg-faint);
  background: var(--bg-2);
  border-bottom: 1px solid var(--line-soft);
}
.tracker .heads .m { color: var(--orange); }
.tracker .heads .m.solo { color: var(--blue); }
.tracker .heads .m.mute { color: var(--panel-3); }
.tracker .heads .ch { color: var(--fg-dim); }

.tracker.edit { box-shadow: 0 0 0 2px var(--red), 0 22px 60px rgba(0, 0, 0, .55); }

/* --------------------------------------------------------------- cards -- */

.card {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 22px 22px 24px;
}
.card h3 { margin-bottom: .45em; }
.card p { color: var(--fg-dim); font-size: .94rem; }
.card .ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: var(--radius);
  background: rgba(255, 122, 41, .12);
  border: 1px solid rgba(255, 122, 41, .3);
  color: var(--orange);
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.card.flat { background: transparent; border-color: var(--line-soft); }

/* --------------------------------------------- encarts captures d'écran -- */

figure.shot {
  margin: 28px 0;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, .012) 0 12px,
      transparent 12px 24px
    ),
    var(--bg-2);
  overflow: hidden;
}
figure.shot .frame {
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--fg-faint);
  text-align: center;
  padding: 24px;
}
figure.shot.tall { max-width: 660px; margin-inline: auto; }
figure.shot.tall .frame { aspect-ratio: 4 / 3; }
figure.shot.panel { max-width: 300px; margin-inline: auto; }
figure.shot.panel .frame { aspect-ratio: 3 / 4; }
figure.shot .frame .ph {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: .75;
}
figure.shot .frame .file {
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--fg-dim);
}
figure.shot .frame .hint { font-size: .85rem; max-width: 46ch; }
figure.shot img { width: 100%; height: auto; display: block; }
figure.shot figcaption {
  border-top: 1px solid var(--line-soft);
  background: var(--panel);
  padding: 10px 14px;
  font-size: .84rem;
  color: var(--fg-dim);
}

/* --------------------------------------------------------------- table -- */

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4rem 0;
  font-size: .92rem;
}
th, td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
th {
  color: var(--fg-faint);
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  background: var(--bg-2);
  border-bottom-color: var(--line);
}
tbody tr:hover { background: rgba(255, 255, 255, .018); }
td code { white-space: nowrap; }

.table-wrap { overflow-x: auto; }

/* --------------------------------------------------------------- lists -- */

ul.ticks { list-style: none; padding: 0; margin: 1.1rem 0; }
ul.ticks li {
  position: relative;
  padding-left: 26px;
  margin-bottom: .6rem;
  color: var(--fg-dim);
}
ul.ticks li::before {
  content: "";
  position: absolute;
  left: 4px; top: .62em;
  width: 9px; height: 9px;
  border-radius: 1px;
  background: var(--orange);
}
ul.ticks li strong { color: var(--fg-strong); font-weight: 600; }

/* --------------------------------------------------------------- notes -- */

.note {
  border-left: 2px solid var(--orange);
  background: var(--bg-2);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  margin: 1.4rem 0;
  font-size: .93rem;
  color: var(--fg-dim);
}
.note strong { color: var(--fg-strong); }
.note.blue  { border-left-color: var(--blue); }
.note.amber { border-left-color: var(--amber); }

/* ------------------------------------------------------------- pricing -- */

.pricebox {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .4);
}
.pricebox .head {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border-bottom: 1px solid var(--line);
  padding: 22px 26px;
}
.pricebox .head h3 { margin: 0 0 4px; }
.pricebox .head p { margin: 0; color: var(--fg-dim); font-size: .9rem; }
.pricebox .amount {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 26px 26px 6px;
}
.pricebox .amount .val {
  font-size: 3.1rem;
  font-weight: 700;
  color: var(--fg-strong);
  letter-spacing: -.03em;
  line-height: 1;
}
.pricebox .amount .per {
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.pricebox .body { padding: 8px 26px 26px; }
.pricebox ul.ticks { margin-top: 1rem; }

.vat {
  font-size: .8rem;
  color: var(--fg-faint);
  margin-top: 12px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.badge {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: 100px;
  padding: 5px 11px;
}

/* ---------------------------------------------------------- checkout -- */

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) { .checkout-grid { grid-template-columns: 1fr; } }

#paddle-checkout {
  min-height: 520px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 6px;
}

.checkout-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 500px;
  text-align: center;
  color: var(--fg-dim);
  padding: 30px;
}

/* ------------------------------------------------------------ faq / acc -- */

details.faq {
  border-bottom: 1px solid var(--line-soft);
  padding: 4px 0;
}
details.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 34px 16px 0;
  color: var(--fg-strong);
  font-weight: 600;
  position: relative;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-family: var(--mono);
  font-size: 1.2rem;
  line-height: 1;
}
details.faq[open] summary::after { content: "\2212"; }
details.faq .a { padding: 0 34px 18px 0; color: var(--fg-dim); }

/* --------------------------------------------------------------- steps -- */

ol.steps { counter-reset: s; list-style: none; padding: 0; margin: 1.4rem 0; }
ol.steps li {
  counter-increment: s;
  position: relative;
  padding-left: 46px;
  margin-bottom: 1.1rem;
  color: var(--fg-dim);
}
ol.steps li::before {
  content: counter(s);
  position: absolute;
  left: 0; top: 0;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--orange);
  font-family: var(--mono);
  font-size: .8rem;
  font-weight: 700;
}
ol.steps li strong { color: var(--fg-strong); }

/* --------------------------------------------------------------- cta -- */

.cta {
  background:
    radial-gradient(700px 300px at 50% 0%, rgba(255, 122, 41, .13), transparent 65%),
    var(--bg-2);
  border-block: 1px solid var(--line-soft);
  text-align: center;
}
.cta .actions { justify-content: center; }

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

footer.site {
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  padding: 48px 0 32px;
  font-size: .88rem;
}
footer.site .cols {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 780px) {
  footer.site .cols { grid-template-columns: 1fr 1fr; }
}
footer.site h4 {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  font-weight: 500;
  margin-bottom: 12px;
}
footer.site ul { list-style: none; padding: 0; margin: 0; }
footer.site li { margin-bottom: 8px; }
footer.site a { color: var(--fg-dim); }
footer.site a:hover { color: var(--orange); }
footer.site .legal {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  color: var(--fg-faint);
  font-size: .8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  justify-content: space-between;
}

/* ------------------------------------------------------------ sundries -- */

.pill-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}
.pill-nav a {
  display: inline-block;
  font-size: .85rem;
  color: var(--fg-dim);
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 100px;
  padding: 6px 14px;
}
.pill-nav a:hover { color: var(--orange); border-color: var(--line); text-decoration: none; }

.page-head {
  padding: 56px 0 28px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-2);
}
.page-head h1 { margin-bottom: .3em; }

.spec {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 4px 20px;
  font-size: .93rem;
}
.spec dt { color: var(--fg-faint); font-family: var(--mono); font-size: .8rem; padding-top: 3px; }
.spec dd { margin: 0 0 10px; color: var(--fg); }
@media (max-width: 560px) { .spec { grid-template-columns: 1fr; } .spec dd { margin-bottom: 16px; } }

[hidden] { display: none !important; }

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 12px; top: 12px;
  z-index: 100;
  background: var(--orange);
  color: #14110e;
  padding: 10px 16px;
  border-radius: var(--radius);
}

/* --------------------------------------------- barre haute, petits écrans --
   En dessous de 560 px, le bouton d'achat, le sélecteur de langue et le nom
   de marque ne tiennent plus côte à côte : le bouton passe dans le menu. */
.navbuy { display: none; }

@media (max-width: 560px) {
  .topbar .wrap { gap: 12px; }
  .navtools .btn { display: none; }
  .navbuy { display: block; color: var(--orange); font-weight: 600; }
  .brand { font-size: .95rem; }
}
