  :root{
    --ink:#0B1220;
    --panel:#111B2E;
    --panel-2:#182543;
    --paper:#ECEAE2;
    --paper-ink:#14181D;
    --teal:#12B8A6;
    --teal-dim:#0A8477;
    --amber:#FFB020;
    --line-dark:rgba(255,255,255,.12);
    --line-light:rgba(20,24,29,.12);
    --muted-dark:#8B93A7;
    --muted-light:#5C6470;
    --track-dark:rgba(255,255,255,.14);
    --track-light:rgba(20,24,29,.10);
    --radius:2px;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--paper);
    color:var(--paper-ink);
    font-family:'IBM Plex Sans', sans-serif;
    font-size:16px;
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
  }
  .display{
    font-family:'Big Shoulders Display', sans-serif;
    font-weight:800;
    letter-spacing:.01em;
    line-height:.92;
    text-transform:uppercase;
  }
  .mono{ font-family:'IBM Plex Mono', monospace; }
  .eyebrow{
    font-family:'IBM Plex Mono', monospace;
    font-size:.72rem;
    letter-spacing:.16em;
    text-transform:uppercase;
    display:flex;
    align-items:center;
    gap:.55rem;
  }
  .eyebrow::before{
    content:"";
    width:7px;height:7px;
    background:var(--teal);
    border-radius:50%;
    flex:none;
    box-shadow:0 0 0 3px rgba(18,184,166,.18);
  }
  .wrap{ max-width:1180px; margin:0 auto; padding:0 32px; }
  a{ color:inherit; text-decoration:none; }
  button{ font-family:inherit; cursor:pointer; }

  /* reveal on scroll */
  .reveal{ opacity:0; transform:translateY(14px); transition:opacity .6s ease, transform .6s ease; }
  .reveal.in{ opacity:1; transform:translateY(0); }
  @media (prefers-reduced-motion: reduce){
    .reveal{ opacity:1; transform:none; transition:none; }
    *{ scroll-behavior:auto !important; }
  }

  /* ---------- NAV ---------- */
  header{
    position:sticky; top:0; z-index:50;
    background:var(--ink);
    border-bottom:1px solid var(--line-dark);
  }
  nav{
    max-width:1180px; margin:0 auto; padding:0 32px;
    height:72px;
    display:flex; align-items:center; justify-content:space-between;
    color:#F4F5F2;
  }
  .logo{
    font-family:'Big Shoulders Display', sans-serif;
    font-weight:900; font-size:1.55rem;
    text-transform:uppercase; letter-spacing:.01em;
    display:flex; align-items:baseline; gap:2px;
  }
  .logo span{ color:var(--teal); }
  .nav-links{ display:flex; gap:34px; font-size:.86rem; font-weight:500; }
  .nav-links a{ color:var(--muted-dark); transition:color .2s ease; position:relative; }
  .nav-links a:hover, .nav-links a:focus-visible{ color:#fff; }
  .nav-cta{
    background:var(--teal); color:var(--ink);
    padding:10px 20px; font-weight:600; font-size:.86rem;
    border:1px solid var(--teal); border-radius:var(--radius);
  }
  .nav-cta:hover{ background:transparent; color:var(--teal); }
  .nav-links, .nav-cta{ }
  @media (max-width:860px){ .nav-links{ display:none; } }

  /* ---------- HERO ---------- */
  .hero{
    background:var(--ink); color:#F4F5F2;
    padding:88px 0 64px;
    position:relative;
    overflow:hidden;
    border-bottom:1px solid var(--line-dark);
  }
  .hero::after{
    content:"";
    position:absolute; inset:0;
    background-image:
      linear-gradient(var(--line-dark) 1px, transparent 1px),
      linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
    background-size:64px 64px;
    opacity:.25;
    mask-image:radial-gradient(ellipse 70% 60% at 50% 0%, black, transparent);
    pointer-events:none;
  }
  .hero-inner{ position:relative; z-index:1; }
  .hero .eyebrow{ color:var(--teal); margin-bottom:22px; }
  .hero h1{
    font-size:clamp(2.6rem, 6vw, 5rem);
    max-width:14ch;
    color:#F4F5F2;
  }
  .hero h1 em{ font-style:normal; color:var(--teal); }
  .hero p.lede{
    margin-top:22px;
    max-width:46ch;
    color:var(--muted-dark);
    font-size:1.08rem;
  }
  .hero-cta-row{ display:flex; gap:14px; margin-top:34px; flex-wrap:wrap; }
  .btn-primary{
    background:var(--teal); color:var(--ink);
    padding:14px 26px; font-weight:600; font-size:.94rem;
    border-radius:var(--radius); border:1px solid var(--teal);
    transition:background .2s ease, color .2s ease;
  }
  .btn-primary:hover{ background:transparent; color:var(--teal); }
  .btn-ghost{
    padding:14px 26px; font-weight:600; font-size:.94rem;
    border-radius:var(--radius); border:1px solid var(--line-dark); color:#F4F5F2;
    transition:border-color .2s ease;
  }
  .btn-ghost:hover{ border-color:var(--teal); }

  /* ---------- GAUGES ---------- */
  .gauge-row{
    display:grid; grid-template-columns:repeat(4,1fr); gap:1px;
    margin-top:64px;
    background:var(--line-dark);
    border:1px solid var(--line-dark);
  }
  .gauge-cell{
    background:var(--panel);
    padding:26px 22px 22px;
    display:flex; flex-direction:column; align-items:flex-start;
    transition:background .25s ease;
  }
  .gauge-cell:hover{ background:var(--panel-2); }
  .gauge-cell .g-label{
    font-family:'IBM Plex Mono', monospace;
    font-size:.72rem; letter-spacing:.1em; text-transform:uppercase;
    color:var(--muted-dark); margin-bottom:14px;
  }
  .gauge{
    width:120px; height:60px; position:relative; overflow:hidden; margin-bottom:10px;
  }
  .gauge .dial{
    position:absolute; top:0; left:0;
    width:120px; height:120px; border-radius:50%;
    background:conic-gradient(from -90deg,
      var(--teal) 0turn,
      var(--teal) var(--frac),
      var(--track-dark) var(--frac) .5turn,
      transparent .5turn 1turn);
  }
  .gauge .dial::after{
    content:""; position:absolute; inset:14px 14px auto 14px;
    top:14px; left:14px; right:14px; bottom:auto;
    width:92px; height:92px; border-radius:50%;
    background:var(--panel);
  }
  .gauge-cell:hover .dial::after{ background:var(--panel-2); }
  .gauge .needle{
    position:absolute; left:60px; bottom:0;
    width:2px; height:50px; background:var(--amber);
    transform-origin:bottom center;
    transform:rotate(-90deg);
    transition:transform 1s cubic-bezier(.2,.8,.2,1);
    border-radius:2px;
  }
  .gauge .needle::after{
    content:""; position:absolute; bottom:-4px; left:-4px;
    width:10px; height:10px; border-radius:50%; background:var(--amber);
  }
  .gauge-cell.in .needle{ transform:rotate(var(--rot)); }
  .g-value{ font-family:'Big Shoulders Display'; font-weight:800; font-size:1.9rem; color:#F4F5F2; }
  .g-value small{ font-family:'IBM Plex Mono'; font-size:.9rem; font-weight:400; color:var(--muted-dark); margin-left:4px; }
  .g-sub{ font-size:.82rem; color:var(--muted-dark); margin-top:2px; }
  .g-go{
    margin-top:16px; font-size:.78rem; font-weight:600;
    color:var(--teal); display:flex; align-items:center; gap:6px;
  }

  /* ---------- TRUST STRIP ---------- */
  .trust{
    background:var(--paper); border-bottom:1px solid var(--line-light);
  }
  .trust-inner{
    display:flex; justify-content:space-between; flex-wrap:wrap; gap:20px;
    padding:26px 0;
  }
  .trust-item{ display:flex; align-items:baseline; gap:8px; }
  .trust-item .n{ font-family:'Big Shoulders Display'; font-size:1.5rem; font-weight:800; }
  .trust-item .t{ font-size:.82rem; color:var(--muted-light); }

  /* ---------- SECTION HEADERS ---------- */
  section{ padding:88px 0; }
  .sec-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:24px; margin-bottom:48px; flex-wrap:wrap; }
  .sec-head h2{ font-size:clamp(1.9rem,3.4vw,2.7rem); max-width:16ch; }
  .sec-head p{ max-width:38ch; color:var(--muted-light); font-size:.98rem; }
  .light .eyebrow{ color:var(--teal-dim); }

  /* ---------- STEPS ---------- */
  .steps{ background:var(--paper); }
  .steps-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line-light); border:1px solid var(--line-light); }
  .step{ background:var(--paper); padding:34px 30px; }
  .step .idx{ font-family:'IBM Plex Mono'; font-size:.78rem; color:var(--teal-dim); margin-bottom:18px; }
  .step h3{ font-family:'Big Shoulders Display'; font-weight:800; font-size:1.5rem; text-transform:uppercase; margin-bottom:10px; }
  .step p{ color:var(--muted-light); font-size:.92rem; max-width:32ch; }
  @media (max-width:760px){ .steps-grid{ grid-template-columns:1fr; } }

  /* ---------- COMPARATOR PREVIEW ---------- */
  .compare{ background:var(--ink); color:#F4F5F2; }
  .compare .sec-head p{ color:var(--muted-dark); }
  .tabs{ display:flex; gap:2px; margin-bottom:0; border:1px solid var(--line-dark); }
  .tab{
    flex:1; text-align:center; padding:14px 10px; background:var(--panel);
    color:var(--muted-dark); font-size:.84rem; font-weight:600;
    border-right:1px solid var(--line-dark);
  }
  .tab:last-child{ border-right:none; }
  .tab.active{ background:var(--teal); color:var(--ink); }
  .table-wrap{ border:1px solid var(--line-dark); border-top:none; overflow-x:auto; }
  table{ width:100%; border-collapse:collapse; min-width:640px; }
  thead th{
    text-align:left; font-family:'IBM Plex Mono'; font-size:.72rem; letter-spacing:.08em;
    text-transform:uppercase; color:var(--muted-dark); font-weight:500;
    padding:16px 20px; border-bottom:1px solid var(--line-dark);
  }
  tbody td{ padding:18px 20px; border-bottom:1px solid var(--line-dark); font-size:.92rem; }
  tbody tr:last-child td{ border-bottom:none; }
  tbody tr.best{ background:var(--panel-2); position:relative; }
  tbody tr.best td:first-child{ box-shadow:inset 3px 0 0 var(--amber); }
  .offer-name{ font-weight:600; display:flex; align-items:center; gap:10px; }
  .badge-best{
    font-family:'IBM Plex Mono'; font-size:.66rem; letter-spacing:.06em; text-transform:uppercase;
    background:var(--amber); color:var(--ink); padding:3px 8px; border-radius:2px; font-weight:600;
  }
  .num{ font-family:'IBM Plex Mono'; }
  .row-cta{ color:var(--teal); font-weight:600; font-size:.84rem; }

  /* ---------- BEST OF ---------- */
  .bestof{ background:var(--paper); }
  .bestof-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line-light); border:1px solid var(--line-light); }
  .bo-card{ background:var(--paper); padding:28px 24px; display:flex; flex-direction:column; gap:16px; }
  .bo-top{ display:flex; justify-content:space-between; align-items:flex-start; }
  .bo-vert{ font-family:'IBM Plex Mono'; font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; color:var(--muted-light); }
  .bo-mini-gauge{ width:44px; height:22px; position:relative; overflow:hidden; }
  .bo-mini-gauge .dial{ position:absolute; width:44px; height:44px; border-radius:50%;
    background:conic-gradient(from -90deg, var(--teal) 0turn, var(--teal) var(--frac), var(--track-light) var(--frac) .5turn, transparent .5turn 1turn); }
  .bo-mini-gauge .dial::after{ content:""; position:absolute; inset:5px; border-radius:50%; background:var(--paper); }
  .bo-offer{ font-family:'Big Shoulders Display'; font-weight:800; font-size:1.5rem; text-transform:uppercase; line-height:1; }
  .bo-rate{ font-family:'IBM Plex Mono'; font-size:1.6rem; color:var(--teal-dim); }
  .bo-desc{ font-size:.86rem; color:var(--muted-light); }
  .bo-cta{ margin-top:auto; font-size:.82rem; font-weight:600; color:var(--paper-ink); border-top:1px solid var(--line-light); padding-top:14px; display:flex; justify-content:space-between; }
  @media (max-width:900px){ .bestof-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:560px){ .bestof-grid{ grid-template-columns:1fr; } }

  /* ---------- EDITORIAL ---------- */
  .editorial{ background:var(--paper); }
  .ed-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
  .ed-card{ border:1px solid var(--line-light); padding:26px; display:flex; flex-direction:column; gap:14px; background:#F3F1EA; }
  .ed-tag{ font-family:'IBM Plex Mono'; font-size:.68rem; letter-spacing:.1em; text-transform:uppercase; color:#fff; background:var(--paper-ink); padding:4px 9px; width:fit-content; border-radius:2px; }
  .ed-tag.tofu{ background:#5C6470; }
  .ed-tag.mofu{ background:var(--teal-dim); }
  .ed-tag.bofu{ background:var(--amber); color:var(--ink); }
  .ed-card h3{ font-size:1.15rem; font-weight:600; line-height:1.3; }
  .ed-card p{ font-size:.87rem; color:var(--muted-light); }
  .ed-meta{ font-family:'IBM Plex Mono'; font-size:.72rem; color:var(--muted-light); margin-top:auto; }
  @media (max-width:860px){ .ed-grid{ grid-template-columns:1fr; } }

  /* ---------- FOOTER ---------- */
  footer{ background:var(--ink); color:var(--muted-dark); padding:64px 0 30px; }
  .foot-top{ display:grid; grid-template-columns:1.4fr repeat(4,1fr); gap:32px; padding-bottom:44px; border-bottom:1px solid var(--line-dark); }
  .foot-brand .logo{ color:#F4F5F2; margin-bottom:14px; }
  .foot-brand p{ font-size:.86rem; max-width:32ch; }
  .foot-col h4{ font-family:'IBM Plex Mono'; font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color:#F4F5F2; margin-bottom:16px; }
  .foot-col a{ display:block; font-size:.86rem; margin-bottom:10px; color:var(--muted-dark); transition:color .2s ease; }
  .foot-col a:hover{ color:#fff; }
  .foot-bottom{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:14px; padding-top:26px; font-size:.78rem; }
  .foot-legal{ max-width:64ch; line-height:1.6; }
  @media (max-width:900px){ .foot-top{ grid-template-columns:1fr 1fr; } }

  /* ---------- BLOCS SUPPLÉMENTAIRES (Page Builder) ---------- */

  .pictos-section{ padding:88px 0; background:var(--paper); }
  .pictos-grid{ display:grid; gap:28px; }
  .picto-item{ text-align:left; }
  .picto-icon{ font-size:1.8rem; margin-bottom:14px; color:var(--teal-dim); }
  .picto-item h4{ font-family:'Big Shoulders Display'; font-weight:800; font-size:1.15rem; text-transform:uppercase; margin-bottom:6px; }
  .picto-item p{ font-size:.88rem; color:var(--muted-light); }

  .slider-section{ padding:88px 0; background:var(--ink); color:#F4F5F2; }
  .slider-section h2{ color:#F4F5F2; }
  .slider-track{ display:flex; gap:20px; overflow-x:auto; padding-bottom:10px; scroll-snap-type:x mandatory; }
  .slide{ flex:0 0 280px; background:var(--panel); border:1px solid var(--line-dark); padding:20px; scroll-snap-align:start; }
  .slide img{ width:100%; height:150px; object-fit:cover; margin-bottom:14px; border-radius:2px; }
  .slide h4{ font-family:'Big Shoulders Display'; font-weight:800; font-size:1.1rem; text-transform:uppercase; margin-bottom:6px; }
  .slide p{ font-size:.85rem; color:var(--muted-dark); }

  .texte-section{ padding:72px 0; }
  .texte-section.texte-clair{ background:var(--paper); color:var(--paper-ink); }
  .texte-section.texte-sombre{ background:var(--ink); color:#F4F5F2; }
  .texte-section h2{ margin-bottom:20px; }
  .texte-section p{ max-width:70ch; margin-bottom:16px; line-height:1.7; }
  .texte-section.texte-sombre p{ color:var(--muted-dark); }
  .texte-section.texte-clair p{ color:var(--muted-light); }

  .texte-image-section{ padding:72px 0; background:var(--paper); }
  .texte-image-grid{ display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
  .texte-image-section.img-gauche .texte-image-grid{ direction:rtl; }
  .texte-image-section.img-gauche .ti-text, .texte-image-section.img-gauche .ti-image{ direction:ltr; }
  .ti-text h2{ margin-bottom:16px; }
  .ti-text p{ color:var(--muted-light); line-height:1.7; }
  .ti-image img{ width:100%; border-radius:2px; display:block; }
  @media (max-width:760px){ .texte-image-grid{ grid-template-columns:1fr; } .texte-image-section.img-gauche .texte-image-grid{ direction:ltr; } }

  .image-section{ background:var(--paper); }
  .image-section:not(.full){ padding:40px 0; }
  .img-legende{ font-size:.82rem; color:var(--muted-light); margin-top:10px; text-align:center; }

  .cta-section{ padding:80px 0; }
  .cta-section.cta-sombre{ background:var(--ink); color:#F4F5F2; }
  .cta-section.cta-clair{ background:var(--paper); color:var(--paper-ink); }
  .cta-inner{ text-align:center; max-width:60ch; margin:0 auto; }
  .cta-inner h2{ margin-bottom:16px; }
  .cta-inner p{ margin-bottom:28px; font-size:1.02rem; }
  .cta-sombre p{ color:var(--muted-dark); }
  .cta-clair p{ color:var(--muted-light); }
  .cta-inner .btn-primary{ display:inline-flex; }

  .faq-section{ padding:88px 0; background:var(--paper); }
  .faq-list{ max-width:74ch; border-top:1px solid var(--line-light); }
  .faq-item{ border-bottom:1px solid var(--line-light); padding:18px 0; }
  .faq-item summary{ cursor:pointer; font-weight:600; font-size:.98rem; list-style:none; display:flex; justify-content:space-between; align-items:center; }
  .faq-item summary::-webkit-details-marker{ display:none; }
  .faq-item summary::after{ content:"+"; font-family:'IBM Plex Mono'; color:var(--teal-dim); font-size:1.2rem; }
  .faq-item[open] summary::after{ content:"–"; }
  .faq-item p{ margin-top:12px; color:var(--muted-light); font-size:.92rem; line-height:1.6; }

  .empty-page{ padding:120px 32px; text-align:center; color:var(--muted-light); }
