/* ========================================================
   KIPSAFE — main.css
   Direction 2C "Ops Mid" — fond clair + ambiance ops center
   ======================================================== */

:root {
  --bg: #ffffff;
  --bg-2: #f0f4f9;
  --paper: #ffffff;
  --paper-2: #f6f9fd;
  --ink: #0c1a30;
  --ink-2: #142944;
  --ink-soft: #4a5b75;
  --ink-mute: #8294b0;
  --line: #cfd8e3;
  --line-soft: #e1e8f0;
  --blue: #0d3b80;
  --blue-deep: #082a5e;
  --cyan: #0aa1e9;
  --cyan-bright: #38b6f0;
  --cyan-glow: #6ec1ff;
  --green: #16a368;
  --orange: #e8a64a;
  --red: #e85a4a;
  --term-bg: #0c1a30;
  --term-bg-2: #142944;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { background: var(--bg); color: var(--ink); font-family: 'Inter Tight', sans-serif; overflow-x: hidden; cursor: none; }

/* === Aurore qui suit la souris === */
.aurora { position: fixed; pointer-events: none; z-index: 0; width: 700px; height: 700px; border-radius: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(28,126,217,.2) 0%, rgba(74,163,232,.08) 30%, transparent 70%);
  filter: blur(50px); mix-blend-mode: multiply; }

/* === Grid de fond === */
.grid-bg { position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: linear-gradient(rgba(12,26,48,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(12,26,48,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at center, black, transparent); }

/* === Scan line === */
.scanline { position: fixed; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(28,126,217,.6), transparent); opacity: .5; pointer-events: none; z-index: 1; animation: scan 10s linear infinite; }
@keyframes scan { from { top: -1px; } to { top: 100vh; } }

/* === Cursor === */
.cursor-dot { position: fixed; top: 0; left: 0; width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); box-shadow: 0 0 14px var(--cyan); }
.cursor-ring { position: fixed; top: 0; left: 0; width: 36px; height: 36px; border: 1.5px solid var(--cyan); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%, -50%); transition: transform .35s var(--ease), width .3s, height .3s; opacity: .5; }
.cursor-ring.hover { width: 72px; height: 72px; opacity: 1; border-color: var(--blue); }

/* === Scroll progress === */
.progress { position: fixed; top: 0; left: 0; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--blue)); z-index: 999; width: 0%; box-shadow: 0 0 8px var(--cyan); }

/* === NAV === */
nav.main-nav { position: fixed; top: 0; left: 0; right: 0; padding: 18px 40px; display: flex; justify-content: space-between; align-items: center; z-index: 100; background: rgba(255,255,255,.88); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.logo { display: flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; }
.logo-mark { width: 38px; height: 38px; display: block; filter: drop-shadow(0 2px 6px rgba(13,59,128,.18)); }
.logo-mark-sm { width: 32px; height: 32px; display: block; filter: drop-shadow(0 2px 4px rgba(13,59,128,.15)); }
.logo-full { height: 52px; width: auto; display: block; transition: transform .3s var(--ease); }
.logo:hover .logo-full { transform: scale(1.03); }
footer .logo-full { height: 44px; }
.logo-text-block { display: flex; flex-direction: column; gap: 0; }
.logo-wordmark { font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 20px; letter-spacing: -.02em; line-height: 1; }
.logo-wordmark .kip { color: var(--blue); }
.logo-wordmark .safe { color: var(--cyan); }
.logo-tag { display: none; }
.logo-tagline { font-family: 'Inter Tight', sans-serif; font-size: 10px; color: var(--ink-soft); letter-spacing: .01em; margin-top: 1px; font-weight: 500; line-height: 1; }
.logo-tagline .hl { color: var(--cyan); font-weight: 600; }
nav.main-nav ul { display: flex; gap: 32px; list-style: none; }
nav.main-nav a { color: var(--ink-soft); text-decoration: none; font-size: 13px; font-family: 'JetBrains Mono', monospace; letter-spacing: .05em; transition: color .3s; }
nav.main-nav a:hover, nav.main-nav a.active { color: var(--cyan); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-status { display: flex; align-items: center; gap: 8px; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-soft); padding: 6px 12px; background: var(--paper); border: 1px solid var(--line); border-radius: 100px; }
.nav-status .led { width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 8px var(--green); animation: led-pulse 2s infinite; }
@keyframes led-pulse { 50% { opacity: .4; } }

/* === Hero images de fond (désactivées) === */
.hero-bg-wrap { display: none; }
.hero-bg-img { display: none; }
.hero-bg-overlay { display: none; }
.hero-section-wrap { position: relative; overflow: hidden; }

/* === Hero === */
.hero { padding: 160px 40px 80px; max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
.hero-top { display: flex; flex-direction: column; gap: 60px; }
.hero-intro { max-width: 1200px; }
.hero.compact { padding: 140px 40px 60px; }
.hero.compact h1 { font-size: clamp(48px, 7vw, 96px); }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--cyan); letter-spacing: .2em; text-transform: uppercase; margin-bottom: 36px; padding: 8px 14px; background: var(--paper); border: 1px solid var(--line); border-radius: 100px; }
.eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; animation: led-pulse 1.5s infinite; }

h1 { font-family: 'Inter Tight', system-ui, sans-serif; font-size: clamp(48px, 7.5vw, 120px); line-height: 1.02; letter-spacing: -.035em; font-weight: 700; }
h1 em { font-style: normal; font-weight: 700; background: linear-gradient(120deg, var(--cyan), var(--blue)); -webkit-background-clip: text; background-clip: text; color: transparent; }
h1 .typed-wrap { display: block; min-height: 1.05em; }
h1 .typed { color: var(--blue); font-style: normal; font-weight: 700; }
h1 .cursor-tick { display: inline-block; width: 3px; height: .8em; background: var(--cyan); vertical-align: -6%; animation: blink 1s infinite; margin-left: 4px; }
@keyframes blink { 50% { opacity: 0; } }

.lede { font-size: 19px; line-height: 1.6; color: var(--ink-soft); max-width: 700px; margin-top: 44px; }
.lede strong { color: var(--ink); font-weight: 600; }

.actions { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }
.btn { position: relative; padding: 16px 28px; font-size: 13px; font-weight: 600; cursor: none; transition: all .3s var(--ease); display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-family: 'JetBrains Mono', monospace; letter-spacing: .05em; text-transform: uppercase; border-radius: 8px; }
.btn-primary { background: var(--ink); color: white; border: 1px solid var(--ink); }
.btn-primary:hover { background: var(--cyan); border-color: var(--cyan); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(28,126,217,.3); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: white; transform: translateY(-2px); }
.btn .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); animation: led-pulse 1.5s infinite; }
.btn-primary:hover .dot { background: white; box-shadow: 0 0 8px white; }

/* === Hero Terminal === */
.hero-term { background: var(--term-bg); border-radius: 14px; overflow: hidden; box-shadow: 0 24px 70px rgba(12,26,48,.28); position: relative; width: 100%; max-height: 420px; transition: opacity 0.5s ease, max-height 0.6s ease 0.2s, margin 0.6s ease 0.2s; }
.hero-term::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 50% 100% at 50% 0%, rgba(28,126,217,.15), transparent); }
.hero-term .term-body { min-height: 280px; font-size: 13.5px; }
.hero-term--fading { opacity: 0; pointer-events: none; max-height: 0; margin-top: 0; }

/* === Hero Ticker (bande animée sous la barre de recherche) === */
.hero-ticker {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-2);
  padding: 14px 0;
  white-space: nowrap;
  margin-top: 60px;
}
.hero-ticker__track {
  display: inline-flex;
  gap: 0;
  animation: ticker-scroll 30s linear infinite;
  will-change: transform;
}
.hero-ticker:hover .hero-ticker__track { animation-play-state: paused; }
.hero-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero-ticker__item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}
.hero-ticker__item strong {
  color: var(--ink-soft);
  font-weight: 600;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === Hero Search Bar (apparaît après terminal) === */
.hero-search-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 75%;
  max-width: 1000px;
  margin: 48px auto 0 auto;
  padding: 20px 30px;
  background: rgba(8, 18, 36, 0.72);
  border: 1px solid rgba(28, 126, 217, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  cursor: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  pointer-events: none;
  box-shadow: 0 12px 40px rgba(8, 18, 48, 0.4), 0 0 0 1px rgba(28, 126, 217, 0.06) inset;
}
.hero-search-bar:hover {
  border-color: rgba(28, 126, 217, 0.6);
  box-shadow: 0 12px 48px rgba(8, 18, 48, 0.5), 0 0 32px rgba(28, 126, 217, 0.12);
}
.hero-search-bar--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hero-search-bar__icon {
  flex-shrink: 0;
  color: rgba(28, 126, 217, 0.6);
  width: 22px;
  height: 22px;
}
.hero-search-bar__text {
  flex: 1;
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(197, 212, 232, 0.4);
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  user-select: none;
}
.hero-search-bar__kbd {
  flex-shrink: 0;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(197, 212, 232, 0.32);
  font-weight: 600;
  letter-spacing: 0.06em;
}
/* Masqué sur mobile */
@media (max-width: 900px) {
  .hero-search-bar { display: none; }
}

.term-head { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; background: rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.06); }
.term-dots { display: flex; gap: 6px; }
.term-dots span { width: 11px; height: 11px; border-radius: 50%; }
.term-dots span:nth-child(1) { background: #ff5f57; }
.term-dots span:nth-child(2) { background: #febc2e; }
.term-dots span:nth-child(3) { background: #28c840; }
.term-name { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(255,255,255,.5); }
.term-badge { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--cyan-glow); padding: 3px 8px; background: rgba(28,126,217,.15); border-radius: 4px; display: flex; align-items: center; gap: 6px; }
.term-badge::before { content: ''; width: 5px; height: 5px; background: var(--green); border-radius: 50%; box-shadow: 0 0 6px var(--green); animation: led-pulse 1.5s infinite; }
.term-body { padding: 20px 22px; font-family: 'JetBrains Mono', monospace; font-size: 12.5px; line-height: 1.85; color: #c5d4e8; min-height: 320px; }
.term-body .pmpt { color: var(--cyan-bright); }
.term-body .ok { color: #6ee887; }
.term-body .warn { color: var(--orange); }
.term-body .err { color: #ff7a6e; }
.term-body .key { color: var(--cyan-glow); }
.term-body .com { color: rgba(255,255,255,.35); font-style: italic; }
.term-line { opacity: 0; transform: translateX(-6px); animation: tline .4s var(--ease) forwards; }
@keyframes tline { to { opacity: 1; transform: translateX(0); } }
.term-caret { display: inline-block; width: 8px; height: 1em; background: var(--cyan-bright); vertical-align: -3px; animation: blink 1s infinite; }

/* === Sections génériques === */
.scroll-section { padding: 80px 40px; max-width: 1500px; margin: 0 auto; position: relative; z-index: 2; }
.section-label { display: inline-flex; align-items: center; gap: 10px; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--cyan); letter-spacing: .2em; text-transform: uppercase; margin-bottom: 24px; padding: 6px 12px; background: var(--paper); border: 1px solid var(--line); border-radius: 100px; }
.section-title { font-family: 'Inter Tight', system-ui, sans-serif; font-size: clamp(32px, 5vw, 60px); font-weight: 700; letter-spacing: -.03em; line-height: 1.08; max-width: 1000px; margin-bottom: 60px; }
.section-title em { font-style: normal; color: var(--cyan); font-weight: 700; }
.section-sub { font-family: 'Inter Tight', system-ui, sans-serif; font-size: clamp(24px, 3.5vw, 40px); font-weight: 700; letter-spacing: -.025em; line-height: 1.15; margin-bottom: 24px; }
.section-sub em { font-style: normal; color: var(--cyan); font-weight: 700; }

/* === Scroll terminal === */
.scroll-term { background: var(--term-bg); border-radius: 12px; overflow: hidden; box-shadow: 0 16px 50px rgba(12,26,48,.2); opacity: 0; transform: translateY(60px) scale(.95); transition: all 1s var(--ease); position: relative; }
.scroll-term.in { opacity: 1; transform: translateY(0) scale(1); }
.scroll-term::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 50% 100% at 50% 0%, rgba(28,126,217,.12), transparent); }
.scroll-term .term-body { min-height: auto; padding: 18px 22px; font-size: 12px; }

/* === Split section === */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.split.reverse > :first-child { order: 2; }
.split-text h3 { font-family: 'Inter Tight', system-ui, sans-serif; font-size: clamp(24px, 3vw, 40px); font-weight: 700; letter-spacing: -.025em; line-height: 1.15; margin-bottom: 20px; }
.split-text h3 em { font-style: normal; color: var(--cyan); font-weight: 700; }
.split-text p { font-size: 15px; line-height: 1.65; color: var(--ink-soft); max-width: 480px; }
.split-text .micro-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--cyan); letter-spacing: .15em; text-transform: uppercase; margin-bottom: 16px; }
.split-features { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.split-features li { list-style: none; display: flex; align-items: start; gap: 12px; font-size: 14px; color: var(--ink-soft); padding: 8px 0; border-bottom: 1px solid var(--line-soft); }
.split-features li::before { content: '›'; color: var(--cyan); font-family: 'JetBrains Mono', monospace; font-weight: 600; }
.split-features li strong { color: var(--ink); font-weight: 600; }

/* === Stats === */
.stats-row { padding: 80px 40px; max-width: 1500px; margin: 0 auto; position: relative; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-card { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 28px; transition: all .4s var(--ease); position: relative; overflow: hidden; }
.stat-card:hover { border-color: var(--cyan); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(28,126,217,.12); }
.stat-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--cyan); transform: scaleY(0); transform-origin: bottom; transition: transform .4s var(--ease); }
.stat-card:hover::before { transform: scaleY(1); }
.stat-num { font-family: 'Inter Tight', system-ui, sans-serif; font-size: 52px; font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.stat-num .u { color: var(--cyan); font-style: normal; font-size: 28px; font-weight: 600; }
.stat-lbl { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-mute); margin-top: 14px; font-weight: 600; }
.stat-desc { font-size: 12px; color: var(--ink-soft); margin-top: 6px; line-height: 1.5; }
.stat-src { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .05em; color: var(--ink-mute); margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--line); opacity: .75; }

/* === Cards services === */
.svc-section { padding: 100px 40px; max-width: 1500px; margin: 0 auto; position: relative; z-index: 2; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.svc-card { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 28px; cursor: none; transition: all .5s var(--ease); position: relative; overflow: hidden; min-height: 240px; display: flex; flex-direction: column; justify-content: space-between; text-decoration: none; color: inherit; }
.svc-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(28,126,217,.1), transparent 50%); opacity: 0; transition: opacity .4s; }
.svc-card:hover::before { opacity: 1; }
.svc-card:hover { border-color: var(--cyan); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(28,126,217,.12); }
.svc-card .num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--cyan); letter-spacing: .15em; font-weight: 600; }
.svc-card .icon { width: 40px; height: 40px; margin: 20px 0 16px; padding: 8px; background: linear-gradient(135deg, rgba(28,126,217,.12), rgba(13,59,128,.08)); border-radius: 8px; color: var(--cyan); }
.svc-card h3 { font-family: 'Inter Tight', system-ui, sans-serif; font-size: 22px; font-weight: 700; letter-spacing: -.02em; line-height: 1.2; margin-bottom: 10px; }
.svc-card h3 em { font-style: normal; color: var(--cyan); font-weight: 700; }
.svc-card p { font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); }
.svc-card .link { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--cyan); letter-spacing: .15em; text-transform: uppercase; margin-top: 18px; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; transition: gap .3s; }
.svc-card:hover .link { gap: 10px; }
.svc-card.dark { background: linear-gradient(135deg, var(--ink), var(--ink-2)); color: white; border-color: var(--ink); }
.svc-card.dark h3 { color: white; }
.svc-card.dark h3 em { color: var(--cyan-glow); }
.svc-card.dark p { color: rgba(255,255,255,.8); }
.svc-card.dark .num { color: var(--cyan-glow); }
.svc-card.dark .icon { background: rgba(255,255,255,.1); color: white; }
.svc-card.dark .link { color: var(--cyan-glow); }

/* === Méthode steps === */
.method { padding: 100px 40px; max-width: 1500px; margin: 0 auto; }
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.method-step { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 28px; position: relative; counter-increment: step; }
.method-step::before { content: '0' counter(step); position: absolute; top: 20px; right: 20px; font-family: 'JetBrains Mono', monospace; font-size: 40px; font-weight: 700; color: var(--cyan); opacity: .25; line-height: 1; }
.method-step h4 { font-family: 'Inter Tight', system-ui, sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 12px; margin-top: 40px; letter-spacing: -.02em; }
.method-step h4 em { font-style: normal; color: var(--cyan); font-weight: 700; }
.method-step p { font-size: 13px; line-height: 1.55; color: var(--ink-soft); }

/* === Packs === */
.packs { padding: 100px 40px; max-width: 1500px; margin: 0 auto; }
.packs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pack { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 36px; transition: all .4s var(--ease); position: relative; }
.pack:hover { border-color: var(--cyan); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(28,126,217,.12); }
.pack.featured { background: linear-gradient(135deg, var(--ink), var(--ink-2)); color: white; border-color: var(--ink); }
.pack.featured .pack-name, .pack.featured .pack-desc { color: white; }
.pack.featured .pack-feat li { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.1); }
.pack.featured .pack-feat li strong { color: white; }
.pack-tag { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .15em; color: var(--cyan); margin-bottom: 12px; font-weight: 600; text-transform: uppercase; }
.pack.featured .pack-tag { color: var(--cyan-glow); }
.pack-name { font-family: 'Inter Tight', system-ui, sans-serif; font-size: 28px; font-weight: 700; letter-spacing: -.025em; margin-bottom: 8px; }
.pack-name em { font-style: normal; color: var(--cyan); font-weight: 700; }
.pack.featured .pack-name em { color: var(--cyan-glow); }
.pack-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.5; margin-bottom: 24px; }
.pack-feat { list-style: none; }
.pack-feat li { padding: 10px 0; font-size: 13.5px; color: var(--ink-soft); border-bottom: 1px solid var(--line-soft); display: flex; align-items: start; gap: 10px; }
.pack-feat li::before { content: '✓'; color: var(--cyan); font-weight: 700; flex-shrink: 0; }
.pack.featured .pack-feat li::before { color: var(--cyan-glow); }
.pack-feat li strong { color: var(--ink); font-weight: 600; }
.pack .btn { margin-top: 28px; width: 100%; justify-content: center; }

/* === Références clients === */
.refs-section { padding: 100px 40px; max-width: 1300px; margin: 0 auto; }
.refs-subtitle { text-align: center; max-width: 720px; margin: 0 auto 48px; color: var(--ink-soft); font-size: 16px; line-height: 1.6; }
.refs-logos { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 40px 32px; margin: 0 auto 48px; max-width: 1100px; }
.refs-logos img { width: 100%; height: auto; display: block; }
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 48px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.case-card { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 32px; transition: all .4s var(--ease); position: relative; overflow: hidden; }
.case-card:hover { border-color: var(--cyan); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(28,126,217,.12); }
.case-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--cyan); transform: scaleY(0); transform-origin: bottom; transition: transform .4s var(--ease); }
.case-card:hover::before { transform: scaleY(1); }
.case-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--cyan); letter-spacing: .15em; font-weight: 600; margin-bottom: 14px; }
.case-card h3 { font-family: 'Inter Tight', system-ui, sans-serif; font-size: 26px; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; margin-bottom: 18px; color: var(--ink); }
.case-metric { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
.case-num { font-family: 'Inter Tight', system-ui, sans-serif; font-size: 48px; font-weight: 800; color: var(--blue); letter-spacing: -.03em; line-height: 1; }
.case-unit { font-size: 14px; color: var(--ink-soft); font-weight: 500; }
.case-card p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.case-card p strong { color: var(--ink); font-weight: 600; }
.refs-cta { text-align: center; }
.btn-ghost { display: inline-block; padding: 14px 26px; border: 1px solid var(--line); border-radius: 100px; color: var(--ink); text-decoration: none; font-family: 'JetBrains Mono', monospace; font-size: 13px; letter-spacing: .05em; transition: all .3s var(--ease); background: var(--paper); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }

/* === Testimonial / Chat Slide (legacy, conservé pour compat) === */
.chat-slide-section { padding: 100px 40px; max-width: 1200px; margin: 0 auto; }

.cs-wrap { display: flex; flex-direction: column; align-items: center; gap: 28px; }

.cs-window {
  width: min(520px, 100%);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(13,59,128,.10), 0 4px 16px rgba(13,59,128,.06);
  overflow: hidden;
}

/* En-tête */
.cs-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--ink-2);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cs-avatar-logo { border-radius: 50%; background: white; padding: 2px; flex-shrink: 0; }
.cs-head-info { flex: 1; }
.cs-head-info strong { display: block; font-size: 13px; font-weight: 600; color: white; }
.cs-status { font-size: 11px; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.cs-led { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px var(--green); animation: led-pulse 1.5s infinite; flex-shrink: 0; }

/* Corps */
.cs-body {
  min-height: 280px;
  max-height: 340px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  background: var(--bg-2);
}

/* Messages */
.cs-msg {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  max-width: 82%;
}
.cs-msg.visible { opacity: 1; transform: translateY(0); }
.cs-msg.from-client { align-self: flex-end; flex-direction: row-reverse; }
.cs-msg.from-kipsafe { align-self: flex-start; }

.cs-msg-av {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: white;
  flex-shrink: 0;
}
.from-client .cs-msg-av { background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.from-kipsafe .cs-msg-av { background: transparent; padding: 0; overflow: visible; }
.from-kipsafe .cs-msg-av img { width: 28px; height: 28px; border-radius: 0; object-fit: contain; }

.cs-bubble {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.55;
  font-family: 'Inter Tight', sans-serif;
}
.from-client .cs-bubble {
  background: var(--blue);
  color: white;
  border-bottom-right-radius: 4px;
}
.from-kipsafe .cs-bubble {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
}

/* Typing indicator */
.cs-typing {
  display: flex; align-items: flex-end; gap: 8px;
  align-self: flex-start;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cs-typing.visible { opacity: 1; transform: translateY(0); }
.cs-typing-dots {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  padding: 12px 16px;
  display: flex; gap: 4px; align-items: center;
}
.cs-typing-dots span {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--ink-mute);
  animation: typing-bounce 1.2s infinite ease-in-out;
}
.cs-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.cs-typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30%           { transform: translateY(-5px); }
}

/* Signature de fin */
.cs-sender {
  font-size: 11px;
  color: var(--ink-mute);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 10px 18px 14px;
  border-top: 1px solid var(--line-soft);
  background: var(--paper);
}

/* Dots de navigation */
.cs-dots { display: flex; gap: 8px; align-items: center; }
.cs-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}
.cs-dot.active { background: var(--cyan); transform: scale(1.3); }

/* Mobile */
@media (max-width: 600px) {
  .chat-slide-section { padding: 60px 16px; }
  .cs-body { min-height: 240px; max-height: 300px; }
  .refs-section { padding: 60px 16px; }
  .refs-logos { padding: 24px 16px; margin-bottom: 32px; }
  .case-grid { grid-template-columns: 1fr; }
  .case-card { padding: 24px; }
  .case-num { font-size: 40px; }
  .case-card h3 { font-size: 22px; }
}

/* === Form === */
.form-wrap { padding: 80px 40px; max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 48px; box-shadow: 0 12px 40px rgba(13,59,128,.06); }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-soft); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; font-weight: 600; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 14px 16px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 8px; font-family: 'Inter Tight', sans-serif; font-size: 15px; color: var(--ink); outline: none; transition: all .3s; cursor: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--cyan); background: white; box-shadow: 0 0 0 4px rgba(28,126,217,.08); }
.form-group textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-info { display: flex; gap: 12px; padding: 16px; background: rgba(28,126,217,.06); border: 1px solid rgba(28,126,217,.15); border-radius: 8px; font-size: 13px; color: var(--ink-soft); line-height: 1.5; margin-top: 24px; }
.form-info::before { content: 'ℹ'; color: var(--cyan); font-weight: 700; font-size: 16px; }

/* === Contact cards === */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 60px; }
.contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 28px; text-align: center; transition: all .4s; }
.contact-card:hover { border-color: var(--cyan); transform: translateY(-3px); }
.contact-card .ico { width: 44px; height: 44px; margin: 0 auto 16px; padding: 10px; background: linear-gradient(135deg, rgba(28,126,217,.12), rgba(13,59,128,.08)); border-radius: 10px; color: var(--cyan); }
.contact-card h4 { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-mute); letter-spacing: .15em; text-transform: uppercase; margin-bottom: 8px; }
.contact-card a, .contact-card p { font-family: 'Inter Tight', system-ui, sans-serif; font-size: 18px; color: var(--ink); text-decoration: none; font-weight: 600; }
.contact-card a:hover { color: var(--cyan); }

/* === Article (page detail) === */
.article { padding: 60px 40px 100px; max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }
.article h2 { font-family: 'Inter Tight', system-ui, sans-serif; font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; letter-spacing: -.03em; line-height: 1.15; margin: 60px 0 20px; }
.article h2 em { font-style: normal; color: var(--cyan); font-weight: 700; }
.article h3 { font-family: 'Inter Tight', system-ui, sans-serif; font-size: clamp(20px, 2.2vw, 26px); font-weight: 700; margin: 40px 0 16px; letter-spacing: -.02em; }
.article p { font-size: 16px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 18px; }
.article p strong { color: var(--ink); font-weight: 600; }
.article ul { padding-left: 0; list-style: none; margin: 24px 0; }
.article ul li { padding: 12px 0 12px 28px; position: relative; color: var(--ink-soft); font-size: 15px; line-height: 1.65; border-bottom: 1px solid var(--line-soft); }
.article ul li::before { content: '›'; position: absolute; left: 0; top: 12px; color: var(--cyan); font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 18px; }
.article ul li strong { color: var(--ink); }
.article blockquote { font-family: 'Inter Tight', system-ui, sans-serif; font-size: 22px; font-weight: 600; color: var(--ink); line-height: 1.45; margin: 32px 0; padding-left: 24px; border-left: 3px solid var(--cyan); }

/* === Breadcrumb === */
.breadcrumb { padding: 120px 40px 0; max-width: 1400px; margin: 0 auto; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-mute); letter-spacing: .1em; }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; transition: color .3s; }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb .sep { color: var(--line); margin: 0 8px; }

/* === FOOTER avec fond animé === */
footer { padding: 140px 40px 32px; border-top: 1px solid var(--line); max-width: 1500px; margin: 80px auto 0; position: relative; z-index: 2; overflow: hidden; }
footer > .footer-cta, footer > .footer-grid, footer > .footer-bot { position: relative; z-index: 2; }
.footer-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.footer-network { position: absolute; left: 0; right: 0; top: 0; width: 100%; height: 70%; }
.footer-network .grid-line { stroke: rgba(12,26,48,.06); stroke-width: 1; stroke-dasharray: 2 6; fill: none; }
.footer-network .net-line { stroke: var(--cyan); stroke-width: 1.2; fill: none; opacity: .25; stroke-dasharray: 6 8; }
.footer-network .net-line-flow { stroke: var(--cyan); stroke-width: 1.5; fill: none; opacity: .8; stroke-dasharray: 120 800; animation: lineFlow 5s linear infinite; }
.footer-network .net-line-flow.f2 { animation-delay: -1.5s; animation-duration: 6s; }
.footer-network .net-line-flow.f3 { animation-delay: -3s; animation-duration: 7s; }
@keyframes lineFlow { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -920; } }
.footer-network .node { fill: var(--cyan); }
.footer-network .node-pulse { fill: var(--cyan); opacity: .4; transform-box: fill-box; transform-origin: center; animation: footerPulse 3s ease-out infinite; }
@keyframes footerPulse { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(5); opacity: 0; } }
.footer-wordmark { position: absolute; bottom: 8%; left: 50%; transform: translateX(-50%); font-family: 'Inter Tight', system-ui, sans-serif; font-weight: 700; font-style: normal; font-size: clamp(60px, 13vw, 220px); color: rgba(12,26,48,.05); white-space: nowrap; letter-spacing: -.04em; line-height: 1; pointer-events: none; user-select: none; }
.footer-radar { position: absolute; right: 6%; top: 12%; width: 280px; height: 280px; opacity: .35; }
.footer-radar circle { fill: none; stroke: var(--cyan); stroke-width: 1; }
.footer-radar .ring1 { animation: radarPing 3s ease-out infinite; transform-origin: center; transform-box: fill-box; }
.footer-radar .ring2 { animation: radarPing 3s ease-out infinite; animation-delay: -1s; transform-origin: center; transform-box: fill-box; }
.footer-radar .ring3 { animation: radarPing 3s ease-out infinite; animation-delay: -2s; transform-origin: center; transform-box: fill-box; }
@keyframes radarPing { 0% { r: 10; opacity: .8; } 100% { r: 130; opacity: 0; } }
.footer-radar .center { fill: var(--cyan); }
.footer-radar .sweep { transform-origin: 50% 50%; animation: radarSweep 4s linear infinite; }
@keyframes radarSweep { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.footer-cta { font-family: 'Inter Tight', system-ui, sans-serif; font-size: clamp(40px, 6.5vw, 100px); line-height: 1.02; letter-spacing: -.035em; font-weight: 700; margin-bottom: 80px; max-width: 1200px; }
.footer-cta em { font-style: normal; color: var(--cyan); font-weight: 700; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-top: 50px; border-top: 1px solid var(--line); }
.footer-col h4 { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 16px; font-weight: 600; }
.footer-col a { display: block; color: var(--ink); text-decoration: none; font-size: 13px; padding: 5px 0; }
.footer-col a:hover { color: var(--cyan); }
.footer-bot { display: flex; justify-content: space-between; padding-top: 32px; margin-top: 50px; border-top: 1px solid var(--line); font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-mute); }

/* === Chat Widget === */
.chat-btn { position: fixed; bottom: 28px; right: 28px; width: 60px; height: 60px; background: linear-gradient(135deg, var(--cyan), var(--blue)); border-radius: 50%; box-shadow: 0 12px 30px rgba(28,126,217,.4); display: flex; align-items: center; justify-content: center; cursor: none; z-index: 500; transition: transform .3s var(--ease); border: none; }
.chat-btn:hover { transform: scale(1.08); }
.chat-btn::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--blue)); opacity: .4; z-index: -1; animation: chatPulse 2s var(--ease) infinite; }
@keyframes chatPulse { 0%, 100% { transform: scale(1); opacity: .4; } 50% { transform: scale(1.2); opacity: 0; } }
.chat-btn svg { width: 28px; height: 28px; color: white; transition: transform .4s var(--ease); }
.chat-btn.open svg { transform: rotate(180deg); }
.chat-btn .notif { position: absolute; top: -2px; right: -2px; width: 18px; height: 18px; background: var(--red); border-radius: 50%; color: white; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 2px solid var(--bg); }
.chat-btn.open .notif { display: none; }

.chat-panel { position: fixed; bottom: 100px; right: 28px; width: 380px; max-height: 560px; background: var(--paper); border-radius: 16px; box-shadow: 0 20px 60px rgba(12,26,48,.25); z-index: 499; transform: translateY(20px) scale(.95); opacity: 0; pointer-events: none; transition: all .4s var(--ease); display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); }
.chat-panel.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.chat-header { padding: 18px 20px; background: linear-gradient(135deg, var(--ink), var(--ink-2)); color: white; display: flex; align-items: center; gap: 12px; }
.chat-av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--blue)); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px; position: relative; }
.chat-av::after { content: ''; position: absolute; bottom: 0; right: 0; width: 12px; height: 12px; background: var(--green); border-radius: 50%; border: 2px solid var(--ink); box-shadow: 0 0 6px var(--green); }
.chat-name { flex: 1; }
.chat-name strong { display: block; font-size: 14px; font-weight: 600; }
.chat-name span { font-size: 11px; opacity: .7; font-family: 'JetBrains Mono', monospace; }
.chat-close { background: rgba(255,255,255,.1); border: none; width: 28px; height: 28px; border-radius: 50%; color: white; cursor: none; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: background .3s; }
.chat-close:hover { background: rgba(255,255,255,.2); }
.chat-body { flex: 1; padding: 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; background: var(--paper-2); }
.chat-msg { display: flex; gap: 8px; max-width: 85%; opacity: 0; animation: msgIn .4s var(--ease) forwards; }
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; flex-direction: row-reverse; }
.chat-bubble { padding: 10px 14px; border-radius: 14px; font-size: 13.5px; line-height: 1.5; }
.chat-msg.bot .chat-bubble { background: white; color: var(--ink); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.chat-msg.user .chat-bubble { background: var(--cyan); color: white; border-bottom-right-radius: 4px; }
.chat-typing { display: flex; gap: 4px; padding: 14px 16px; background: white; border: 1px solid var(--line); border-radius: 14px; border-bottom-left-radius: 4px; align-self: flex-start; }
.chat-typing span { width: 6px; height: 6px; background: var(--ink-mute); border-radius: 50%; animation: typing 1.4s infinite; }
.chat-typing span:nth-child(2) { animation-delay: .2s; }
.chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typing { 0%, 60%, 100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-4px); } }
.chat-quick { padding: 0 20px 12px; display: flex; flex-wrap: wrap; gap: 6px; background: var(--paper-2); }
.chat-quick button { padding: 8px 12px; background: white; border: 1px solid var(--line); border-radius: 100px; font-size: 12px; color: var(--ink); cursor: none; font-family: inherit; transition: all .2s; }
.chat-quick button:hover { background: var(--cyan); color: white; border-color: var(--cyan); }
.chat-input-wrap { padding: 14px 16px; background: white; border-top: 1px solid var(--line); display: flex; gap: 8px; align-items: center; }
.chat-input { flex: 1; border: none; outline: none; padding: 10px 14px; background: var(--paper-2); border-radius: 100px; font-family: inherit; font-size: 13px; color: var(--ink); }
.chat-send { width: 36px; height: 36px; border-radius: 50%; background: var(--cyan); color: white; border: none; cursor: none; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.chat-send:hover { background: var(--blue); transform: scale(1.05); }
.chat-foot { padding: 8px 16px 10px; text-align: center; font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--ink-mute); letter-spacing: .1em; background: white; border-top: 1px solid var(--line-soft); }

/* ========================================================
   PHASE 2 — Composants additionnels pour pages de détail
   ======================================================== */

/* === CVSS Gauge (jauge de criticité) === */
.gauge-card { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 32px; text-align: center; }
.gauge-svg { width: 100%; max-width: 240px; height: 140px; margin: 0 auto; }
.gauge-bg-arc { fill: none; stroke: var(--line); stroke-width: 14; stroke-linecap: round; }
.gauge-fg-arc { fill: none; stroke: url(#gaugeGrad); stroke-width: 14; stroke-linecap: round; stroke-dasharray: 314; stroke-dashoffset: 314; transition: stroke-dashoffset 2s var(--ease); }
.gauge-value { font-family: 'Inter Tight', sans-serif; font-size: 56px; font-weight: 800; letter-spacing: -.03em; line-height: 1; margin-top: -20px; }
.gauge-value .max { color: var(--ink-mute); font-size: 24px; font-weight: 500; }
.gauge-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-mute); margin-top: 12px; font-weight: 600; }
.gauge-pill { display: inline-block; padding: 5px 12px; border-radius: 100px; font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; letter-spacing: .1em; margin-top: 10px; }
.gauge-pill.critical { background: rgba(232,90,74,.12); color: var(--red); }
.gauge-pill.high { background: rgba(232,166,74,.15); color: var(--orange); }
.gauge-pill.medium { background: rgba(28,126,217,.12); color: var(--cyan); }
.gauge-pill.low { background: rgba(22,163,104,.12); color: var(--green); }

/* === Timeline verticale === */
.timeline { padding: 100px 40px; max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.timeline-list { position: relative; padding-left: 40px; counter-reset: tl; }
.timeline-list::before { content: ''; position: absolute; left: 16px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(to bottom, var(--cyan) 0%, var(--blue) 50%, transparent 100%); border-radius: 2px; }
.timeline-step { position: relative; padding: 0 0 40px; opacity: 0; transform: translateX(-20px); transition: all .6s var(--ease); counter-increment: tl; }
.timeline-step.in { opacity: 1; transform: translateX(0); }
.timeline-step::before { content: counter(tl, decimal-leading-zero); position: absolute; left: -40px; top: -2px; width: 32px; height: 32px; background: var(--paper); border: 2px solid var(--cyan); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700; color: var(--cyan); box-shadow: 0 0 0 6px var(--bg); }
.timeline-step.in::before { animation: stepPing .8s var(--ease); }
@keyframes stepPing { 0% { transform: scale(0.6); box-shadow: 0 0 0 0 rgba(28,126,217,.5); } 100% { transform: scale(1); box-shadow: 0 0 0 6px var(--bg); } }
.timeline-step h4 { font-family: 'Inter Tight', sans-serif; font-size: 22px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 8px; }
.timeline-step h4 em { color: var(--cyan); font-style: normal; }
.timeline-step .tl-meta { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--cyan); letter-spacing: .15em; text-transform: uppercase; font-weight: 600; margin-bottom: 4px; }
.timeline-step p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; }

/* === Tool grid (logos / tech stack) === */
.tools-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 60px 0; }
.tool-card { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 24px 20px; text-align: center; transition: all .3s var(--ease); position: relative; overflow: hidden; }
.tool-card:hover { border-color: var(--cyan); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(28,126,217,.1); }
.tool-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(28,126,217,.05), transparent); opacity: 0; transition: opacity .3s; }
.tool-card:hover::after { opacity: 1; }
.tool-name { font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: 15px; color: var(--ink); margin-bottom: 4px; position: relative; }
.tool-cat { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--ink-mute); letter-spacing: .1em; position: relative; }
.tool-icon { width: 32px; height: 32px; margin: 0 auto 12px; color: var(--cyan); position: relative; }

/* === Compare table === */
.compare-table { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; margin: 40px 0; }
.compare-row { display: grid; grid-template-columns: 2fr 1fr 1fr; padding: 16px 24px; border-bottom: 1px solid var(--line-soft); align-items: center; }
.compare-row:last-child { border-bottom: none; }
.compare-row.head { background: var(--paper-2); font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: .15em; color: var(--ink-mute); font-weight: 600; }
.compare-row .col-h { text-align: center; font-weight: 700; color: var(--ink); }
.compare-feat { font-size: 14px; color: var(--ink); }
.compare-cell { text-align: center; font-size: 14px; }
.compare-cell.yes { color: var(--green); }
.compare-cell.no { color: var(--ink-mute); }
.compare-cell.partial { color: var(--orange); }

/* === Deliverables (livrables) === */
.deliverables { padding: 80px 40px; max-width: 1500px; margin: 0 auto; position: relative; z-index: 2; }
.deliv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.deliv-card { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 28px; transition: all .4s var(--ease); }
.deliv-card:hover { border-color: var(--cyan); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(28,126,217,.1); }
.deliv-icon { width: 44px; height: 44px; padding: 10px; background: linear-gradient(135deg, rgba(28,126,217,.12), rgba(13,59,128,.08)); border-radius: 10px; color: var(--cyan); margin-bottom: 20px; }
.deliv-card h4 { font-family: 'Inter Tight', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.01em; }
.deliv-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

/* === Big quote / pull quote === */
.pull-quote { padding: 80px 40px; max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.pull-quote-inner { position: relative; padding: 40px 60px; }
.pull-quote-inner::before { content: '"'; position: absolute; top: -20px; left: 0; font-family: 'Inter Tight', sans-serif; font-size: 200px; line-height: 1; color: var(--cyan); opacity: .15; font-weight: 700; }
.pull-quote p { font-family: 'Inter Tight', sans-serif; font-size: clamp(22px, 2.6vw, 32px); line-height: 1.4; font-weight: 600; letter-spacing: -.015em; color: var(--ink); }
.pull-quote p em { color: var(--cyan); font-style: normal; font-weight: 700; }

/* === Process tabs (multi-step interactive) === */
.tab-process { padding: 80px 40px; max-width: 1500px; margin: 0 auto; }
.tab-nav { display: flex; gap: 0; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 6px; margin-bottom: 40px; overflow-x: auto; }
.tab-btn { flex: 1; padding: 14px 20px; background: transparent; border: none; cursor: none; font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); border-radius: 8px; transition: all .3s var(--ease); white-space: nowrap; }
.tab-btn:hover { color: var(--ink); }
.tab-btn.active { background: var(--ink); color: white; }
.tab-content { display: none; }
.tab-content.active { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; animation: tabFadeIn .4s var(--ease); }
@keyframes tabFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.tab-text h3 { font-family: 'Inter Tight', sans-serif; font-size: 32px; font-weight: 700; letter-spacing: -.025em; margin-bottom: 16px; }
.tab-text h3 em { color: var(--cyan); font-style: normal; }

/* === Article cards (blog) === */
.blog-grid { padding: 60px 40px; max-width: 1500px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 2; }
.blog-card { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: all .4s var(--ease); cursor: none; text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(13,59,128,.1); border-color: var(--cyan); }
.blog-cover { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--blue-deep), var(--cyan)); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.blog-cover.alt2 { background: linear-gradient(135deg, var(--ink), var(--cyan)); }
.blog-cover.alt3 { background: linear-gradient(135deg, var(--cyan), #6ec1ff); }
.blog-cover.alt4 { background: linear-gradient(135deg, #1c5cb0, var(--blue-deep)); }
.blog-cover svg { width: 60%; height: 60%; opacity: .25; }
.blog-cover::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 28px 28px; }
.blog-cat { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: white; padding: 4px 10px; background: rgba(255,255,255,.15); border-radius: 100px; position: absolute; top: 16px; left: 16px; backdrop-filter: blur(4px); }
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-body h3 { font-family: 'Inter Tight', sans-serif; font-size: 22px; font-weight: 700; letter-spacing: -.02em; line-height: 1.2; margin-bottom: 12px; }
.blog-excerpt { font-size: 14px; color: var(--ink-soft); line-height: 1.55; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-top: 20px; font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--ink-mute); letter-spacing: .1em; }
.blog-meta .sep { color: var(--line); }
.blog-card.featured { grid-column: span 3; flex-direction: row; min-height: 380px; }
.blog-card.featured .blog-cover { flex: 1; aspect-ratio: auto; }
.blog-card.featured .blog-body { flex: 1; padding: 48px; justify-content: center; }
.blog-card.featured h3 { font-size: 36px; line-height: 1.1; }
.blog-card.featured .blog-excerpt { font-size: 16px; max-width: 480px; }

/* === Risk meter (linear) === */
.risk-meter { padding: 24px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; margin: 24px 0; }
.risk-label { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.risk-label .name { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-soft); letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.risk-label .val { font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: 18px; }
.risk-bar { height: 8px; background: var(--line-soft); border-radius: 100px; overflow: hidden; position: relative; }
.risk-bar::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: linear-gradient(90deg, var(--green), var(--orange), var(--red)); border-radius: 100px; transition: width 1.5s var(--ease); }
.risk-bar.in::after { width: var(--w, 50%); }

/* === Tag list === */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.tag-pill { font-family: 'JetBrains Mono', monospace; font-size: 10px; padding: 6px 12px; background: var(--paper); border: 1px solid var(--line); border-radius: 100px; color: var(--ink-soft); letter-spacing: .1em; font-weight: 600; text-transform: uppercase; transition: all .2s; }
.tag-pill:hover { border-color: var(--cyan); color: var(--cyan); }
.tag-pill.solid { background: var(--cyan); color: white; border-color: var(--cyan); }

/* === Related links (cross-pages) === */
.related { padding: 60px 40px; max-width: 1500px; margin: 0 auto; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 24px; transition: all .3s; text-decoration: none; color: inherit; display: flex; align-items: center; gap: 16px; cursor: none; }
.related-card:hover { border-color: var(--cyan); transform: translateX(4px); }
.related-card .arr { color: var(--cyan); margin-left: auto; }
.related-card .ico { width: 36px; height: 36px; padding: 8px; background: var(--paper-2); border-radius: 8px; color: var(--cyan); flex-shrink: 0; }
.related-card h4 { font-family: 'Inter Tight', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.related-card p { font-size: 12px; color: var(--ink-soft); }

/* ========================================================
   SEARCH BAR (style Linear/Stripe Cmd+K)
   ======================================================== */

.search-btn { background: var(--paper); border: 1px solid var(--line); border-radius: 100px; padding: 7px 8px 7px 12px; display: inline-flex; align-items: center; gap: 8px; cursor: none; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-soft); transition: all .3s var(--ease); letter-spacing: .05em; }
.search-btn:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(28,126,217,.15); }
.search-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.search-btn .search-kbd { padding: 2px 6px; background: var(--paper-2); border-radius: 4px; font-size: 10px; color: var(--ink-mute); border: 1px solid var(--line); font-weight: 500; }

/* Overlay */
.search-overlay { position: fixed; inset: 0; background: rgba(12, 26, 48, .65); backdrop-filter: blur(8px); z-index: 1000; display: none; align-items: flex-start; justify-content: center; padding-top: 90px; cursor: default; animation: searchOverlayIn .25s var(--ease); }
.search-overlay.open { display: flex; }
@keyframes searchOverlayIn { from { opacity: 0; backdrop-filter: blur(0); } to { opacity: 1; backdrop-filter: blur(8px); } }

.search-modal { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; width: 90%; max-width: 680px; max-height: 70vh; overflow: hidden; box-shadow: 0 30px 80px rgba(12,26,48,.4); display: flex; flex-direction: column; animation: searchModalIn .3s var(--ease); }
@keyframes searchModalIn { from { opacity: 0; transform: translateY(-20px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }

.search-input-wrap { display: flex; align-items: center; gap: 14px; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.search-input-wrap > svg { color: var(--ink-mute); flex-shrink: 0; }
.search-input { flex: 1; border: none; outline: none; background: transparent; font-family: 'Inter Tight', sans-serif; font-size: 17px; color: var(--ink); cursor: text; font-weight: 500; }
.search-input::placeholder { color: var(--ink-mute); font-weight: 400; }
.search-close { padding: 4px 10px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 6px; font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--ink-soft); cursor: none; letter-spacing: .1em; transition: all .2s; font-weight: 600; }
.search-close:hover { background: var(--ink); color: white; border-color: var(--ink); }

.search-results { overflow-y: auto; max-height: 55vh; padding: 8px; }
.search-results::-webkit-scrollbar { width: 6px; }
.search-results::-webkit-scrollbar-thumb { background: var(--line); border-radius: 100px; }

.search-section-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--ink-mute); letter-spacing: .15em; text-transform: uppercase; padding: 12px 14px 6px; font-weight: 600; }

.search-result { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 8px; cursor: none; text-decoration: none; color: inherit; transition: background .15s; }
.search-result:hover, .search-result.active { background: var(--paper-2); }
.search-result.active { background: rgba(28,126,217,.06); }
.search-result .cat-pill { font-family: 'JetBrains Mono', monospace; font-size: 9px; padding: 4px 9px; background: var(--cyan-soft); color: var(--cyan); border-radius: 100px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; flex-shrink: 0; }
.search-result .cat-pill.audit { background: rgba(232,166,74,.12); color: var(--orange); }
.search-result .cat-pill.expertise { background: rgba(22,163,104,.12); color: var(--green); }
.search-result .cat-pill.partenaire { background: linear-gradient(135deg, var(--blue), var(--cyan)); color: white; }
.search-result .cat-pill.blog { background: rgba(110,193,255,.15); color: var(--blue); }
.search-result .res-text { flex: 1; min-width: 0; }
.search-result h4 { font-family: 'Inter Tight', sans-serif; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 2px; letter-spacing: -.01em; }
.search-result p { font-size: 12px; color: var(--ink-soft); line-height: 1.4; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.search-result mark { background: rgba(28,126,217,.18); color: var(--blue); font-weight: 700; padding: 0 2px; border-radius: 2px; }
.search-result .arr { color: var(--ink-mute); margin-left: auto; flex-shrink: 0; opacity: 0; transition: all .2s; }
.search-result:hover .arr, .search-result.active .arr { opacity: 1; transform: translateX(2px); color: var(--cyan); }

.search-empty { padding: 50px 20px; text-align: center; color: var(--ink-mute); font-size: 14px; }
.search-empty svg { width: 56px; height: 56px; margin-bottom: 16px; opacity: .3; color: var(--ink-mute); }
.search-empty strong { color: var(--ink); }
.search-empty-hint { font-size: 12px; margin-top: 10px; color: var(--ink-mute); }

.search-footer { padding: 12px 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--ink-mute); background: var(--paper-2); letter-spacing: .05em; }
.search-footer .keys { display: flex; gap: 14px; align-items: center; }
.search-footer .keys span { display: inline-flex; align-items: center; gap: 5px; }
.search-footer .search-kbd { padding: 2px 6px; background: var(--paper); border: 1px solid var(--line); border-radius: 4px; font-size: 10px; font-weight: 600; color: var(--ink-soft); }
.search-brand { color: var(--cyan); font-weight: 700; letter-spacing: .15em; }

/* ============================================================
   HAMBURGER + DRAWER MOBILE
   ============================================================ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: var(--bg-2); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--bg);
  border-left: 1px solid var(--line);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 80px 24px 40px;
  transition: right 0.35s var(--ease);
  box-shadow: -8px 0 40px rgba(12,26,48,.12);
}
.nav-drawer.open { right: 0; }
.nav-drawer a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 8px;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
}
.nav-drawer a:hover { background: var(--bg-2); color: var(--blue); }
.nav-drawer .drawer-cta {
  margin-top: 20px;
  justify-content: center;
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  letter-spacing: 0;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12,26,48,.35);
  backdrop-filter: blur(2px);
  z-index: 8999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }

/* ============================================================
   RESPONSIVE — ≤ 900px
   ============================================================ */
@media (max-width: 900px) {
  body { cursor: none; }
  .cursor-dot, .cursor-ring, .aurora { display: none; }

  /* Nav */
  nav.main-nav { padding: 10px 16px; }
  nav.main-nav ul { display: none; }
  .logo-full { height: 40px; }
  footer .logo-full { height: 36px; }
  .nav-status { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { padding: 100px 20px 50px; }
  .hero-top { gap: 32px; }
  .hero-intro { max-width: 100%; }
  .hero-ticker { margin-top: 32px; }
  .hero-ticker__item { padding: 0 24px; font-size: 10px; }

  /* Sections */
  .scroll-section { padding: 60px 20px; }
  .section-title { margin-bottom: 36px; }
  .svc-section { padding: 60px 20px; }
  .stats-row { padding: 60px 20px; }

  /* Grilles */
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split.reverse > :first-child { order: 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .svc-grid, .svc-grid.cols-2 { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr 1fr; }
  .packs-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tools-grid { grid-template-columns: 1fr 1fr; }
  .deliv-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }

  /* Cards */
  .form-card { padding: 24px; }
  .svc-card { padding: 24px 20px; }
  .stat-card { padding: 20px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; padding: 40px 16px; }
  .blog-card.featured { flex-direction: column; grid-column: span 1; }
  .blog-card.featured .blog-body { padding: 24px; }
  .blog-card.featured h3 { font-size: 22px; }

  /* Tableaux / onglets */
  .tab-content.active { grid-template-columns: 1fr; gap: 24px; }
  .compare-row { grid-template-columns: 1.5fr 1fr 1fr; padding: 10px 12px; font-size: 11px; }
  .timeline-list { padding-left: 28px; }
  .timeline-step::before { left: -30px; width: 24px; height: 24px; }

  /* Recherche */
  .search-btn { padding: 6px 10px; font-size: 10px; }
  .search-btn .search-kbd { display: none; }
  .search-modal { width: calc(100vw - 24px); max-width: 100%; }
  .search-overlay { padding-top: 60px; }
  .search-input { font-size: 16px; }
  .search-footer .keys span { font-size: 9px; }

  /* Chat */
  .chat-panel { width: calc(100vw - 24px); right: 12px; bottom: 80px; }

  /* Scroll terminal caché sur mobile */
  .scroll-term { display: none; }
  .split { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — ≤ 480px (petits téléphones)
   ============================================================ */
@media (max-width: 480px) {
  nav.main-nav { padding: 10px 14px; }
  .logo-tag { display: none; }

  .hero { padding: 86px 16px 40px; }
  h1 { font-size: clamp(36px, 11vw, 56px); }
  .lede { font-size: 16px; margin-top: 24px; }
  .actions { flex-direction: column; gap: 12px; }
  .actions .btn { width: 100%; justify-content: center; text-align: center; }

  .stats-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .section-title { font-size: clamp(26px, 8vw, 36px); }
  .scroll-section { padding: 48px 16px; }
  .svc-section { padding: 48px 16px; }
  .stats-row { padding: 48px 16px; }

  .compare-row { grid-template-columns: 1fr; padding: 10px 12px; }
  .compare-row > *:not(:first-child) { display: none; }

  .footer-logo-row { flex-direction: column; gap: 8px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================================
   PROMISEC OVERLAY — Animation d'entrée
   ============================================================ */
#promisec-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #020c18;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pov-inner {
  width: min(560px, 90vw);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.pov-logo {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #4a7fc1;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pov-kip  { color: #0d3b80; }
.pov-safe { color: #1c7ed9; }
.pov-sep  { color: #2a4a6e; font-weight: 300; }
.pov-pem  { color: #4a7fc1; }
.pov-terminal {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 13px;
  line-height: 2;
  color: #c8d8e8;
  min-height: 96px;
}
.pov-line { white-space: pre; }
.pov-bar {
  height: 2px;
  background: #0d2035;
  border-radius: 2px;
  overflow: hidden;
}
.pov-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #1c7ed9, #00ff9d);
  border-radius: 2px;
}
