/* ================================================================
   NEURO-IMMO LAB™ · DESIGN SYSTEM
   Charte graphique alignée Système1-Immo™
   Navy 950 #070B14 · Accent Blue #5BA3E8 · Purple #A78BFA
   Space Grotesk (display) · Geist (body) · JetBrains Mono (code)
   ================================================================ */

:root {
  /* Palette Navy */
  --navy-950: #070B14;
  --navy-900: #0B1020;
  --navy-800: #0F1523;
  --navy-700: #161E31;
  --navy-600: #1E2638;

  /* Palette Cool */
  --cool-50: #F5F7FB;
  --cool-200: #E4E7EC;
  --cool-300: #CBD2DB;
  --cool-400: #98A2B3;
  --cool-500: #64748B;

  /* Accents */
  --accent-blue: #5BA3E8;
  --accent-blue-dark: #3B8DE0;
  --accent-purple: #A78BFA;
  --accent-cyan: #5EEAD4;
  --success: #52C77A;
  --warn: #FCD34D;
  --danger: #E94F5C;

  /* Axes de recherche (Marché / IA / Neuro) */
  --flux-marche: #FCD34D;   /* jaune — marché immobilier */
  --flux-ia: #5BA3E8;        /* bleu — IA × immo */
  --flux-neuro: #A78BFA;     /* violet — neurosciences */

  /* Surfaces */
  --card-bg: #0F1523;
  --card-border: rgba(255,255,255,0.06);
  --card-border-hover: rgba(91,163,232,0.3);

  /* Radii */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 28px;

  /* Shadows */
  --shadow-raised: 0 10px 30px -12px rgba(0,0,0,.55), 0 1px 0 rgba(255,255,255,.04) inset;
  --shadow-deep: 0 40px 100px -40px rgba(0,0,0,.9), 0 0 0 1px rgba(91,163,232,.2);
  --shadow-glow-blue: 0 0 40px rgba(91,163,232,.4);
  --shadow-glow-purple: 0 0 40px rgba(167,139,250,.4);

  /* Motion */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-base: 400ms;

  /* Mouse tracking */
  --mouse-x: 50%;
  --mouse-y: 50%;
  --card-mx: 50%;
  --card-my: 50%;
}

/* ============ RESET ============ */
* { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Geist', system-ui, sans-serif;
  background: var(--navy-950);
  color: var(--cool-200);
  overflow-x: hidden;
  position: relative;
  line-height: 1.5;
}
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============ FONTS ============ */
.font-display { font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.02em; }
.font-body { font-family: 'Geist', system-ui, sans-serif; }
.font-mono { font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace; }
.font-serif { font-family: 'Fraunces', Georgia, serif; letter-spacing: -0.01em; }

/* ============ AMBIENT BACKGROUND ============ */
.ambient-bg {
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(167,139,250,0.12) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 85% 45%, rgba(91,163,232,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 15% 70%, rgba(167,139,250,0.05) 0%, transparent 50%),
    linear-gradient(180deg, #0B1020 0%, #070B14 100%);
}
.ambient-mesh { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.mesh-blob { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.3; animation: float-mesh 25s ease-in-out infinite; }
.mesh-b1 { width: 500px; height: 500px; top: -100px; left: -150px; background: radial-gradient(circle, #A78BFA, transparent 70%); }
.mesh-b2 { width: 600px; height: 600px; top: 40%; right: -200px; background: radial-gradient(circle, #5BA3E8, transparent 70%); animation-delay: -10s; }
.mesh-b3 { width: 550px; height: 550px; bottom: -200px; left: 30%; background: radial-gradient(circle, #A78BFA, transparent 70%); animation-delay: -18s; }
@keyframes float-mesh {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(80px,-60px) scale(1.15); }
  66% { transform: translate(-50px,80px) scale(0.92); }
}

/* ============ GRID BACKGROUND ============ */
.grid-bg {
  background-image:
    linear-gradient(rgba(167,139,250,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167,139,250,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 30%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 30%, black 40%, transparent 100%);
}

/* ============ SPOTLIGHT ============ */
.spotlight { position: relative; }
.spotlight::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(167,139,250,0.12), transparent 45%);
}

/* ============ CURSOR BLOB ============ */
.cursor-blob {
  position: fixed; top: 0; left: 0; width: 400px; height: 400px;
  pointer-events: none; z-index: 2;
  background: radial-gradient(circle, rgba(167,139,250,0.15) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  transition: transform 0.15s cubic-bezier(0.23, 1, 0.32, 1);
  mix-blend-mode: screen;
  filter: blur(20px);
}
@media (max-width: 768px) { .cursor-blob { display: none; } }

/* ============ PROGRESS BAR ============ */
.progress-bar { position: fixed; top:0; left:0; right:0; height:2px; z-index:100; background: transparent; }
.progress-fill {
  height:100%; width:0%; transition: width 0.1s ease-out;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), var(--accent-blue));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  box-shadow: 0 0 10px var(--accent-purple);
}
@keyframes shimmer { 0%{background-position:0% 0%} 100%{background-position:200% 0%} }

/* ============ CARDS ============ */
.neu-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-raised);
  transition: box-shadow var(--dur-base) var(--ease-smooth), transform var(--dur-base) var(--ease-smooth), border-color var(--dur-base) var(--ease-smooth);
  position: relative;
}
.neu-card::before {
  content:''; position:absolute; inset:0; pointer-events:none; opacity:0;
  border-radius: var(--r-lg);
  background: radial-gradient(400px circle at var(--card-mx, 50%) var(--card-my, 50%), rgba(167,139,250,0.12), transparent 45%);
  transition: opacity 0.3s;
}
.neu-card:hover::before { opacity:1; }
.neu-card:hover { border-color: var(--card-border-hover); transform: translateY(-3px); }

.card-glow { position: relative; }
.card-glow::after {
  content:''; position:absolute; inset:-1px; z-index:-1;
  background: conic-gradient(from var(--angle, 0deg), var(--accent-blue), var(--accent-purple), var(--accent-blue));
  border-radius: inherit; filter: blur(12px); opacity:.55;
  animation: rotate-border 6s linear infinite;
}
@keyframes rotate-border { to { --angle: 360deg; } }
@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }

/* ============ BADGES ============ */
.badge-lab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(15,21,35,.7);
  border: 1px solid rgba(167,139,250,.3);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--cool-200);
  backdrop-filter: blur(10px);
}
.badge-lab-blue { border-color: rgba(91,163,232,.35); }
.badge-lab-purple { border-color: rgba(167,139,250,.35); }

.badge-flux {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase;
}
.badge-flux-marche { background: rgba(252,211,77,.1); color: var(--flux-marche); border: 1px solid rgba(252,211,77,.3); }
.badge-flux-ia { background: rgba(91,163,232,.1); color: var(--flux-ia); border: 1px solid rgba(91,163,232,.3); }
.badge-flux-neuro { background: rgba(167,139,250,.1); color: var(--flux-neuro); border: 1px solid rgba(167,139,250,.3); }

/* ============ BUTTONS ============ */
.btn-primary {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(180deg, #A78BFA 0%, #8B6EE8 100%);
  color: white; font-weight: 600;
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 8px 28px -8px rgba(167,139,250,.65);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
  overflow: hidden;
  border-radius: 12px;
  padding: 14px 28px;
  font-family: 'Geist', system-ui, sans-serif;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.btn-primary::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.4) 50%, transparent 70%);
  transform: translateX(-100%); transition: transform 0.6s ease;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 20px 44px -8px rgba(167,139,250,.85); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(15,21,35,.6);
  border: 1px solid rgba(167,139,250,.25);
  color: var(--cool-50); font-weight: 500;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border-radius: 12px;
  padding: 12px 24px;
  font-family: 'Geist', system-ui, sans-serif;
  text-decoration: none;
  cursor: pointer;
}
.btn-secondary:hover { border-color: rgba(167,139,250,.6); background: rgba(15,21,35,.9); transform: translateY(-1px); }

.btn-s1 {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(180deg, #5BA3E8 0%, #3B8DE0 100%);
  color: white; font-weight: 600;
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 8px 28px -8px rgba(91,163,232,.65);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
  border-radius: 12px;
  padding: 14px 28px;
  font-family: 'Geist', system-ui, sans-serif;
  text-decoration: none;
}
.btn-s1:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 20px 44px -8px rgba(91,163,232,.85); }

.magnetic { transition: transform 0.15s cubic-bezier(0.23, 1, 0.32, 1); }

.ripple { position: relative; overflow: hidden; }
.ripple-dot { position: absolute; border-radius: 50%; background: rgba(255,255,255,.35); transform: translate(-50%,-50%) scale(0); animation: ripple-anim 0.7s ease-out; pointer-events: none; }
@keyframes ripple-anim { to { transform: translate(-50%,-50%) scale(4); opacity: 0; } }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.96); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ============ HERO WORDS ============ */
.word { display: inline-block; opacity: 0; transform: translateY(30px); animation: wordIn 0.8s var(--ease-smooth) forwards; }
@keyframes wordIn { to { opacity:1; transform:translateY(0); } }

.gradient-text {
  background: linear-gradient(120deg, #A78BFA 0%, #5BA3E8 50%, #A78BFA 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradient-flow 5s linear infinite;
}
@keyframes gradient-flow { from{background-position:0% 0} to{background-position:200% 0} }

.word.gradient-text {
  animation: wordIn 0.8s var(--ease-smooth) forwards, gradient-flow 5s linear infinite;
}

/* ============ LIVE DOT ============ */
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 8px var(--success); animation: livePulse 2s ease-in-out infinite; flex-shrink: 0; }
@keyframes livePulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.15)} }

.pulse-ring { animation: pulse-ring 2.4s ease-in-out infinite; }
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(167,139,250,.4), 0 0 20px rgba(167,139,250,.3); }
  50% { box-shadow: 0 0 0 14px rgba(167,139,250,0), 0 0 30px rgba(167,139,250,.5); }
}

/* ============ SECTION GRADIENTS ============ */
.bg-gradient-section-1 {
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(167,139,250,.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(91,163,232,.08) 0%, transparent 60%);
}
.bg-gradient-section-2 {
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(91,163,232,.10) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(167,139,250,.08) 0%, transparent 60%);
}
.bg-gradient-section-3 {
  background:
    radial-gradient(ellipse 70% 50% at 90% 20%, rgba(167,139,250,.10) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 10% 80%, rgba(91,163,232,.08) 0%, transparent 55%);
}

.section-divider {
  position: relative; height: 1px; max-width: 800px; margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,.35), rgba(91,163,232,.35), rgba(167,139,250,.35), transparent);
}
.section-divider::before {
  content:''; position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: radial-gradient(circle, rgba(167,139,250,.8), transparent 60%);
  filter: blur(4px);
}

/* ============ FLOATING SHAPES ============ */
.floating-shape {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(167,139,250,.25), transparent 70%);
  filter: blur(40px); pointer-events: none;
  animation: float-shape 15s ease-in-out infinite;
}
@keyframes float-shape {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(30px,-20px); }
}

/* ============ FAQ ============ */
details[open] summary .faq-icon { transform: rotate(45deg); }
summary::-webkit-details-marker { display: none; }
summary { list-style: none; cursor: pointer; }
details { transition: background 0.3s ease; }
details[open] { background: linear-gradient(180deg, rgba(22,29,46,.9) 0%, rgba(15,21,35,.9) 100%); }

/* ============ MARQUEE ============ */
.marquee { overflow:hidden; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.marquee-track { display: flex; gap: 4rem; animation: marquee 35s linear infinite; align-items: center; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ============ CITATION CARD ============ */
.citation {
  position: relative;
  padding: 24px 28px 24px 52px;
  border-left: 3px solid var(--accent-purple);
  background: linear-gradient(135deg, rgba(167,139,250,.05), rgba(91,163,232,.03));
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  color: var(--cool-200);
}
.citation::before {
  content: '"'; position: absolute; left: 14px; top: 8px;
  font-size: 56px; font-family: 'Fraunces', Georgia, serif;
  color: var(--accent-purple); opacity: 0.5; line-height: 1;
}
.citation cite {
  display: block; margin-top: 12px;
  font-family: 'Geist', system-ui, sans-serif;
  font-style: normal; font-size: 13px; font-weight: 500;
  color: var(--cool-400);
}
.citation cite::before { content: '— '; color: var(--accent-purple); }

/* ============ STUDY META ============ */
.study-meta {
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--cool-500);
}
.study-meta strong { color: var(--cool-200); font-weight: 600; }

/* ============ UTILITIES ============ */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { scrollbar-width: none; -ms-overflow-style: none; }

/* ============ NAV ============ */
.nav-shell {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(7,11,20,.72);
  border-bottom: 1px solid rgba(167,139,250,.12);
}
.nav-link {
  font-size: 14px; font-weight: 500;
  color: var(--cool-300);
  transition: color 0.2s;
  text-decoration: none;
}
.nav-link:hover { color: var(--cool-50); }
.nav-link.active { color: var(--accent-purple); }

/* ============ FOOTER ============ */
.footer-shell {
  border-top: 1px solid rgba(167,139,250,.12);
  background: rgba(11,16,32,.5);
}

/* ============ CODE BLOCK ============ */
code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9em;
  background: rgba(167,139,250,.08);
  border: 1px solid rgba(167,139,250,.15);
  padding: 2px 6px; border-radius: 4px;
  color: var(--cool-100, #E4E7EC);
}

/* ============ LABEL BRAIN ICON ============ */
.brain-icon {
  display: inline-block; width: 14px; height: 14px;
  vertical-align: middle;
  background: radial-gradient(circle, var(--accent-purple), transparent 70%);
  border-radius: 50%; animation: livePulse 3s ease-in-out infinite;
}

/* ============ CONTROL PANEL · SUBIR vs REPRENDRE ============ */
.control-panel {
  padding: 28px 26px;
  position: relative;
  transition: all .4s var(--ease-smooth);
}
.control-panel-suber {
  background: rgba(15,21,35,.4);
  border: 1px solid rgba(233,79,92,.15);
  border-radius: var(--r-lg) 0 0 var(--r-lg);
  opacity: .75;
}
.control-panel-reprendre {
  background: linear-gradient(135deg, rgba(167,139,250,.08), rgba(91,163,232,.04));
  border: 1px solid rgba(167,139,250,.4);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  box-shadow: 0 20px 60px -20px rgba(167,139,250,.3);
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .control-panel-suber { border-radius: var(--r-lg) var(--r-lg) 0 0; }
  .control-panel-reprendre { border-radius: 0 0 var(--r-lg) var(--r-lg); }
}
.control-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--cool-500);
  padding: 4px 10px;
  border: 1px solid rgba(100,116,139,.3);
  border-radius: 999px;
  margin-bottom: 14px;
}
.control-tag-active {
  color: var(--accent-purple);
  border-color: rgba(167,139,250,.5);
  background: rgba(167,139,250,.08);
}
.control-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 22px;
  color: var(--cool-400);
  margin-bottom: 16px;
}
.control-title-active {
  color: var(--cool-50);
  background: linear-gradient(120deg, #A78BFA, #5BA3E8);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.control-list {
  list-style: none; padding: 0; margin: 0;
}
.control-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--cool-400);
  line-height: 1.5;
}
.control-panel-suber .control-list li iconify-icon {
  color: var(--danger);
  flex-shrink: 0;
  margin-top: 3px;
}
.control-panel-reprendre .control-list li iconify-icon {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 3px;
}
.control-panel-reprendre .control-list li {
  color: var(--cool-200);
}

/* ============ BRAIN VIZ · 8 SECONDES ============ */
.brain-viz-wrap {
  position: relative;
  margin-top: 40px;
  padding: 24px 0;
}
.brain-viz-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(167,139,250,.06), transparent 70%);
  pointer-events: none;
}
.brain-viz {
  width: 100%; height: auto; max-height: 280px;
  display: block;
  overflow: visible;
}
.brain-wave {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: brain-draw 4s cubic-bezier(.22,1,.36,1) infinite;
  filter: drop-shadow(0 0 8px rgba(167,139,250,.4));
}
@keyframes brain-draw {
  0% { stroke-dashoffset: 1400; opacity: 0; }
  10%, 85% { opacity: 1; }
  85% { stroke-dashoffset: 0; }
  95%, 100% { stroke-dashoffset: 0; opacity: 0; }
}
.brain-tick-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500;
  fill: var(--cool-500);
}
.brain-tick-label-decision {
  fill: var(--accent-purple); font-weight: 700;
}
.brain-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  fill: var(--cool-400);
}
.brain-label-big {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px; font-weight: 500;
  fill: var(--cool-300);
}
.brain-label-decision {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 700;
  fill: var(--accent-purple);
}

/* ============ BIAIS VIZ · CONTAINERS & BASE ============ */
.biais-viz-card {
  background: linear-gradient(135deg, rgba(15,21,35,.92), rgba(11,16,32,.8));
  border: 1px solid rgba(167,139,250,.25);
  border-radius: var(--r-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-raised), 0 0 80px -30px rgba(167,139,250,.3);
  position: relative;
  overflow: hidden;
}
.biais-viz-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(167,139,250,.08), transparent 70%);
  pointer-events: none;
}
.biais-viz-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  position: relative;
}

/* ============ VIZ · ANCRAGE (price slider) ============ */
.anc-wrap { display: flex; flex-direction: column; gap: 18px; }
.anc-row {
  display: grid; grid-template-columns: 140px 1fr 100px;
  align-items: center; gap: 14px;
}
@media (max-width: 639px) { .anc-row { grid-template-columns: 110px 1fr 90px; gap: 8px; } }
.anc-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--cool-400);
}
.anc-bar {
  position: relative; height: 28px;
  background: rgba(7,11,20,.7);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
}
.anc-fill {
  height: 100%; width: 0;
  border-radius: inherit;
  transition: width 2s var(--ease-spring);
  display: flex; align-items: center;
  justify-content: flex-end; padding-right: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; font-weight: 700;
  color: #fff;
  box-shadow: 0 0 20px currentColor;
}
.anc-fill-market { background: linear-gradient(90deg, rgba(100,116,139,.5), rgba(100,116,139,.8)); color: var(--cool-200); }
.anc-fill-anchor { background: linear-gradient(90deg, rgba(167,139,250,.5), var(--accent-purple)); color: #fff; }
.anc-fill-final  { background: linear-gradient(90deg, rgba(91,163,232,.5), var(--accent-blue)); color: #fff; }
.anc-wrap.play .anc-fill-market { width: 80%; }
.anc-wrap.play .anc-fill-anchor { width: 100%; transition-delay: .6s; }
.anc-wrap.play .anc-fill-final { width: 84%; transition-delay: 1.2s; }
.anc-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--cool-50);
  text-align: right;
}
.anc-verdict {
  margin-top: 16px; padding: 14px 18px;
  background: linear-gradient(135deg, rgba(233,79,92,.08), rgba(233,79,92,.02));
  border: 1px solid rgba(233,79,92,.25);
  border-radius: var(--r-md);
  font-size: 14px; color: var(--cool-200);
  opacity: 0; transform: translateY(8px);
  transition: all .5s ease;
  transition-delay: 2s;
}
.anc-wrap.play .anc-verdict { opacity: 1; transform: translateY(0); }
.anc-verdict strong { color: var(--danger); }

/* ============ VIZ · AVERSION PERTE (scales) ============ */
.scales-wrap {
  display: flex; justify-content: center;
  padding: 16px 0 24px;
  position: relative;
}
.scales-svg { width: 100%; max-width: 340px; height: auto; }
.scales-arm {
  transform-origin: 170px 50px;
  animation: scales-tilt 3s ease-in-out forwards;
  animation-delay: .4s;
}
@keyframes scales-tilt {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(25deg); }
}
.scales-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 600;
  letter-spacing: .1em;
}

/* ============ VIZ · FOMO (timer + notifications) ============ */
.fomo-wrap {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 30px; align-items: center;
}
@media (max-width: 639px) { .fomo-wrap { grid-template-columns: 1fr; gap: 20px; } }
.fomo-timer {
  aspect-ratio: 1; max-width: 200px; margin: 0 auto;
  position: relative;
}
.fomo-timer-ring {
  transform: rotate(-90deg);
  animation: fomo-drain 7s linear infinite;
  filter: drop-shadow(0 0 12px rgba(233,79,92,.5));
}
@keyframes fomo-drain {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 502; }
}
.fomo-timer-num {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  font-family: 'Space Grotesk', sans-serif;
}
.fomo-timer-big { font-size: 42px; font-weight: 700; color: var(--cool-50); line-height: 1; }
.fomo-timer-unit { font-size: 11px; font-family: 'JetBrains Mono', monospace; letter-spacing: .15em; color: var(--danger); margin-top: 4px; }
.fomo-notifs { display: flex; flex-direction: column; gap: 10px; }
.fomo-notif {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  background: rgba(233,79,92,.06);
  border: 1px solid rgba(233,79,92,.2);
  border-radius: 12px;
  opacity: 0; transform: translateX(-10px);
  animation: fomo-notif-pop 7s ease-in-out infinite;
}
.fomo-notif:nth-child(1) { animation-delay: 1.5s; }
.fomo-notif:nth-child(2) { animation-delay: 3s; }
.fomo-notif:nth-child(3) { animation-delay: 4.5s; }
@keyframes fomo-notif-pop {
  0%, 20% { opacity: 0; transform: translateX(-10px); }
  25%, 85% { opacity: 1; transform: translateX(0); }
  95%, 100% { opacity: 0; transform: translateX(-10px); }
}
.fomo-notif-icon {
  width: 32px; height: 32px; border-radius: 10px;
  background: rgba(233,79,92,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--danger);
  flex-shrink: 0;
}
.fomo-notif-text {
  font-size: 13px; color: var(--cool-200); line-height: 1.4;
}
.fomo-notif-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--cool-500);
  margin-top: 2px;
}

/* ============ VIZ · PREUVE SOCIALE (counter + cards stack) ============ */
.ps-wrap { display: grid; grid-template-columns: 200px 1fr; gap: 30px; align-items: center; }
@media (max-width: 639px) { .ps-wrap { grid-template-columns: 1fr; gap: 20px; } }
.ps-counter {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(167,139,250,.08), rgba(91,163,232,.04));
  border: 1px solid rgba(167,139,250,.3);
  border-radius: var(--r-lg);
}
.ps-counter-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px; font-weight: 700;
  line-height: 1;
  background: linear-gradient(120deg, #A78BFA, #5BA3E8);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  display: block;
  animation: ps-count 2s var(--ease-smooth) forwards;
}
@keyframes ps-count { from { opacity: 0; transform: scale(.6); } to { opacity: 1; transform: scale(1); } }
.ps-counter-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--cool-400);
  margin-top: 6px;
}
.ps-cards { position: relative; display: flex; flex-direction: column; gap: 8px; }
.ps-card {
  padding: 12px 16px;
  background: rgba(15,21,35,.7);
  border: 1px solid rgba(91,163,232,.2);
  border-radius: 10px;
  opacity: 0;
  animation: ps-card-in .6s var(--ease-spring) forwards;
}
.ps-card:nth-child(1) { animation-delay: 1s; }
.ps-card:nth-child(2) { animation-delay: 1.4s; }
.ps-card:nth-child(3) { animation-delay: 1.8s; }
@keyframes ps-card-in {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
.ps-card-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--cool-200);
}
.ps-card-quote {
  font-size: 12px; color: var(--cool-400);
  font-style: italic; margin-top: 3px;
}

/* ============ VIZ · EFFET DOTATION (toggle mental price) ============ */
.dot-wrap { display: grid; grid-template-columns: 160px 1fr; gap: 24px; align-items: center; }
@media (max-width: 639px) { .dot-wrap { grid-template-columns: 1fr; gap: 16px; } }
.dot-house {
  aspect-ratio: 1; max-width: 160px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(167,139,250,.15), rgba(91,163,232,.05));
  border: 1px solid rgba(167,139,250,.3);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.dot-house iconify-icon {
  font-size: 72px;
  color: var(--accent-purple);
}
.dot-house-ring {
  position: absolute; inset: -4px;
  border: 2px solid var(--accent-purple);
  border-radius: var(--r-lg);
  opacity: 0;
  animation: dot-ring 3s ease-in-out infinite;
}
@keyframes dot-ring {
  0%, 40% { opacity: 0; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
  70%, 100% { opacity: 0; transform: scale(1.1); }
}
.dot-prices { display: flex; flex-direction: column; gap: 14px; }
.dot-price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  background: rgba(7,11,20,.6);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 12px;
}
.dot-price-row-mental {
  background: linear-gradient(135deg, rgba(233,79,92,.08), rgba(233,79,92,.02));
  border-color: rgba(233,79,92,.3);
}
.dot-price-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cool-400);
}
.dot-price-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--cool-50);
  animation: dot-count 2.5s var(--ease-smooth) forwards;
}
.dot-price-val-mental { color: var(--danger); }
.dot-gap {
  margin-top: 8px; padding: 10px 16px;
  background: rgba(167,139,250,.08);
  border: 1px solid rgba(167,139,250,.3);
  border-radius: 10px;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 600;
  color: var(--accent-purple);
  opacity: 0;
  animation: fade-in-up .6s ease forwards;
  animation-delay: 2.2s;
}

/* ============ VIZ · BIAIS CONFIRMATION (funnel filter) ============ */
.conf-wrap {
  display: grid; grid-template-columns: 1fr 40px 1fr;
  gap: 16px; align-items: center;
}
@media (max-width: 639px) { .conf-wrap { grid-template-columns: 1fr; gap: 10px; } }
.conf-col {
  display: flex; flex-direction: column; gap: 8px;
}
.conf-info {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 12px; line-height: 1.4;
  display: flex; align-items: flex-start; gap: 8px;
  opacity: 0;
  animation: conf-in .5s ease forwards;
}
.conf-info-in {
  background: rgba(15,21,35,.8);
  border: 1px solid rgba(98,116,139,.2);
  color: var(--cool-300);
}
.conf-info-accept {
  background: rgba(82,199,122,.08);
  border: 1px solid rgba(82,199,122,.3);
  color: var(--cool-200);
}
.conf-info-reject {
  background: rgba(233,79,92,.06);
  border: 1px solid rgba(233,79,92,.25);
  color: var(--cool-400);
  text-decoration: line-through;
  opacity: .6;
}
.conf-info iconify-icon { flex-shrink: 0; margin-top: 2px; }
.conf-info-in iconify-icon { color: var(--cool-500); }
.conf-info-accept iconify-icon { color: var(--success); }
.conf-info-reject iconify-icon { color: var(--danger); }
@keyframes conf-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.conf-col .conf-info:nth-child(1) { animation-delay: .2s; }
.conf-col .conf-info:nth-child(2) { animation-delay: .5s; }
.conf-col .conf-info:nth-child(3) { animation-delay: .8s; }
.conf-col .conf-info:nth-child(4) { animation-delay: 1.1s; }
.conf-col .conf-info:nth-child(5) { animation-delay: 1.4s; }
.conf-funnel {
  display: flex; justify-content: center; align-items: center;
  color: var(--accent-purple);
  font-size: 28px;
  animation: conf-pulse 2s ease-in-out infinite;
}
@keyframes conf-pulse {
  0%, 100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* ============ FLUX MONITOR · LIVE 3 TRACKS ============ */
.flux-monitor {
  background: linear-gradient(135deg, rgba(15,21,35,.9), rgba(11,16,32,.7));
  border: 1px solid rgba(167,139,250,.2);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-raised), 0 0 60px -20px rgba(167,139,250,.2);
}
.flux-monitor-header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 14px; margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.flux-monitor-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--cool-200);
}
.flux-monitor-stats {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--cool-500);
}
.flux-monitor-footer {
  padding-top: 14px; margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,.05);
  text-align: center;
}
.flux-track {
  display: grid;
  grid-template-columns: 36px 80px 1fr 180px;
  gap: 14px;
  align-items: center;
  padding: 10px 0;
}
@media (max-width: 767px) {
  .flux-track {
    grid-template-columns: 30px 60px 1fr;
    gap: 10px;
  }
  .flux-track-meta { display: none; }
}
.flux-track-icon {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  border: 1px solid;
}
.flux-track-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 700;
  letter-spacing: .15em;
}
.flux-track-bar {
  position: relative;
  height: 28px;
  background: rgba(7,11,20,.6);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.04);
}
.flux-track-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.04) 50%, transparent 100%);
  animation: flux-sheen 4s linear infinite;
}
@keyframes flux-sheen {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}
.flux-track-dots {
  position: relative; height: 100%;
  width: 100%;
}
.flux-track-dots span {
  position: absolute;
  top: 50%;
  width: 10px; height: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
  left: 100%;
  animation: flux-dot-travel 7.2s linear infinite;
}
.flux-track-dots-marche span {
  background: radial-gradient(circle, var(--flux-marche), rgba(252,211,77,.4));
  box-shadow: 0 0 10px rgba(252,211,77,.6);
}
.flux-track-dots-ia span {
  background: radial-gradient(circle, var(--flux-ia), rgba(91,163,232,.4));
  box-shadow: 0 0 10px rgba(91,163,232,.6);
}
.flux-track-dots-neuro span {
  background: radial-gradient(circle, var(--flux-neuro), rgba(167,139,250,.4));
  box-shadow: 0 0 10px rgba(167,139,250,.6);
}
@keyframes flux-dot-travel {
  0% { left: -6%; opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { left: 106%; opacity: 0; }
}
.flux-track-meta {
  display: flex; align-items: center; gap: 10px;
  justify-content: space-between;
}
.flux-track-latest {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--cool-300);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 140px;
}
.flux-track-count {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--cool-50);
  padding: 2px 10px;
  background: rgba(167,139,250,.12);
  border: 1px solid rgba(167,139,250,.3);
  border-radius: 999px;
  min-width: 32px;
  text-align: center;
}

/* ============ VIZ CARDS · FAITS ANIMÉS ============ */
.viz-card {
  display: flex; flex-direction: column;
  align-items: stretch;
}
.viz-countdown, .viz-donut, .viz-neurons {
  width: 100%; aspect-ratio: 1; max-width: 180px;
  margin: 0 auto 4px;
}
.viz-countdown-svg, .viz-donut-svg, .viz-neurons-svg {
  width: 100%; height: 100%;
  overflow: visible;
}

/* Countdown ring */
.viz-countdown-ring {
  animation: countdown-fill 8s cubic-bezier(.22,1,.36,1) infinite;
  filter: drop-shadow(0 0 8px rgba(167,139,250,.5));
}
@keyframes countdown-fill {
  0% { stroke-dashoffset: 490; }
  80% { stroke-dashoffset: 0; }
  90%, 100% { stroke-dashoffset: 0; opacity: 1; }
}
.viz-countdown-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px; font-weight: 700;
  fill: var(--cool-50);
}
.viz-countdown-unit {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; font-weight: 600;
  letter-spacing: .15em;
  fill: var(--cool-500);
}

/* Donut 95% */
.viz-donut-ring {
  animation: donut-fill 3s cubic-bezier(.22,1,.36,1) forwards;
  filter: drop-shadow(0 0 8px rgba(167,139,250,.4));
}
@keyframes donut-fill {
  from { stroke-dasharray: 0 440; }
  to { stroke-dasharray: 418 22; }
}
.viz-donut-pct {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px; font-weight: 700;
  fill: var(--cool-50);
}
.viz-donut-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; font-weight: 600;
  letter-spacing: .15em;
  fill: var(--cool-500);
}

/* Neurons grid */
.viz-neuron-dot {
  transition: fill .6s var(--ease-smooth), r .6s var(--ease-smooth);
}
.viz-neuron-dot-inactive {
  fill: rgba(100,116,139,.3);
}
.viz-neuron-dot-active {
  fill: url(#neuronActiveGrad);
  filter: drop-shadow(0 0 4px rgba(167,139,250,.6));
  animation: neuron-pulse 2.4s ease-in-out infinite;
}
@keyframes neuron-pulse {
  0%, 100% { opacity: .7; transform: scale(1); transform-origin: center; }
  50% { opacity: 1; transform: scale(1.3); transform-origin: center; }
}

/* ============ LOSS AVERSION CHART ============ */
.loss-chart { padding: 24px 0; }
.loss-chart-bar {
  display: flex; align-items: flex-end;
  justify-content: center; gap: 80px;
  height: 260px;
  position: relative;
}
.loss-chart-bar::before {
  content: ''; position: absolute;
  bottom: 50%; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
}
.bar-column {
  width: 80px;
  display: flex; flex-direction: column;
  align-items: center;
  position: relative;
}
.bar-gain {
  width: 100%; height: 0;
  background: linear-gradient(180deg, var(--success), rgba(82,199,122,.4));
  border-radius: 4px 4px 0 0;
  box-shadow: 0 0 20px rgba(82,199,122,.4);
  animation: bar-grow-gain 2.4s var(--ease-spring) forwards;
  animation-delay: .3s;
  position: relative;
}
.bar-loss {
  width: 100%; height: 0;
  background: linear-gradient(0deg, var(--danger), rgba(233,79,92,.4));
  border-radius: 0 0 4px 4px;
  box-shadow: 0 0 30px rgba(233,79,92,.5);
  animation: bar-grow-loss 2.4s var(--ease-spring) forwards;
  animation-delay: .8s;
  position: relative;
}
@keyframes bar-grow-gain { to { height: 60px; } }
@keyframes bar-grow-loss { to { height: 140px; } }
.bar-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; font-weight: 600;
  color: var(--cool-400);
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.bar-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px; font-weight: 700;
  position: absolute;
  opacity: 0;
  animation: fade-in-up 0.6s ease forwards;
  animation-delay: 2.8s;
}
.bar-value-gain { top: -28px; color: var(--success); }
.bar-value-loss { bottom: -28px; color: var(--danger); }
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.loss-multiplier {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px; font-weight: 700;
  color: var(--accent-purple);
  opacity: 0;
  animation: mult-appear 1s ease forwards;
  animation-delay: 3.3s;
  background: rgba(7,11,20,.85);
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(167,139,250,.4);
  box-shadow: 0 0 40px rgba(167,139,250,.3);
  white-space: nowrap;
}
@keyframes mult-appear {
  from { opacity: 0; transform: translate(-50%,-50%) scale(.8); }
  to { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}

/* ============ FLOATING PILL METRICS (sous hero, non écrasant) ============ */
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.hero-metric {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: rgba(15,21,35,.5);
  border: 1px solid rgba(167,139,250,.18);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  transition: all .25s var(--ease-smooth);
}
.hero-metric:hover {
  border-color: rgba(167,139,250,.45);
  background: rgba(15,21,35,.8);
  transform: translateY(-2px);
}
.hero-metric-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-metric-val {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 15px;
  color: var(--cool-50);
  line-height: 1.2;
}
.hero-metric-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 500;
  color: var(--cool-500);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 2px;
}
