/* ================================================================
   style.css — Horacle Capital v2
   Palette : blanc · gris foncé · bleu · noir
   ================================================================ */

:root {
  /* ── Light surfaces ─────────────────────────────────────────── */
  --bg:        #FFFFFF;
  --bg-2:      #F7F9FC;
  --bg-3:      #EEF2F9;

  /* ── Dark surfaces ──────────────────────────────────────────── */
  --dark:      #0F172A;
  --dark-2:    #1C2236;
  --dark-3:    #243044;

  /* ── Typography ─────────────────────────────────────────────── */
  --text:      #0F172A;
  --white:     #FFFFFF;
  --off:       #334155;
  --dim:       #5B6E85;

  /* ── Borders ─────────────────────────────────────────────────── */
  --border:    #B8C5D6;
  --border-2:  #93A8C0;
  --border-dk: #1E2D45;

  /* ── Blue accent ─────────────────────────────────────────────── */
  --blue:      #1E40AF;
  --blue-2:    #2563EB;
  --blue-3:    #60A5FA;
  --blue-d:    rgba(37, 99, 235, 0.07);

  /* ── Legacy alias — maps old "orange" refs to blue ───────────── */
  --orange:    #2563EB;
  --orange-d:  rgba(37, 99, 235, 0.07);

  /* ── Fonts ───────────────────────────────────────────────────── */
  --ff-mono:   'DM Sans', sans-serif;
  --ff-body:   'DM Sans', sans-serif;
  --ff-head:   'DM Sans', sans-serif;

  /* ── Radius ──────────────────────────────────────────────────── */
  --radius-card: 0px;
  --radius-btn: 0px;
  --radius-pill: 0px;
  --radius-sm: 0px;
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* Subtle ambient glow at top (replaces grid overlay) */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 560px;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(37,99,235,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--blue-2); border-radius: 0; }

/* ─── AUTHENTICATION (Supabase) ────────────────────────────── */
.hidden { display: none !important; }
.show-mobile { display: none !important; }
@media (max-width: 960px) {
  .show-mobile { display: flex !important; }
  .hide-mobile { display: none !important; }
}

.nav-link-btn {
  background: none;
  border: none;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  padding: 0 16px;
  cursor: pointer;
  transition: color 0.25s ease;
}
.nav-link-btn:hover { color: #fff; }

.nav-auth-btn-primary {
  background: var(--blue-2);
  color: #fff !important;
  font-weight: 700;
  padding: 0 24px;
  height: 42px;
  display: flex;
  align-items: center;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}
.nav-auth-btn-primary:hover {
  background: var(--blue-3);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.nav-auth-btn { /* Legacy/Alternative */
  background: var(--blue-3);
  color: #fff !important;
  font-weight: 700 !important;
  padding: 8px 24px !important;
  height: 38px !important;
  margin: auto 10px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
}
.nav-auth-btn:hover {
  background: var(--blue-2);
  transform: translateY(-1px);
}

/* ─── NAV ─────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 64px);
  height: 80px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s, height 0.3s;
}

.logo-container {
  display: flex;
  align-items: center;
  height: 80px;
}

.logo-container img { 
  max-height: 36px; 
  display: block; 
  transition: transform 0.3s ease;
}
.logo-container a {
  display: flex;
  align-items: center;
  height: 80px;
}
.logo-container a:hover img { transform: scale(1.05); }

.nav-links { 
  display: flex; 
  align-items: center; 
  flex: 1; 
  height: 80px;
  justify-content: flex-end;
  gap: clamp(20px, 4vw, 60px);
}

.nav-center {
  display: flex;
  align-items: center;
  height: 80px;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 80px;
}

.nav-dropdown-trigger {
  background: none;
  border: none;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 80px;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.nav-dropdown-trigger svg { transition: transform 0.25s ease; }
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-trigger:hover { color: #fff; }

.nav-dropdown-content {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(28, 34, 54, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 220px;
  padding: 12px 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-content a {
  height: auto !important;
  padding: 14px 24px !important;
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  display: block !important;
  transition: all 0.2s ease !important;
}

.nav-dropdown-content a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--blue-3) !important;
  padding-left: 28px !important;
}

.nav-center > a {
  position: relative;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.7);
  padding: 0 18px;
  display: flex;
  align-items: center;
  height: 80px;
  transition: all 0.25s ease;
}

.nav-center > a:hover { color: #ffffff; }
.nav-center > a.active { color: #ffffff; }

.nav-search { 
  display: flex; 
  align-items: center; 
  gap: 12px;
  background: rgba(255, 255, 255, 0.04); 
  border: 1px solid rgba(255, 255, 255, 0.1); 
  padding: 0 16px; 
  height: 42px; 
  border-radius: 40px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  width: 200px;
}
.nav-search:focus-within { 
  width: 280px; 
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--blue-3);
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.1);
}

.nav-search-icon {
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.nav-search input { 
  background: transparent; 
  border: none; 
  color: #fff; 
  font-size: 0.82rem; 
  outline: none; 
  width: 100%;
}
.nav-search input::placeholder { color: rgba(255, 255, 255, 0.3); }

.nav-right {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  height: 80px;
}

.nav-auth {
  display: flex; 
  align-items: center; 
  gap: 12px;
  height: 80px;
}

/* ─── MENU MOBILE ──────────────────────────────────────────────── */
.menu-toggle, .menu-close {
  display: none;
  background: transparent; border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer; padding: 8px;
  transition: color 0.2s;
}
.menu-toggle:hover, .menu-close:hover { color: #ffffff; }

.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  z-index: 90;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.active { opacity: 1; pointer-events: auto; }

/* ─── SEARCH MODAL ─────────────────────────────────────────────── */
.search-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  z-index: 10000; display: flex; justify-content: center; align-items: flex-start;
  padding: 10vh 20px 20px 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.search-modal-overlay.active { opacity: 1; pointer-events: auto; }

.search-modal {
  background: var(--white);
  border: 1px solid var(--border);
  width: 100%; max-width: 640px;
  display: flex; flex-direction: column; max-height: 80vh; overflow: hidden;
  border-radius: 0;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
  transform: translateY(-20px); transition: transform 0.3s ease;
}
.search-modal-overlay.active .search-modal { transform: translateY(0); }

.sm-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  background: var(--white);
}
.sm-header input {
  background: transparent; border: none;
  color: var(--text); font-family: var(--ff-body); font-size: 1.05rem;
  width: 100%; outline: none;
}
.sm-header input::placeholder { color: var(--dim); }
.sm-close {
  background: transparent; border: none; color: var(--dim);
  cursor: pointer; transition: color 0.2s;
  display: flex; align-items: center; justify-content: center; padding: 4px;
}
.sm-close:hover { color: var(--blue-2); }

.sm-footer {
  padding: 12px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  display: flex;
  gap: 20px;
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.sm-footer strong { color: var(--text); }

.sm-body {
  padding: 16px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 8px;
  background: var(--bg-2);
}
.sm-body::-webkit-scrollbar { width: 4px; }
.sm-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 0; }

.sm-result {
  display: block; background: var(--white);
  border: 1px solid var(--border);
  padding: 16px 20px;
  border-radius: 0;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.sm-result:hover, .sm-result.selected {
  border-color: var(--blue-2);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
  transform: translateY(-1px);
  background: rgba(37, 99, 235, 0.03);
}
.sm-result:hover h4, .sm-result.selected h4 { color: var(--blue-3); }
.sm-result-meta {
  font-family: var(--ff-mono); font-size: 0.6rem;
  color: var(--dim); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.1em;
  display: flex; gap: 8px; align-items: center;
}
.sm-result-tag {
  color: #fff; background: var(--blue-2);
  padding: 2px 8px; font-weight: 600; border-radius: 0;
}
.sm-result h4 {
  font-family: var(--ff-body); font-size: 0.95rem; font-weight: 600;
  color: var(--text); margin-bottom: 4px; line-height: 1.35;
}
.sm-result p { font-size: 0.83rem; color: var(--off); line-height: 1.6; margin: 0; }
.sm-loading, .sm-empty {
  text-align: center; padding: 60px 20px;
  color: var(--dim); font-family: var(--ff-mono);
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
}


/* ─── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative; z-index: 1;
  min-height: calc(100vh - 60px);
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(100px, 10vh, 140px) clamp(32px, 8vw, 120px);
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.04; filter: grayscale(100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.14) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto; width: 100%;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ff-mono); font-size: 0.62rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue-3); margin-bottom: 28px;
  animation: fadeUp 0.9s 0.1s both;
}
.hero-tag::before, .hero-tag::after {
  content: ''; width: 28px; height: 1px;
  background: var(--blue-3); display: block; opacity: 0.6;
}

.hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(3.2rem, 8.5vw, 7.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 36px;
  animation: fadeUp 0.9s 0.2s both;
}
.hero h1 .o { color: var(--blue-3); font-style: italic; }

.hero-sub {
  font-family: var(--ff-mono); font-size: 0.65rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 52px;
  animation: fadeUp 0.9s 0.35s both;
}
.hero-sub .dot { color: var(--blue-3); margin: 0 6px; opacity: 0.7; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.9s 0.5s both; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px;
  background: var(--blue-2);
  color: #fff;
  font-family: var(--ff-body); font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 0;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}
.btn-primary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.45);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: var(--ff-body); font-size: 0.88rem; font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.hero-num {
  position: absolute; right: 40px; bottom: 40px;
  font-family: var(--ff-head); font-size: 10rem; font-weight: 600;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none; line-height: 1; user-select: none; z-index: 1;
  font-style: italic;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Index hero: grid texture + title size ─── */
.hero-index {
  background-image:
    linear-gradient(rgba(37,99,235,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-index h1 {
  font-size: clamp(3.5rem, 11vw, 9.5rem);
}

/* ── Hero video reel ─── */
.hero-bg-videos {
  position: absolute; inset: 0;
  overflow: hidden; z-index: 0;
}
.hero-vid {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0; z-index: 0;
  transition: opacity 1.8s ease;
  filter: grayscale(55%) brightness(0.28);
}
.hero-vid.active {
  opacity: 1; z-index: 1;
}

/* ── Blue tint overlay on top of videos ─── */
.hero-bg-videos::after {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg, rgba(37,99,235,0.22) 0%, rgba(30,64,175,0.12) 100%);
  pointer-events: none;
}

/* Hero split layout */
.hero-split {
  display: flex;
  flex-direction: row; justify-content: space-between;
  text-align: left; gap: clamp(40px, 6vw, 80px);
  width: 100%;
}

@media (max-width: 1100px) {
  .hero-split {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 60px;
    padding-top: 40px;
  }
  .hero-split .hero-content {
    align-items: center;
  }
}

.hero-split .hero-content {
  flex: 1; max-width: 800px;
  display: flex; flex-direction: column; align-items: flex-start;
}
.hero-split .hero-tag::before { display: none; }

.hero-visual {
  flex: 1; max-width: 450px; width: 100%;
  animation: fadeUp 0.9s 0.6s both;
  perspective: 1200px;
}

.hero-visual-card {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-dk);
  border-top: 2px solid var(--blue-2);
  padding: 32px;
  border-radius: 0;
  position: relative; overflow: hidden;
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(96, 165, 250, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: rotateY(-6deg) rotateX(3deg);
  transition: transform 0.6s ease, box-shadow 0.4s ease;
}
.hero-visual-card:hover {
  transform: rotateY(0) rotateX(0);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(96, 165, 250, 0.18);
}

.hero-visual-glow {
  position: absolute; top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.22) 0%, transparent 65%);
  pointer-events: none;
}

.hvc-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.hvc-title {
  font-family: var(--ff-mono); font-size: 0.58rem;
  letter-spacing: 0.12em; color: rgba(255, 255, 255, 0.65); text-transform: uppercase;
}
.hvc-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.hvc-row:last-child { margin-bottom: 0; }
.hvc-label { font-family: var(--ff-mono); font-size: 0.78rem; color: rgba(255, 255, 255, 0.45); }
.hvc-val { font-family: var(--ff-mono); font-size: 0.82rem; font-weight: 600; }
.hvc-val.up { color: #34D399; }
.hvc-val.dn { color: #F87171; }
.hvc-val.neu { color: rgba(255, 255, 255, 0.9); }

/* ─── LAYOUT ────────────────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 64px); position: relative; z-index: 1; }
.container-wide { max-width: 1400px; padding: 0 20px; }

.section-rule { display: flex; align-items: center; gap: 14px; margin-bottom: 40px; }
.section-rule::before {
  content: '';
  width: 3px; height: 22px;
  background: linear-gradient(180deg, var(--blue-2), var(--blue-3));
  flex-shrink: 0; border-radius: 0;
}
.section-label {
  font-family: var(--ff-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue-2); white-space: nowrap;
}
.rule-line { flex: 1; height: 1px; background: var(--border); }
.rule-link {
  font-family: var(--ff-body); font-size: 0.74rem; font-weight: 500;
  color: var(--dim); display: flex; align-items: center; gap: 6px;
  white-space: nowrap; transition: color 0.2s;
}
.rule-link:hover { color: var(--blue-2); }
.rule-link span { transition: transform 0.2s; }
.rule-link:hover span { transform: translateX(4px); }

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600; letter-spacing: -0.02em;
  color: var(--text); line-height: 1.05; margin-bottom: 8px;
}

/* ─── ABOUT ─────────────────────────────────────────────────────── */
.about-section {
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.about-grid { display: grid; grid-template-columns: 1fr 450px; gap: 80px; align-items: center; }
.about-body .section-title { margin-bottom: 28px; }
.about-body p { color: var(--off); font-size: 1.05rem; line-height: 1.85; margin-bottom: 24px; }
.about-body p strong { color: var(--text); font-weight: 600; }
.about-body a { color: var(--blue-2); transition: opacity 0.2s; }
.about-body a:hover { opacity: 0.7; }

.socials { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.social-pill {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 16px; border: 1px solid var(--border); border-bottom: none;
  font-family: var(--ff-body); font-size: 0.82rem; font-weight: 500;
  color: var(--off); transition: all 0.2s;
  border-radius: 0;
}
.social-pill:first-child { border-radius: 0; }
.social-pill:last-child { border-bottom: 1px solid var(--border); border-radius: 0; }
.social-pill:hover { background: var(--blue-d); border-color: var(--blue-2); color: var(--blue-2); }
.social-pill:hover + .social-pill { border-top-color: var(--blue-2); }
.sp-arrow { margin-left: auto; opacity: 0; transition: all 0.2s; }
.social-pill:hover .sp-arrow { opacity: 1; transform: translateX(3px); }

/* About panel — clean design, no terminal vibe */
.about-panel {
  display: flex; flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.07);
}
.panel-header {
  padding: 14px 20px;
  background: var(--dark);
  border-bottom: 1px solid var(--border-dk);
  display: flex; align-items: center; gap: 10px;
}
.panel-dot {
  width: 7px; height: 7px; border-radius: 0;
  background: var(--blue-3); animation: blink 2.5s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
.panel-header span {
  font-family: var(--ff-mono); font-size: 0.56rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.panel-graph {
  padding: 40px 28px;
  display: flex; justify-content: center; align-items: center;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-3) 100%);
}
.sparkline {
  width: 100%; height: 100px; overflow: visible;
  filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.18));
}

.panel-status {
  padding: 14px; text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.status-text {
  font-family: var(--ff-mono); font-size: 0.56rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-2); animation: blink 2.5s infinite ease-in-out; display: block;
}
.panel-footer {
  padding: 14px 20px; display: flex; justify-content: center;
  background: var(--bg-2);
}
.panel-badge {
  font-family: var(--ff-body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-2);
}

.social-bar {
  display: flex; justify-content: center; align-items: center; gap: 16px;
  padding: 10px 20px; border-bottom: 1px solid var(--border);
  background: var(--bg-2); font-family: var(--ff-mono); font-size: 0.54rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim);
  overflow-x: auto; white-space: nowrap;
}
.social-bar a { transition: color 0.2s; }
.social-bar a:hover { color: var(--blue-2); }
.sb-sep { color: var(--border-2); user-select: none; }

/* ─── REPORT CARD FEATURED ──────────────────────────────────────── */
.reports-section { padding: 64px 0; }

.report-card-featured {
  position: relative; display: block;
  border: 1px solid var(--border);
  border-radius: 0; overflow: hidden; cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s;
  text-decoration: none; color: inherit;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
}
.report-card-featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-3));
  z-index: 2;
}
.report-card-featured:hover {
  border-color: var(--blue-2);
  box-shadow: 0 8px 36px rgba(37, 99, 235, 0.13);
}

.rcf-body { padding: 44px; display: flex; flex-direction: column; gap: 20px; background: var(--white); }
.rcf-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.rcf-tag {
  font-family: var(--ff-body); font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff; background: var(--blue-2);
  padding: 4px 12px; border-radius: 0;
}
.rcf-issue {
  font-family: var(--ff-mono); font-size: 0.58rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue-2);
  border: 1px solid rgba(37, 99, 235, 0.3); padding: 3px 10px; border-radius: 0;
}
.rcf-date { font-family: var(--ff-mono); font-size: 0.58rem; letter-spacing: 0.06em; color: var(--dim); margin-left: auto; }
.rcf-title {
  font-family: var(--ff-head); font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 600;
  letter-spacing: -0.015em; color: var(--text); line-height: 1.15; transition: color 0.2s;
}
.report-card-featured:hover .rcf-title { color: var(--blue-2); }
.rcf-desc { color: var(--off); font-size: 0.92rem; line-height: 1.8; }
.rcf-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-body); font-size: 0.78rem; font-weight: 600;
  color: var(--blue-2);
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border);
}
.rcf-arrow { transition: transform 0.2s; }
.report-card-featured:hover .rcf-arrow { transform: translateX(6px); }

/* Manifesto */
.manifesto { padding: 120px 20px; text-align: center; position: relative; background: var(--dark); }
.manifesto::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.manifesto h2 {
  position: relative;
  font-family: var(--ff-head); font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600; color: #fff; letter-spacing: -0.02em; margin-bottom: 28px;
}
.manifesto p {
  position: relative;
  font-family: var(--ff-mono); font-size: clamp(0.82rem, 1.8vw, 1rem);
  color: var(--blue-3); max-width: 800px; margin: 0 auto; line-height: 1.7; letter-spacing: 0.04em;
}

.coming-strip {
  margin-top: 12px; padding: 16px 22px;
  border: 1px solid var(--border-2);
  background: var(--bg-2); border-radius: 0;
  display: flex; align-items: center; gap: 14px;
}
.cs-pulse {
  width: 6px; height: 6px; border-radius: 0;
  background: var(--blue-2); flex-shrink: 0; animation: blink 1.5s ease-in-out infinite;
}
.cs-text { font-family: var(--ff-mono); font-size: 0.65rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--off); }
.cs-text strong { color: var(--blue-2); }

/* Mirror blocks */
.mirror-blocks { padding-bottom: 120px; }
.mirror-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 960px) { .mirror-grid { grid-template-columns: 1fr 1fr; } }

.m-block {
  background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--blue-2);
  border-radius: 0; display: flex; flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.25s;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}
.m-block:hover {
  border-color: var(--blue-2);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
}
.mb-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 24px; border-bottom: 1px solid var(--border);
  background: var(--bg-2); border-radius: 0;
}
.mb-label {
  font-family: var(--ff-body); font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff; background: var(--blue-2); padding: 4px 10px; border-radius: 0;
}
.mb-date { font-family: var(--ff-mono); font-size: 0.6rem; letter-spacing: 0.08em; color: var(--dim); }
.mb-body { padding: 28px 24px; display: flex; flex-direction: column; flex-grow: 1; }
.mb-body h3 {
  font-family: var(--ff-head); font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600; color: var(--text); letter-spacing: -0.015em; margin-bottom: 16px; line-height: 1.2;
}
.mb-body p { font-family: var(--ff-body); font-size: 0.9rem; color: var(--off); line-height: 1.78; margin-bottom: 28px; }

.mb-svg-container {
  margin-top: auto; background: var(--bg-2); border: 1px solid var(--border);
  min-height: 200px; display: flex; align-items: center; justify-content: center;
  position: relative; width: 100%; border-radius: 0;
}
.mb-svg-container::before {
  content: '[ Illustration ]'; font-family: var(--ff-mono); font-size: 0.6rem;
  color: var(--dim); letter-spacing: 0.15em; position: absolute;
}
.mb-svg-container svg { position: relative; z-index: 2; width: 100%; height: 100%; }

.mb-foot { padding: 14px 24px; border-top: 1px solid var(--border); background: var(--bg-2); border-radius: 0; }
.mb-foot a {
  font-family: var(--ff-body); font-size: 0.78rem; font-weight: 600;
  color: var(--blue-2); display: inline-flex; align-items: center; gap: 8px; transition: opacity 0.2s;
}
.mb-foot a:hover { opacity: 0.72; }
.mb-foot a span { transition: transform 0.2s; }
.mb-foot a:hover span { transform: translateX(4px); }

/* ─── FOOTER ────────────────────────────────────────────────────── */
footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border-dk);
  padding: 64px clamp(24px, 5vw, 64px);
  display: flex; flex-direction: column; gap: 24px; align-items: center;
  background: var(--dark);
}
.footer-top { display: flex; width: 100%; max-width: 1120px; justify-content: space-between; align-items: center; }
.footer-top p { font-family: var(--ff-body); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255, 255, 255, 0.35); }
.footer-links { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 24px; }
.footer-links a { font-family: var(--ff-body); font-size: 0.8rem; color: rgba(255, 255, 255, 0.38); transition: color 0.2s; }
.footer-links a:hover { color: var(--blue-3); }
.footer-bottom { width: 100%; border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 24px; text-align: center; }
.footer-disclaimer {
  font-family: var(--ff-mono); font-size: 0.53rem; color: rgba(255, 255, 255, 0.22);
  text-transform: uppercase; letter-spacing: 0.07em; line-height: 1.8;
  max-width: 1000px; margin: 0 auto; text-align: justify;
}

/* ─── ARTICLES ──────────────────────────────────────────────────── */
.page-header {
  position: relative; z-index: 1;
  padding: clamp(140px, 15vh, 180px) clamp(24px, 6vw, 80px) clamp(80px, 10vh, 120px);
  text-align: center; border-bottom: 1px solid var(--border-dk);
  overflow: hidden; background: var(--dark);
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(37,99,235,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-header .header-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.05; filter: grayscale(100%); z-index: 0;
}
.page-header span {
  position: relative; z-index: 2;
  font-family: var(--ff-mono); font-size: 0.65rem; letter-spacing: 0.2em;
  color: var(--blue-3); text-transform: uppercase; display: block; margin-bottom: 20px;
}
.page-header h1 {
  position: relative; z-index: 2;
  font-family: var(--ff-head); font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 600; letter-spacing: -0.02em; color: #fff;
  line-height: 1.1; margin: 0 auto 20px auto; max-width: 1000px;
}
.page-header p {
  position: relative; z-index: 2;
  font-family: var(--ff-body); font-size: 0.9rem; color: rgba(255, 255, 255, 0.4);
}

/* Archive grid */
.month-group { margin-bottom: 60px; position: relative; z-index: 2; }
.month-separator {
  font-family: var(--ff-body); font-size: 0.95rem; font-weight: 600;
  color: var(--text); border-bottom: 1px solid var(--border);
  padding-bottom: 16px; margin-bottom: 28px; text-transform: uppercase; letter-spacing: 0.04em;
}
.reports-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.report-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 0; padding: 28px;
  transition: border-color 0.2s, box-shadow 0.25s;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}
.report-card:hover {
  border-color: var(--blue-2);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
  transition: border-color 0.2s, box-shadow 0.25s, transform 0.2s;
}
.report-date {
  font-family: var(--ff-mono); font-size: 0.6rem; letter-spacing: 0.1em;
  color: var(--blue-2); text-transform: uppercase; margin-bottom: 16px; display: block;
}
.report-card h3 {
  font-family: var(--ff-head); font-size: 1.25rem; font-weight: 600;
  margin: 0 0 16px 0; line-height: 1.3;
}
.report-card h3 a { color: var(--text); text-decoration: none; transition: color 0.2s; }
.report-card:hover h3 a { color: var(--blue-2); }
.report-card p { color: var(--off); font-size: 0.85rem; margin: 0; flex-grow: 1; }

/* Article Container */
.article-container {
  max-width: 960px; margin: 64px auto; padding: 0 clamp(24px, 5vw, 64px);
  font-family: var(--ff-body); color: var(--off);
  font-size: 1.06rem; line-height: 1.88;
  position: relative; z-index: 2;
}
.article-container h2,
.article-container h3,
.article-container h4 {
  font-family: var(--ff-head); font-weight: 600; color: var(--text);
  margin-top: 56px; margin-bottom: 20px; letter-spacing: -0.015em;
}
.article-container h2 { font-size: 2.1rem; line-height: 1.18; border-bottom: 1px solid var(--border); padding-bottom: 12px; }
.article-container h3 { font-size: 1.55rem; line-height: 1.22; }
.article-container h4 { font-size: 1.12rem; line-height: 1.35; color: var(--blue-2); font-family: var(--ff-body); font-weight: 600; }
.article-container p { margin-bottom: 24px; }
.article-container a { color: var(--blue-2); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.article-container a:hover { border-color: var(--blue-2); }
.article-container ul, .article-container ol { margin-bottom: 24px; padding-left: 24px; }
.article-container li { margin-bottom: 10px; }

/* Article elements */
.exec-summary {
  background: var(--blue-d);
  border: 1px solid rgba(37, 99, 235, 0.25);
  padding: 24px 28px; margin-bottom: 52px; color: var(--text);
  border-radius: 0;
}
.exec-summary strong {
  font-family: var(--ff-mono); color: var(--blue-2); text-transform: uppercase;
  display: block; margin-bottom: 14px; font-size: 0.7rem; letter-spacing: 0.12em;
}

figure { margin: 48px 0; text-align: center; }
figure img {
  max-width: 100%; border: 1px solid var(--border);
  border-radius: 0; box-shadow: 0 4px 20px rgba(15, 23, 42, 0.09);
}
figcaption {
  font-family: var(--ff-mono); font-size: 0.68rem; color: var(--dim);
  margin-top: 12px; text-transform: uppercase; letter-spacing: 0.06em;
}

blockquote {
  font-size: 1.1rem; font-style: italic; color: var(--text);
  margin: 48px 0; padding: 24px 28px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 0;
}

.report-table {
  width: 100%; border-collapse: collapse; margin: 40px 0;
  font-size: 0.85rem; border: 1px solid var(--border); border-radius: 0; overflow: hidden;
}
.report-table th {
  padding: 14px 16px; font-family: var(--ff-mono); text-transform: uppercase;
  font-size: 0.63rem; color: var(--blue-2); border-bottom: 1px solid var(--border);
  text-align: left; background: var(--bg-2);
}
.report-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); color: var(--off); }
.report-table tr:last-child td { border-bottom: none; }

details.sources-box {
  background: var(--bg-2); border: 1px solid var(--border);
  margin: 48px 0; border-radius: 0; overflow: hidden;
}
details.sources-box summary {
  padding: 16px 20px; font-family: var(--ff-body); font-size: 0.82rem; font-weight: 500;
  color: var(--off); cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; transition: color 0.2s, background 0.2s;
}
details.sources-box summary:hover { color: var(--blue-2); background: var(--bg-3); }
details.sources-box summary::after { content: "+"; color: var(--blue-2); font-weight: bold; }
details[open] summary::after { content: "−"; }
details[open] summary { border-bottom: 1px solid var(--border); color: var(--blue-2); }
.sources-content { padding: 20px; font-size: 0.85rem; }

.strategy-box {
  background: var(--bg-2); border: 1px solid var(--border);
  border-top: 3px solid var(--blue-2);
  padding: 28px; margin: 48px 0; border-radius: 0;
}
.strategy-box h4 {
  margin-top: 0; color: var(--blue-2); font-size: 0.9rem;
  font-family: var(--ff-body); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
}

.disclaimer {
  font-family: var(--ff-mono); font-size: 0.62rem; color: var(--dim);
  border-top: 1px solid var(--border); padding-top: 24px; margin-top: 60px;
  text-align: justify; line-height: 1.7; text-transform: uppercase; letter-spacing: 0.05em;
}
.disclaimer strong { color: var(--blue-2); }

/* ─── FEATURE SHOWCASE ──────────────────────────────────────────── */
.feature-showcase { display: flex; flex-direction: column; gap: 100px; }
.feature-item { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; align-items: center; }
.feature-item.reverse .feature-image { order: -1; }
.feature-text h3 { font-family: var(--ff-head); font-size: 1.9rem; font-weight: 600; color: var(--text); margin-bottom: 20px; }
.feature-text p { color: var(--off); font-size: 0.95rem; line-height: 1.85; }
.feature-image img { width: 100%; border: 1px solid var(--border); box-shadow: 0 8px 28px rgba(15,23,42,0.09); border-radius: 0; }

/* ─── RESEARCH ───────────────────────────────────────────────────── */
.research-toolbar { margin-bottom: 40px; display: flex; flex-direction: column; gap: 24px; border-bottom: 1px solid var(--border); padding-bottom: 30px; }
.rt-search { position: relative; display: flex; align-items: center; }
.rt-search svg { position: absolute; left: 16px; color: var(--dim); pointer-events: none; }
.rt-search input {
  width: 100%; background: var(--white); border: 1px solid var(--border);
  color: var(--text); font-family: var(--ff-body); font-size: 0.95rem;
  padding: 14px 14px 14px 48px; border-radius: 0;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.rt-search input:focus { border-color: var(--blue-2); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.rt-search input::placeholder { color: var(--dim); }

.rt-filters { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.rt-filter {
  background: transparent; border: 1px solid var(--border); border-radius: 0;
  color: var(--off); font-family: var(--ff-body); font-size: 0.78rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.04em; padding: 8px 16px;
  cursor: pointer; transition: all 0.2s;
}
.rt-filter:hover { border-color: var(--blue-2); color: var(--blue-2); }
.rt-filter.active { background: var(--blue-2); color: #fff; border-color: var(--blue-2); }

.research-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.research-card {
  display: flex; flex-direction: row; align-items: stretch;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 0; overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.25s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(15,23,42,0.05);
}
.research-card:hover {
  border-color: var(--blue-2);
  box-shadow: 0 8px 32px rgba(37,99,235,0.1);
  transform: translateY(-2px);
}
.research-card.hidden { display: none !important; }

.rc-media {
  position: relative; width: 300px; flex-shrink: 0; aspect-ratio: 16/9;
  overflow: hidden; display: block; border-right: 1px solid var(--border);
}
.rc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.research-card:hover .rc-media img { transform: scale(1.06); }
.rc-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 48px; height: 48px; background: rgba(37,99,235,0.9); border-radius: 0;
  display: flex; align-items: center; justify-content: center; color: #fff;
  transition: background 0.2s, transform 0.2s;
}
.rc-media:hover .rc-play { background: var(--blue-2); transform: translate(-50%,-50%) scale(1.1); }

.rc-content { padding: 28px; display: flex; flex-direction: column; flex-grow: 1; }
.rc-meta-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.rc-tag {
  font-family: var(--ff-mono); font-size: 0.54rem; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 3px 8px; border: 1px solid currentColor; border-radius: 0;
}
.tag-video  { color: #DC2626; }
.tag-pdf    { color: var(--blue-2); }
.tag-link   { color: #0284C7; }
.tag-notebook { color: #EA580C; }
.tag-code   { color: #16A34A; }
.rc-date { font-family: var(--ff-mono); font-size: 0.6rem; letter-spacing: 0.08em; color: var(--dim); text-transform: uppercase; }

.rc-content h3 { font-family: var(--ff-head); font-size: 1.15rem; font-weight: 600; line-height: 1.4; margin-bottom: 12px; }
.rc-content h3 a { text-decoration: none; color: var(--text); transition: color 0.2s; }
.rc-content h3 a:hover { color: var(--blue-2); }
.rc-desc { color: var(--off); font-size: 0.85rem; line-height: 1.72; margin-bottom: 20px; flex-grow: 1; }

.rc-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 16px; margin-top: auto; }
.rc-file-info { font-family: var(--ff-mono); font-size: 0.54rem; letter-spacing: 0.08em; color: var(--dim); text-transform: uppercase; }
.rc-action {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-body); font-size: 0.78rem; font-weight: 600;
  color: var(--blue-2); transition: color 0.2s;
}
.rc-action:hover { color: var(--blue); }

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1300px) {
  .hero-inner.hero-split { flex-direction: column; text-align: center; gap: 40px; }
  .hero-split .hero-content { align-items: center; max-width: 800px; margin: 0 auto; }
  .hero-split .hero-tag::before { display: block; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
}

@media (max-width: 960px) {
  nav { padding: 0 32px; }
  .menu-toggle { display: block; }
  .menu-close { display: block; align-self: flex-end; margin: 20px 20px 40px 0; }
  .nav-links {
    position: fixed; top: 0; right: -300px; width: 300px; height: 100vh;
    background: var(--dark-2); border-left: 1px solid var(--border-dk);
    flex-direction: column; align-items: flex-start; 
    justify-content: flex-start;
    z-index: 100;
    transition: right 0.3s ease;
    overflow-y: auto;
    gap: 0;
  }
  .nav-links.active { right: 0; }
  
  .nav-center, .nav-right {
    flex-direction: column;
    width: 100%;
    height: auto;
    align-items: flex-start;
    gap: 0;
  }
  
  .nav-right {
    margin-top: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border-dk);
    padding-left: 0;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: auto;
  }

  .nav-lang, .nav-auth {
    padding-left: 32px;
    width: 100%;
    height: auto;
  }

  .nav-auth {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    gap: 12px;
  }

  .nav-search {
    margin: 20px 24px;
    width: calc(100% - 48px);
    height: 46px;
    border-radius: 40px;
    padding: 0 20px;
  }

  .nav-center > a {
    width: 100%; height: auto; padding: 18px 32px;
    border-bottom: 1px solid var(--border-dk); font-size: 0.9rem; color: rgba(255,255,255,0.7);
  }
  .nav-center > a::after { display: none; }
  .nav-center > a.active { 
    background: var(--blue-d);
    color: var(--blue-3);
    padding-left: 24px;
    position: relative;
  }
  .nav-center > a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 16px;
    background: var(--blue-3);
  }

  /* Correction Dropdown Mobile */
  .nav-dropdown {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-dropdown-trigger {
    width: 100%;
    height: auto;
    padding: 18px 32px;
    border-bottom: 1px solid var(--border-dk);
    justify-content: flex-start;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
  }
  .nav-dropdown-content {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    min-width: 0;
    background: rgba(255, 255, 255, 0.02);
    padding: 0;
    border: none;
    box-shadow: none;
    display: none; /* Masqué par défaut sur mobile, s'affiche au clic ou via JS */
  }
  .nav-dropdown:hover .nav-dropdown-content,
  .nav-dropdown:focus-within .nav-dropdown-content {
    display: block;
  }
  .nav-dropdown-content a {
    padding: 14px 48px !important;
    background: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }
  .nav-dropdown-trigger svg {
    margin-left: auto;
    transition: transform 0.3s ease;
  }
  .nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
  }

  /* Badge Mobile */
  .nav-badge-new {
    font-size: 0.45rem;
    padding: 1px 4px;
    margin-left: 4px;
    vertical-align: middle;
  }

  .nav-auth-btn-primary { width: calc(100% - 48px); justify-content: center; margin: 0 24px; }
  .nav-link-btn { padding: 12px 24px; width: 100%; text-align: left; }
  .nav-search input { width: 100%; }
  .nav-search input:focus { width: 100%; }
  .hero { padding: 100px 32px 50px 32px; min-height: 40vh; }
  .page-header { padding: 110px 32px 50px 32px; }
  .hero-num { display: none; }
  .container, .article-container { padding: 0 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-panel { display: none; }
  .rcf-body { padding: 24px 20px; }
  .manifesto { padding: 80px 20px; }
  .mb-body { padding: 24px 20px; }
  .feature-showcase { gap: 60px; }
  .feature-item, .feature-item.reverse { grid-template-columns: 1fr; gap: 30px; }
  .feature-item.reverse .feature-image { order: 0; }
  footer { height: auto; padding: 28px 20px; flex-direction: column; gap: 16px; }
  .footer-links a { border: none; height: auto; padding: 8px 12px; }
  .research-toolbar { flex-direction: column; align-items: stretch; gap: 16px; }
  .rt-filters { justify-content: flex-start; }
  .research-card { flex-direction: column; }
  .rc-media { width: 100%; border-right: none; border-bottom: 1px solid var(--border); }
}

/* ─── DYNAMIC UI ─────────────────────────────────────────────────── */
.scroll-top-btn {
  position: fixed; bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--white); border: 1px solid var(--border); color: var(--off);
  border-radius: 0; display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: all 0.3s ease; z-index: 50;
  box-shadow: 0 4px 14px rgba(15,23,42,0.1);
}
.scroll-top-btn.visible { opacity: 1; pointer-events: auto; }
.scroll-top-btn:hover {
  border-color: var(--blue-2); color: var(--blue-2);
  box-shadow: 0 8px 24px rgba(37,99,235,0.18);
}

.reading-progress-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-3));
  z-index: 100; transition: width 0.15s ease;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--border);
  z-index: 9999; padding: 20px;
  display: flex; flex-direction: column; gap: 20px;
  box-shadow: 0 -8px 32px rgba(15,23,42,0.08); transition: opacity 0.3s;
}
@media (min-width: 768px) {
  .cookie-banner { flex-direction: row; align-items: center; justify-content: space-between; padding: 20px 40px; }
}
.cookie-content { flex: 1; max-width: 900px; }
.cookie-content h4 { font-family: var(--ff-body); color: var(--text); font-size: 0.875rem; font-weight: 600; margin-bottom: 6px; }
.cookie-content p { color: var(--off); font-size: 0.82rem; line-height: 1.6; margin: 0; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-refuse {
  font-family: var(--ff-body); font-size: 0.8rem; font-weight: 500;
  color: var(--off); background: transparent;
  border: 1px solid var(--border); border-radius: 0;
  padding: 10px 20px; cursor: pointer; transition: all 0.2s;
}
.cookie-btn-refuse:hover { color: var(--text); border-color: var(--border-2); }
.cookie-btn-accept {
  font-family: var(--ff-body); font-size: 0.8rem; font-weight: 600;
  color: #fff; background: var(--blue-2);
  border: 1px solid var(--blue-2); border-radius: 0;
  padding: 10px 20px; cursor: pointer; transition: all 0.2s;
}
.cookie-btn-accept:hover { background: var(--blue); }

/* Newsletter section stays dark */
.newsletter-section { background: var(--dark) !important; }
.newsletter-section h2 { color: #fff !important; }
.newsletter-section p.text-off { color: rgba(255,255,255,0.55) !important; }
.newsletter-section input { background: rgba(255,255,255,0.07) !important; border-color: rgba(255,255,255,0.12) !important; color: #fff !important; }
.newsletter-section input::placeholder { color: rgba(255,255,255,0.35) !important; }
.newsletter-section input:focus { border-color: var(--blue-3) !important; }
.newsletter-section #subscription-status { color: rgba(255,255,255,0.6) !important; }

/* ─── REVEAL ANIMATIONS (Intersection Observer) ─────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(.22,1,.36,1), transform 0.75s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

.print-only { display: none; }

/* ─── PRINT ──────────────────────────────────────────────────────── */
@media print {
  @page { margin: 2cm 1.5cm; }
  body { background: #fff !important; color: #000 !important; font-size: 10pt !important; line-height: 1.6 !important; }
  body::before, .header-bg, .hero-bg, .absolute { display: none !important; }
  nav, footer, .newsletter-section, .cookie-banner, .scroll-top-btn,
  #reading-progress, .nav-overlay, .hero-actions, .socials, .nav-search,
  button, #copy-link-btn, #share-li, #share-tw, .research-toolbar, .no-print { display: none !important; }
  * { background-color: transparent !important; color: #000 !important; box-shadow: none !important; }

  .print-only { display: block !important; visibility: visible !important; }
  
  .exec-summary { border: none !important; border-left: 3px solid #000 !important; padding: 10px 15px !important; margin: 20px 0 !important; }
  .strategy-box, blockquote, .report-table, .disclaimer { border: 1px solid #ccc !important; }
  
  .container, .article-container, .page-header { max-width: 100% !important; width: 100% !important; margin: 0 !important; padding: 0 !important; }
  .page-header { border-bottom: 1px solid #000 !important; padding-bottom: 15px !important; margin-bottom: 20px !important; text-align: left !important; }
  .page-header h1 { font-size: 24pt !important; margin: 0 0 10px 0 !important; }
  .page-header p, .page-header span { margin: 0 !important; font-size: 10pt !important; }
  
  .article-container { margin-top: 0 !important; font-size: 10pt !important; line-height: 1.6 !important; }
  h1, h2, h3, h4 { page-break-after: avoid; break-after: avoid; margin-top: 20px !important; margin-bottom: 10px !important; }
  h2 { font-size: 16pt !important; border-bottom: 1px solid #eee !important; padding-bottom: 5px !important; }
  h3 { font-size: 13pt !important; }
  h4 { font-size: 11pt !important; }
  
  p, figure, img, table, .strategy-box, .exec-summary, blockquote, ul, li { page-break-inside: avoid; break-inside: avoid; }
  img { filter: grayscale(100%) !important; max-width: 100% !important; border: none !important; }
  a { text-decoration: underline !important; color: #000 !important; }
}

/* ─── HERO EDITORIAL PANEL ──────────────────────────────────────── */
.hep-list { list-style: none; padding: 0; margin: 0 0 28px 0; display: flex; flex-direction: column; }
.hep-item { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.hep-item:last-child { border-bottom: none; }
.hep-icon { color: var(--blue-3); flex-shrink: 0; }
.hep-text { font-family: var(--ff-body); font-size: 0.9rem; color: rgba(255,255,255,0.95); font-weight: 500; }
.hep-footer { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px; }

/* ─── ABOUT METHODOLOGY PANEL ───────────────────────────────────── */
.approach-method { display: flex; flex-direction: column; }
.am-item { display: flex; gap: 18px; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.am-item:last-child { border-bottom: none; }
.am-num { font-family: var(--ff-body); font-size: 0.52rem; font-weight: 600; color: var(--blue-2); letter-spacing: 0.1em; padding-top: 2px; flex-shrink: 0; }
.am-title { font-family: var(--ff-body); font-size: 0.9rem; font-weight: 600; color: var(--text); display: block; margin-bottom: 6px; }
.am-desc { font-family: var(--ff-body); font-size: 0.82rem; color: var(--off); line-height: 1.65; margin: 0; }

/* ─── INDEX-ONLY HERO MOBILE OVERRIDE ──────────────────────────── */
@media (max-width: 960px) {
  .hero-index { min-height: 100vh !important; min-height: 100dvh !important; }
  
  .eco-card { padding: 32px 24px; text-align: center; align-items: center; }
  .eco-title { font-size: 2rem; margin-bottom: 16px; }
  .eco-desc { font-size: 0.9rem; margin-bottom: 24px; max-width: 100%; }
  .eco-link { justify-content: center; width: 100%; }
  
  .section-rule { flex-direction: column; gap: 10px; text-align: center; }
  .section-rule::before { width: 40px; height: 2px; background: linear-gradient(90deg, var(--blue-2), var(--blue-3)); }
  .rule-line { width: 100%; }
}

/* ─── INSTITUTIONAL ECOSYSTEM (Asymmetric) ───────────────────────── */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: stretch;
}

@media (min-width: 1025px) {
  .eco-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
  }
  .eco-card.academy { grid-column: 1 / 3; }
  .eco-card.featured { grid-column: 3 / 4; grid-row: 1 / 3; min-height: 500px; }
  .eco-card.mission { grid-column: 1 / 3; background: var(--bg-2); }
}

.eco-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--white);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.eco-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
  border-color: var(--blue-2);
}

.eco-card.dark {
  background: var(--dark);
  border-color: var(--border-dk);
  color: var(--white);
}

.eco-label {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-2);
  margin-bottom: 24px;
}

.eco-card.dark .eco-label { color: var(--blue-3); }

.eco-title {
  font-family: var(--ff-head);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.eco-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--off);
  margin-bottom: 32px;
  max-width: 500px;
}

.eco-card.dark .eco-desc { color: rgba(255, 255, 255, 0.6); }

.eco-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--blue-2);
}

.eco-card.dark .eco-link { color: var(--blue-3); }

.eco-image-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.15;
  filter: grayscale(1);
  mix-blend-mode: overlay;
  transition: opacity 0.4s;
}

.eco-card:hover .eco-image-bg { opacity: 0.25; }

/* ─── JOURNAL DE PUBLICATION ───────────────────────────────────── */
.journal-section { padding: 80px 0; background: var(--bg); }

.journal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  border-bottom: 2px solid var(--text);
  padding-bottom: 24px;
}

.journal-meta-header {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
}

.journal-list {
  display: flex;
  flex-direction: column;
}

.journal-item {
  display: grid;
  grid-template-columns: 140px 1fr 180px;
  gap: 48px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background 0.2s;
}

.journal-item:hover {
  background: var(--bg-2);
}

.journal-date {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  color: var(--dim);
}

.journal-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.journal-category {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-2);
}

.journal-title {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--text);
  transition: color 0.2s;
}

.journal-item:hover .journal-title { color: var(--blue-2); }

.journal-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.conviction-meter {
  display: flex;
  gap: 4px;
}

.conv-dot {
  width: 12px;
  height: 4px;
  background: var(--border);
  border-radius: 0;
}

.conv-dot.active { background: var(--blue-2); }

.conv-label {
  font-family: var(--ff-body);
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .eco-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .eco-card.academy, .eco-card.capitalis, .eco-card.mission { grid-column: 1 / 2; grid-row: auto; min-height: auto; }
  .journal-item { grid-template-columns: 1fr; gap: 20px; }
  .journal-meta { align-items: flex-start; }
}

/* ─── ELITE FINTECH FUNNEL (Capitalis) ─────────────────────────── */
.elite-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #000;
  padding: 0 32px;
  position: relative;
}

.elite-title {
  font-family: var(--ff-head);
  font-size: clamp(3.5rem, 12vw, 9rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.elite-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  max-width: 650px;
  margin-bottom: 4rem;
  text-transform: uppercase;
}

.elite-split-section {
  padding: 160px 0;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.elite-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}

.elite-split.reverse { direction: rtl; }
.elite-split.reverse > * { direction: ltr; }

.elite-feature-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--blue-3);
  margin-bottom: 24px;
  display: block;
  letter-spacing: 0.2em;
}

.elite-feature-title {
  font-family: var(--ff-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.elite-feature-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 480px;
}

.elite-video-container {
  width: 100%;
  background: #000;
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.elite-video-inner {
  max-width: 1400px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
  .elite-split { grid-template-columns: 1fr; gap: 60px; }
  .elite-feature-title { font-size: 3rem; }
}

/* ─── ANIMATED CHART (Hero) ─── */
.chart-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.chart-title {
  font-family: var(--ff-mono); font-size: 0.65rem;
  letter-spacing: 0.12em; color: rgba(255, 255, 255, 0.85); text-transform: uppercase;
  font-weight: 600;
}
.chart-live {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono); font-size: 0.55rem; font-weight: 600;
  color: #34D399; text-transform: uppercase; letter-spacing: 0.1em;
}
.live-dot {
  width: 6px; height: 6px; background: #34D399; border-radius: 0;
  animation: blinkLive 1.5s ease-in-out infinite;
}
@keyframes blinkLive { 0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(52,211,153,0.6); } 50% { opacity: 0.4; box-shadow: none; } }

.chart-container {
  width: 100%; height: 220px;
  position: relative;
  margin-bottom: 24px;
}
.chart-svg {
  width: 100%; height: 100%;
  overflow: visible;
}
.grid-line {
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 1;
  stroke-dasharray: 4 4;
}
.chart-path {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawCurveLoop 7s ease-in-out infinite;
}
@keyframes drawCurveLoop {
  0% { stroke-dashoffset: 800; opacity: 0; }
  5% { stroke-dashoffset: 800; opacity: 1; }
  35% { stroke-dashoffset: 0; opacity: 1; }
  85% { stroke-dashoffset: 0; opacity: 1; }
  95% { stroke-dashoffset: 0; opacity: 0; }
  100% { stroke-dashoffset: 800; opacity: 0; }
}

.chart-tooltip-bg {
  fill: rgba(15, 23, 42, 0.85);
  stroke: var(--blue-3);
  stroke-width: 1;
}
.chart-tooltip-text {
  fill: #fff; font-family: var(--ff-mono); font-size: 11px;
  font-weight: 600; letter-spacing: 0.02em; text-anchor: middle;
}

.chart-point { opacity: 0; transform-origin: center; }
@keyframes popPoint1 {
  0%, 14% { opacity: 0; transform: translateY(10px); }
  18%, 85% { opacity: 1; transform: translateY(0); }
  90%, 100% { opacity: 0; transform: translateY(-10px); }
}
@keyframes popPoint2 {
  0%, 24% { opacity: 0; transform: translateY(10px); }
  28%, 85% { opacity: 1; transform: translateY(0); }
  90%, 100% { opacity: 0; transform: translateY(-10px); }
}
@keyframes popPoint3 {
  0%, 33% { opacity: 0; transform: translateY(10px); }
  37%, 85% { opacity: 1; transform: translateY(0); }
  90%, 100% { opacity: 0; transform: translateY(-10px); }
}
.point-1 { animation: popPoint1 7s infinite; }
.point-2 { animation: popPoint2 7s infinite; }
.point-3 { animation: popPoint3 7s infinite; }

.chart-footer { display: flex; justify-content: space-between; border-top: 1px solid rgba(255, 255, 255, 0.15); padding-top: 16px; }
.cf-stat { display: flex; flex-direction: column; gap: 4px; }
.cf-label { font-family: var(--ff-mono); font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.45); }
.cf-val { font-family: var(--ff-mono); font-size: 0.85rem; font-weight: 600; color: #fff; }
.cf-val.up { color: #34D399; } .cf-val.dn { color: #F87171; }

/* ─── NEWSLETTER POPUP ─────────────────────────────────────────── */
.newsletter-popup-overlay {
  position: fixed; inset: 0; background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px); z-index: 10000;
  display: flex; justify-content: center; align-items: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.newsletter-popup-overlay.active { opacity: 1; pointer-events: auto; }

.newsletter-popup {
  background: var(--white); width: 100%; max-width: 500px;
  position: relative; border-top: 4px solid var(--blue-2);
  transform: translateY(30px); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.newsletter-popup-overlay.active .newsletter-popup { transform: translateY(0); }

.popup-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none; font-size: 28px;
  color: var(--dim); cursor: pointer; transition: color 0.2s;
}
.popup-close:hover { color: var(--blue-2); }

.popup-content { padding: 48px 40px; text-align: center; }
.popup-tag {
  font-family: var(--ff-mono); font-size: 0.6rem; uppercase; letter-spacing: 0.2em;
  color: var(--blue-2); display: block; margin-bottom: 16px; font-weight: 700;
}
.popup-header h2 { font-size: 2.2rem; color: var(--text); margin-bottom: 16px; }
.popup-header p { font-size: 0.95rem; color: var(--off); margin-bottom: 32px; line-height: 1.6; }

.popup-form { display: flex; flex-direction: column; gap: 12px; }
.popup-input {
  width: 100%; padding: 16px; border: 1px solid var(--border);
  background: var(--bg-2); color: var(--text); font-family: var(--ff-body);
  outline: none; transition: border-color 0.2s;
}
.popup-input:focus { border-color: var(--blue-2); }

.popup-footer {
  font-family: var(--ff-mono); font-size: 0.6rem; color: var(--dim);
  margin-top: 24px; text-transform: uppercase; letter-spacing: 0.1em;
}

/* ─── NAV UTILITIES ───────────────────────────────────────────── */
.show-mobile { display: none !important; }
.hide-mobile { display: flex !important; }

@media (max-width: 960px) {
  .show-mobile { display: flex !important; }
  .hide-mobile { display: none !important; }
}

