/* ============================================================
   KLYVEA — Neo-Retro Terminal — Shared Styles (V2)
   Inspiré du flyer : esthétique terminal / cyberpunk néon.
   Palette néon : cyan / vert / violet / magenta sur fond noir.
   Les noms de classes & variables sont conservés depuis la V1
   (les styles inline du HTML s'appuient dessus).
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;700&family=Press+Start+2P&family=VT323&display=swap');

/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  --bg:       #07070d;
  --bg2:      #0c0c15;
  --bg3:      #12121e;
  --ink:      #e9f1ff;
  --ink2:     rgba(233,241,255,0.74);
  --muted:    rgba(233,241,255,0.46);
  --line:     rgba(120,200,255,0.12);
  --line2:    rgba(120,200,255,0.22);

  /* Néons du flyer */
  --cyan:     #25d8f0;
  --green:    #3df58b;
  --violet:   #a855f7;
  --pink:     #ff3da0;
  --blue:     #3b82f6;

  /* Compat V1 : accent = cyan, accent2 = violet, halo = magenta */
  --accent:   #25d8f0;
  --accent2:  #a855f7;
  --halo:     #ff3da0;

  --gradient: linear-gradient(90deg, #25d8f0, #a855f7, #ff3da0);

  --sans:     'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  /* Police terminal pixel — type flyer. VT323 a un grand x-height,
     les tailles sont relevées partout pour rester lisibles. */
  --mono:     'VT323', 'JetBrains Mono', monospace;
  --code:     'JetBrains Mono', monospace;
  --pixel:    'Press Start 2P', 'JetBrains Mono', monospace;

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 14px;
  --max:       1100px;
  --pad:       56px;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: var(--sans); color: var(--ink); }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ─── CRT — scanlines + grille + vignette (overlay global) ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0.18) 0px,
    rgba(0,0,0,0.18) 1px,
    transparent 2px,
    transparent 3px
  );
  opacity: 0.5;
  mix-blend-mode: multiply;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9989;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(120,200,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,200,255,0.035) 1px, transparent 1px),
    radial-gradient(ellipse 70% 60% at 50% 40%, transparent 55%, rgba(0,0,0,0.55) 100%);
  background-size: 44px 44px, 44px 44px, 100% 100%;
}

/* ─── Utilities ─────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; }
.mono { font-family: var(--mono); }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal !important;
  filter: drop-shadow(0 0 18px rgba(168,85,247,0.35));
}

/* ─── Halos néon ────────────────────────────────────────── */
.halo { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(4px); }
.halo-tl { top: -100px; left: -100px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,216,240,0.16), transparent 70%); }
.halo-tr { top: -100px; right: -100px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(168,85,247,0.18), transparent 70%); }
.halo-center { top:50%; left:50%; transform:translate(-50%,-50%); width:600px; height:600px;
  background: radial-gradient(circle, rgba(255,61,160,0.14), transparent 70%); }
.halo-bl { bottom: -200px; left: -100px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,216,240,0.14), transparent 70%); }

/* ─── Header + barre terminal ───────────────────────────── */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px var(--pad) 16px;
  border-bottom: 1px solid var(--line2);
  position: sticky;
  top: 0;
  background: rgba(7,7,13,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
}
/* Strip "klyvea@terminal" en haut du header */
.site-header::before {
  content: '\25CF \25CF \25CF    klyvea@paca:~$ ./klyvea.sh';
  position: absolute;
  top: 0; left: 0; right: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--green);
  background: #04040a;
  border-bottom: 1px solid var(--line);
  padding: 5px var(--pad);
  text-shadow: 0 0 8px rgba(61,245,139,0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Curseur clignotant en bout de barre */
.site-header::after {
  content: '_';
  position: absolute;
  top: 5px; left: 0;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green);
  padding-left: calc(var(--pad) + 252px);
  animation: klv-blink 1.05s step-end infinite;
  pointer-events: none;
  text-shadow: 0 0 8px rgba(61,245,139,0.6);
}

.header-brand { display: flex; align-items: center; gap: 14px; }
.header-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(168,85,247,0.55));
}
.header-name {
  font-family: var(--pixel);
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-shadow: 0 0 12px rgba(37,216,240,0.5);
}

.site-nav { display: flex; gap: 6px; font-size: 15px; }
.nav-links-group { display: contents; }
.nav-cta-group, .nav-footer-info { display: none; }

.site-nav a {
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink2);
  padding: 8px 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 500;
  transition: color 0.18s, border-color 0.18s, box-shadow 0.18s, transform 0.12s;
  position: relative;
}
.site-nav a:hover {
  color: var(--cyan);
  border-color: var(--line2);
  box-shadow: 0 0 16px rgba(37,216,240,0.25);
}
.site-nav a:active { transform: scale(0.95); }
.site-nav a.active {
  color: var(--cyan);
  border-color: rgba(37,216,240,0.4);
  box-shadow: inset 0 0 14px rgba(37,216,240,0.12);
}

/* ─── Boutons ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #25d8f0, #a855f7);
  color: #06060d;
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition: box-shadow 0.2s, transform 0.12s;
  box-shadow: 0 0 0 1px rgba(37,216,240,0.5), 0 0 22px rgba(168,85,247,0.4);
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0));
  opacity: 0; transition: opacity 0.2s; border-radius: inherit;
}
.btn-primary:hover {
  box-shadow: 0 0 0 1px rgba(37,216,240,0.8), 0 0 32px rgba(168,85,247,0.7), 0 0 60px rgba(255,61,160,0.3);
  transform: translateY(-1px);
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: scale(0.96); box-shadow: 0 0 12px rgba(168,85,247,0.4); }
.btn-primary.large { padding: 16px 30px; font-size: 14px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 0;
  color: var(--ink2);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--line2);
  background: none; border-top: none; border-left: none; border-right: none;
  cursor: pointer; transition: color 0.15s, border-color 0.15s;
}
.btn-ghost:hover { color: var(--cyan); border-color: var(--cyan); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  border: 1px solid rgba(37,216,240,0.4);
  border-radius: 8px; background: none; cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s, color 0.18s;
}
.btn-outline:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 18px rgba(37,216,240,0.3);
  color: #fff;
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  position: relative; z-index: 10001;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--cyan); box-shadow: 0 0 8px rgba(37,216,240,0.6);
  transition: all 0.2s;
}

/* ─── Eyebrow → chip terminal numéroté "> 01_LABEL" (flyer) ─── */
body { counter-reset: ksec; }
.eyebrow {
  counter-increment: ksec;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 22px;
  padding: 5px 14px;
  border: 1px solid rgba(37,216,240,0.45);
  border-radius: 8px;
  background: rgba(37,216,240,0.05);
  box-shadow: 0 0 20px rgba(37,216,240,0.18), inset 0 0 16px rgba(37,216,240,0.06);
  text-shadow: 0 0 10px rgba(37,216,240,0.35);
  line-height: 1.1;
}
.eyebrow::before {
  content: '> ' counter(ksec, decimal-leading-zero) '_';
  color: var(--green);
  text-shadow: 0 0 10px rgba(61,245,139,0.6);
}
.eyebrow::after { content: none; }

/* En-tête de section : eyebrow à gauche + badge à droite (flyer) */
.sec-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 6px;
}
.sec-head .eyebrow { margin-bottom: 0; }
.sec-badge {
  font-family: var(--mono);
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pink);
  padding: 5px 13px;
  border: 1px solid rgba(255,61,160,0.45);
  border-radius: 8px;
  background: rgba(255,61,160,0.06);
  box-shadow: 0 0 18px rgba(255,61,160,0.18);
  text-shadow: 0 0 10px rgba(255,61,160,0.4);
  white-space: nowrap;
  line-height: 1.1;
}

/* ─── Chiffres d'affichage en police pixel (Press Start 2P) ──── */
.hero-stat-num {
  font-family: var(--pixel) !important;
  font-size: 19px !important;
  line-height: 1.1 !important;
  color: var(--cyan) !important;
  letter-spacing: 0 !important;
  text-shadow: 0 0 18px rgba(37,216,240,0.55), 0 0 4px rgba(37,216,240,0.8);
}
.pricing-num, .price-preview-num, .step-num span {
  font-family: var(--pixel) !important;
  color: var(--cyan) !important;
  text-shadow: 0 0 14px rgba(37,216,240,0.45);
}
.pricing-num { font-size: 24px !important; }
.price-preview-num { font-size: 20px !important; letter-spacing: 0 !important; }
.step-num span { font-size: 14px !important; }

/* ─── Cards génériques ──────────────────────────────────── */
.card {
  background: var(--bg2);
  border: 1px solid var(--line2);
  border-radius: var(--radius);
  padding: 28px;
}
.card-dark {
  background: var(--bg3);
  border: 1px solid var(--line2);
  border-radius: var(--radius);
  padding: 28px;
}
.card, .pain-card, .module-card, .pricing-card, .volet-card,
.price-preview-card, .benefit-card, .value-card, .scenario-card,
.step-row, .cal-panel, .form-panel, .honesty-panel {
  position: relative;
}

/* ─── Section spacing ───────────────────────────────────── */
section { position: relative; overflow: hidden; }
.section-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ─── Photo placeholder ─────────────────────────────────── */
.img-placeholder {
  background:
    repeating-linear-gradient(45deg, var(--bg2), var(--bg2) 10px, var(--bg3) 10px, var(--bg3) 20px);
  border: 1px solid var(--line2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11px; color: var(--green);
  text-align: center; line-height: 1.6; padding: 20px;
}

/* ─── FAQ Accordion ─────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--line); cursor: pointer; }
.faq-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px; padding: 20px 0; background: none; border: none; text-align: left;
  cursor: pointer; color: var(--ink);
}
.faq-question { font-size: 18px; font-weight: 500; color: var(--ink); line-height: 1.35; font-family: var(--sans); }
.faq-trigger:hover .faq-question { color: var(--cyan); }
.faq-icon {
  font-family: var(--mono); font-size: 20px; color: var(--cyan);
  min-width: 20px; text-align: right; margin-top: -2px; flex-shrink: 0;
  transition: transform 0.2s; text-shadow: 0 0 10px rgba(37,216,240,0.5);
}
.faq-answer { font-size: 14px; color: var(--ink2); line-height: 1.6; max-width: 680px; padding-bottom: 20px; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ─── Launch banner ─────────────────────────────────────── */
.launch-banner {
  padding: 32px 40px;
  background: linear-gradient(135deg, rgba(37,216,240,0.10), rgba(255,61,160,0.10));
  border: 1px solid rgba(168,85,247,0.4);
  border-radius: 14px;
  display: flex; justify-content: space-between; align-items: center; gap: 32px;
  position: relative; overflow: hidden;
  box-shadow: inset 0 0 40px rgba(168,85,247,0.08);
}
.launch-banner::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,61,160,0.3), transparent 70%); pointer-events: none;
}
.launch-dot {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green); margin-bottom: 10px;
}
.launch-dot::before {
  content: ''; display: block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 10px var(--green);
  animation: klv-pulse-dot 1.6s ease-in-out infinite;
}
.launch-title { font-size: 22px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }

/* ─── Footer ────────────────────────────────────────────── */
.site-footer {
  padding: 56px var(--pad) 32px;
  border-top: 1px solid var(--line2);
  background: var(--bg2);
  position: relative;
}
.site-footer::before {
  content: '// klyvea — site, google, automatisation · sisteron · paca';
  position: absolute; top: 0; left: 0; right: 0;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  color: var(--muted); padding: 6px var(--pad);
  border-bottom: 1px dashed var(--line); white-space: nowrap; overflow: hidden;
}
.footer-grid {
  max-width: var(--max); margin: 18px auto 0;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand-logo img { width: 84px; height: 84px; object-fit: contain; filter: drop-shadow(0 0 14px rgba(168,85,247,0.45)); }
.footer-brand-logo span { font-family: var(--pixel); font-size: 14px; color: var(--ink); }
.footer-tagline { font-size: 13px; color: var(--ink2); line-height: 1.6; margin-bottom: 18px; max-width: 340px; }
.footer-siret { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }
.footer-col h4 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green); margin-bottom: 16px;
}
.footer-col h4::before { content: '> '; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 13px; color: var(--ink2); }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  max-width: var(--max); margin: 40px auto 0; padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.04em;
}

/* ─── Check list ────────────────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; gap: 10px; font-size: 13px; color: var(--ink2); line-height: 1.45; align-items: flex-start; }
.check-list li .icon { color: var(--green); margin-top: 2px; flex-shrink: 0; }

.icon-svg { display: inline-block; flex-shrink: 0; }

/* ─── Pill tag → [TAG] ──────────────────────────────────── */
.pill-tag {
  padding: 5px 10px;
  border: 1px solid var(--line2);
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: border-color 0.25s, box-shadow 0.25s, color 0.25s;
}
.pill-tag::before { content: '['; color: var(--muted); }
.pill-tag::after  { content: ']'; color: var(--muted); }
.pill-tag:hover {
  border-color: rgba(37,216,240,0.6);
  box-shadow: 0 0 16px rgba(37,216,240,0.3);
  color: #fff;
}

/* ─── Dashed list ───────────────────────────────────────── */
.dashed-list li {
  display: flex; justify-content: space-between; padding: 12px 0;
  border-bottom: 1px dashed var(--line); font-size: 13px;
}
.dashed-list li .val { font-family: var(--mono); color: var(--cyan); }

/* ─── Section helpers ───────────────────────────────────── */
.section-pad { padding: 100px var(--pad); }
.section-pad-sm { padding: 60px var(--pad); }
.section-pad-xs { padding: 40px var(--pad); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* ─── Hero ──────────────────────────────────────────────── */
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }

/* ─── Pricing cards (V1 .price-card) ────────────────────── */
.price-card {
  padding: 32px; background: var(--bg2);
  border: 1px solid var(--line2); border-radius: var(--radius-lg);
  display: flex; flex-direction: column; position: relative;
}
.price-card.emph {
  background: var(--bg3);
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px rgba(37,216,240,0.4), 0 0 40px rgba(37,216,240,0.16);
}
.price-badge {
  position: absolute; top: -12px; left: 24px; padding: 5px 14px;
  background: linear-gradient(135deg, var(--cyan), var(--violet)); color: #06060d;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; border-radius: 6px; font-weight: 700;
  box-shadow: 0 0 18px rgba(168,85,247,0.5);
}
.price-name { font-size: 24px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 8px; }
.price-target { font-size: 13px; color: var(--muted); margin-bottom: 24px; min-height: 36px; line-height: 1.5; }
.price-amount { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.price-from { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.price-num { font-family: var(--pixel); font-size: 30px; letter-spacing: -0.01em; color: var(--cyan); text-shadow: 0 0 16px rgba(37,216,240,0.4); }
.price-card.emph .price-num { color: var(--cyan); }
.price-unit { font-size: 13px; color: var(--muted); }
.price-note { font-size: 11px; color: var(--muted); font-style: italic; margin-bottom: 20px; }
.price-cta {
  width: 100%; padding: 14px 0; background: transparent; color: var(--cyan);
  border: 1px solid var(--line2); border-radius: 8px;
  font-family: var(--mono); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: auto; transition: border-color 0.15s, box-shadow 0.15s, color 0.15s;
}
.price-card.emph .price-cta { background: linear-gradient(135deg, var(--cyan), var(--violet)); color: #06060d; border: none; }
.price-cta:hover { border-color: var(--cyan); box-shadow: 0 0 18px rgba(37,216,240,0.3); color: #fff; }

/* ─── Timeline ──────────────────────────────────────────── */
.timeline { position: relative; padding-left: 36px; }
.timeline::before {
  content: ''; position: absolute; left: 11px; top: 8px; bottom: 8px;
  width: 1px; background: linear-gradient(180deg, rgba(37,216,240,0.5), var(--line2));
}
.timeline-item { position: relative; padding: 16px 0 32px; }
.timeline-dot {
  position: absolute; left: -36px; top: 22px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--cyan); box-shadow: 0 0 14px rgba(37,216,240,0.6);
}
.timeline-year {
  font-family: var(--mono); font-size: 11px; color: var(--green);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px;
}

/* ─── Calendar ──────────────────────────────────────────── */
.cal-day {
  padding: 10px 0; border-radius: 8px; border: 1px solid var(--line2);
  background: transparent; color: var(--ink); cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.cal-day:hover {
  border-color: rgba(37,216,240,0.7);
  box-shadow: 0 0 16px rgba(37,216,240,0.3);
  background: rgba(37,216,240,0.06);
}
.cal-day.selected {
  border-color: var(--cyan);
  background: linear-gradient(135deg, rgba(37,216,240,0.25), rgba(168,85,247,0.25));
  color: #fff;
  box-shadow: 0 0 18px rgba(37,216,240,0.4);
}
.cal-day .day-name { font-family: var(--mono); font-size: 9px; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.05em; }
.cal-day .day-num { font-family: var(--mono); font-size: 18px; font-weight: 700; }

.slot-btn {
  padding: 10px 0; border-radius: 6px; border: 1px solid var(--line2);
  background: transparent; color: var(--ink2); font-family: var(--mono); font-size: 13px;
  cursor: pointer; transition: all 0.15s;
}
.slot-btn:hover { border-color: var(--cyan); color: var(--cyan); box-shadow: 0 0 12px rgba(37,216,240,0.25); }
.slot-btn.selected {
  border-color: var(--cyan); background: rgba(37,216,240,0.14); color: var(--cyan); font-weight: 700;
  box-shadow: 0 0 14px rgba(37,216,240,0.3);
}

/* ─── Form ──────────────────────────────────────────────── */
.form-label {
  display: block; font-family: var(--mono); font-size: 11px; font-weight: 500;
  color: var(--ink2); margin-bottom: 6px; letter-spacing: 0.04em; text-transform: uppercase;
}
.form-input {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line2);
  border-radius: var(--radius-sm); background: var(--bg); color: var(--ink);
  font-size: 13px; outline: none; transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus { border-color: var(--cyan); box-shadow: 0 0 16px rgba(37,216,240,0.25); }
.form-input::placeholder { color: var(--muted); }
textarea.form-input { resize: none; }

/* ─── Surcharge "retro" des éléments stylés inline ──────────
   Le HTML conserve des styles inline éditoriaux (font-weight:400…).
   On les requalifie en gras techno.                              */
h1, h2 { font-weight: 600 !important; }
h1 em, h2 em { font-style: normal !important; }
h3, h4 { font-weight: 600; }

/* ─── VT323 : remonter les tailles des labels terminal ────────
   VT323 rend plus petit que JetBrains Mono ; on agrandit les
   éléments terminal pour garder la lisibilité du flyer.        */
.site-nav a { font-size: 16px; letter-spacing: 0.03em; }
.btn-primary { font-size: 15px; }
.btn-primary.large { font-size: 16px; }
.btn-ghost, .btn-outline { font-size: 15px; }
.pill-tag { font-size: 16px; }
.site-header::before { font-size: 15px; }
.site-footer::before { font-size: 14px; }
.footer-col h4 { font-size: 15px; }
.footer-col li, .footer-tagline { } /* corps : reste en Space Grotesk */
.footer-siret, .footer-bottom { font-size: 14px; }
.form-label { font-size: 14px; }
.launch-dot { font-size: 14px; }
.launch-title { font-size: 24px; }
.faq-icon { font-size: 26px; }
.price-num { font-size: 22px; }
/* Caret clignotant : repositionné pour VT323 15px */
.site-header::after { padding-left: calc(var(--pad) + 300px); font-size: 15px; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE  (structure menu mobile conservée de la V1)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --pad: 24px; }

  .site-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .site-header {
    position: fixed !important;
    top: 0; left: 0; right: 0;
    z-index: 10000 !important;
  }
  body.menu-open .site-header {
    backdrop-filter: none; -webkit-backdrop-filter: none; background: #04040a;
  }
  .site-header::after { display: none; }

  /* ── Menu plein écran ── */
  .site-nav.open {
    display: flex !important;
    flex-direction: column; justify-content: space-between;
    position: fixed !important;
    top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
    width: 100vw !important; height: 100vh !important; height: 100dvh !important;
    background: #04040a !important;
    background-image:
      repeating-linear-gradient(0deg, rgba(0,0,0,0.25) 0px, rgba(0,0,0,0.25) 1px, transparent 2px, transparent 3px),
      radial-gradient(ellipse 80% 50% at 50% 0%, rgba(168,85,247,0.16) 0%, transparent 60%) !important;
    padding: 96px 32px 48px;
    z-index: 9999 !important; isolation: isolate; overflow: hidden !important; gap: 0;
    box-sizing: border-box;
    animation: menu-slide-in 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .site-nav.open .nav-links-group {
    display: flex; flex-direction: column; flex: 1; justify-content: center; gap: 0;
  }
  .site-nav.open .nav-links-group a {
    font-family: var(--mono);
    font-size: 26px; font-weight: 500; letter-spacing: 0.02em; text-transform: uppercase;
    color: rgba(233,241,255,0.5);
    padding: 18px 0; border: none;
    border-bottom: 1px solid rgba(120,200,255,0.08); border-radius: 0;
    display: block; transition: color 0.2s; text-decoration: none;
  }
  .site-nav.open .nav-links-group a:first-child { border-top: 1px solid rgba(120,200,255,0.08); }
  .site-nav.open .nav-links-group a:hover,
  .site-nav.open .nav-links-group a.active { color: var(--cyan); box-shadow: none; }

  .site-nav.open .nav-links-group a:nth-child(1) { animation: link-fade-in 280ms cubic-bezier(0.16,1,0.3,1) 60ms both; }
  .site-nav.open .nav-links-group a:nth-child(2) { animation: link-fade-in 280ms cubic-bezier(0.16,1,0.3,1) 100ms both; }
  .site-nav.open .nav-links-group a:nth-child(3) { animation: link-fade-in 280ms cubic-bezier(0.16,1,0.3,1) 140ms both; }
  .site-nav.open .nav-links-group a:nth-child(4) { animation: link-fade-in 280ms cubic-bezier(0.16,1,0.3,1) 180ms both; }

  .site-nav.open .nav-cta-group {
    display: flex; flex-direction: column; gap: 16px;
    padding-top: 28px; border-top: 1px solid rgba(120,200,255,0.08);
    animation: link-fade-in 280ms cubic-bezier(0.16,1,0.3,1) 240ms both;
  }
  .nav-mobile-cta {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 24px;
    background: linear-gradient(135deg, rgba(37,216,240,0.5), rgba(168,85,247,0.5));
    border: 1px solid rgba(168,85,247,0.5); border-radius: 12px;
    color: #fff !important; font-family: var(--mono); font-size: 15px; font-weight: 600;
    letter-spacing: 0.02em; text-decoration: none;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    transition: background 0.2s, border-color 0.2s; width: 100%;
  }
  .nav-mobile-cta::after, .nav-mobile-cta::before { display: none !important; content: none !important; }
  .nav-mobile-cta:hover {
    background: linear-gradient(135deg, rgba(37,216,240,0.75), rgba(168,85,247,0.75));
    border-color: rgba(37,216,240,0.7); color: #fff !important;
  }
  .site-nav.open .nav-footer-info { display: flex; flex-direction: row; align-items: center; gap: 8px; padding-top: 4px; }
  .nav-footer-info span { font-family: var(--mono); font-size: 11px; color: rgba(233,241,255,0.25); letter-spacing: 0.04em; }
  .nav-footer-info span + span::before { content: '·'; margin-right: 8px; color: rgba(233,241,255,0.18); }

  @media (prefers-reduced-motion: reduce) {
    .site-nav.open, .site-nav.open .nav-links-group a, .site-nav.open .nav-cta-group { animation: none !important; }
  }

  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  body.menu-open { overflow: hidden; position: fixed; width: 100%; }

  @media (max-width: 390px) {
    .site-nav.open a { font-size: 22px; padding: 13px 0; }
    .site-nav.open { padding: 80px 24px 40px; }
  }

  #hero-shader { z-index: 1 !important; }

  .hero-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > :first-child { grid-column: 1 / -1; }

  .launch-banner { flex-direction: column; align-items: flex-start; gap: 20px; }

  h1 { font-size: clamp(36px, 8vw, 70px) !important; }
  h2 { font-size: clamp(26px, 5vw, 44px) !important; }

  .section-pad { padding: 60px var(--pad); }
  .section-pad-sm { padding: 40px var(--pad); }
  .section-pad-xs { padding: 24px var(--pad); }
  .header-logo { width: 46px; height: 46px; }
  .footer-brand-logo img { width: 56px; height: 56px; }

  .site-header::before { font-size: 10px; }
}

/* ── Keyframes menu mobile ── */
@keyframes menu-slide-in {
  from { opacity: 0; transform: translateY(-12px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes link-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .site-header::before { content: '\25CF \25CF \25CF   klyvea@paca:~$'; }
}

/* ── Néon : curseur / pulsations ── */
@keyframes klv-blink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }
@keyframes klv-pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--green); }
  50% { opacity: 0.4; box-shadow: 0 0 4px var(--green); }
}

@media (prefers-reduced-motion: reduce) {
  .site-header::after, .launch-dot::before { animation: none !important; }
}

/* ── CPU Architecture animation (conservée) ── */
.cpu-architecture {
  offset-anchor: 10px 0px;
  animation: animation-path;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.75, -0.01, 0, 0.99);
}
.cpu-line-1 { offset-path: path("M 10 20 h 79.5 q 5 0 5 5 v 30"); animation-duration: 5s; animation-delay: 1s; }
.cpu-line-2 { offset-path: path("M 180 10 h -69.7 q -5 0 -5 5 v 40"); animation-delay: 6s; animation-duration: 2s; }
.cpu-line-3 { offset-path: path("M 130 20 v 21.8 q 0 5 -5 5 h -25"); animation-delay: 4s; animation-duration: 6s; }
.cpu-line-4 { offset-path: path("M 170 80 v -21.8 q 0 -5 -5 -5 h -65"); animation-delay: 3s; animation-duration: 3s; }
.cpu-line-5 { offset-path: path("M 135 65 h 15 q 5 0 5 5 v 10 q 0 5 -5 5 h -39.8 q -5 0 -5 -5 v -35"); animation-delay: 9s; animation-duration: 4s; }
.cpu-line-6 { offset-path: path("M 94.8 95 v -46"); animation-delay: 3s; animation-duration: 7s; }
.cpu-line-7 { offset-path: path("M 88 88 v -15 q 0 -5 -5 -5 h -10 q -5 0 -5 -5 v -5 q 0 -5 5 -5 h 28"); animation-delay: 4s; animation-duration: 4s; }
.cpu-line-8 { offset-path: path("M 30 30 h 25 q 5 0 5 5 v 6.5 q 0 5 5 5 h 35"); animation-delay: 3s; animation-duration: 3s; }
@keyframes animation-path { 0% { offset-distance: 0%; } 100% { offset-distance: 100%; } }
