/* ==========================================================
   Piazono — site vitrine
   Palette tirée de l'instrument : laque d'ébène, ivoire,
   laiton (pédales, chevilles), et le cyan de l'application.
   ========================================================== */

:root{
  --ebony:      #101318;
  --ebony-2:    #171B22;
  --ebony-3:    #202631;
  --ivory:      #F0EBE0;
  --ivory-dim:  #A8A79F;
  --cyan:       #3FD5C4;
  --cyan-deep:  #1E8C82;
  --brass:      #C9A227;

  --display: "Instrument Serif", Georgia, serif;
  --body:    "Inter Tight", system-ui, -apple-system, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, monospace;

  --pad: clamp(1.25rem, 5vw, 5rem);
  --maxw: 1160px;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--ebony);
  color: var(--ivory);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }

a{ color: inherit; }

.skip{
  position: absolute; left: -9999px;
  background: var(--cyan); color: var(--ebony);
  padding: .6rem 1rem; z-index: 99;
}
.skip:focus{ left: 1rem; top: 1rem; }

:focus-visible{
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* ---------------------------------------------- Navigation */

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;

  max-width: var(--maxw);
  margin: 0 auto;

  padding: 1.35rem var(--pad);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;

  margin-right: auto;

  color: var(--cyan);
  text-decoration: none;

  line-height: 1;
}

.nav-logo {
  display: block;

  width: 46px;
  height: 46px;

  object-fit: contain;

  flex: 0 0 auto;
}

.nav-brand-name {
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: -.02em;

  color: var(--cyan);

  white-space: nowrap;
}
.nav-links{ display: flex; gap: 1.75rem; }

.nav-links a{
  font-size: .9rem;
  color: var(--ivory-dim);
  text-decoration: none;
  transition: color .18s ease;
}
.nav-links a:hover{ color: var(--ivory); }


/*--------------------------------------------------- Logo */




/* ---------------------------------------------- Boutons */

.btn{
  display: inline-block;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 500;
  padding: .8rem 1.6rem;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.btn-sm{ padding: .5rem 1.05rem; font-size: .88rem; }

.btn-primary{
  background: var(--cyan);
  color: var(--ebony);
  font-weight: 600;
}
.btn-primary:hover{ background: #59E4D4; }

.btn-ghost{
  border-color: #3A424F;
  color: var(--ivory);
}
.btn-ghost:hover{ border-color: var(--cyan); color: var(--cyan); }

.cta-row{
  display: flex; flex-wrap: wrap; gap: .9rem;
  margin: 2rem 0 1.6rem;
}

/* ---------------------------------------------- Hero */

.hero{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 9vw, 7rem) var(--pad) 3.5rem;
}

.eyebrow{
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  margin: 0 0 1.1rem;
}

.hero-title{
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.9rem, 8vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -.01em;
  margin: 0 0 1.5rem;
}
.hero-title em{ font-style: italic; color: var(--cyan); }

.hero-lede{
  max-width: 46ch;
  font-size: 1.12rem;
  color: var(--ivory-dim);
  margin: 0;
}

.specs{
  list-style: none;
  display: flex; flex-wrap: wrap;
  gap: .5rem 1.4rem;
  padding: 0; margin: 0;
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--ivory-dim);
}
.specs li{ position: relative; padding-left: 1rem; }
.specs li::before{
  content: ""; position: absolute; left: 0; top: .62em;
  width: 5px; height: 5px; background: var(--cyan-deep);
}
.specs strong{ color: var(--brass); font-weight: 500; }

/* ------------------------------- Signature : le clavier */

.keyboard-band{
  padding: 0 var(--pad) clamp(3rem, 7vw, 5rem);
  max-width: var(--maxw); margin: 0 auto;
}

.keyboard{
  position: relative;
  display: flex;
  height: clamp(96px, 13vw, 150px);
  border-top: 3px solid var(--ebony-3);
  border-radius: 0 0 3px 3px;
  background: var(--ebony-2);
  overflow: hidden;
  user-select: none;
}

.wk{
  position: relative;
  flex: 1 1 0;
  background: linear-gradient(180deg, #FBF8F1 0%, #E4DFD4 92%, #C9C4B8 100%);
  border-right: 1px solid #B9B4A8;
  transition: background .09s ease;
}
.wk:last-child{ border-right: 0; }

.bk{
  position: absolute;
  top: 0; left: 63%;
  width: 70%;
  height: 62%;
  z-index: 2;
  background: linear-gradient(180deg, #2B313B 0%, #14181E 88%, #0A0D11 100%);
  border-radius: 0 0 2px 2px;
  transition: background .09s ease;
}

.wk.on{ background: linear-gradient(180deg, var(--cyan) 0%, #7FE6DA 100%); }
.bk.on{ background: linear-gradient(180deg, var(--cyan-deep) 0%, #2FAFA2 100%); }

.wk .cmark{
  position: absolute;
  bottom: .45rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: .5rem;
  letter-spacing: .04em;
  color: #8C887E;
  pointer-events: none;
}
.wk .cmark.middle{
  color: var(--cyan-deep);
  font-weight: 500;
  bottom: .5rem;
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: center;
  white-space: nowrap;
}

/* ---------------------------------------------- Sections */

.section{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6.5rem) var(--pad) 0;
}

.section h2,
.closing h2{
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.12;
  margin: 0 0 2.2rem;
}

/* La portée : cinq lignes, comme un système de partition */
.staff-rule{
  display: block;
  margin-bottom: 2.6rem;
}
.staff-rule i{
  display: block;
  height: 1px;
  background: var(--ebony-3);
  margin-bottom: 4px;
}
.staff-rule i:first-child{ background: var(--cyan-deep); }

.grid-3{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.4rem;
}
.grid-3 h3{
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 .6rem;
  color: var(--cyan);
}
.grid-3 p{ margin: 0; color: var(--ivory-dim); font-size: .97rem; }

.tools{
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
}
.tools li{
  padding: 1.1rem 0;
  border-top: 1px solid var(--ebony-3);
  color: var(--ivory-dim);
  font-size: .95rem;
}
.tools span{
  display: block;
  font-family: var(--mono);
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: .25rem;
}

.flow{
  list-style: none; padding: 0;
  margin: 0 0 1.8rem;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: .9rem 1.5rem;
  font-family: var(--mono);
  font-size: .92rem;
}
.flow li{ position: relative; padding-right: 1.5rem; }
.flow li::after{
  content: "→";
  position: absolute; right: 0;
  color: var(--cyan-deep);
}
.flow li:last-child{ padding-right: 0; }
.flow li:last-child::after{ content: ""; }

.section-note,
.closing-note{
  max-width: 56ch;
  color: var(--ivory-dim);
  font-size: .97rem;
}

.steps{
  list-style: none; padding: 0; margin: 0 0 2.4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.4rem;
}
.step-n{
  display: block;
  font-family: var(--mono);
  font-size: .8rem;
  color: var(--brass);
  letter-spacing: .1em;
  margin-bottom: .7rem;
}
.steps h3{
  font-family: var(--body);
  font-size: 1.02rem;
  font-weight: 600;
  margin: 0 0 .5rem;
}
.steps h3 em{ color: var(--brass); font-style: normal; font-weight: 500; }
.steps p{ margin: 0; color: var(--ivory-dim); font-size: .95rem; }

.callout{
  max-width: 62ch;
  border-left: 2px solid var(--brass);
  padding: .3rem 0 .3rem 1.2rem;
  margin: 0;
  color: var(--ivory-dim);
  font-size: .97rem;
}

/* ---------------------------------------------- Captures */

.shot{
  max-width: var(--maxw);
  margin: clamp(2.5rem, 6vw, 4rem) auto 0;
  padding: 0 var(--pad);
}
.shot img {
  display: block;
  width: 100%;
  height: auto;

  border: 1px solid var(--ebony-3);
  border-radius: 3px;
  background: var(--ebony-2);
}

.shot picture {
  display: block;
  width: 100%;
}
.shot figcaption{
  margin-top: .85rem;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .04em;
  color: var(--ivory-dim);
}
.shot-wide{ margin-top: 0; }

/* ---------------------------------------------- Clôture */

.closing{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) var(--pad) clamp(3rem, 7vw, 5rem);
}

.price{
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin: 0;
  line-height: 1.1;
}
.price span{
  display: block;
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-top: .7rem;
}

.closing-note{ margin-top: 1.6rem; }

/* ---------------------------------------------- Pied de page */

.foot{
  border-top: 0px solid var(--ebony-3);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 2.4rem var(--pad) 3.5rem;
}

.foot-brand{
  font-family: var(--display);
  font-size: 1.2rem;
  margin: 0 0 1.1rem;
  color: var(--ivory);
}
.foot-links{
  display: flex; flex-wrap: wrap; gap: .6rem 1.6rem;
  margin-bottom: 1.4rem;
}
.foot-links a{
  font-size: .9rem;
  color: var(--ivory-dim);
  text-decoration: none;
}
.foot-links a:hover{ color: var(--cyan); }
.foot-legal{
  margin: 0;
  font-size: .8rem;
  color: #6E6D68;
  max-width: 60ch;
}

/*  */

.newsletter-rule,
.footer-rule {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.newsletter-rule {
  margin-top: 2rem;
  margin-bottom: 0;
}

.footer-rule {
  margin-top: 2.5rem;
  margin-bottom: 0;
}

/* ---------------------------------------------- Révélation */

.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in{ opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal{ opacity: 1; transform: none; transition: none; }
  .wk, .bk{ transition: none; }
}

/* ---------------------------------------------- Mobile */

@media (max-width: 720px){
  .nav{
    flex-wrap: wrap;
    row-gap: .75rem;
  }
  .nav-links{
    display: flex;
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 1.25rem;
    font-size: .95rem;
  }
}
/* ---------------------------------------------------------------*/
/* =========================================================
   NEWSLETTER
   ========================================================= */

.newsletter-section {
  background: var(--ebony, #101318);
  color: var(--ivory, #f0ebe0);
  padding: clamp(4rem, 8vw, 7rem) var(--pad, 2rem);
}

.newsletter-inner {
  width: 100%;
  max-width: var(--maxw, 1160px);
  margin: 0 auto;
  padding-left: 3.5rem;
}

.newsletter-section .eyebrow {
  margin: 0 0 1.5rem;
  color: var(--cyan, #3fd5c4);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.newsletter-section h2 {
  margin: 0;
  max-width: 720px;
  font-family: "Instrument Serif", serif;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 0.98;
  color: var(--ivory, #f0ebe0);
}

.newsletter-lede {
  margin: 1.75rem 0 2rem;
  max-width: 620px;
  color: var(--ivory-dim, #a8a79f);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* =========================================================
   FORM
   ========================================================= */

.newsletter-form {
  display: grid;
  gap: 1rem;
  max-width: 620px;
}

.newsletter-form input[type="email"],
.newsletter-form input[type="text"] {
  width: 100%;
  box-sizing: border-box;

  padding: 0.95rem 1rem;

  border: 1px solid #3a424f;
  border-radius: 6px;

  background: var(--ebony-2, #171b22);
  color: var(--ivory, #f0ebe0);

  font: inherit;

  outline: none;

  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.newsletter-form input[type="email"]::placeholder,
.newsletter-form input[type="text"]::placeholder {
  color: #777d86;
}

.newsletter-form input[type="email"]:focus,
.newsletter-form input[type="text"]:focus {
  border-color: var(--cyan, #3fd5c4);
  box-shadow: 0 0 0 3px rgba(63, 213, 196, 0.12);
  background: var(--ebony-3, #202631);
}

/* =========================================================
   ALTCHA
   ========================================================= */

.newsletter-captcha {
  margin-top: 0.25rem;
}

.newsletter-captcha altcha-widget {
  display: block;
  max-width: 100%;
}

/* =========================================================
   CONSENT
   ========================================================= */

.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;

  margin-top: 0.25rem;

  color: var(--ivory-dim, #a8a79f);
  font-size: 0.9rem;
  line-height: 1.5;

  cursor: pointer;
}

.newsletter-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0.15rem 0 0;

  accent-color: var(--cyan, #3fd5c4);

  flex: 0 0 auto;
}

.newsletter-consent span {
  display: block;
}

/* =========================================================
   BUTTON
   ========================================================= */

.newsletter-form .btn {
  justify-self: start;

  min-width: 150px;
  margin-top: 0.35rem;

  border: 0;
  border-radius: 4px;

  padding: 0.9rem 1.4rem;

  background: var(--cyan, #3fd5c4);
  color: var(--ebony, #101318);

  font: inherit;
  font-weight: 700;

  cursor: pointer;

  transition:
    transform 150ms ease,
    filter 150ms ease;
}

.newsletter-form .btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.newsletter-form .btn:active {
  transform: translateY(0);
}

.newsletter-form .btn:focus-visible {
  outline: 2px solid var(--ivory, #f0ebe0);
  outline-offset: 3px;
}

/* =========================================================
   NOTE / PRIVACY
   ========================================================= */

.newsletter-note {
  margin-top: 1rem;

  color: var(--ivory-dim, #a8a79f);
  font-size: 0.82rem;
  line-height: 1.55;
}

.newsletter-note a {
  color: var(--cyan, #3fd5c4);
  text-underline-offset: 3px;
}

.newsletter-note a:hover {
  color: var(--ivory, #f0ebe0);
}

/* =========================================================
   SCREEN READER ONLY
   ========================================================= */

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 640px) {
  .newsletter-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .newsletter-inner {
    padding-left: 0;
  }

  .newsletter-form {
    width: 100%;
  }

  .newsletter-form .btn {
    width: 100%;
    justify-self: stretch;
  }
}



/* ---------------------------------------------------------------*/



/* ==========================================================
   BUY PAGE
   ========================================================== */

.buy-hero {
  padding-bottom: 2.5rem;
}

.buy-price {
  display: flex;
  align-items: baseline;
  gap: 1rem;

  margin-top: 2rem;
}

.buy-price-value {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1;
  color: var(--ivory);
}

.buy-price-label {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}


/* ------------------------------------------------ Purchase card */

.purchase-card {
  max-width: 660px;

  padding: clamp(1.8rem, 5vw, 3rem);

  background: var(--ebony-2);

  border: 1px solid var(--ebony-3);
  border-top: 2px solid var(--cyan);

  border-radius: 3px;
}

.purchase-product {
  margin: 0;

  font-family: var(--display);
  font-size: 2rem;

  color: var(--ivory);
}

.purchase-subtitle {
  margin: .2rem 0 1.8rem;

  color: var(--ivory-dim);
}

.purchase-price {
  margin-bottom: 1.8rem;
}

.purchase-price-main {
  display: block;

  font-family: var(--display);
  font-size: 4rem;
  line-height: 1;

  color: var(--cyan);
}

.purchase-price-note {
  display: block;

  margin-top: .5rem;

  font-family: var(--mono);
  font-size: .74rem;

  text-transform: uppercase;
  letter-spacing: .12em;

  color: var(--ivory-dim);
}

.purchase-list {
  list-style: none;

  padding: 0;
  margin: 0 0 2rem;
}

.purchase-list li {
  position: relative;

  padding: .55rem 0 .55rem 1.5rem;

  color: var(--ivory-dim);

  border-bottom: 1px solid var(--ebony-3);
}

.purchase-list li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: var(--cyan);
}

.purchase-button {
  width: 100%;

  text-align: center;
}

.purchase-secure {
  margin: 1rem 0 0;

  text-align: center;

  font-family: var(--mono);
  font-size: .72rem;

  color: var(--ivory-dim);
}

.purchase-legal {
  margin: 1.5rem 0 0;

  font-size: .78rem;
  line-height: 1.6;

  color: #77766f;
}

.purchase-legal a {
  color: var(--ivory-dim);
}

.purchase-legal a:hover {
  color: var(--cyan);
}


/* ------------------------------------------------ FAQ */

.buy-faq {
  max-width: 820px;
}

.buy-faq article {
  padding: 1.4rem 0;

  border-top: 1px solid var(--ebony-3);
}

.buy-faq h3 {
  margin: 0 0 .45rem;

  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 600;

  color: var(--ivory);
}

.buy-faq p {
  max-width: 65ch;

  margin: 0;

  color: var(--ivory-dim);
}


/* ------------------------------------------------ Mobile */

@media (max-width: 720px) {

  .buy-price {
    align-items: flex-start;
    flex-direction: column;
    gap: .4rem;
  }

  .purchase-card {
    padding: 1.5rem;
  }

}

.foot-legal span {
  display: block;
}

.foot-legal span + span {
  margin-top: .25rem;
}

@media (max-width: 720px) {

  .nav-logo {
    width: 38px;
    height: 38px;
  }

  .nav-brand-name {
    font-size: 2.1rem;
  }

}


/* ==========================================================
   BACK TO TOP
   ========================================================== */

.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;

  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--ebony-3);
  border-radius: 50%;

  background: var(--ebony-2);
  color: var(--cyan);

  font-size: 1.3rem;
  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition:
    opacity .2s ease,
    transform .2s ease,
    background .2s ease,
    border-color .2s ease;

  z-index: 100;
}

.back-to-top:hover {
  background: var(--cyan);
  color: var(--ebony);
  border-color: var(--cyan);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ==========================================================
   RECORDER SCREENSHOT
   ========================================================== */

.recorder-shot {
  width: 100%;
  max-width: none;

  margin: 1.5rem 0 0;
  padding: 0;
}

.recorder-shot picture {
  display: block;
  width: 100%;
}

.recorder-shot img {
  display: block;
  width: 100%;
  height: auto;

  border: 1px solid var(--ebony-3);
  border-radius: 3px;

  background: var(--ebony-2);
}

.recorder-shot figcaption {
  margin-top: .85rem;

  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .04em;

  color: var(--ivory-dim);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================
   PAGES LÉGALES & SUPPORT
   ========================================================== */

/* Lisibilité des paragraphes et titres courants */
.section > p,
.section > h3 {
  max-width: 68ch;
}

.section > p {
  color: var(--ivory-dim);
  font-size: .97rem;
}

.section > h3 {
  margin: 2.2rem 0 .6rem;
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cyan);
}

.section > p a,
.legal-list a {
  color: var(--cyan);
}

/* Listes légales */
.legal-list {
  list-style: none;
  max-width: 68ch;
  padding: 0;
  margin: 0 0 1.8rem;
}

.legal-list li {
  position: relative;
  padding: .5rem 0 .5rem 1.4rem;
  color: var(--ivory-dim);
  font-size: .97rem;
  border-bottom: 1px solid var(--ebony-3);
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15em;
  width: 5px;
  height: 5px;
  background: var(--cyan-deep);
}

.legal-list strong {
  color: var(--ivory);
  font-weight: 600;
}

/* Carte identité / contact */
.support-card {
  max-width: 560px;
  margin: 0 0 2rem;
  padding: clamp(1.4rem, 4vw, 2rem);
  background: var(--ebony-2);
  border: 1px solid var(--ebony-3);
  border-left: 2px solid var(--cyan);
  border-radius: 3px;
}

.support-card h3 {
  margin: 0 0 1rem;
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cyan);
}

.support-card p {
  margin: 0 0 .7rem;
  color: var(--ivory-dim);
  font-size: .95rem;
}

.support-card p:last-child {
  margin-bottom: 0;
}

.support-card strong {
  color: var(--ivory);
}

.support-card ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--ivory-dim);
  font-size: .95rem;
}

.support-card a {
  color: var(--cyan);
}

.support-email {
  font-family: var(--mono);
  font-size: 1rem;
  word-break: break-all;
}

/* Modificateurs de hero */
.legal-hero,
.support-hero {
  padding-bottom: 2rem;
}

.purchase-section {
  padding-bottom: 0;
}

/* Avertissement de téléchargement */
.download-note {
  max-width: 70ch;
  margin-top: 1rem;

  font-size: .82rem;
  line-height: 1.6;

  color: var(--ivory-dim);
}

.download-note em {
  color: var(--ivory);
  font-style: normal;
  font-weight: 500;
}

.download-note code {
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--cyan);
  word-break: break-all;
}

.download-note details {
  margin-top: .8rem;
}

.download-note summary {
  cursor: pointer;
  color: var(--ivory);
  font-weight: 500;
}

.download-note pre {
  overflow-x: auto;
  padding: .9rem 1rem;

  background: var(--ebony-2);
  border: 1px solid var(--ebony-3);
}


