/* ══════════════════════════════════════════════════════════
   SEELOG — Design System · Blanc / Noir · Compact & Contrasté
══════════════════════════════════════════════════════════ */

:root {
  --c-bg:       #ffffff;
  --c-surface:  #f3f3f3;
  --c-card:     #ffffff;
  --c-border:   #d8d8d8;
  --c-border2:  #b0b0b0;
  --c-text:     #1a1a1a;
  --c-muted:    #505050;
  --c-dim:      #888;
  --c-heading:  #000000;
  --c-black:    #000000;
  --c-white:    #ffffff;
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --shadow-sm:  0 1px 4px rgba(0,0,0,.10);
  --shadow-md:  0 3px 12px rgba(0,0,0,.14);
  --shadow-lg:  0 6px 28px rgba(0,0,0,.16);
  --trans:      .18s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font: 14px/1.45 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { color: var(--c-black); text-decoration: none; transition: opacity var(--trans); }
a:hover { opacity: .7; }

h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 900; letter-spacing: -1.5px; line-height: 1.08; color: var(--c-heading); }
h2 { font-size: clamp(1.3rem, 3vw, 2rem);   font-weight: 800; letter-spacing: -.8px;  line-height: 1.15; color: var(--c-heading); }
h3 { font-size: 1rem;   font-weight: 700; line-height: 1.3;  color: var(--c-heading); }
h4 { font-size: .85rem; font-weight: 700; color: var(--c-heading); }
p  { font-size: .88rem; line-height: 1.55; color: var(--c-muted); }
strong { color: var(--c-text); }

code {
  font-family: 'Consolas','Fira Code',monospace;
  background: #efefef;
  border: 1px solid #d0d0d0;
  padding: 1px 6px;
  border-radius: var(--radius-sm);
  font-size: .82em;
  color: #111;
}
pre {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  overflow-x: auto;
  position: relative;
  margin: 10px 0;
}
pre code { background: none; border: none; color: #ccc; font-size: .82rem; padding: 0; line-height: 1.6; }

/* ── Layout ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 52px 0; }
.section-sm { padding: 32px 0; }

/* ── Gradient text ── */
.gradient-text {
  background: linear-gradient(120deg, #000 0%, #555 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-warm { color: #000; } /* simplifié */

/* ── Pills ── */
.pill {
  display: inline-block; padding: 2px 10px; border-radius: 20px;
  font-size: .72rem; font-weight: 700; letter-spacing: .4px; text-transform: uppercase;
}
.pill-blue, .pill-cyan, .pill-green { background: #111; color: #fff; }
.pill-orange, .pill-red             { background: #444; color: #fff; }
.pill-purple, .pill-yellow          { background: #777; color: #fff; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 22px; border-radius: var(--radius-md);
  font-size: .85rem; font-weight: 700; cursor: pointer; border: none;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
  text-decoration: none; line-height: 1;
}
.btn:hover { transform: translateY(-1px); opacity: 1; }
.btn:active { transform: scale(.98); }

.btn-primary { background: #000; color: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.2); }
.btn-primary:hover { background: #222; color: #fff; box-shadow: 0 4px 16px rgba(0,0,0,.28); }
.btn-cyan    { background: #000; color: #fff; }
.btn-cyan:hover { background: #222; color: #fff; }
.btn-ghost   { background: transparent; color: #333; border: 1.5px solid var(--c-border2); }
.btn-ghost:hover { background: #f0f0f0; color: #000; opacity: 1; }
.btn-sm  { padding: 6px 14px; font-size: .78rem; }
.btn-lg  { padding: 12px 28px; font-size: .92rem; }
.btn-dark { background: #000; color: #fff; }
.btn-dark:hover { background: #222; color: #fff; }

/* ── Cards ── */
.glass-card {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  transition: box-shadow var(--trans), border-color var(--trans);
}
.glass-card:hover { box-shadow: var(--shadow-md); border-color: var(--c-border2); }

/* ── Section label ── */
.section-label { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.section-label .line { width: 28px; height: 2px; background: #000; }
.section-label span { font-size: .7rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #000; }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .15s; }
.reveal-delay-3 { transition-delay: .22s; }
.reveal-delay-4 { transition-delay: .29s; }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background var(--trans), border-color var(--trans), box-shadow var(--trans);
}
.nav.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-color: var(--c-border);
  box-shadow: 0 1px 8px rgba(0,0,0,.08);
}
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 20px;
  height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; position: relative; }
.nav-logo::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff2200;
  box-shadow: 0 0 6px 3px rgba(255,30,0,.85);
  pointer-events: none;
  offset-path: path('M 21.6,29.1 L 61.3,30 62.6,30 63.9,30 65.1,30 66.4,30 67.7,30 69,30 70.3,30 71.6,29.9 72.9,29.9 74.1,29.9 75.4,29.9 76.7,29.9 78,29.9 79.3,29.9 80.6,29.9 81.9,29.9 83.1,29.9 84.4,29.9 85.7,29.9 87,29.9 88.3,29.9 89.6,29.9 90.9,29.9 96,30 97.3,30 98.6,30 99.9,30 101.1,30 102.4,30 103.7,30 105,30 106.3,29.9 107.6,29.9 108.9,29.9 110.1,29.9 111.4,29.9 112.7,29.9 114,29.9 115.3,29.9 116.6,29.9 117.9,29.9 119.1,29.9 120.4,29.9 121.7,29.9 123,29.9 124.3,29.9 125.6,29.9 130.7,30 132,30 133.3,30 134.6,30 135.9,30 137.1,30 138.4,31.3 139.7,34.3 141,37.5 142.3,40.8 143.6,40.9 144.9,40 146.1,37.7 147.4,35.4 148.7,35 150,37 151.3,38.9 152.6,40.7 153.9,40.9 155.1,40.7 156.4,39.5 157.7,38.4 159,37.2 160.3,36.2 161.6,36.2 164.1,30 165.4,30 166.7,30 168,30 169.3,30 170.6,30 171.9,30 173.1,30 174.4,29.9 175.7,29.9 177,30 178.3,29.9 179.6,29.9 180.9,29.8 182.1,29.9 183.4,29.9 184.7,29.8 186,29.8 187.3,29.9 188.6,29.9 189.9,29.9 191.1,29.9 192.4,29.9 193.7,29.9 195,29.9 196.3,29.9 197.6,30 198.9,30 200.1,30 201.4,30 202.7,30 204,30 205.3,30 206.6,29.9 210.4,30 211.7,30 213,30 214.3,30 215.6,30 216.9,30 218.1,30 219.4,30 220.7,30 222,29.9 223.3,30 224.6,30 225.9,30 227.1,30 228.4,30 229.7,29.9 231,30 232.3,29.6 233.6,29.6 234.9,29.7 236.1,29.5 237.4,29.5 238.7,29.5 240,29.4 241.3,28.3 242.6,27.8 243.9,27.8 245.1,27.8 246.4,27.8 247.7,27.8 249,27.8');
  offset-rotate: 0deg;
  offset-distance: 0%;
  opacity: 0;
  animation: logo-scan 10s linear infinite;
}
@keyframes logo-scan {
  0%    { offset-distance: 0%;   opacity: 0; }
  5%    { offset-distance: 0%;   opacity: 1; }
  30%   { offset-distance: 100%; opacity: 1; }
  35%   { offset-distance: 100%; opacity: 0; }
  35.5% { offset-distance: 0%;   opacity: 0; }
  100%  { offset-distance: 0%;   opacity: 0; }
}
.nav-logo-img { height: 60px; width: auto; object-fit: contain; }
.nav-logo-text { display: none; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 2px; }
.nav-links a {
  color: #777; font-size: .82rem; font-weight: 600; padding: 5px 11px;
  border-radius: var(--radius-sm); transition: color var(--trans), background var(--trans);
}
.nav-links a:hover, .nav-links a.active { color: #000; background: #f0f0f0; opacity: 1; }
.nav-cta { margin-left: 8px; }
.nav-burger { display: none; flex-direction: column; gap: 4px; cursor: pointer; padding: 4px; }
.nav-burger span { width: 22px; height: 2px; background: #333; border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-mobile { display: none; flex-direction: column; padding: 12px 20px; background: #fff; border-top: 1px solid var(--c-border); box-shadow: 0 6px 20px rgba(0,0,0,.1); }
.nav-mobile a { color: #333; padding: 8px 0; font-size: .88rem; font-weight: 600; border-bottom: 1px solid #f0f0f0; }
.nav-mobile a:last-child { border: none; }

/* ═══════════════════════════════════════════════════════════
   HERO — compact, top-justified
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  padding-top: 76px; /* nav height */
  background: #fff;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .35; animation: blobFloat 9s ease-in-out infinite; }
.hero-blob-1 { width: 500px; height: 500px; background: radial-gradient(circle,rgba(0,0,0,.06),transparent 70%); top: -80px; left: -120px; }
.hero-blob-2 { width: 380px; height: 380px; background: radial-gradient(circle,rgba(0,0,0,.04),transparent 70%); top: 40px; right: -60px; animation-delay: -4s; }
@keyframes blobFloat { 0%,100%{transform:translate(0,0)} 50%{transform:translate(16px,-12px)} }

.hero-inner {
  position: relative; z-index: 1; max-width: 1120px; margin: 0 auto;
  padding: 40px 20px 40px;
  display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 8px 40px;
  grid-template-areas: "title title" "cta cta" "content visual";
}
.hero-title-row { grid-area: title; }
.hero-cta-row { grid-area: cta; display: flex; justify-content: center; margin: 6px 0 18px; }
.hero-content { grid-area: content; }
.hero-visual  { grid-area: visual; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; background: #f0f0f0; border: 1px solid #ddd;
  border-radius: 20px; font-size: .7rem; font-weight: 700;
  color: #555; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px;
}
.hero-eyebrow .dot { width: 5px; height: 5px; border-radius: 50%; background: #000; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.25} }

.hero-title { margin-bottom: 12px; }
.hero-desc { font-size: .9rem; color: #555; margin-bottom: 20px; max-width: 480px; line-height: 1.55; }
.hero-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-stats { display: flex; gap: 20px; flex-wrap: wrap; border-top: 1px solid #eee; padding-top: 16px; }
.hero-stat .num { font-size: 1.4rem; font-weight: 900; color: #000; line-height: 1; }
.hero-stat .lbl { font-size: .72rem; color: #888; margin-top: 1px; }

/* Hero mock window — contraste renforcé */
.hero-visual { position: relative; }
.hero-window {
  background: #fff; border: 1.5px solid #ccc;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.15), 0 2px 8px rgba(0,0,0,.08);
  animation: heroFloat 5s ease-in-out infinite;
}
@keyframes heroFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.hw-titlebar { background: #e8e8e8; padding: 8px 12px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid #ccc; }
.hw-dot { width: 8px; height: 8px; border-radius: 50%; }
.hw-dot-1{background:#aaa} .hw-dot-2{background:#bbb} .hw-dot-3{background:#ccc}
.hw-url { flex: 1; background: #ddd; border-radius: 3px; padding: 3px 8px; font-size: .68rem; color: #555; text-align: center; }
.hw-body { padding: 10px 12px; }
.mock-header {
  display: grid; grid-template-columns: 18px 90px 80px auto 44px 66px;
  gap: 6px; padding: 4px 6px; font-size: .65rem; color: #999;
  text-transform: uppercase; letter-spacing: .4px; margin-bottom: 4px;
  border-bottom: 1px solid #eee; padding-bottom: 5px;
}
.mock-row {
  display: grid; grid-template-columns: 18px 90px 80px auto 44px 66px;
  gap: 6px; padding: 5px 6px; border-radius: 4px; font-size: .68rem;
  margin-bottom: 2px; align-items: center; animation: rowIn .4s ease forwards; opacity: 0;
}
.mock-row:nth-child(1){animation-delay:.15s;background:#fff3f3;border:1px solid #e8c8c8}
.mock-row:nth-child(2){animation-delay:.3s;background:#f5f5f5;border:1px solid #e5e5e5}
.mock-row:nth-child(3){animation-delay:.45s;background:#f9f9f9;border:1px solid #ebebeb}
.mock-row:nth-child(4){animation-delay:.6s;background:#f7f7f7;border:1px solid #e8e8e8}
.mock-row:nth-child(5){animation-delay:.75s;background:#f9f9f9;border:1px solid #ebebeb}
@keyframes rowIn{to{opacity:1}}
.mock-ico{font-size:.8rem}
.mock-ip{font-family:monospace;color:#222;font-size:.65rem;font-weight:600}
.mock-flag{font-size:.82rem}
.mock-dur{color:#666;font-size:.65rem}
.mock-pgs{text-align:center;font-weight:800;color:#000;font-size:.75rem}
.mock-badge{display:inline-block;padding:1px 5px;border-radius:4px;font-size:.63rem;font-weight:700;white-space:nowrap}
.mb-threat{background:#000;color:#fff}
.mb-spam  {background:#555;color:#fff}
.mb-bot   {background:#ddd;color:#333;border:1px solid #bbb}
.mb-ok    {background:#eee;color:#555;border:1px solid #ccc}
.mock-chart{display:flex;align-items:flex-end;gap:2px;height:24px;margin-top:8px;border-top:1px solid #eee;padding-top:6px}
.mc-bar{width:5px;border-radius:1px 1px 0 0;background:rgba(0,0,0,.25)}

/* ═══════════════════════════════════════════════════════════
   TICKER — sans espace
═══════════════════════════════════════════════════════════ */
.ticker { background: #f0f0f0; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); padding: 8px 0; overflow: hidden; }
.ticker-inner { display: flex; white-space: nowrap; animation: ticker 26s linear infinite; }
.ticker-item { display: inline-flex; align-items: center; gap: 7px; padding: 0 22px; font-size: .75rem; font-weight: 600; color: #555; }
.ticker-item .icon { font-size: .82rem; filter: grayscale(1); }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ═══════════════════════════════════════════════════════════
   FEATURE TABS — sans espace entre blocs
═══════════════════════════════════════════════════════════ */
.features-section { background: #f5f5f5; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.feature-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.tab-btn {
  padding: 6px 16px; border-radius: 20px; font-size: .78rem; font-weight: 700;
  cursor: pointer; border: 1.5px solid var(--c-border); background: #fff; color: #666;
  transition: all var(--trans);
}
.tab-btn:hover { border-color: var(--c-border2); color: #111; background: #fff; }
.tab-btn.active { color: #fff; background: #000; border-color: #000; box-shadow: 0 2px 8px rgba(0,0,0,.2); }
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.feature-item {
  padding: 18px 20px; border-radius: var(--radius-md); background: #fff;
  border: 1px solid var(--c-border); box-shadow: var(--shadow-sm);
  transition: box-shadow var(--trans), border-color var(--trans);
}
.feature-item:hover { box-shadow: var(--shadow-md); border-color: var(--c-border2); }
.fi-icon { font-size: 1.5rem; margin-bottom: 8px; filter: grayscale(1); }
.fi-title { font-size: .9rem; font-weight: 700; color: #000; margin-bottom: 4px; }
.fi-desc  { font-size: .8rem; color: #555; line-height: 1.5; }
.fi-tags  { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 10px; }

/* ═══════════════════════════════════════════════════════════
   PROFILE TABS — explication non-technique (accueil)
═══════════════════════════════════════════════════════════ */
.profile-section { background: #fff; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.profile-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.ptab-btn {
  padding: 8px 18px; border-radius: 20px; font-size: .8rem; font-weight: 700;
  cursor: pointer; border: 1.5px solid var(--c-border); background: #fff; color: #666;
  transition: all var(--trans);
}
.ptab-btn:hover { border-color: var(--c-border2); color: #111; background: #fff; }
.ptab-btn.active { color: #fff; background: #000; border-color: #000; box-shadow: 0 2px 8px rgba(0,0,0,.2); }
.ptab-panel { display: none; }
.ptab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ═══════════════════════════════════════════════════════════
   SECURITY SECTION — compact
═══════════════════════════════════════════════════════════ */
.security-section { background: #fff; border-top: 1px solid var(--c-border); }
.security-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 12px; }
.threat-card {
  padding: 16px 18px; border-radius: var(--radius-md); background: #fff;
  border: 1.5px solid var(--c-border); box-shadow: var(--shadow-sm);
  border-top: 3px solid; transition: box-shadow var(--trans);
}
.threat-card:hover { box-shadow: var(--shadow-md); }
.threat-card.tc-red    { border-top-color: #000; }
.threat-card.tc-orange { border-top-color: #444; }
.threat-card.tc-yellow { border-top-color: #888; }
.threat-card.tc-purple { border-top-color: #bbb; }
.tc-level { font-size: .68rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 5px; }
.tc-red .tc-level    { color: #000; }
.tc-orange .tc-level { color: #333; }
.tc-yellow .tc-level { color: #666; }
.tc-purple .tc-level { color: #999; }
.tc-title { font-size: .88rem; font-weight: 700; color: #000; margin-bottom: 4px; }
.tc-cats  { font-size: .76rem; color: #555; line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════
   STATS — bande dense
═══════════════════════════════════════════════════════════ */
.stats-section { background: #f0f0f0; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-box { text-align: center; padding: 16px 12px; border-right: 1px solid var(--c-border); }
.stat-box:last-child { border-right: none; }
.stat-num { font-size: 2.2rem; font-weight: 900; letter-spacing: -2px; color: #000; line-height: 1; display: block; margin-bottom: 4px; }
.stat-lbl { font-size: .78rem; color: #444; font-weight: 600; }
.stat-sub { font-size: .7rem; color: #999; margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════
   TIMELINE
═══════════════════════════════════════════════════════════ */
.timeline { padding-left: 20px; border-left: 2px solid #ddd; }
.tl-item { position: relative; padding: 0 0 24px 24px; }
.tl-item::before { content: ''; position: absolute; left: -6px; top: 4px; width: 10px; height: 10px; border-radius: 50%; background: #bbb; border: 2px solid #fff; }
.tl-item.tl-new::before { background: #000; }
.tl-date  { font-size: .7rem; color: #999; margin-bottom: 2px; }
.tl-title { font-size: .88rem; font-weight: 700; color: #000; margin-bottom: 3px; }
.tl-desc  { font-size: .8rem; color: #555; line-height: 1.5; }
.tl-tags  { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 6px; }

/* ═══════════════════════════════════════════════════════════
   NEWS CARDS
═══════════════════════════════════════════════════════════ */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 16px; }
.news-card { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow var(--trans), transform var(--trans); }
.news-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.news-thumb { height: 120px; display: flex; align-items: center; justify-content: center; font-size: 3rem; background: #e8e8e8; border-bottom: 1px solid var(--c-border); }
.news-thumb-icon { filter: grayscale(1) opacity(.45); }
.news-body { padding: 16px; }
.news-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; font-size: .7rem; color: #999; }
.news-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: #ccc; }
.news-title   { font-size: .9rem; font-weight: 700; color: #000; margin-bottom: 6px; line-height: 1.35; }
.news-excerpt { font-size: .78rem; color: #555; line-height: 1.5; margin-bottom: 12px; }
.news-read { font-size: .76rem; color: #333; font-weight: 700; display: flex; align-items: center; gap: 4px; border-top: 1px solid #f0f0f0; padding-top: 10px; }
.news-card:hover .news-read { color: #000; }
.news-thumb-1,.news-thumb-2,.news-thumb-3,.news-thumb-4 { background: #e8e8e8; }

/* ═══════════════════════════════════════════════════════════
   NEWS ARTICLES (page)
═══════════════════════════════════════════════════════════ */
.news-article { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 24px 28px; margin-bottom: 16px; scroll-margin-top: 116px; box-shadow: var(--shadow-sm); }
.news-article h2 { font-size: 1.2rem; margin-bottom: 6px; }
.news-article p  { margin-bottom: 10px; }
.news-article p:last-child { margin-bottom: 0; }
.na-highlight { background: #f5f5f5; border-left: 3px solid #999; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 10px 14px; margin: 12px 0; font-size: .82rem; color: #222; line-height: 1.5; }
.na-header { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.na-icon { font-size: 2rem; filter: grayscale(1); flex-shrink: 0; }
.news-filter { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 24px; }
.news-filter-btn { padding: 5px 14px; border-radius: 20px; font-size: .76rem; font-weight: 700; cursor: pointer; border: 1.5px solid var(--c-border); background: #fff; color: #777; transition: all var(--trans); }
.news-filter-btn.active, .news-filter-btn:hover { background: #000; color: #fff; border-color: #000; }

/* ═══════════════════════════════════════════════════════════
   CTA BAND — noir plein
═══════════════════════════════════════════════════════════ */
.cta-section { background: #000; padding: 52px 0; text-align: center; border-top: 1px solid #222; }
.cta-inner { max-width: 640px; margin: 0 auto; padding: 0 20px; }
.cta-section h2 { color: #fff; margin-bottom: 8px; }
.cta-section p  { color: rgba(255,255,255,.55); margin-bottom: 24px; font-size: .88rem; }
.cta-section .btn-primary { background: #fff; color: #000; }
.cta-section .btn-primary:hover { background: #e0e0e0; color: #000; }
.cta-section .btn-ghost { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.3); }
.cta-section .btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
.cta-actions { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   STEPS — compact
═══════════════════════════════════════════════════════════ */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.steps-grid::before { display: none; }
.step-card { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 22px 20px; box-shadow: var(--shadow-sm); transition: box-shadow var(--trans); }
.step-card:hover { box-shadow: var(--shadow-md); }
.step-num { width: 36px; height: 36px; background: #000; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .9rem; font-weight: 800; color: #fff; margin-bottom: 12px; box-shadow: 0 2px 10px rgba(0,0,0,.2); }
.step-title { font-size: .9rem; font-weight: 700; color: #000; margin-bottom: 6px; }
.step-desc  { font-size: .8rem; color: #555; line-height: 1.5; }
.step-code  { margin-top: 10px; }

/* ═══════════════════════════════════════════════════════════
   FEATURES PAGE
═══════════════════════════════════════════════════════════ */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 12px; }
.feat-card { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 18px 18px; box-shadow: var(--shadow-sm); transition: box-shadow var(--trans); }
.feat-card:hover { box-shadow: var(--shadow-md); }
.feat-icon  { font-size: 1.4rem; margin-bottom: 8px; filter: grayscale(1); }
.feat-title { font-size: .88rem; font-weight: 700; color: #000; margin-bottom: 4px; }
.feat-desc  { font-size: .78rem; color: #555; line-height: 1.5; }

.bot-grid { display: flex; flex-wrap: wrap; gap: 6px; }
.bot-chip { display: flex; align-items: center; gap: 5px; padding: 4px 10px; background: #fff; border: 1px solid var(--c-border); border-radius: 16px; font-size: .74rem; color: #333; box-shadow: var(--shadow-sm); }
.bot-chip .bdot { width: 6px; height: 6px; border-radius: 50%; background: #999; flex-shrink: 0; }
.bot-chip .bcat { font-size: .65rem; color: #aaa; }

.config-table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.config-table th { text-align: left; padding: 8px 12px; background: #f5f5f5; color: #555; font-size: .72rem; text-transform: uppercase; letter-spacing: .5px; border-bottom: 1px solid var(--c-border); font-weight: 700; }
.config-table td { padding: 8px 12px; border-bottom: 1px solid #f0f0f0; color: #222; }
.config-table tr:last-child td { border-bottom: none; }
.config-table td:first-child { font-family: monospace; color: #000; font-size: .8rem; font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   DOCUMENTATION
═══════════════════════════════════════════════════════════ */
.doc-layout { display: grid; grid-template-columns: 200px 1fr; gap: 32px; align-items: start; }
.doc-sidebar { position: sticky; top: 88px; }
.doc-sidebar h4 { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: #999; margin-bottom: 8px; }
.doc-nav { list-style: none; display: flex; flex-direction: column; gap: 1px; }
.doc-nav a { display: block; padding: 5px 10px; border-radius: var(--radius-sm); font-size: .8rem; color: #777; border-left: 2px solid transparent; transition: all var(--trans); }
.doc-nav a:hover { color: #000; background: #f5f5f5; }
.doc-nav a.active { color: #000; border-color: #000; background: #f5f5f5; font-weight: 700; }
.doc-section { scroll-margin-top: 88px; margin-bottom: 48px; }
.doc-section h2 { font-size: 1.25rem; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid #000; }
.doc-section h3 { font-size: .92rem; margin: 16px 0 6px; font-weight: 700; color: #000; }
.faq-item { border: 1px solid var(--c-border); border-radius: var(--radius-md); margin-bottom: 6px; overflow: hidden; }
.faq-item summary { padding: 12px 16px; cursor: pointer; font-weight: 700; font-size: .85rem; color: #111; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary:hover { background: #f8f8f8; }
.faq-item summary::after { content: '+'; font-size: 1.1rem; color: #888; transition: transform .2s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { background: #f5f5f5; }
.faq-body { padding: 10px 16px 14px; font-size: .82rem; color: #444; line-height: 1.6; border-top: 1px solid #f0f0f0; }
.info-box { background: #f5f5f5; border: 1px solid #ddd; border-left: 3px solid #555; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 10px 14px; margin: 10px 0; font-size: .82rem; color: #222; line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════
   FOOTER — noir dense
═══════════════════════════════════════════════════════════ */
.footer { background: #000; border-top: 1px solid #111; padding: 40px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-brand-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.footer-brand-logo img { height: 26px; filter: invert(1) brightness(2); }
.footer-brand-logo span { font-size: 1rem; font-weight: 900; color: #fff; }
.footer-brand-desc { font-size: .78rem; color: #555; line-height: 1.6; }
.footer-brand-desc a { color: #777; }
.footer-brand-desc a:hover { color: #fff; opacity: 1; }
.footer-socials { display: flex; gap: 8px; margin-top: 14px; }
.footer-social { width: 30px; height: 30px; border-radius: var(--radius-sm); background: #111; border: 1px solid #222; display: flex; align-items: center; justify-content: center; font-size: .85rem; transition: background var(--trans); }
.footer-social:hover { background: #222; opacity: 1; }
.footer-col h4 { font-size: .72rem; font-weight: 800; color: #888; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1.5px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-links a { font-size: .78rem; color: #555; transition: color var(--trans); }
.footer-links a:hover { color: #fff; opacity: 1; }
.footer-links span { font-size: .78rem; color: #444; }
.footer-bottom { border-top: 1px solid #111; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .74rem; color: #444; }
.footer-bottom a { color: #444; }
.footer-bottom a:hover { color: #fff; opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (inner)
═══════════════════════════════════════════════════════════ */
.page-hero { padding: 100px 0 36px; border-bottom: 1px solid var(--c-border); background: #fafafa; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(0,0,0,.04) 1px,transparent 1px), linear-gradient(90deg,rgba(0,0,0,.04) 1px,transparent 1px); background-size: 48px 48px; pointer-events: none; }
.page-hero { position: relative; overflow: hidden; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 8px; }
.page-hero .lead { font-size: .92rem; color: var(--c-muted); max-width: 540px; }

/* ═══════════════════════════════════════════════════════════
   LEGAL
═══════════════════════════════════════════════════════════ */
.legal-hero { padding: 100px 0 36px; text-align: center; border-bottom: 1px solid var(--c-border); background: #fafafa; }
.legal-body-wrap { max-width: 820px; margin: 0 auto; padding: 32px 20px 48px; }
.legal-block { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 22px 26px; margin-bottom: 12px; box-shadow: var(--shadow-sm); }
.legal-block h2 { font-size: .95rem; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.legal-block h2 .lnum { width: 22px; height: 22px; background: #000; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .68rem; font-weight: 800; flex-shrink: 0; }
.legal-table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.legal-table th { text-align: left; color: #999; font-weight: 600; padding: 7px 0; width: 180px; vertical-align: top; border-bottom: 1px solid #f0f0f0; }
.legal-table td { padding: 7px 0; color: #222; border-bottom: 1px solid #f0f0f0; font-size: .82rem; }
.legal-table tr:last-child th,.legal-table tr:last-child td { border-bottom: none; }
.legal-block p { font-size: .83rem; line-height: 1.65; margin-bottom: 8px; color: #444; }
.legal-block p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .doc-layout { grid-template-columns: 1fr; }
  .doc-sidebar { position: static; display: none; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 8px; padding: 28px 20px; grid-template-areas: "title" "cta" "content" "visual"; }
  .hero-cta-row { margin: 10px 0 16px; }
  .hero-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid .stat-box:nth-child(2) { border-right: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .tab-panel.active { grid-template-columns: 1fr; }
  .ptab-panel.active { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .security-grid, .news-grid, .feat-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .section { padding: 32px 0; }
  .legal-block { padding: 16px; }
  .legal-table th { width: 110px; }
}

/* ══ BADGE INVESTISSEURS (rotatif) ═══════════════════════════ */
.investor-badge {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 116px;
  height: 116px;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.28));
  animation: ib-pop .5s cubic-bezier(.34,1.56,.64,1) both;
}
.investor-badge:hover { opacity: 1; }
.investor-badge:hover .ib-ring { transform: scale(1.06); }
.investor-badge:hover .ib-rotate { animation-duration: 5s; }

.ib-ring {
  position: absolute;
  inset: 0;
  background: #000;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.18);
  transition: transform var(--trans);
}
.ib-rotate {
  position: absolute;
  inset: 0;
  animation: ib-spin 12s linear infinite;
}
.ib-rotate svg { width: 100%; height: 100%; }
.ib-rotate text {
  fill: #fff;
  font-size: 11.3px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}
.ib-center {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #e2e2e2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  line-height: 1;
}
.ib-center::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25);
  animation: ib-pulse 2.4s ease-out infinite;
}

@keyframes ib-spin { to { transform: rotate(-360deg); } }
@keyframes ib-pulse {
  0%   { transform: scale(1);   opacity: .8; }
  100% { transform: scale(1.4); opacity: 0; }
}
@keyframes ib-pop {
  0%   { transform: scale(0) rotate(-40deg); }
  100% { transform: scale(1) rotate(0); }
}

@media (max-width: 600px) {
  .investor-badge { width: 92px; height: 92px; right: 14px; bottom: 14px; }
  .ib-center { width: 46px; height: 46px; font-size: 1.3rem; }
  .ib-rotate text { font-size: 12px; letter-spacing: 1.4px; }
}
@media (prefers-reduced-motion: reduce) {
  .ib-rotate { animation: none; }
  .ib-center::after { animation: none; }
  .investor-badge { animation: none; }
}

/* ══ HELP TRIGGER + MODAL (encart non-techniciens) ═══════════ */
.help-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px 12px 16px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8a00, #ff3d68);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 61, 104, .38);
  animation: help-trigger-pop .5s cubic-bezier(.34,1.56,.64,1) both;
  transition: transform var(--trans), box-shadow var(--trans);
}
.help-trigger:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 12px 30px rgba(255, 61, 104, .46); }
.help-trigger-icon {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.help-trigger-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(255, 61, 104, .55);
  animation: help-trigger-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
.help-trigger-label { position: relative; z-index: 1; font-size: .88rem; font-weight: 800; white-space: nowrap; }

@keyframes help-trigger-pop {
  0%   { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes help-trigger-pulse {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(1.12); opacity: 0; }
}

.help-modal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 20px; }
.help-modal[hidden] { display: none; }
.help-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); backdrop-filter: blur(2px); animation: help-fade .2s ease both; }
.help-modal-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  max-height: 88vh;
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 32px 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  animation: help-pop .25s cubic-bezier(.34,1.56,.64,1) both;
}
.help-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border);
  background: #fff;
  color: #444;
  font-size: .9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans);
}
.help-modal-close:hover { background: #000; color: #fff; border-color: #000; }

@keyframes help-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes help-pop {
  0%   { opacity: 0; transform: scale(.94) translateY(10px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@media (max-width: 600px) {
  .help-trigger { padding: 10px 18px 10px 10px; }
  .help-trigger-label { font-size: .78rem; }
  .help-modal-box { padding: 24px 18px 20px; max-height: 92vh; }
}
@media (prefers-reduced-motion: reduce) {
  .help-trigger { animation: none; }
  .help-trigger-pulse { animation: none; }
  .help-modal-overlay, .help-modal-box { animation: none; }
}
