:root {
  --paper: #f7f5ef;
  --paper2: #efece3;
  --card: #ffffff;
  --ink: #12151a;
  --ink2: #3d434d;
  --ink3: #71767f;
  --line: #e1ddd1;
  --line2: #d2cdbf;
  --teal: #0ba894;
  --teal-dk: #087f71;
  --teal-ink: #053b34;
  --cyan: #00aeef;
  --magenta: #ec008c;
  --yellow: #ffd400;
  --night: #0b1019;
  --night2: #0f1522;
  --npanel: #141c2e;
  --nline: #212b42;
  --nink: #eef2f7;
  --nmid: #8c97ab;
  --r: 20px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Instrument Sans", sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection {
  background: var(--ink);
  color: var(--paper);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3 {
  font-family: "Unbounded", sans-serif;
  letter-spacing: -0.02em;
}
.mono {
  font-family: "JetBrains Mono", monospace;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .reveal,
  .reveal-print {
    opacity: 1 !important;
    transform: none !important;
    text-shadow: none !important;
  }
  .loader,
  .cur {
    display: none !important;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s cubic-bezier(0.2, 0.6, 0.2, 1),
    transform 0.65s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ====== SIGNATURE : barre de contrôle CMJN (comme sur les bords de feuille offset) ====== */
.cmyk {
  display: flex;
  gap: 0;
  height: 8px;
  width: 100%;
}
.cmyk i {
  flex: 1;
}
.cmyk .c {
  background: var(--cyan);
}
.cmyk .m {
  background: var(--magenta);
}
.cmyk .y {
  background: var(--yellow);
}
.cmyk .k {
  background: var(--ink);
}
.cmyk .t {
  background: var(--teal);
}
.cmyk-mini {
  display: inline-flex;
  gap: 3px;
  vertical-align: middle;
}
.cmyk-mini i {
  width: 9px;
  height: 9px;
  border-radius: 2px;
}

/* repère de calage (registration mark) */
.reg {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  display: inline-block;
}
.reg::before,
.reg::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.reg::before {
  left: 50%;
  top: 0;
  width: 1.4px;
  height: 100%;
  transform: translateX(-50%);
}
.reg::after {
  top: 50%;
  left: 0;
  height: 1.4px;
  width: 100%;
  transform: translateY(-50%);
}
.reg u {
  position: absolute;
  inset: 2.5px;
  border: 1.4px solid currentColor;
  border-radius: 50%;
}

/* eyebrow technique */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--teal-dk);
  margin-bottom: 18px;
}
.eyebrow .reg {
  color: var(--teal-dk);
}

/* ====== BARRE DE PROGRESSION CMJN (scroll) ====== */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 400;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(
    90deg,
    var(--cyan) 0 25%,
    var(--magenta) 25% 50%,
    var(--yellow) 50% 75%,
    var(--teal) 75%
  );
  transition: transform 0.08s linear;
}

/* ====== MARQUEE (bandeau défilant) ====== */
.marquee {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding: 14px 0;
  white-space: nowrap;
  position: relative;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 44px;
  animation: mq 30s linear infinite;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-right: 44px;
}
@keyframes mq {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee .sq {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  flex: none;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* ====== SECTION SCANDAR ====== */
.scandar-panel {
  margin-top: 64px;
  background: linear-gradient(135deg, #0e1b2e, #0a2a26);
  border: 1px solid rgba(11, 168, 148, 0.3);
  border-radius: calc(var(--r) + 6px);
  padding: 52px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.scandar-panel::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(11, 168, 148, 0.2),
    transparent 70%
  );
  pointer-events: none;
}
.scandar-panel h3 {
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}
.scandar-panel h3 .t {
  color: var(--teal);
}
.scandar-panel > div > p {
  color: var(--nmid);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 22px;
}
.lang-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.lang-chips span {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid rgba(11, 168, 148, 0.35);
  color: var(--teal);
}
.sc-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.browser {
  background: #0a1120;
  border: 1px solid var(--nline);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 80px -35px rgba(0, 0, 0, 0.7);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--nline);
  background: rgba(255, 255, 255, 0.03);
}
.browser-bar .dots {
  display: flex;
  gap: 6px;
}
.browser-bar .dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}
.browser-url {
  flex: 1;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  color: var(--teal);
  background: rgba(11, 168, 148, 0.08);
  border: 1px solid rgba(11, 168, 148, 0.25);
  border-radius: 100px;
  padding: 6px 14px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}
.browser-body {
  padding: 22px 20px;
}
.bl-langs {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}
.bl-langs span {
  font-size: 0.66rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #c6ceda;
}
.bl-langs span.on {
  background: var(--teal);
  color: #04201c;
  border-color: transparent;
}
.bl-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 15px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 9px;
  font-size: 0.84rem;
  color: #e8eef5;
  font-weight: 500;
}
.bl-item b {
  font-family: "JetBrains Mono", monospace;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--teal);
}
.bl-live {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nmid);
  margin-top: 16px;
  justify-content: center;
}

/* ====== NAV ====== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: rgba(247, 245, 239, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s,
    padding 0.3s;
}
nav.scrolled {
  border-color: var(--line);
  padding: 10px 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Unbounded";
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}
.logo .badge {
  width: 34px;
  height: 34px;
  background: var(--ink);
  color: var(--teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}
.logo .badge::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--cyan) 25%,
    var(--magenta) 25% 50%,
    var(--yellow) 50% 75%,
    var(--teal) 75%
  );
}
.logo em {
  font-style: normal;
  color: var(--teal-dk);
}
.nlinks {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nlinks a {
  font-size: 0.9rem;
  color: var(--ink2);
  font-weight: 500;
  transition: color 0.2s;
}
.nlinks a:hover {
  color: var(--ink);
}
.nbtn {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition:
    transform 0.15s,
    box-shadow 0.25s;
}
.nbtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(18, 21, 26, 0.5);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s;
}
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mmenu {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 250;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mmenu.open {
  transform: none;
}
.mmenu a {
  font-family: "Unbounded";
  font-size: 1.5rem;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.mmenu a:last-child {
  border: 0;
  color: var(--teal-dk);
}

/* ====== HERO ====== */
.hero {
  position: relative;
  padding: 150px 40px 60px;
  max-width: 1320px;
  margin: 0 auto;
}
.hero-halftone {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    rgba(18, 21, 26, 0.07) 1.2px,
    transparent 1.2px
  );
  background-size: 20px 20px;
  mask-image: radial-gradient(90% 70% at 80% 10%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(
    90% 70% at 80% 10%,
    #000 20%,
    transparent 70%
  );
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 8px 16px 8px 12px;
  border-radius: 100px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink2);
  margin-bottom: 30px;
}
.hero-tag .reg {
  color: var(--teal-dk);
}
.hero h1 {
  font-size: clamp(2.3rem, 4.9vw, 3.9rem);
  font-weight: 600;
  line-height: 1.06;
  margin-bottom: 26px;
}
.hero h1 .t {
  color: var(--teal-dk);
}
.hero-sub {
  font-size: 1.12rem;
  color: var(--ink2);
  line-height: 1.65;
  max-width: 48ch;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 28px;
  border-radius: 100px;
  font-family: "Instrument Sans";
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: 0;
  transition:
    transform 0.15s,
    box-shadow 0.25s,
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
}
.btn-ink {
  background: var(--ink);
  color: var(--paper);
}
.btn-ink:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(18, 21, 26, 0.45);
}
.btn-line {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line2);
}
.btn-line:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-teal {
  background: var(--teal);
  color: #04201c;
}
.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(11, 168, 148, 0.5);
}
.btn .ar {
  transition: transform 0.2s;
}
.btn:hover .ar {
  transform: translateX(3px);
}
.hero-specs {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.74rem;
  color: var(--ink3);
  letter-spacing: 0.04em;
}
.hero-specs b {
  display: block;
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 3px;
}

/* Feuille en cours d'impression (visuel hero) */
.press-sheet {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}
.sheet {
  position: relative;
  width: min(380px, 100%);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow:
    0 30px 70px -25px rgba(18, 21, 26, 0.3),
    0 4px 14px rgba(18, 21, 26, 0.06);
  padding: 34px 30px 26px;
  transform: rotate(-2deg);
  animation: sheetfloat 7s ease-in-out infinite alternate;
}
@keyframes sheetfloat {
  from {
    transform: rotate(-2deg) translateY(-6px);
  }
  to {
    transform: rotate(-2deg) translateY(6px);
  }
}
.sheet .crop {
  position: absolute;
  width: 16px;
  height: 16px;
  color: var(--ink3);
}
.sheet .crop::before,
.sheet .crop::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.sheet .crop::before {
  width: 100%;
  height: 1.2px;
}
.sheet .crop::after {
  height: 100%;
  width: 1.2px;
}
.crop.tl {
  top: 9px;
  left: 9px;
}
.crop.tl::before {
  top: 0;
  left: 0;
}
.crop.tl::after {
  top: 0;
  left: 0;
}
.crop.tr {
  top: 9px;
  right: 9px;
}
.crop.tr::before {
  top: 0;
  right: 0;
}
.crop.tr::after {
  top: 0;
  right: 0;
}
.crop.bl {
  bottom: 9px;
  left: 9px;
}
.crop.bl::before {
  bottom: 0;
  left: 0;
}
.crop.bl::after {
  bottom: 0;
  left: 0;
}
.crop.br {
  bottom: 9px;
  right: 9px;
}
.crop.br::before {
  bottom: 0;
  right: 0;
}
.crop.br::after {
  bottom: 0;
  right: 0;
}
.sheet-cmyk {
  position: absolute;
  top: -14px;
  left: 30px;
  right: 30px;
  display: flex;
  gap: 5px;
}
.sheet-cmyk i {
  flex: 1;
  height: 8px;
  border-radius: 2px;
}
.ink-sweep {
  position: absolute;
  left: 0;
  right: 0;
  top: -40%;
  height: 40%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(11, 168, 148, 0.14),
    transparent
  );
  animation: sweep 4.6s ease-in-out infinite;
  pointer-events: none;
  border-radius: 6px;
}
@keyframes sweep {
  0% {
    top: -40%;
  }
  60% {
    top: 105%;
  }
  100% {
    top: 105%;
  }
}
.sh-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.sh-av {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--teal);
  font-family: "Unbounded";
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.sh-av::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--cyan) 25%,
    var(--magenta) 25% 50%,
    var(--yellow) 50% 75%,
    var(--teal) 75%
  );
}
.sh-name {
  font-family: "Unbounded";
  font-weight: 600;
  font-size: 0.98rem;
}
.sh-role {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  color: var(--teal-dk);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sh-lines {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
}
.sh-lines span {
  height: 12px;
  border-radius: 6px;
  background: var(--paper2);
}
.sh-lines span:nth-child(1) {
  width: 88%;
}
.sh-lines span:nth-child(2) {
  width: 70%;
}
.sh-lines span:nth-child(3) {
  width: 78%;
}
.sh-qr-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--paper);
  border: 1px dashed var(--line2);
  border-radius: 14px;
  padding: 14px;
}
.qr-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2.5px;
  width: 66px;
  height: 66px;
  flex: none;
}
.qr-grid i {
  background: transparent;
  border-radius: 1.5px;
}
.qr-grid i.f {
  background: var(--ink);
}
.sh-qr-tx b {
  font-family: "Unbounded";
  font-size: 1.25rem;
  display: block;
  line-height: 1.15;
}
.sh-qr-tx span {
  font-size: 0.78rem;
  color: var(--ink3);
}
.sh-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.64rem;
  color: var(--ink3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.float-chip {
  position: absolute;
  top: 36px;
  right: -6px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--night);
  color: var(--nink);
  border-radius: 14px;
  padding: 13px 16px;
  box-shadow: 0 24px 50px -20px rgba(11, 16, 25, 0.55);
  animation: chipfloat 6.5s ease-in-out 0.5s infinite alternate;
}
@keyframes chipfloat {
  from {
    transform: translateY(-7px);
  }
  to {
    transform: translateY(7px);
  }
}
.fc-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(11, 168, 148, 0.55);
  animation: pulse 1.9s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(11, 168, 148, 0.55);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(11, 168, 148, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(11, 168, 148, 0);
  }
}
.fc-tx b {
  font-family: "Unbounded";
  font-size: 0.98rem;
  display: block;
  line-height: 1.1;
}
.fc-tx span {
  font-size: 0.72rem;
  color: var(--nmid);
}
.float-chip2 {
  position: absolute;
  bottom: 44px;
  left: -10px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 18px 40px -18px rgba(18, 21, 26, 0.25);
  animation: chipfloat 7.5s ease-in-out 1.2s infinite alternate-reverse;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  color: var(--ink2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.float-chip2 .sq {
  display: flex;
  gap: 3px;
}
.float-chip2 .sq i {
  width: 10px;
  height: 10px;
  border-radius: 2px;
}

/* ====== BANDE COMPTEUR ====== */
.statband {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper2);
}
.statband-in {
  max-width: 1320px;
  margin: 0 auto;
  padding: 34px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.plive {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink3);
  margin-bottom: 12px;
}
.pdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 1.9s infinite;
}
.pcount {
  font-family: "Unbounded";
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.pcl {
  font-size: 0.9rem;
  color: var(--ink3);
  margin-top: 8px;
}
.trustband {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}
.trustband div b {
  font-family: "Unbounded";
  font-size: 1.5rem;
  display: block;
  line-height: 1.1;
}
.trustband div span {
  font-size: 0.84rem;
  color: var(--ink3);
}

/* ====== SECTIONS ====== */
.sec {
  max-width: 1320px;
  margin: 0 auto;
  padding: 96px 40px;
  scroll-margin-top: 80px;
}
.sec-title {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.14;
}
.sec-sub {
  color: var(--ink2);
  font-size: 1.03rem;
  line-height: 1.65;
  max-width: 62ch;
  margin-top: 16px;
}
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 52px;
}

/* ====== PRODUITS (bento clair) ====== */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px;
  transition:
    transform 0.28s,
    box-shadow 0.28s,
    border-color 0.28s;
  position: relative;
  overflow: hidden;
  display: block;
  color: inherit;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: 0 24px 50px -22px rgba(18, 21, 26, 0.28);
}
.card .ci {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--ink);
}
.card h3 {
  font-size: 1.06rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}
.card p {
  font-size: 0.92rem;
  color: var(--ink2);
  line-height: 1.6;
}
.card .go {
  margin-top: 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--teal-dk);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.card .go .ar {
  transition: transform 0.2s;
}
.card:hover .go .ar {
  transform: translateX(4px);
}
.card.lg {
  grid-column: span 3;
}
.card.md {
  grid-column: span 2;
}
.card.wide {
  grid-column: span 4;
}
.card.feat {
  grid-column: span 3;
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.card.feat .ci {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--teal);
}
.card.feat p {
  color: rgba(247, 245, 239, 0.72);
}
.card.feat .go {
  color: var(--teal);
}
.card.feat::after {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--cyan) 25%,
    var(--magenta) 25% 50%,
    var(--yellow) 50% 75%,
    var(--teal) 75%
  );
  border-radius: 0 0 4px 4px;
}
.seo-prose {
  margin-top: 48px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  max-width: 80ch;
}
.seo-prose p {
  color: var(--ink2);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0 0 14px;
}
.seo-prose strong {
  color: var(--ink);
  font-weight: 600;
}

/* ====== TRANSITION PAPIER → PIXEL ====== */
.bridge {
  position: relative;
  background: linear-gradient(
    180deg,
    var(--paper) 0%,
    var(--paper2) 45%,
    var(--night) 100%
  );
  padding: 80px 40px 40px;
  text-align: center;
  overflow: hidden;
}
.bridge .cmyk {
  max-width: 520px;
  margin: 0 auto 34px;
  border-radius: 4px;
  overflow: hidden;
}
.bridge h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--ink);
}
.bridge h2 .px {
  background: linear-gradient(120deg, var(--teal), #4fe3cf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bridge p {
  color: var(--ink3);
  margin-top: 14px;
  font-size: 1rem;
}
.bridge .arrow-dn {
  margin: 36px auto 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--nline);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  animation: chipfloat 2.4s ease-in-out infinite alternate;
}

/* ====== ZONE NUIT (connecté) ====== */
.night {
  background: var(--night);
  color: var(--nink);
}
.night .eyebrow {
  color: var(--teal);
}
.night .sec-sub {
  color: var(--nmid);
}
.night-glow {
  position: relative;
  overflow: hidden;
}
.night-glow::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(11, 168, 148, 0.13),
    transparent 70%
  );
  pointer-events: none;
}
.qr-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.qcard {
  background: var(--npanel);
  border: 1px solid var(--nline);
  border-radius: var(--r);
  padding: 28px;
  cursor: pointer;
  transition:
    transform 0.28s,
    border-color 0.28s,
    box-shadow 0.28s;
  position: relative;
  overflow: hidden;
}
.qcard:hover {
  transform: translateY(-6px);
  border-color: var(--teal);
  box-shadow: 0 24px 60px -25px rgba(11, 168, 148, 0.35);
}
.qcard .ci {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: rgba(11, 168, 148, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--teal);
}
.qcard h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 9px;
  line-height: 1.35;
}
.qcard p {
  font-size: 0.9rem;
  color: var(--nmid);
  line-height: 1.6;
}
.qcard .tagpill {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--teal);
  border: 1px solid rgba(11, 168, 148, 0.4);
  border-radius: 100px;
  padding: 4px 10px;
}
.qcard .more {
  margin-top: 16px;
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}
.qcard::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s;
  background: radial-gradient(
    260px circle at var(--mx, 50%) var(--my, 50%),
    rgba(11, 168, 148, 0.14),
    transparent 60%
  );
}
.qcard:hover::after {
  opacity: 1;
}
.conn-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.conn-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.14;
}
.conn-head h2 .t {
  color: var(--teal);
}
.conn-head > p {
  color: var(--nmid);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Téléphone (mockup) */
.phone-wrap {
  display: flex;
  justify-content: center;
}
.phone {
  position: relative;
  width: 262px;
  height: 530px;
  border-radius: 44px;
  background: linear-gradient(165deg, #1a2438, #0d1424);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 50px 100px -35px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(11, 168, 148, 0.12);
  padding: 14px;
  animation: chipfloat 6s ease-in-out infinite alternate;
}
.phone-cam {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 7px;
  border-radius: 10px;
  background: #05080f;
  z-index: 4;
}
.phone-screen {
  position: relative;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(
      120% 55% at 50% 0%,
      rgba(11, 168, 148, 0.16),
      transparent 55%
    ),
    #0a1120;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px 18px 18px;
}
.scan-sweep {
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  top: -120px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(11, 168, 148, 0.3),
    transparent
  );
  animation: sweep2 4.4s ease-in-out infinite;
}
@keyframes sweep2 {
  0% {
    top: -120px;
  }
  55% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}
.pv-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
}
.pv-av {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #19cdb6, #087f71);
  color: #04201c;
  font-family: "Unbounded";
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.pv-name {
  font-family: "Unbounded";
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
}
.pv-role {
  font-size: 0.72rem;
  color: var(--teal);
}
.pv-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.pv-actions span {
  display: block;
  padding: 11px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.82rem;
  color: #e8eef5;
  font-weight: 500;
}
.pv-actions span:first-child {
  background: linear-gradient(135deg, #19cdb6, #087f71);
  color: #04201c;
  border-color: transparent;
  font-weight: 600;
}
.pv-stat {
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 14px;
}
.pv-qr {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  width: 50px;
  height: 50px;
  flex: none;
}
.pv-qr i {
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.06);
}
.pv-qr i.f {
  background: var(--teal);
}
.pv-num b {
  font-family: "Unbounded";
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  display: block;
  line-height: 1.1;
}
.pv-num span {
  font-size: 0.72rem;
  color: var(--nmid);
}
.pv-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 46px;
}
.pv-bars i {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--teal), rgba(11, 168, 148, 0.2));
  animation: hbar 1.6s ease-in-out infinite;
}
.pv-bars i:nth-child(2) {
  animation-delay: 0.15s;
}
.pv-bars i:nth-child(3) {
  animation-delay: 0.3s;
}
.pv-bars i:nth-child(4) {
  animation-delay: 0.45s;
}
.pv-bars i:nth-child(5) {
  animation-delay: 0.6s;
}
.pv-bars i:nth-child(6) {
  animation-delay: 0.75s;
}
.pv-bars i:nth-child(7) {
  animation-delay: 0.9s;
}
@keyframes hbar {
  0%,
  100% {
    height: 30%;
  }
  50% {
    height: 100%;
  }
}

/* Dashboard features */
.dash-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.df {
  display: flex;
  gap: 14px;
  background: var(--npanel);
  border: 1px solid var(--nline);
  border-radius: 16px;
  padding: 22px;
}
.df .dot {
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 8px;
  background: rgba(11, 168, 148, 0.14);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}
.df b {
  display: block;
  font-size: 0.94rem;
  margin-bottom: 5px;
  font-weight: 600;
}
.df span {
  font-size: 0.85rem;
  color: var(--nmid);
  line-height: 1.55;
}

/* ====== RETOUR PAPIER : process ====== */
.bridge-up {
  background: linear-gradient(
    180deg,
    var(--night) 0%,
    var(--paper2) 70%,
    var(--paper) 100%
  );
  height: 120px;
}
.ptrack {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--card);
}
.pcol {
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  position: relative;
}
.pcol:last-child {
  border-right: 0;
}
.pcol .pn {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-dk);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pcol .pn::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 2px;
}
.pcol:nth-child(1) .pn::before {
  background: var(--cyan);
}
.pcol:nth-child(2) .pn::before {
  background: var(--magenta);
}
.pcol:nth-child(3) .pn::before {
  background: var(--yellow);
}
.pcol:nth-child(4) .pn::before {
  background: var(--teal);
}
.pcol h3 {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.pcol p {
  font-size: 0.9rem;
  color: var(--ink2);
  line-height: 1.6;
}

/* ====== ESTIMATEUR ====== */
.est {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.est-l p {
  color: var(--ink2);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-top: 16px;
}
.trust {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.trust b {
  font-family: "Unbounded";
  font-size: 1.4rem;
  display: block;
  line-height: 1.1;
}
.trust span {
  font-size: 0.84rem;
  color: var(--ink3);
}
.est-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 34px;
  box-shadow: 0 30px 70px -35px rgba(18, 21, 26, 0.25);
  position: relative;
  overflow: hidden;
}
.est-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--cyan) 25%,
    var(--magenta) 25% 50%,
    var(--yellow) 50% 75%,
    var(--teal) 75%
  );
}
.ef {
  margin-bottom: 24px;
}
.ef label {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 12px;
}
.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.chip {
  padding: 10px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--line2);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}
.chip:hover {
  border-color: var(--ink);
}
.chip.on {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.qd2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.qd2 b {
  font-family: "Unbounded";
  font-size: 1.2rem;
}
input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--teal), var(--paper2));
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ink);
  border: 4px solid var(--paper);
  box-shadow: 0 3px 10px rgba(18, 21, 26, 0.35);
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ink);
  border: 4px solid var(--paper);
  cursor: pointer;
}
.eres {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px dashed var(--line2);
  padding-top: 20px;
}
.eres .l {
  font-size: 0.9rem;
  color: var(--ink3);
}
.eres .v {
  font-family: "Unbounded";
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal-dk);
}
.enote {
  font-size: 0.78rem;
  color: var(--ink3);
  line-height: 1.6;
  margin-top: 14px;
}

/* ====== CONTACT ====== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: flex-start;
}
.contact-l p {
  color: var(--ink2);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-top: 14px;
}
.cdet {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--card);
  overflow: hidden;
}
.cr {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.cr:last-child {
  border: 0;
}
.cr .l {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink3);
  padding-top: 3px;
}
.cr .v {
  font-size: 0.94rem;
  font-weight: 500;
  text-align: right;
}
a.v:hover {
  color: var(--teal-dk);
}
.cform {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px -35px rgba(18, 21, 26, 0.22);
}
.cform::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--cyan) 25%,
    var(--magenta) 25% 50%,
    var(--yellow) 50% 75%,
    var(--teal) 75%
  );
}
.cform-t {
  font-family: "Unbounded";
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 26px;
}
.fr2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fg {
  margin-bottom: 16px;
}
.fg label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.fg .rq {
  color: var(--magenta);
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--line2);
  background: var(--paper);
  font-family: inherit;
  font-size: 0.94rem;
  color: var(--ink);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(11, 168, 148, 0.15);
}
.fg textarea {
  min-height: 100px;
  resize: vertical;
}
.fg input.bad {
  border-color: var(--magenta);
}
.em {
  display: none;
  font-size: 0.76rem;
  color: var(--magenta);
  margin-top: 6px;
}
.em.show {
  display: block;
}
.qr-note {
  font-weight: 400;
  color: var(--ink3);
  font-size: 0.78rem;
}
.qr-toggle {
  display: inline-flex;
  border: 1.5px solid var(--line2);
  border-radius: 100px;
  overflow: hidden;
}
.qrt-opt {
  padding: 9px 22px;
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--ink2);
  transition: all 0.2s;
}
.qrt-opt.active {
  background: var(--ink);
  color: var(--paper);
}
.ok {
  display: none;
  text-align: center;
  padding: 50px 0;
}
.ok.show {
  display: block;
}
.ok .c {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(11, 168, 148, 0.14);
  color: var(--teal-dk);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.ok h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.ok p {
  color: var(--ink2);
  font-size: 0.94rem;
}

/* ====== FOOTER ====== */
footer {
  background: var(--night);
  color: var(--nink);
  padding: 0 40px 36px;
  position: relative;
}
.fin {
  max-width: 1320px;
  margin: 0 auto;
}
.fcta {
  text-align: center;
  padding: 88px 0 76px;
  border-bottom: 1px solid var(--nline);
}
.fcta h2 {
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 34px;
}
.fcta h2 .t {
  color: var(--teal);
}
.ftop {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding: 54px 0;
  flex-wrap: wrap;
}
.fbrand .logo {
  margin-bottom: 16px;
}
.fbrand .logo .badge {
  background: var(--nink);
  color: var(--night);
}
.fbrand p {
  font-size: 0.88rem;
  color: var(--nmid);
  line-height: 1.7;
  max-width: 300px;
}
.fcols {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.fcol h4 {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--nmid);
  margin-bottom: 18px;
  font-weight: 600;
}
.fcol ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.fcol a {
  font-size: 0.9rem;
  color: #c6ceda;
  transition: color 0.2s;
}
.fcol a:hover {
  color: var(--teal);
}
.fbot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--nline);
  flex-wrap: wrap;
  gap: 10px;
}
.fbot p {
  font-size: 0.8rem;
  color: var(--nmid);
}

.totop {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.2s;
  z-index: 220;
  box-shadow: 0 10px 26px -8px rgba(18, 21, 26, 0.5);
}
.totop.show {
  opacity: 1;
  pointer-events: auto;
}
.totop:hover {
  transform: translateY(-3px);
}

/* MODAL */
.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(11, 16, 25, 0.7);
  backdrop-filter: blur(8px);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-bg.open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: var(--card);
  color: var(--ink);
  border-radius: 24px;
  max-width: 480px;
  width: 100%;
  padding: 40px;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.3s;
  max-height: 88vh;
  overflow: auto;
}
.modal-bg.open .modal {
  transform: none;
}
.modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--cyan) 25%,
    var(--magenta) 25% 50%,
    var(--yellow) 50% 75%,
    var(--teal) 75%
  );
  border-radius: 24px 24px 0 0;
}
.modal .x {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--ink2);
}
.modal .mci {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal-dk);
}
.modal h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.modal > p {
  color: var(--ink2);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.modal ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}
.modal li {
  display: flex;
  gap: 11px;
  font-size: 0.9rem;
  color: var(--ink2);
  line-height: 1.5;
}
.modal .ck {
  color: var(--teal-dk);
  font-weight: 700;
  flex: none;
}
.modal .btn-teal {
  width: 100%;
  justify-content: center;
}

/* ====== AVANT-GARDE : PRÉCHARGEUR « CALAGE PRESSE » ====== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.55s ease,
    visibility 0.55s;
}
.loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.lpass {
  position: absolute;
  inset: 0;
  transform: translateX(-102%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.lpass.c {
  background: var(--cyan);
  animation: lpass 0.5s cubic-bezier(0.6, 0, 0.3, 1) 0.05s forwards;
}
.lpass.m {
  background: var(--magenta);
  animation: lpass 0.5s cubic-bezier(0.6, 0, 0.3, 1) 0.22s forwards;
}
.lpass.y {
  background: var(--yellow);
  animation: lpass 0.5s cubic-bezier(0.6, 0, 0.3, 1) 0.39s forwards;
}
.lpass.k {
  background: var(--ink);
  animation: lpass 0.5s cubic-bezier(0.6, 0, 0.3, 1) 0.56s forwards;
  mix-blend-mode: normal;
}
@keyframes lpass {
  0% {
    transform: translateX(-102%);
  }
  100% {
    transform: translateX(102%);
  }
}
.lcore {
  position: relative;
  text-align: center;
  z-index: 2;
}
.lcore .badge {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  background: var(--ink);
  color: var(--teal);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Unbounded";
  font-weight: 700;
  font-size: 1.25rem;
  position: relative;
  overflow: hidden;
}
.lcore .badge::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--cyan) 25%,
    var(--magenta) 25% 50%,
    var(--yellow) 50% 75%,
    var(--teal) 75%
  );
}
.lcore .lt {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink3);
}
.lcore .ld {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}
.lcore .ld i {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  opacity: 0;
  animation: ldot 0.3s forwards;
}
.lcore .ld i:nth-child(1) {
  background: var(--cyan);
  animation-delay: 0.15s;
}
.lcore .ld i:nth-child(2) {
  background: var(--magenta);
  animation-delay: 0.32s;
}
.lcore .ld i:nth-child(3) {
  background: var(--yellow);
  animation-delay: 0.49s;
}
.lcore .ld i:nth-child(4) {
  background: var(--ink);
  animation-delay: 0.66s;
}
@keyframes ldot {
  from {
    opacity: 0;
    transform: scale(0.4);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ====== SIGNATURE : TITRES QUI SE CALENT (repérage CMJ → net) ====== */
.reveal-print {
  opacity: 0;
}
.reveal-print.in {
  animation: calage 0.95s cubic-bezier(0.2, 0.7, 0.15, 1) forwards;
}
@keyframes calage {
  0% {
    opacity: 0;
    transform: translateY(26px);
    text-shadow:
      -7px 2px 0 rgba(0, 174, 239, 0.8),
      7px -2px 0 rgba(236, 0, 140, 0.8),
      0 7px 0 rgba(255, 212, 0, 0.85);
  }
  38% {
    opacity: 1;
  }
  72% {
    text-shadow:
      -2px 1px 0 rgba(0, 174, 239, 0.45),
      2px -1px 0 rgba(236, 0, 140, 0.45),
      0 2px 0 rgba(255, 212, 0, 0.5);
  }
  100% {
    opacity: 1;
    transform: none;
    text-shadow:
      0 0 0 rgba(0, 174, 239, 0),
      0 0 0 rgba(236, 0, 140, 0),
      0 0 0 rgba(255, 212, 0, 0);
  }
}

/* ====== CURSEUR REPÈRE DE CALAGE (desktop) ====== */
.cur {
  display: none;
}
@media (pointer: fine) {
  .cur {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    pointer-events: none;
    z-index: 850;
    mix-blend-mode: difference;
    color: #fff;
    opacity: 0;
    transition:
      opacity 0.3s,
      width 0.2s,
      height 0.2s,
      margin 0.2s;
  }
  .cur.on {
    opacity: 0.9;
  }
  .cur.hov {
    width: 46px;
    height: 46px;
    margin: -23px 0 0 -23px;
  }
  .cur::before,
  .cur::after {
    content: "";
    position: absolute;
    background: currentColor;
  }
  .cur::before {
    left: 50%;
    top: 0;
    width: 1.3px;
    height: 100%;
    transform: translateX(-50%);
  }
  .cur::after {
    top: 50%;
    left: 0;
    height: 1.3px;
    width: 100%;
    transform: translateY(-50%);
  }
  .cur u {
    position: absolute;
    inset: 22%;
    border: 1.3px solid currentColor;
    border-radius: 50%;
  }
}

/* ====== GRAIN PAPIER ====== */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 600;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ====== NAV : SCROLLSPY CMJN ====== */
.nlinks a {
  position: relative;
  padding-bottom: 10px;
}
.nlinks a:not(.nbtn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    var(--cyan) 25%,
    var(--magenta) 25% 50%,
    var(--yellow) 50% 75%,
    var(--teal) 75%
  );
  transition: right 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.nlinks a:not(.nbtn):hover::after,
.nlinks a.active::after {
  right: 0;
}

/* ====== HALFTONE BRIDGE (trame qui grossit) ====== */
.bridge::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(18, 21, 26, 0.16) 1.1px, transparent 1.1px),
    radial-gradient(rgba(11, 168, 148, 0.2) 1.6px, transparent 1.6px);
  background-size:
    16px 16px,
    34px 34px;
  background-position:
    0 0,
    8px 8px;
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 8%,
    #000 55%,
    transparent 96%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 8%,
    #000 55%,
    transparent 96%
  );
  opacity: 0.55;
}
.bridge > * {
  position: relative;
  z-index: 1;
}

/* ====== FEUILLE HERO : 3D INTERACTIVE ====== */
.press-sheet {
  perspective: 1100px;
}
.sheet {
  transform: rotate(-2deg) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.18s ease-out;
  will-change: transform;
}
@keyframes sheetfloat2 {
  from {
    translate: 0 -6px;
  }
  to {
    translate: 0 6px;
  }
}
.sheet {
  animation: sheetfloat2 7s ease-in-out infinite alternate;
}
.sheet::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) calc(var(--shx, 50%) - 8%),
    transparent calc(var(--shx, 50%) + 8%)
  );
  opacity: var(--sho, 0);
  transition: opacity 0.3s;
}

/* ====== CARTES CLAIRES : SPOTLIGHT ENCRE ====== */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s;
  background: radial-gradient(
    240px circle at var(--mx, 50%) var(--my, 50%),
    rgba(11, 168, 148, 0.09),
    transparent 65%
  );
}
.card:hover::before {
  opacity: 1;
}
.card.feat::before {
  background: radial-gradient(
    260px circle at var(--mx, 50%) var(--my, 50%),
    rgba(11, 168, 148, 0.16),
    transparent 65%
  );
}

/* ====== FOCUS VISIBLE ====== */
a:focus-visible,
button:focus-visible,
.chip:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2.5px solid var(--teal);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ====== MICRO-POLISH (retour au clic) ====== */
.btn:active {
  transform: translateY(0) scale(0.97);
}
.nbtn:active {
  transform: scale(0.97);
}
.chip:active,
.qrt-opt:active,
.totop:active {
  transform: scale(0.95);
}

/* ====== SIGNATURE : SCHÉMA TECHNIQUE ANIMÉ DE LA PRESSE ====== */
.press-sec {
  max-width: 1320px;
  margin: 0 auto;
  padding: 78px 40px 6px;
}
.press-head {
  max-width: 660px;
  margin-bottom: 36px;
}
.press-intro {
  color: var(--ink2);
  line-height: 1.65;
  margin-top: 16px;
  font-size: 1.02rem;
}
.press-stage {
  position: relative;
  background: linear-gradient(168deg, #0b1019 22%, #0d1626 65%, #0a111e);
  border: 1px solid #212b42;
  border-radius: calc(var(--r) + 4px);
  overflow: hidden;
  box-shadow: 0 46px 96px -44px rgba(2, 6, 14, 0.9);
}
.press-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.press-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}
.press-svg {
  display: block;
  width: 100%;
  min-width: 740px;
  height: auto;
}
.press-svg .spin {
  transform-box: fill-box;
  transform-origin: center;
  animation: pspin var(--d, 6s) linear infinite;
}
.press-svg .rev {
  animation-direction: reverse;
}
@keyframes pspin {
  to {
    transform: rotate(360deg);
  }
}
.press-svg .nip {
  animation: pnip 1.6s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes pnip {
  0%,
  100% {
    opacity: 0.18;
    transform: scaleX(0.8);
  }
  50% {
    opacity: 0.6;
    transform: scaleX(1.15);
  }
}
.press-svg .webdash {
  animation: webrun 0.8s linear infinite;
}
@keyframes webrun {
  to {
    transform: translateX(-36px);
  }
}
.press-svg .thrum {
  animation: thrum 5s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes thrum {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.06);
  }
}
.press-stage:not(.run) .press-svg * {
  animation-play-state: paused;
}
.press-ctl {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px 22px;
  border-top: 1px solid #212b42;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.02);
}
.press-ctl label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8c97ab;
  display: flex;
  gap: 9px;
  align-items: center;
  white-space: nowrap;
}
.press-ctl label .reg {
  color: var(--teal);
}
.press-ctl input[type="range"] {
  flex: 1;
  min-width: 130px;
  background: linear-gradient(90deg, var(--teal), #212b42);
}
.press-ctl input[type="range"]::-webkit-slider-thumb {
  background: var(--teal);
  border-color: #0b1019;
  box-shadow:
    0 0 0 1px rgba(11, 168, 148, 0.5),
    0 3px 14px rgba(11, 168, 148, 0.45);
}
.press-ctl input[type="range"]::-moz-range-thumb {
  background: var(--teal);
  border-color: #0b1019;
}
.pc-v {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  color: #8c97ab;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.pc-v b {
  color: var(--teal);
  font-size: 1rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.cartouche {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #212b42;
}
.cartouche span {
  flex: 1;
  min-width: 118px;
  padding: 10px 16px 11px;
  border-right: 1px solid #212b42;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cartouche span:last-child {
  border-right: 0;
}
.cartouche b {
  font-weight: 500;
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8c97ab;
  opacity: 0.85;
}
.cartouche em {
  font-style: normal;
  color: #eef2f7;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
.scrollhint {
  display: none;
}

/* ====== COMPTEUR NUMÉROTEUR (odomètre) ====== */
.odo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.odo .og {
  width: 0.3em;
}
.odo .od {
  position: relative;
  width: 0.82em;
  height: 1.32em;
  overflow: hidden;
  background: var(--ink);
  border-radius: 0.1em;
  box-shadow:
    inset 0 4px 8px rgba(0, 0, 0, 0.6),
    inset 0 -3px 6px rgba(0, 0, 0, 0.45);
}
.odo .od::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.12) 22%,
    transparent 42%,
    transparent 58%,
    rgba(0, 0, 0, 0.12) 78%,
    rgba(0, 0, 0, 0.55)
  );
}
.odo .od::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  transform: translateY(-0.5px);
  background: rgba(255, 255, 255, 0.06);
  z-index: 2;
  pointer-events: none;
}
.odo .os {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}
.odo .os i {
  font-style: normal;
  display: block;
  height: 1.32em;
  line-height: 1.32em;
  text-align: center;
  color: var(--paper);
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 1em;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 760px) {
  .press-sec {
    padding: 60px 22px 4px;
  }
  .scrollhint {
    display: block;
    text-align: center;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: #8c97ab;
    text-transform: uppercase;
    padding: 9px 0 1px;
    border-top: 1px dashed #212b42;
  }
  .cartouche span {
    min-width: 50%;
    border-bottom: 1px solid var(--line);
  }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1020px) {
  nav,
  nav.scrolled {
    padding: 12px 22px;
  }
  .nlinks {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero {
    padding: 122px 22px 46px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .press-sheet {
    min-height: 0;
  }
  .sec {
    padding: 68px 22px;
  }
  .statband-in {
    padding: 30px 22px;
  }
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .card.lg,
  .card.md,
  .card.feat,
  .card.wide {
    grid-column: span 1;
  }
  .conn-head,
  .est,
  .contact {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .scandar-panel {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 36px;
  }
  .qr-products {
    grid-template-columns: 1fr 1fr;
  }
  .dash-feats {
    grid-template-columns: 1fr;
  }
  .ptrack {
    grid-template-columns: 1fr 1fr;
  }
  .pcol {
    border-bottom: 1px solid var(--line);
  }
  .pcol:nth-child(2n) {
    border-right: 0;
  }
  .sec-head {
    flex-direction: column;
    align-items: flex-start;
  }
  footer {
    padding: 0 22px 30px;
  }
  .bridge {
    padding: 64px 22px 36px;
  }
}
@media (max-width: 600px) {
  .bento,
  .qr-products,
  .fr2,
  .ptrack {
    grid-template-columns: 1fr;
  }
  .pcol {
    border-right: 0;
  }
  .hero-cta .btn {
    flex: 1;
    justify-content: center;
  }
  .float-chip {
    right: -2px;
    top: 16px;
  }
  .float-chip2 {
    left: -2px;
    bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(1.9rem, 8.4vw, 2.6rem);
  }
  .trustband {
    gap: 26px;
  }
}
