/* ════════════════════════════════════════════════════════════════════════
   Datacam Showcase — design system "Threshold"
   Signature: la ligne de comptage. Une caméra trace un seuil ; chaque
   silhouette anonyme qui le franchit incrémente un compteur. Encre profonde,
   accent ambre-capteur (la LED qui s'allume à la détection), aucune
   donnée nominative — donc des points, jamais des visages.
   Theme-aware : dark = défaut (:root), light = [data-bs-theme=light]
   ════════════════════════════════════════════════════════════════════════ */
:root {
  --bg:        #0A0D14;
  --bg-2:      #0E121C;
  --panel:     #131826;
  --panel-2:   #1A2032;
  --line:      #232B3F;
  --line-soft: #1A2133;
  --text:      #ECEFF6;
  --muted:     #98A1B8;
  --muted-2:   #8A93AB;
  --accent:    #FFB020;
  --accent-2:  #FF8A3D;
  --accent-ink:#0A0D14;
  --glow:      rgba(255,176,32,.13);
  --grid:      rgba(152,161,184,.06);
  --shadow:    0 1px 0 rgba(255,255,255,.02), 0 18px 44px rgba(0,0,0,.46);
  --shadow-sm: 0 10px 24px rgba(0,0,0,.34);
}
html[data-bs-theme="light"] {
  --bg:        #EEF1F6;
  --bg-2:      #FFFFFF;
  --panel:     #FFFFFF;
  --panel-2:   #F4F6FB;
  --line:      #DFE4EE;
  --line-soft: #E9ECF4;
  --text:      #111728;
  --muted:     #586079;
  --muted-2:   #5E6579;
  --accent:    #C97A00;
  --accent-2:  #D45A12;
  --accent-ink:#FFFFFF;
  --glow:      rgba(201,122,0,.10);
  --grid:      rgba(17,23,40,.045);
  --shadow:    0 1px 2px rgba(16,24,40,.05), 0 16px 36px rgba(16,24,40,.08);
  --shadow-sm: 0 8px 20px rgba(16,24,40,.07);
}

/* ── Base ──────────────────────────────────────────────────────────────── */
* { box-sizing: border-box; }
html { background: var(--bg); scroll-behavior: smooth; }
body {
  font-family: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    radial-gradient(900px 480px at 88% -12%, var(--glow), transparent 62%);
  background-size: 64px 64px, 64px 64px, 100% 100%;
  min-height: 100vh;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(255,176,32,.18);
}
h1, h2, h3, h4 { font-family: 'Bricolage Grotesque', sans-serif; line-height: 1.05; letter-spacing: -.02em; }
.mono { font-family: 'IBM Plex Mono', monospace; }
a { color: inherit; }
section { scroll-margin-top: 76px; }
.tx-acc { color: var(--accent); }
.container { padding-left: 24px; padding-right: 24px; }
@supports (padding: max(0px)) {
  .container {
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
  }
}

/* ── Utility: shared section structure ─────────────────────────────────── */
.sec { padding: 96px 0; position: relative; }
.sec--alt { background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.sec__head { max-width: 720px; margin: 0 0 56px; }
.sec__head.is-center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); font-weight: 500;
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--accent); display: inline-block; }
.sec__head.is-center .eyebrow::before { display: none; }
.h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 700; margin: 14px 0 12px; }
.lead { color: var(--muted); font-size: 1.08rem; margin: 0; max-width: 56ch; }
.sec__head.is-center .lead { margin-left: auto; margin-right: auto; }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn-cta, .btn-ghost {
  --pad: 13px 22px;
  display: inline-flex; align-items: center; gap: 9px;
  padding: var(--pad); border-radius: 10px;
  font-weight: 600; font-size: .98rem; text-decoration: none;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease, border-color .14s ease;
}
.btn-cta { background: var(--accent); color: var(--accent-ink); box-shadow: 0 8px 22px var(--glow); }
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px var(--glow); color: var(--accent-ink); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { background: var(--panel-2); border-color: var(--muted-2); color: var(--text); }
.btn-sm { --pad: 9px 15px; font-size: .9rem; }

/* ── Navbar ────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner { display: flex; align-items: center; gap: 18px; padding-top: 14px; padding-bottom: 14px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1.15rem; text-decoration: none; color: var(--text); letter-spacing: -.02em; }
.brand__logo { width: 32px; height: 32px; flex: none; object-fit: contain; display: block; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; list-style: none; padding: 0; margin-bottom: 0; }
.nav__links a.nlink { color: var(--muted); text-decoration: none; font-size: .94rem; padding: 8px 12px; border-radius: 8px; }
.nav__links a.nlink:hover { color: var(--text); background: var(--panel-2); }
.nav__page { margin-left: 10px; padding-left: 12px; border-left: 1px solid var(--line); }
.nav__tools { display: flex; align-items: center; gap: 10px; }
.icon-btn { width: 38px; height: 38px; border-radius: 9px; border: 1px solid var(--line); background: transparent; color: var(--muted); display: grid; place-items: center; cursor: pointer; transition: .14s; }
.icon-btn:hover { color: var(--text); border-color: var(--muted-2); }
.nav__burger { display: none; }
.nav__cta-m { display: none; }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line-soft); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding-top: 86px; padding-bottom: 92px; }
.hero__title { font-size: clamp(2.5rem, 5.4vw, 4.1rem); font-weight: 800; margin: 20px 0 22px; }
.hero__title em { font-style: normal; color: var(--accent); position: relative; white-space: nowrap; }
.hero__title em::after { content: ""; position: absolute; left: 0; right: 0; bottom: .08em; height: 3px; background: var(--accent); opacity: .35; }
.hero__lead { font-size: 1.18rem; color: var(--muted); max-width: 46ch; margin: 0 0 30px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__proof { display: flex; gap: 28px; margin: 42px 0 0; padding: 22px 0 0; list-style: none; border-top: 1px solid var(--line); flex-wrap: wrap; }
.hero__proof b { display: block; font-family: 'IBM Plex Mono', monospace; font-size: 1.5rem; font-weight: 600; color: var(--text); letter-spacing: -.02em; }
.hero__proof span { font-size: .85rem; color: var(--muted); }

/* signature scene — la ligne de comptage */
.scene {
  position: relative; aspect-ratio: 5 / 4; border-radius: 18px;
  background: linear-gradient(180deg, var(--panel) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden;
}
.scene canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.scene__hud {
  position: absolute; top: 14px; left: 14px; right: 14px;
  display: flex; justify-content: space-between; align-items: flex-start;
  font-family: 'IBM Plex Mono', monospace; pointer-events: none;
}
.scene__tag { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 7px; }
.scene__rec { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); animation: pulse 1.6s ease-in-out infinite; }
.scene__counts { display: flex; flex-direction: column; align-items: flex-end; gap: 7px; text-align: right; }
.scene__present b { display: block; font-size: 2.1rem; font-weight: 600; color: var(--accent); line-height: 1; letter-spacing: -.02em; }
.scene__present > span { font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.scene__io { display: flex; gap: 14px; font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; letter-spacing: .04em; color: var(--muted); }
.scene__io b { font-weight: 600; }
.scene__c--in b { color: var(--accent); }
.scene__c--out b { color: var(--text); opacity: .75; }
.scene__foot {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  display: flex; justify-content: space-between;
  font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; color: var(--muted-2);
  letter-spacing: .08em; pointer-events: none;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
@keyframes navDrop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ── Stat band ─────────────────────────────────────────────────────────── */
.band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; list-style: none; margin: 0; padding: 0; }
.band__cell { background: var(--bg-2); padding: 30px 26px; }
.band__cell b { font-family: 'IBM Plex Mono', monospace; font-size: 1.9rem; font-weight: 600; color: var(--text); display: block; letter-spacing: -.02em; }
.band__cell b small { color: var(--accent); font-size: 1.1rem; }
.band__cell span { color: var(--muted); font-size: .92rem; }

/* ── Trust logos ───────────────────────────────────────────────────────── */
.trust {
  padding-top: 72px; padding-bottom: 78px;
  background:
    radial-gradient(720px 340px at 50% 0%, var(--glow), transparent 70%),
    var(--bg-2);
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
}
html[data-bs-theme="light"] .trust {
  background:
    radial-gradient(720px 340px at 50% 0%, var(--glow), transparent 70%),
    #E3E9F2;
}
.trust .sec__head { margin-bottom: 34px; }
.logo-carousel { display: flex; align-items: center; gap: 12px; }
.logo-wall {
  flex: 1; min-width: 0;
  display: flex; gap: 1px; background: var(--line); border: 1px solid var(--line);
  border-radius: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none;
}
.logo-wall::-webkit-scrollbar { display: none; }
.logo-wall__item {
  flex: 0 0 calc(25% - 0.75px); scroll-snap-align: start;
  min-height: 132px; background: #FFFFFF; display: grid; place-items: center;
  padding: 28px; transition: background .14s;
}
.logo-carousel__nav {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--panel); color: var(--text);
  font-size: 1.5rem; line-height: 1; cursor: pointer; display: grid;
  place-items: center; transition: background .14s, opacity .14s;
}
.logo-carousel__nav:hover { background: var(--panel-2); }
.logo-carousel__nav:disabled { opacity: .32; cursor: default; }
.logo-carousel__nav[hidden] { display: none; }
.logo-wall__item:hover { background: #F7F8FB; }
.logo-wall__item img {
  display: block; width: 100%; max-width: 180px; max-height: 76px;
  object-fit: contain;
}

/* ── Capability cards ──────────────────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 16px;
  padding: 26px 24px; position: relative; overflow: hidden;
  transition: transform .16s ease, border-color .16s ease;
}
.card:hover { transform: translateY(-3px); border-color: var(--accent); }
.card__n { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--muted-2); letter-spacing: .1em; }
.card__ic { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: var(--panel-2); border: 1px solid var(--line); color: var(--accent); font-size: 20px; margin: 14px 0 16px; }
.card__t { font-size: 1.18rem; font-weight: 700; margin: 0 0 8px; }
.card__p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ── How it works — spine ──────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; list-style: none; margin: 0; padding: 0; }
.steps::before { content: ""; position: absolute; left: 8%; right: 8%; top: 26px; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 18px); }
.step { padding: 0 22px; position: relative; }
.step__n {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  font-family: 'IBM Plex Mono', monospace; font-weight: 600; font-size: 1.05rem;
  color: var(--accent-ink); background: var(--accent); position: relative; z-index: 1;
  box-shadow: 0 0 0 6px var(--bg-2);
}
.sec:not(.sec--alt) .step__n { box-shadow: 0 0 0 6px var(--bg); }
.step__t { font-size: 1.2rem; font-weight: 700; margin: 20px 0 8px; }
.step__p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ── Use cases ─────────────────────────────────────────────────────────── */
.uses { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.use { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 24px 22px; transition: border-color .16s; }
.use:hover { border-color: var(--accent); }
.use i { font-size: 26px; color: var(--accent); }
.use__t { font-size: 1.06rem; font-weight: 700; margin: 14px 0 6px; }
.use__p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ── Privacy section ───────────────────────────────────────────────────── */
.privacy { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: center; }
.privacy__panel {
  background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 30px; box-shadow: var(--shadow-sm);
  list-style: none; margin: 0;
}
.privacy__row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.privacy__row:last-child { border-bottom: none; }
.privacy__yes, .privacy__no { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; flex: none; font-size: 15px; }
.privacy__yes { color: var(--accent); background: var(--panel-2); border: 1px solid var(--line); }
.privacy__no { color: var(--muted-2); background: transparent; border: 1px dashed var(--line); }
.privacy__row span { font-size: .96rem; }
.privacy__row .dim { color: var(--muted-2); text-decoration: line-through; }
.checklist { list-style: none; padding: 0; margin: 22px 0 0; }
.checklist li { display: flex; gap: 12px; padding: 9px 0; color: var(--muted); font-size: .98rem; }
.checklist i { color: var(--accent); margin-top: 3px; }

/* ── FAQ ───────────────────────────────────────────────────────────────── */
.faq { max-width: 760px; margin: 0 auto; }
.qa { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; background: var(--panel); overflow: hidden; }
.qa > summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 600; font-size: 1.04rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.qa > summary::-webkit-details-marker { display: none; }
.qa > summary::after { content: "\F4FE"; font-family: "bootstrap-icons", sans-serif; color: var(--accent); font-size: 1.1rem; transition: transform .2s; flex: none; }
.qa[open] > summary::after { transform: rotate(45deg); }
.qa__body { padding: 0 22px 20px; color: var(--muted); font-size: .98rem; }

/* ── Contact ───────────────────────────────────────────────────────────── */
.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.contact__aside .lead { margin-bottom: 24px; }
.contact__mail { display: inline-flex; align-items: center; gap: 10px; font-family: 'IBM Plex Mono', monospace; color: var(--text); text-decoration: none; padding: 12px 16px; border: 1px solid var(--line); border-radius: 10px; }
.contact__mail:hover { border-color: var(--accent); color: var(--accent); }
.form { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 28px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; color: var(--text); font: inherit; font-size: .98rem; transition: border-color .14s, box-shadow .14s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--glow); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.note { display: flex; align-items: center; gap: 10px; padding: 13px 16px; border-radius: 10px; font-size: .94rem; margin-bottom: 18px; border: 1px solid var(--line); }
.note--ok { color: var(--accent); }
.note--warn, .note--err { color: var(--text); }
.note i { font-size: 1.1rem; }

/* ── Footer ────────────────────────────────────────────────────────────── */
.foot { background: var(--bg-2); border-top: 1px solid var(--line); padding: 64px 0 28px; }
.foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.foot__tag { color: var(--muted); font-size: .95rem; max-width: 34ch; margin: 14px 0 0; }
.foot__h { font-family: 'IBM Plex Mono', monospace; color: var(--muted-2); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; }
.foot__list { list-style: none; padding: 0; margin: 0; }
.foot__list li { margin-bottom: 9px; }
.foot__list a { color: var(--muted); text-decoration: none; font-size: .95rem; }
.foot__list a:hover { color: var(--accent); }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.social-links a {
  width: 36px; height: 36px; display: grid; place-items: center;
  color: var(--muted); text-decoration: none; border: 1px solid var(--line);
  border-radius: 9px; transition: color .14s, border-color .14s, background .14s;
}
.social-links a:hover { color: var(--accent); border-color: var(--accent); background: var(--panel-2); }
.foot__bar { border-top: 1px solid var(--line); margin-top: 44px; padding-top: 20px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: 'IBM Plex Mono', monospace; font-size: .82rem; color: var(--muted-2); }
.foot__bar a { color: var(--muted); text-decoration: underline; }
.foot__bar a:hover { color: var(--accent); }

/* ── Legal / content page ──────────────────────────────────────────────── */
.legal { max-width: 800px; margin: 0 auto; padding: 76px 0 96px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; margin: 14px 0 10px; }
.legal__meta { font-family: 'IBM Plex Mono', monospace; font-size: .85rem; color: var(--muted-2); margin-bottom: 44px; }
.legal h2 { font-size: 1.3rem; font-weight: 700; margin: 40px 0 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.legal p, .legal li { color: var(--muted); }
.legal a { color: var(--accent); }
.legal dl { display: grid; grid-template-columns: max-content 1fr; gap: 6px 22px; margin: 0; }
.legal dt { font-family: 'IBM Plex Mono', monospace; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted-2); padding-top: 2px; }
.legal dd { margin: 0; color: var(--text); }

/* SEO / resource pages */
.page-hero { border-bottom: 1px solid var(--line-soft); background: var(--bg); }
.page-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding-top: 82px; padding-bottom: 86px; }
.page-hero--simple .container { padding-top: 76px; padding-bottom: 78px; }
.page-hero__title { font-size: clamp(2.35rem, 5vw, 3.8rem); font-weight: 800; max-width: 12ch; margin: 18px 0 18px; }
.page-hero--simple .page-hero__title { max-width: 14ch; }
.page-hero__lead { color: var(--muted); font-size: 1.16rem; max-width: 56ch; margin: 0 0 30px; }
.metric-panel {
  background: var(--panel); border: 1px solid var(--line); border-radius: 18px;
  padding: 28px; box-shadow: var(--shadow); min-height: 360px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.metric-panel__top, .metric-panel__io { display: flex; justify-content: space-between; gap: 16px; font-family: 'IBM Plex Mono', monospace; color: var(--muted); font-size: .82rem; }
.metric-panel__top b, .metric-panel__io i { color: var(--accent); font-weight: 600; }
.metric-panel__count { font-family: 'IBM Plex Mono', monospace; color: var(--accent); font-size: clamp(3rem, 7vw, 5.2rem); line-height: 1; letter-spacing: -.04em; margin-top: 22px; }
.metric-panel__label { color: var(--muted); margin-bottom: 26px; }
.mini-chart { height: 118px; display: flex; align-items: end; gap: 10px; padding: 18px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.mini-chart span { flex: 1; min-width: 12px; border-radius: 8px 8px 0 0; background: linear-gradient(180deg, var(--accent), var(--accent-2)); opacity: .88; }
.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.content-block {
  background: var(--panel); border: 1px solid var(--line); border-radius: 16px;
  padding: 28px 24px;
}
.content-block h2 { font-size: 1.28rem; font-weight: 700; margin: 16px 0 10px; }
.content-block p { color: var(--muted); margin: 0; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); text-decoration: none; font-weight: 600; margin-top: auto; }
.text-link:hover { color: var(--text); }

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 992px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; padding-top: 64px; padding-bottom: 72px; }
  .page-hero__grid { grid-template-columns: 1fr; gap: 38px; padding-top: 64px; padding-bottom: 72px; }
  .page-hero__title { max-width: 16ch; }
  .hero__viz { display: flex; justify-content: center; }
  .scene { width: 100%; max-width: 460px; }
  .band { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: repeat(2, 1fr); }
  .uses { grid-template-columns: repeat(2, 1fr); }
  .privacy, .contact { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .steps::before { display: none; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__links.is-open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: color-mix(in srgb, var(--bg) 96%, transparent);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line); padding: 10px 20px 16px; gap: 2px;
    box-shadow: var(--shadow-sm);
    animation: navDrop .18s ease;
  }
  .nav__links.is-open .nlink { padding: 13px 12px; border-radius: 9px; font-size: 1rem; }
  .nav__links.is-open .nav__page { margin-left: 0; padding-left: 0; border-left: none; border-top: 1px solid var(--line-soft); padding-top: 10px; margin-top: 6px; }
  .nav__links.is-open .nav__cta-m { display: block; margin-top: 6px; border-top: 1px solid var(--line-soft); padding-top: 10px; }
  .nav__links.is-open .nav__cta-m a { color: var(--accent); font-weight: 600; }
  .nav__burger { display: grid; }
  .sec { padding: 60px 0; }
  .sec__head { margin-bottom: 40px; }
  .cards, .uses, .legal dl, .content-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .band__cell { padding: 22px 20px; }
  .band__cell b { font-size: 1.5rem; }
  .logo-wall__item { flex-basis: calc(50% - 0.5px); min-height: 112px; padding: 22px; }
  .logo-wall__item img { max-height: 64px; }
  .privacy__panel, .form { padding: 22px; }
  .metric-panel { min-height: 300px; padding: 22px; }
  .metric-panel__io { flex-direction: column; gap: 6px; }
  .hero__proof { gap: 20px 26px; }
  .legal { padding: 48px 0 64px; }
  .legal dl { gap: 4px 16px; }
  .icon-btn { width: 44px; height: 44px; }
  .field input, .field textarea { font-size: 16px; padding: 13px 14px; }
  .nav__inner { gap: 12px; }
}

@media (max-width: 560px) {
  .hero__grid { padding-top: 48px; padding-bottom: 60px; }
  .hero__title { font-size: clamp(2.05rem, 8.5vw, 2.8rem); }
  .hero__lead { font-size: 1.05rem; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn-cta, .hero__cta .btn-ghost { justify-content: center; }
  .hero__proof { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; }
  .hero__proof li:first-child { grid-column: 1 / -1; }
  .hero__proof b { font-size: 1.3rem; }
  .band { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr; gap: 28px; }
  .foot__bar { justify-content: center; text-align: center; }
  .scene__hud { top: 12px; left: 12px; right: 12px; }
  .scene__foot { bottom: 12px; left: 12px; right: 12px; font-size: 9.5px; }
  .scene__tag { font-size: 9.5px; gap: 6px; }
  .scene__present b { font-size: 1.6rem; }
  .scene__present > span { font-size: 8.5px; }
  .scene__io { gap: 10px; font-size: 9.5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scene__rec { animation: none; }
  * { transition: none !important; }
}

/* ── Cookie consent banner ─────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1080;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  max-width: 880px;
  margin: 0 auto;
  padding: 18px 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__text {
  flex: 1 1 320px;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.cookie-banner__text a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner__actions {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
}
@media (max-width: 540px) {
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn-ghost,
  .cookie-banner__actions .btn-cta { flex: 1; justify-content: center; }
}

/* Demo gate */
.demo-gate { padding: 86px 0 96px; border-bottom: 1px solid var(--line-soft); }
.demo-gate__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.demo-gate__copy { position: sticky; top: 96px; }
.demo-gate__proof { list-style: none; margin: 34px 0 0; padding: 0; display: grid; gap: 14px; }
.demo-gate__proof li {
  display: flex; align-items: center; gap: 12px; color: var(--muted);
  padding: 14px 0; border-top: 1px solid var(--line-soft);
}
.demo-gate__proof i { color: var(--accent); font-size: 21px; }
.demo-form__head { margin-bottom: 22px; }
.demo-form__head h2 { font-size: 1.45rem; margin: 10px 0 0; font-weight: 700; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.field select {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; color: var(--text); font: inherit; font-size: .98rem;
}
.field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--glow); }

/* Demo dashboard: public version of the Datacam Statistics visual language */
.demo-stat-page {
  --ds-bg: #F5F7FB;
  --ds-grad1: rgba(129,140,248,.10);
  --ds-grad2: rgba(45,212,191,.09);
  --ds-panel: #FFFFFF;
  --ds-panel-2: #F1F4FA;
  --ds-hair: #E4E8F2;
  --ds-hair-soft: #ECEFF6;
  --ds-text: #16203B;
  --ds-muted: #5B6685;
  --ds-muted-2: #8A93AD;
  --ds-hero-bg: linear-gradient(180deg,#FFFFFF 0%,#EEF2FD 100%);
  --ds-aurora-a: #14B8A6;
  --ds-aurora-b: #6366F1;
  --ds-in: #10B981;
  --ds-out: #F43F5E;
  --ds-peak: #D97706;
  --ds-bignum: linear-gradient(135deg,#16203B 8%,#0E7490 55%,#4F46E5 100%);
  --ds-shadow: 0 1px 2px rgba(16,24,40,.05), 0 10px 28px rgba(16,24,40,.06);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 14px;
  color: var(--ds-text);
  background-color: var(--ds-bg) !important;
  background-image:
    radial-gradient(1100px 560px at 82% -8%, var(--ds-grad1), transparent 60%),
    radial-gradient(820px 460px at 0% 0%, var(--ds-grad2), transparent 55%);
  background-size: 100% 100%, 100% 100%;
  background-repeat: no-repeat;
  background-position: top right, top left;
  background-attachment: fixed;
}
html[data-bs-theme="dark"] .demo-stat-page {
  --ds-bg: #0B0E1A;
  --ds-grad1: rgba(129,140,248,.12);
  --ds-grad2: rgba(45,212,191,.09);
  --ds-panel: #141A2E;
  --ds-panel-2: #1B2238;
  --ds-hair: #27304F;
  --ds-hair-soft: #1E2640;
  --ds-text: #EAF0FF;
  --ds-muted: #8B97B8;
  --ds-muted-2: #5C6788;
  --ds-hero-bg: linear-gradient(180deg,#10182E 0%,#0C1124 100%);
  --ds-aurora-a: #2DD4BF;
  --ds-aurora-b: #818CF8;
  --ds-in: #34D399;
  --ds-out: #FB7185;
  --ds-peak: #FBBF24;
  --ds-bignum: linear-gradient(135deg,#EAF0FF 30%,#A9F0E4 68%,#B7BEFB 100%);
  --ds-shadow: 0 1px 0 rgba(255,255,255,.02), 0 14px 32px rgba(0,0,0,.38);
}
.demo-stat-page h1,
.demo-stat-page h2,
.demo-stat-page h3,
.demo-stat-page h4 { font-family: 'Bricolage Grotesque', Inter, sans-serif; letter-spacing: 0; }
.demo-topbar {
  position: sticky; top: 0; z-index: 40; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px max(20px, env(safe-area-inset-left)) 12px max(20px, env(safe-area-inset-right));
  background: rgba(255,255,255,.88); backdrop-filter: blur(12px); border-bottom: 1px solid var(--ds-hair-soft);
}
.demo-topbar__brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ds-text); text-decoration: none; font-weight: 700; }
.demo-topbar__brand img { object-fit: contain; }
.demo-topbar__meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
html[data-bs-theme="dark"] .demo-topbar { background: rgba(11,14,26,.88); }
.demo-topbar__control {
  min-height: 34px; border-radius: 9px; border: 1px solid var(--ds-hair);
  background: var(--ds-panel); color: var(--ds-muted); display: inline-flex;
  align-items: center; justify-content: center; gap: 8px; padding: 7px 12px;
  font-size: 12.5px; line-height: 1; text-decoration: none; font-weight: 600;
  box-shadow: 0 1px 2px rgba(16,24,40,.04);
}
.demo-topbar__control:hover { color: var(--ds-text); border-color: var(--ds-aurora-b); }
.demo-topbar__status i { color: var(--ds-in); font-size: 7px; }
.demo-topbar__icon { width: 34px; padding: 0; cursor: pointer; }
.demo-topbar__cta { color: var(--ds-text); }
.demo-topbar__cta i { color: var(--ds-aurora-a); }
.demo-dashboard-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 20px; flex-wrap: wrap; }
.demo-dashboard-head h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin: 0 0 6px; color: var(--ds-text); }
.demo-dashboard-head__note {
  max-width: 300px; color: var(--ds-muted); font-size: 12.5px; line-height: 1.45;
  border: 1px solid var(--ds-hair-soft); background: var(--ds-panel); border-radius: 12px; padding: 10px 12px;
}
.demo-stat-page .ds-hero {
  position: relative; overflow: hidden; border: 1px solid var(--ds-hair-soft); border-radius: 20px;
  background: var(--ds-hero-bg); box-shadow: var(--ds-shadow); margin-bottom: 18px;
}
.demo-stat-page .ds-hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(680px 240px at 78% 125%, rgba(45,212,191,.20), transparent 70%),
    radial-gradient(580px 240px at 96% 135%, rgba(129,140,248,.20), transparent 70%);
}
.demo-stat-page .ds-hero__grid { position: relative; display: grid; grid-template-columns: 300px 1fr; gap: 8px; align-items: center; }
.demo-stat-page .ds-hero__left { padding: 30px 8px 30px 34px; }
.demo-stat-page .ds-hero__right { position: relative; height: 190px; align-self: stretch; }
.demo-stat-page .ds-hero__right canvas { position: absolute; inset: 0; }
.demo-stat-page .ds-eyebrow { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--ds-muted-2); font-weight: 600; }
.demo-stat-page .ds-bignum {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 76px; line-height: .95;
  margin: 8px 0 4px; background: var(--ds-bignum); -webkit-background-clip: text; background-clip: text;
  color: transparent; font-variant-numeric: tabular-nums;
}
.demo-stat-page .ds-flows { display: flex; align-items: center; gap: 16px; margin-top: 14px; flex-wrap: wrap; }
.demo-stat-page .ds-flow { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; color: var(--ds-muted); }
.demo-stat-page .ds-flow b { font-size: 16px; font-variant-numeric: tabular-nums; }
.demo-stat-page .ds-flow.in b,
.demo-stat-page .ds-flow.in i { color: var(--ds-in); }
.demo-stat-page .ds-flow.out b,
.demo-stat-page .ds-flow.out i { color: var(--ds-out); }
.demo-stat-page .ds-flow-note,
.demo-stat-page .ds-updated { font-size: 11px; color: var(--ds-muted-2); }
.demo-stat-page .ds-updated { margin-top: 12px; font-family: 'IBM Plex Mono', monospace; }
.demo-stat-page .ds-refresh {
  position: absolute; top: 14px; right: 14px; z-index: 2; background: transparent;
  border: 1px solid var(--ds-hair-soft); color: var(--ds-muted); width: 32px; height: 32px;
  border-radius: 9px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
}
.demo-stat-page .ds-refresh:hover { color: var(--ds-text); border-color: var(--ds-hair); }
.demo-stat-page .ds-refresh.is-spinning i { animation: ds-spin .6s linear; }
.demo-stat-page .ds-zones { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin-bottom: 18px; }
.demo-stat-page .ds-zone {
  position: relative; overflow: hidden; background: var(--ds-panel); border: 1px solid var(--ds-hair-soft);
  border-radius: 14px; padding: 16px 18px; box-shadow: var(--ds-shadow);
}
.demo-stat-page .ds-zone::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--zc, #888); }
.demo-stat-page .ds-zone__name { display: flex; align-items: center; gap: 8px; color: var(--ds-muted); font-size: 12.5px; font-weight: 500; }
.demo-stat-page .ds-sw { width: 9px; height: 9px; border-radius: 50%; background: var(--zc); display: inline-block; flex: none; }
.demo-stat-page .ds-zone__val { font-weight: 800; font-size: 30px; margin-top: 8px; color: var(--ds-text); }
.demo-stat-page .ds-zone__bar { height: 4px; border-radius: 3px; background: var(--ds-panel-2); margin-top: 10px; overflow: hidden; }
.demo-stat-page .ds-zone__bar i { display: block; height: 100%; background: var(--zc); border-radius: 3px; }
.demo-stat-page .ds-panel { background: var(--ds-panel); border: 1px solid var(--ds-hair-soft); border-radius: 20px; box-shadow: var(--ds-shadow); margin-bottom: 18px; }
.demo-stat-page .ds-ph {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 22px; border-bottom: 1px solid var(--ds-hair-soft); flex-wrap: wrap;
}
.demo-stat-page .ds-h2 { font-size: 16px; font-weight: 700; margin: 0; display: flex; align-items: center; gap: 9px; color: var(--ds-text); }
.demo-stat-page .ds-ic { color: var(--ds-aurora-a); display: inline-flex; }
.demo-stat-page .ds-scope { color: var(--ds-muted); font-size: 13px; }
.demo-stat-page .ds-ctrls { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.demo-stat-page .ds-select {
  background: var(--ds-panel-2); border: 1px solid var(--ds-hair); color: var(--ds-text);
  border-radius: 9px; padding: 7px 11px; font-size: 12.5px; font-family: inherit;
}
.demo-stat-page .ds-btn {
  background: transparent; border: 1px solid var(--ds-hair); color: var(--ds-muted);
  border-radius: 9px; padding: 7px 12px; font-size: 12.5px; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 6px;
}
.demo-stat-page .ds-btn:hover { border-color: var(--ds-aurora-b); color: var(--ds-text); }
.demo-stat-page .ds-pbody { padding: 22px; }
.demo-stat-page .ds-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 24px; }
.demo-stat-page .ds-stat { background: var(--ds-panel-2); border: 1px solid var(--ds-hair-soft); border-radius: 14px; padding: 16px 18px; }
.demo-stat-page .ds-stat__lab { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ds-muted-2); font-weight: 600; }
.demo-stat-page .ds-stat__val { font-weight: 800; font-size: 26px; margin-top: 7px; color: var(--ds-text); font-variant-numeric: tabular-nums; }
.demo-stat-page .ds-stat__at { font-size: 11px; color: var(--ds-muted-2); margin-top: 2px; min-height: 14px; }
.demo-stat-page .ds-stat.peak .ds-stat__val { color: var(--ds-peak); }
.demo-stat-page .ds-stat.avg .ds-stat__val { color: var(--ds-aurora-a); }
.demo-stat-page .ds-stat.ent .ds-stat__val { color: var(--ds-in); }
.demo-stat-page .ds-stat.exi .ds-stat__val { color: var(--ds-out); }
.demo-stat-page .ds-chart-lab { font-size: 12px; color: var(--ds-muted); font-weight: 500; margin: 0 0 8px; display: flex; align-items: center; gap: 7px; }
.demo-stat-page .ds-chart-box { position: relative; height: 230px; }
.demo-stat-page .ds-chart-box--sm { height: 150px; }
.demo-stat-page .ds-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
.demo-stat-page .ds-insights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.demo-stat-page .ds-insight { display: flex; align-items: center; gap: 14px; background: var(--ds-panel-2); border: 1px solid var(--ds-hair-soft); border-radius: 14px; padding: 16px 18px; }
.demo-stat-page .ds-insight__ic {
  flex: none; width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--ds-aurora-a), var(--ds-aurora-b)); color: #fff; font-size: 18px;
}
.demo-stat-page .ds-insight__val { font-weight: 800; font-size: 22px; color: var(--ds-text); font-variant-numeric: tabular-nums; }
.demo-stat-page .ds-insight__val.up { color: var(--ds-in); }
.demo-stat-page .ds-insight__val.down { color: var(--ds-out); }
.demo-stat-page .ds-insight__lab { font-size: 12px; color: var(--ds-muted); margin-top: 2px; }
.demo-stat-page .ds-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.demo-stat-page .ds-ledger { width: 100%; border-collapse: collapse; }
.demo-stat-page .ds-ledger th {
  text-align: right; font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ds-muted-2); font-weight: 600; padding: 0 8px 12px;
}
.demo-stat-page .ds-ledger th:first-child { text-align: left; }
.demo-stat-page .ds-ledger td { padding: 13px 8px; border-top: 1px solid var(--ds-hair-soft); text-align: right; font-variant-numeric: tabular-nums; color: var(--ds-text); }
.demo-stat-page .ds-ledger td:first-child { text-align: left; font-weight: 600; }
.demo-stat-page .ds-flux { display: inline-flex; height: 6px; width: 96px; border-radius: 3px; overflow: hidden; background: var(--ds-panel-2); vertical-align: middle; }
.demo-stat-page .ds-flux i { display: block; height: 100%; }
.demo-stat-page .ds-flux i.in { background: var(--ds-in); }
.demo-stat-page .ds-flux i.out { background: var(--ds-out); }
.demo-stat-page .ds-cam { border: 1px solid var(--ds-hair-soft); border-radius: 12px; margin-bottom: 10px; overflow: hidden; background: var(--ds-panel-2); }
.demo-stat-page .ds-cam__head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  color: var(--ds-text); padding: 13px 16px; cursor: pointer; font-size: 14px; list-style: none;
}
.demo-stat-page .ds-cam__head::-webkit-details-marker { display: none; }
.demo-stat-page .ds-cam__name { display: flex; align-items: center; gap: 8px; font-weight: 700; min-width: 0; }
.demo-stat-page .ds-cam__name i { color: var(--ds-aurora-a); }
.demo-stat-page .ds-cam__serial { font-size: 11px; color: var(--ds-muted-2); font-weight: 400; }
.demo-stat-page .ds-cam__tot { display: flex; align-items: center; gap: 14px; flex: none; font-variant-numeric: tabular-nums; }
.demo-stat-page .ds-cam__tot .in { color: var(--ds-in); }
.demo-stat-page .ds-cam__tot .out { color: var(--ds-out); }
.demo-stat-page .ds-cam__body { padding: 4px 16px 14px; }
@keyframes ds-spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

@media (max-width: 992px) {
  .demo-gate__grid { grid-template-columns: 1fr; gap: 36px; }
  .demo-gate__copy { position: static; }
}
@media (max-width: 760px) {
  .demo-stat-page .ds-hero__grid { grid-template-columns: 1fr; }
  .demo-stat-page .ds-hero__right { height: 150px; }
  .demo-stat-page .ds-hero__left { padding: 26px 22px 6px; }
  .demo-stat-page .ds-bignum { font-size: 60px; }
  .demo-stat-page .ds-stats { grid-template-columns: 1fr 1fr; }
  .demo-stat-page .ds-split,
  .demo-stat-page .ds-insights { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .grid-3 { grid-template-columns: 1fr; }
  .demo-topbar { align-items: flex-start; }
  .demo-topbar__meta { flex-direction: column; align-items: flex-end; }
  .demo-stat-page .ds-ph { flex-direction: column; align-items: stretch; padding: 16px; gap: 14px; }
  .demo-stat-page .ds-ctrls { width: 100%; }
  .demo-stat-page .ds-ctrls > * { flex: 1 1 auto; }
  .demo-stat-page .ds-pbody { padding: 16px; }
}
@media (max-width: 480px) {
  .demo-stat-page .ds-stats { grid-template-columns: 1fr; }
  .demo-stat-page .ds-bignum { font-size: 52px; }
  .demo-stat-page .ds-zones { grid-template-columns: 1fr 1fr; }
  .demo-stat-page .ds-ledger th:nth-child(5), .demo-stat-page .ds-ledger td:nth-child(5),
  .demo-stat-page .ds-ledger th:nth-child(6), .demo-stat-page .ds-ledger td:nth-child(6) { display: none; }
}

/* ── Blog & articles ───────────────────────────────────────────────────── */
.post__inner { max-width: 760px; margin: 0 auto; padding: 64px 0; }
.post__title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -.02em; margin: 12px 0 14px; }
.post__meta { color: var(--muted-2); font-family: 'IBM Plex Mono', monospace; font-size: .84rem; margin: 0 0 18px; }
.post__excerpt { color: var(--muted); font-size: 1.14rem; line-height: 1.6; margin: 0; padding-bottom: 26px; border-bottom: 1px solid var(--line-soft); }
.post__body { margin-top: 30px; }
.post__body h2 { font-size: 1.5rem; font-weight: 700; letter-spacing: -.01em; margin: 42px 0 14px; }
.post__body h3 { font-size: 1.18rem; font-weight: 700; margin: 28px 0 10px; }
.post__body p { line-height: 1.75; margin: 0 0 18px; }
.post__body ul, .post__body ol { line-height: 1.7; margin: 0 0 20px; padding-left: 22px; }
.post__body li { margin: 7px 0; }
.post__body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.post__faq { margin-top: 52px; }
.post__faq > h2 { font-size: 1.5rem; font-weight: 700; margin: 0 0 18px; }
.post__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 44px; }

.post-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }
.post-card { display: flex; }
.post-card a { display: flex; flex-direction: column; width: 100%; background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 26px; text-decoration: none; color: var(--text); transition: border-color .16s, transform .16s; }
.post-card a:hover { border-color: var(--accent); transform: translateY(-2px); }
.post-card__title { font-size: 1.3rem; font-weight: 700; letter-spacing: -.01em; margin: 10px 0 8px; }
.post-card__meta { color: var(--muted-2); font-family: 'IBM Plex Mono', monospace; font-size: .82rem; margin: 0 0 12px; }
.post-card__excerpt { color: var(--muted); line-height: 1.6; margin: 0 0 14px; }
.post-card__more { color: var(--accent); font-weight: 600; font-size: .95rem; margin-top: auto; }

.demo-form__legal { color: var(--muted-2); font-size: .82rem; line-height: 1.5; margin: 14px 0 0; }
.demo-form__legal a { color: var(--muted); text-decoration: underline; }

/* ── Interface showcase (aperçu du tableau de bord) ─────────────────────── */
.shotframe {
  margin: 10px auto 0;
  max-width: 1000px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.shotframe__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--panel-2);
}
.shotframe__dots { display: inline-flex; gap: 7px; flex: none; }
.shotframe__dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--line); }
.shotframe__dots i:nth-child(1) { background: #FF5F57; }
.shotframe__dots i:nth-child(2) { background: #FEBC2E; }
.shotframe__dots i:nth-child(3) { background: #28C840; }
.shotframe__url {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--muted);
}
.shotframe__url i { font-size: 11px; }
.shotframe__view {
  position: relative;
  max-height: 600px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, #000 74%, transparent);
          mask-image: linear-gradient(180deg, #000 74%, transparent);
}
.shotframe__view .shot { display: block; width: 100%; height: auto; }
.shot--light { display: none; }
html[data-bs-theme="light"] .shot--dark { display: none; }
html[data-bs-theme="light"] .shot--light { display: block; }
.shotframe__live {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(10, 13, 20, .62);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .12);
  font-size: 12.5px;
  font-weight: 600;
  color: #ECEFF6;
}
.shotframe__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: shotpulse 1.8s infinite;
}
@keyframes shotpulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 176, 32, .5); }
  70%  { box-shadow: 0 0 0 9px rgba(255, 176, 32, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 176, 32, 0); }
}
.showcase__cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
@media (max-width: 640px) {
  .shotframe__view { max-height: 420px; }
  .shotframe__url { font-size: 11px; }
}
@media (prefers-reduced-motion: reduce) {
  .shotframe__pulse { animation: none; }
}

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
