:root {
  color-scheme: dark;
  --vo-bg: #03050a;
  --vo-surface: #0a0d14;
  --vo-surface-2: #10151f;
  --vo-text: #f6f7fb;
  --vo-muted: #aeb7c7;
  --vo-line: rgba(255, 255, 255, .12);
  --vo-red: #ff4967;
  --vo-blue: #7da2ff;
  --vo-green: #85d6b0;
  --vo-shadow: 0 24px 70px rgba(0, 0, 0, .38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--vo-bg);
  color: var(--vo-text);
  font: 16px/1.6 Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

.vo-skip {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: #000;
}
.vo-skip:focus { transform: none; }
.vo-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; }

.vo-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 10px max(18px, calc((100vw - 1200px) / 2));
  border-bottom: 1px solid var(--vo-line);
  background: rgba(3, 5, 10, .86);
  backdrop-filter: blur(18px);
}
.vo-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 900; letter-spacing: .04em; }
.vo-brand-mark { width: 11px; height: 11px; border-radius: 50%; background: var(--vo-red); box-shadow: 0 0 0 6px rgba(255, 73, 103, .12); }
.vo-topnav { display: flex; gap: 16px; align-items: center; font-size: .84rem; }
.vo-topnav a { color: var(--vo-muted); text-decoration: none; }
.vo-topnav a:hover, .vo-topnav a:focus-visible { color: var(--vo-text); }

.vo-shell { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }
.vo-hero {
  position: relative;
  min-height: min(720px, 84vh);
  margin: 22px auto 0;
  overflow: hidden;
  border: 1px solid var(--vo-line);
  border-radius: 28px;
  box-shadow: var(--vo-shadow);
  isolation: isolate;
}
.vo-hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 68% center; z-index: -2; }
.vo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(3, 5, 10, .97) 0%, rgba(3, 5, 10, .82) 38%, rgba(3, 5, 10, .18) 74%), linear-gradient(0deg, rgba(3, 5, 10, .78), transparent 58%);
}
.vo-hero-copy { display: flex; flex-direction: column; justify-content: center; min-height: inherit; width: min(650px, 72%); padding: clamp(30px, 6vw, 82px); }
.vo-kicker { margin: 0 0 18px; color: var(--vo-red); font-size: .76rem; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.vo-hero h1 { margin: 0; font-size: clamp(2.45rem, 7.2vw, 5.8rem); line-height: .96; letter-spacing: -.055em; text-wrap: balance; }
.vo-deck { max-width: 600px; margin: 24px 0 0; color: #d7dce6; font-size: clamp(1rem, 2vw, 1.25rem); line-height: 1.55; }
.vo-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.vo-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 17px;
  border: 1px solid var(--vo-line);
  border-radius: 11px;
  background: rgba(255, 255, 255, .06);
  color: var(--vo-text);
  font-size: .84rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.vo-btn:hover, .vo-btn:focus-visible { transform: translateY(-2px); border-color: rgba(255, 255, 255, .28); background: rgba(255, 255, 255, .1); }
.vo-btn-primary { border-color: transparent; background: var(--vo-red); color: #fff; }
.vo-btn-primary:hover, .vo-btn-primary:focus-visible { background: #ff607a; }
/* Le CTA produit cumule .vo-btn-primary (fond rouge, texte blanc) ET .vo-aff. La couche
   monétisation (vo-monetize.js) injecte .vo-aff{color:#ffd27a!important} → texte ambre sur
   rouge (contraste sous WCAG AA). Ici, spécificité 0,2,0 + !important l'emporte sur le
   0,1,0 !important injecté, quel que soit l'ordre d'injection : le TEXTE DU BOUTON reste
   BLANC. L'ambre .vo-aff reste actif pour les liens texte in-article (.vo-aff seul). */
.vo-btn.vo-aff { color: #fff !important; }

.vo-trustbar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 18px 0 46px; overflow: hidden; border: 1px solid var(--vo-line); border-radius: 16px; background: var(--vo-line); }
.vo-trustbar div { padding: 17px 20px; background: var(--vo-surface); }
.vo-trustbar strong { display: block; font-size: .84rem; }
.vo-trustbar span { color: var(--vo-muted); font-size: .74rem; }

.vo-disclosure {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  margin: 0 0 46px;
  padding: 19px 21px;
  border: 1px solid rgba(255, 189, 96, .26);
  border-radius: 16px;
  background: rgba(255, 176, 71, .07);
}
.vo-disclosure-icon { color: #ffbd60; font-weight: 900; }
.vo-disclosure p { margin: 0; color: #e8dccb; font-size: .84rem; }
.vo-disclosure p + p { margin-top: 7px; }

.vo-section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .55fr); gap: 30px; align-items: end; margin: 0 0 24px; }
.vo-section-head h2 { margin: 0; font-size: clamp(2rem, 5vw, 3.8rem); line-height: 1; letter-spacing: -.045em; }
.vo-section-head p { margin: 0; color: var(--vo-muted); }
.vo-method { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 46px; padding: 0; list-style: none; }
.vo-method li { padding: 7px 11px; border: 1px solid var(--vo-line); border-radius: 999px; color: #ced5e1; font-size: .72rem; }

.vo-category { margin: 0 0 64px; scroll-margin-top: 92px; }
.vo-category-head { display: flex; align-items: end; justify-content: space-between; gap: 22px; margin: 0 0 17px; padding-bottom: 13px; border-bottom: 1px solid var(--vo-line); }
.vo-category-head h3 { margin: 0; font-size: clamp(1.45rem, 3vw, 2.15rem); letter-spacing: -.025em; }
.vo-category-head p { max-width: 580px; margin: 0; color: var(--vo-muted); font-size: .88rem; }
.vo-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.vo-card { display: grid; grid-template-columns: minmax(190px, 38%) 1fr; min-height: 340px; overflow: hidden; border: 1px solid var(--vo-line); border-radius: 20px; background: linear-gradient(145deg, var(--vo-surface-2), var(--vo-surface)); box-shadow: 0 15px 35px rgba(0, 0, 0, .18); }
.vo-card-media { position: relative; min-height: 100%; overflow: hidden; background: #080b11; }
.vo-card-media img { width: 100%; height: 100%; object-fit: cover; }
.vo-card-media::after { content: ""; position: absolute; inset: 0; box-shadow: inset -24px 0 45px rgba(5, 8, 13, .54); pointer-events: none; }
.vo-visual-label { position: absolute; z-index: 2; left: 10px; bottom: 10px; padding: 5px 8px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 6px; background: rgba(3, 5, 10, .78); color: #d7dce6; font-size: .59rem; letter-spacing: .08em; text-transform: uppercase; }
.vo-card-body { display: flex; flex-direction: column; padding: 21px; }
.vo-type { margin: 0 0 8px; color: var(--vo-blue); font-size: .68rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.vo-card h4 { margin: 0; font-size: 1.28rem; line-height: 1.18; letter-spacing: -.015em; }
.vo-pitch { margin: 13px 0 0; color: #d7dce6; font-size: .86rem; }
.vo-limit { margin: 12px 0 0; padding-left: 12px; border-left: 2px solid var(--vo-red); color: var(--vo-muted); font-size: .77rem; }
.vo-card-links { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: auto; padding-top: 18px; }
.vo-aff-cta:disabled { cursor: not-allowed; border-color: rgba(255, 255, 255, .08); background: rgba(255, 255, 255, .04); color: #7f8794; }
.vo-aff-cta:disabled:hover { transform: none; }
.vo-source { color: var(--vo-muted); font-size: .69rem; text-underline-offset: 3px; }
.vo-source:hover { color: var(--vo-text); }
.vo-program-state { width: 100%; color: #7f8794; font-size: .62rem; }

.vo-newsletter { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .7fr); gap: 34px; align-items: center; margin: 80px 0; padding: clamp(26px, 5vw, 54px); border: 1px solid var(--vo-line); border-radius: 24px; background: radial-gradient(circle at 90% 10%, rgba(77, 124, 255, .14), transparent 36%), var(--vo-surface); }
.vo-newsletter h2 { margin: 0; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.05; letter-spacing: -.035em; }
.vo-newsletter p { margin: 15px 0 0; color: var(--vo-muted); }
.vo-form { display: grid; grid-template-columns: 1fr auto; gap: 9px; }
.vo-form input { min-width: 0; min-height: 48px; padding: 10px 13px; border: 1px solid var(--vo-line); border-radius: 10px; background: #05070c; color: var(--vo-text); }
.vo-form small { grid-column: 1 / -1; color: #8791a2; }

.vo-transparency { margin: 0 0 76px; padding-top: 28px; border-top: 1px solid var(--vo-line); }
.vo-transparency h2 { margin: 0 0 12px; font-size: 1.45rem; }
.vo-transparency p, .vo-transparency li { color: var(--vo-muted); font-size: .86rem; }
.vo-footer { padding: 28px 0 42px; border-top: 1px solid var(--vo-line); color: var(--vo-muted); font-size: .78rem; }
.vo-footer-inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.vo-footer nav { display: flex; flex-wrap: wrap; gap: 13px; }
.vo-footer a { color: var(--vo-muted); }

.vo-consent {
  position: fixed;
  z-index: 100;
  right: 16px;
  bottom: 16px;
  width: min(520px, calc(100% - 32px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  background: rgba(8, 11, 17, .97);
  box-shadow: var(--vo-shadow);
}
.vo-consent p { margin: 0 0 13px; color: #d9dee7; font-size: .78rem; }
.vo-consent-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.vo-consent[hidden] { display: none; }

.vo-block-demo { width: min(860px, calc(100% - 32px)); margin: 48px auto; }
.vo-article-demo { max-width: 720px; margin: 0 auto 36px; }
.vo-article-demo h1 { font-size: clamp(2rem, 6vw, 4rem); line-height: 1.02; letter-spacing: -.04em; }
.vo-article-demo p { color: var(--vo-muted); }
.vo-product-block { padding: clamp(20px, 4vw, 34px); border: 1px solid var(--vo-line); border-radius: 24px; background: linear-gradient(145deg, #0d121b, #070a10); box-shadow: var(--vo-shadow); }
.vo-product-block-head { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: start; margin-bottom: 18px; }
.vo-product-block h2 { margin: 0; font-size: clamp(1.45rem, 4vw, 2.2rem); line-height: 1.08; letter-spacing: -.03em; }
.vo-product-block .vo-block-note { margin: 8px 0 0; color: var(--vo-muted); font-size: .83rem; }
.vo-context-pill { padding: 6px 9px; border-radius: 999px; background: rgba(125, 162, 255, .1); color: #a9c0ff; font-size: .62rem; white-space: nowrap; }
.vo-product-block .vo-grid { grid-template-columns: 1fr; }
.vo-product-block .vo-card { min-height: 280px; }
.vo-block-disclosure { margin: 0 0 18px; padding: 12px 14px; border-left: 3px solid #ffbd60; background: rgba(255, 176, 71, .07); color: #e8dccb; font-size: .74rem; }
.vo-block-footer { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 17px; color: var(--vo-muted); font-size: .7rem; }

@media (max-width: 940px) {
  .vo-grid { grid-template-columns: 1fr; }
  .vo-hero-copy { width: min(620px, 82%); }
  .vo-newsletter { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .vo-topnav a:not(:last-child) { display: none; }
  .vo-shell { width: min(100% - 22px, 1200px); }
  .vo-hero { min-height: 680px; margin-top: 10px; border-radius: 20px; }
  .vo-hero-media { object-position: 70% center; }
  .vo-hero::after { background: linear-gradient(0deg, rgba(3, 5, 10, .98) 8%, rgba(3, 5, 10, .75) 55%, rgba(3, 5, 10, .12)); }
  .vo-hero-copy { justify-content: end; width: 100%; padding: 26px 22px 34px; }
  .vo-hero h1 { font-size: clamp(2.7rem, 16vw, 4.4rem); }
  .vo-trustbar { grid-template-columns: 1fr; }
  .vo-section-head, .vo-category-head { grid-template-columns: 1fr; display: grid; }
  .vo-card { grid-template-columns: 1fr; }
  /* CTA produit pleine largeur sur mobile (cible tactile ≥48px conservée via .vo-btn). */
  .vo-card .vo-btn-primary { display: flex; width: 100%; justify-content: center; }
  .vo-card-media { aspect-ratio: 16 / 10; }
  .vo-card-media::after { box-shadow: inset 0 -24px 45px rgba(5, 8, 13, .38); }
  .vo-form { grid-template-columns: 1fr; }
  .vo-form small { grid-column: auto; }
  .vo-product-block-head { grid-template-columns: 1fr; }
  .vo-context-pill { justify-self: start; }
  .vo-block-footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; }
}
