/* ══════════════════════════════════════════════════════════════════
   VESTIGES UNIFIED STYLESHEET
   ══════════════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES (Theme Tokens) ─────────────────────────────── */
:root {
  --bg: #080808;
  --bg2: #0f0f0f;
  --bg3: #141414;
  --border: #222;
  --text: #e8e4dc;
  --muted: #666;
  /* Refined accent palette - more cohesive and modern */
  --accent-cyan: #7df9a8;      /* Fresh mint green - primary accent */
  --accent-orange: #b09cff;    /* Warm coral - secondary accent */
  --accent-yellow: #7c91f9ff;    /* Soft gold - highlights */
  --accent-purple: #b794f6;    /* Soft lavender - tertiary */
  --accent-red: #ff6b8a;       /* Soft rose - alerts/negative */
  --grid: rgba(255,255,255,0.03);
}

/* ══════════════════════════════════════════════════════════════════
   ECO THEME — White/Green color scheme override
   Applied via body.eco class on eco.html page
   ══════════════════════════════════════════════════════════════════ */
body.eco {
  /* Eco-specific green palette */
  --eco-green:       #28d44a;
  --eco-green-dark:  #1aad38;
  --eco-green-pale:  #edfbf0;
  --eco-green-muted: rgba(40, 212, 74, 0.10);

  /* Ink colors (dark text on light background) */
  --eco-ink:         #0e0e0e;
  --eco-ink-2:       #3a3a3a;
  --eco-ink-3:       #767676;
  --eco-ink-4:       #b0b0b0;

  /* Background colors */
  --eco-bg:          #fafaf8;
  --eco-bg-card:     #ffffff;
  --eco-bg-tint:     #edfbf0;

  /* Border colors */
  --eco-border:      rgba(0, 0, 0, 0.07);
  --eco-border-mid:  rgba(0, 0, 0, 0.12);

  /* Override global theme variables for eco page */
  --bg:              var(--eco-bg);
  --bg2:             var(--eco-bg-card);
  --bg3:             var(--eco-bg-tint);
  --border:          var(--eco-border);
  --text:            var(--eco-ink);
  --muted:           var(--eco-ink-3);
  --accent-cyan:     var(--eco-green);
  --accent-orange:   var(--eco-green-dark);

  /* Apply light background and dark text */
  background-color: var(--eco-bg);
  color: var(--eco-ink);
}

/* ── BASE STYLES (Reset, Typography) ──────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAVIGATION ───────────────────────────────────────────────── */
.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.nav-logo-img:hover {
  opacity: 1;
}


/* === BUSINESS PLAN EXTRA STYLES === */
.bp-chapter-header {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 48px 40px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 40px;
      align-items: center;
}
.bp-chapter-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(80px, 12vw, 160px);
      line-height: 1;
      color: rgba(125,249,168,0.15);
      letter-spacing: -4px;
}
.bp-chapter-tag {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--accent-orange);
      margin-bottom: 8px;
      display: block;
}
    .bp-chapter-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(32px, 5vw, 56px);
      letter-spacing: 2px;
      line-height: 1;
      margin-bottom: 16px;
    }
    .bp-chapter-toc {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 24px;
    }
    .bp-chapter-toc span {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 1px;
    }
    .bp-chapter-toc span::before {
      content: '→ ';
      color: var(--accent-cyan);
    }

    /* Persona card */
    .persona-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--border);
      margin-top: 32px;
    }
    .persona-card {
      background: var(--bg);
      padding: 32px;
    }
    .persona-label {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 9px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 6px;
    }
    .persona-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 36px;
      letter-spacing: 1px;
      color: var(--accent-orange);
      margin-bottom: 12px;
    }
    .persona-name.cyan { color: var(--accent-cyan); }
    .persona-name.yellow { color: var(--accent-yellow); }
    .persona-meta {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 4px 16px;
      margin-bottom: 20px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
    }
    .persona-meta-key { color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
    .persona-meta-val { color: var(--text); }
    .persona-cols {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 16px;
      margin-top: 20px;
    }
    .persona-col-title {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--accent-cyan);
      margin-bottom: 8px;
    }
    .persona-col-title.orange { color: var(--accent-orange); }
    .persona-col-title.yellow { color: var(--accent-yellow); }
    .persona-col p {
      font-size: 12px;
      color: #9a9080;
      line-height: 1.6;
    }
    .persona-desc {
      font-size: 13px;
      color: #9a9080;
      line-height: 1.7;
      border-left: 2px solid var(--border);
      padding-left: 16px;
      margin-bottom: 20px;
      font-style: italic;
    }
    .persona-tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 16px;
    }
    .persona-tag {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 4px 12px;
      border: 1px solid var(--border);
      color: var(--muted);
    }

    /* Pricing cards */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--border);
      margin-top: 32px;
    }
    .pricing-card {
      background: var(--bg);
      padding: 32px 24px;
      position: relative;
      border-top: 2px solid transparent;
      transition: border-color 0.3s;
    }
    .pricing-card:hover { border-top-color: var(--accent-cyan); }
    .pricing-card.featured { border-top-color: var(--accent-cyan); background: rgba(0,229,204,0.02); }
    .pricing-card-label {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 4px;
    }
    .pricing-card-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      letter-spacing: 1px;
      color: var(--text);
      margin-bottom: 16px;
    }
    .pricing-price {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 52px;
      line-height: 1;
      color: var(--accent-cyan);
      margin-bottom: 4px;
    }
    .pricing-price.free { color: var(--muted); }
    .pricing-period {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      color: var(--muted);
      margin-bottom: 24px;
    }
    .pricing-features {
      list-style: none;
      margin-top: 16px;
    }
    .pricing-features li {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      color: #9a9080;
      padding: 6px 0;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      letter-spacing: 0.5px;
    }
    .pricing-features li::before { content: '✓ '; color: var(--accent-cyan); }
    .pricing-margin {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      color: var(--accent-yellow);
      margin-top: 16px;
      letter-spacing: 1px;
    }

    /* SWOT */
    .swot-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--border);
      margin-top: 24px;
    }
    .swot-cell {
      background: var(--bg);
      padding: 24px;
    }
    .swot-label {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .swot-label.s { color: var(--accent-cyan); }
    .swot-label.w { color: var(--accent-orange); }
    .swot-label.o { color: var(--accent-yellow); }
    .swot-label.t { color: var(--accent-red); }
    .swot-cell ul {
      list-style: none;
    }
    .swot-cell ul li {
      font-size: 12px;
      color: #9a9080;
      padding: 4px 0;
      line-height: 1.5;
    }
    .swot-cell ul li::before { content: '— '; color: var(--border); }

    /* Timeline */
    .timeline {
      margin-top: 32px;
      position: relative;
      padding-left: 24px;
    }
    .timeline::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 1px;
      background: var(--border);
    }
    .timeline-item {
      position: relative;
      padding: 0 0 32px 32px;
    }
    .timeline-item::before {
      content: '';
      position: absolute;
      left: -4px; top: 6px;
      width: 9px; height: 9px;
      border-radius: 50%;
      background: var(--accent-cyan);
    }
    .timeline-date {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--accent-cyan);
      margin-bottom: 4px;
    }
    .timeline-date.orange { color: var(--accent-orange); }
    .timeline-date.yellow { color: var(--accent-yellow); }
    .timeline-item::before.orange { background: var(--accent-orange); }
    .timeline-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 6px;
    }
    .timeline-desc {
      font-size: 13px;
      color: #9a9080;
      line-height: 1.6;
    }

    /* Finance table */
    .finance-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 24px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12px;
    }
    .finance-table th {
      text-align: left;
      padding: 12px 16px;
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent-cyan);
      border-bottom: 1px solid var(--border);
      background: var(--bg3);
    }
    .finance-table td {
      padding: 12px 16px;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      color: #9a9080;
    }
    .finance-table tr:hover td { background: rgba(0,229,204,0.02); color: var(--text); }
    .finance-table .td-label { color: var(--text); font-weight: 600; }
    .finance-table .td-total { color: var(--accent-cyan); font-weight: 600; }
    .finance-table .td-positive { color: var(--accent-cyan); }
    .finance-table .td-negative { color: var(--accent-red); }

    /* Stat highlight row */
    .stat-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      margin: 32px 0;
    }
    .stat-row .kpi-card { background: var(--bg); }

    /* Legal section */
    .legal-card {
      background: var(--bg);
      border: 1px solid var(--border);
      padding: 28px;
      margin-bottom: 1px;
    }
    .legal-card-title {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent-cyan);
      margin-bottom: 12px;
    }
    .legal-card p {
      font-size: 14px;
      color: #9a9080;
      line-height: 1.7;
    }
    .legal-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 24px;
      font-size: 12px;
    }
    .legal-table th {
      text-align: left;
      padding: 10px 14px;
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent-orange);
      border-bottom: 1px solid var(--border);
      background: var(--bg3);
      font-family: 'IBM Plex Mono', monospace;
    }
    .legal-table td {
      padding: 12px 14px;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      color: #9a9080;
      vertical-align: top;
      line-height: 1.6;
    }
    .legal-table .td-type { color: var(--text); font-weight: 600; font-family: 'IBM Plex Mono', monospace; font-size: 11px; }

    /* Founder box */
    .founder-box {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 1px;
      background: var(--border);
      margin-top: 32px;
    }
    .founder-aside {
      background: var(--bg2);
      padding: 32px;
    }
    .founder-main {
      background: var(--bg);
      padding: 32px;
    }
    .founder-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 42px;
      letter-spacing: 2px;
      color: var(--accent-cyan);
      line-height: 1;
      margin-bottom: 8px;
    }
    .founder-title {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 24px;
    }
    .skill-tag {
      display: inline-block;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      letter-spacing: 1px;
      padding: 4px 10px;
      border: 1px solid rgba(0,229,204,0.2);
      color: var(--accent-cyan);
      margin: 3px;
    }

    @media (max-width: 900px) {
      .persona-grid, .pricing-grid { grid-template-columns: 1fr; }
      .persona-cols { grid-template-columns: 1fr; }
      .founder-box { grid-template-columns: 1fr; }
      .stat-row { grid-template-columns: 1fr; }
      .bp-chapter-header { grid-template-columns: 1fr; gap: 12px; }
      .bp-chapter-num { font-size: 60px; }
    }

.-links a.active {
  color: var(--accent-cyan);
  position: relative;
}
/* Navigation entre pages — en bas de chaque page */
.page-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
}

.page-nav-btn {
  background: var(--bg2);
  padding: 32px 40px;
  text-decoration: none;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-nav-btn:hover { background: var(--bg3); }

/* Le bouton "suivant" s'aligne à droite */
.page-nav-btn.next { text-align: right; }

.page-nav-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

.page-nav-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--accent-cyan);
}

/* Petit trait sous le lien actif */
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent-cyan);
}

/* ═══════════════════════════════════════════════════════════════
   STUDIO PAGE STYLES
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero studio ─────────────────────────────────────────────── */

/* Motif damier identité Vestiges.studios (coin haut-droit du hero) */
.studio-checker {
  position: absolute;
  top: 80px;
  right: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: clamp(100px, 14vw, 200px);
  height: clamp(100px, 14vw, 200px);
  opacity: 0.08;
  z-index: 0;
}

.checker-cell {
  background: transparent;
}

.checker-cell.filled {
  background: var(--text);
}

/* ── Section générique studio ────────────────────────────────── */

.studio-section {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.studio-section.alt {
  background: var(--bg2);
}

/* ── Mission block (citation + stats) ───────────────────────── */

.studio-mission-block {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1px;
  background: var(--border);
  margin-top: 48px;
}

.mission-statement {
  background: var(--bg3);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  border-left: 3px solid var(--accent-cyan);
}

.mission-statement blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-style: italic;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}

.mission-statement blockquote em {
  color: var(--accent-cyan);
  font-style: normal;
}

.mission-stats {
  background: var(--bg);
  display: flex;
  flex-direction: column;
}

.mission-stat-item {
  padding: 28px 28px;
  border-bottom: 1px solid var(--border);
  flex: 1;
}

.mission-stat-item:last-child {
  border-bottom: none;
}

.mission-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  line-height: 1;
  display: block;
  color: var(--accent-cyan);
}

.mission-stat-num.cyan   { color: var(--accent-cyan); }
.mission-stat-num.orange { color: var(--accent-orange); }
.mission-stat-num.yellow { color: var(--accent-yellow); }

.mission-stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 6px;
  line-height: 1.5;
  display: block;
}

/* ── Two-column layout (mission) ─────────────────────────────── */

.studio-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
  align-items: start;
}

/* ── Values grid (2×2) ───────────────────────────────────────── */

.studio-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.studio-value {
  background: var(--bg);
  padding: 28px 24px;
  transition: background 0.2s;
}

.studio-value:hover {
  background: var(--bg3);
}

.value-icon {
  font-size: 22px;
  margin-bottom: 10px;
  width: 28px;
  height: 28px;
  color: var(--accent-cyan);
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--accent-cyan);
  margin-bottom: 8px;
}

.value-desc {
  font-size: 12px;
  color: #9a9080;
  line-height: 1.7;
}

/* ── Expertise grid (4 colonnes) ─────────────────────────────── */

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 48px;
}

.expertise-card {
  background: var(--bg);
  padding: 32px 28px;
  border-top: 3px solid transparent;
  transition: border-color 0.3s;
  position: relative;
}

.expertise-card:nth-child(1):hover { border-top-color: var(--accent-cyan); }
.expertise-card:nth-child(2):hover { border-top-color: var(--accent-orange); }
.expertise-card:nth-child(3):hover { border-top-color: var(--accent-yellow); }
.expertise-card:nth-child(4):hover { border-top-color: var(--accent-purple); }

.expertise-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: 0.9;
  color: rgba(255,255,255,0.08);
  position: absolute;
  top: 12px;
  right: 16px;
}

.expertise-num.cyan   { color: rgba(125,249,168,0.2); }
.expertise-num.orange { color: rgba(245,166,122,0.2); }
.expertise-num.yellow { color: rgba(249,232,124,0.2); }
.expertise-num.purple { color: rgba(183,148,246,0.2); }

.expertise-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
  width: 32px;
  height: 32px;
  color: var(--accent-cyan);
}

.expertise-icon svg {
  width: 100%;
  height: 100%;
}

.expertise-card:nth-child(1) .expertise-icon { color: var(--accent-cyan); }
.expertise-card:nth-child(2) .expertise-icon { color: var(--accent-orange); }
.expertise-card:nth-child(3) .expertise-icon { color: var(--accent-yellow); }
.expertise-card:nth-child(4) .expertise-icon { color: var(--accent-purple); }

.expertise-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--text);
}

.expertise-desc {
  font-size: 13px;
  color: #9a9080;
  line-height: 1.7;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.expertise-list {
  list-style: none;
  padding: 0;
}

.expertise-list li {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  padding: 5px 0 5px 14px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  letter-spacing: 0.5px;
}

.expertise-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-size: 9px;
}

.expertise-card:nth-child(2) .expertise-list li::before { color: var(--accent-orange); }
.expertise-card:nth-child(3) .expertise-list li::before { color: var(--accent-yellow); }
.expertise-card:nth-child(4) .expertise-list li::before { color: var(--accent-purple); }

/* ── Revenue bar list (ventilation) ─────────────────────────── */

.revenue-bar-list {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.revenue-bar-item {
  margin-bottom: 18px;
}

.revenue-bar-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
}

.bar-val.cyan   { color: var(--accent-cyan); }
.bar-val.orange { color: var(--accent-orange); }
.bar-val.yellow { color: var(--accent-yellow); }
.bar-val.red    { color: var(--accent-red); }

/* ── Benefit split (two-col ayants-droits) ───────────────────── */

.benefit-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 48px;
}

.benefit-col {
  background: var(--bg);
  padding: 40px;
}

.benefit-col.revenue-col {
  background: var(--bg2);
}

.benefit-col-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.benefit-col-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  line-height: 0.9;
  color: rgba(0,229,204,0.15);
}

.benefit-col-num.orange {
  color: rgba(255,94,31,0.15);
}

.benefit-col-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 6px;
}

.benefit-col-tag.orange {
  color: var(--accent-orange);
}

.benefit-col-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
}

.benefit-checklist {
  list-style: none;
  padding: 0;
}

.benefit-checklist li {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: flex-start;
}

.benefit-checklist li:last-child {
  border-bottom: none;
}

.check-icon {
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-icon.cyan   { color: var(--accent-cyan); }
.check-icon.orange { color: var(--accent-orange); }

.benefit-checklist li strong {
  display: block;
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 5px;
}

.benefit-checklist li p {
  font-size: 12px;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

/* ── Project showcase ────────────────────────────────────────── */

.project-showcase {
  background: var(--bg2);
  border: 1px solid var(--border);
  margin-top: 40px;
}

.project-header {
  padding: 32px 40px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 24px;
}

.project-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6vw, 80px);
  letter-spacing: 4px;
  color: var(--accent-cyan);
  line-height: 1;
}

.project-meta-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.project-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.project-metric {
  background: var(--bg);
  padding: 28px 24px;
  text-align: center;
}

.project-metric-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  line-height: 1;
  display: block;
  color: var(--accent-cyan);
}

.project-metric-num.cyan   { color: var(--accent-cyan); }
.project-metric-num.orange { color: var(--accent-orange); }
.project-metric-num.yellow { color: var(--accent-yellow); }

.project-metric-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}

.project-metric-source {
  font-size: 10px;
  color: #3a3a3a;
  margin-top: 4px;
  font-family: 'IBM Plex Mono', monospace;
  display: block;
}

/* ── Project gap list (avant / après) ───────────────────────── */

.project-gap-list {
  list-style: none;
  padding: 0;
  margin-top: 8px;
}

.project-gap-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
}

.gap-label {
  color: var(--muted);
  letter-spacing: 0.5px;
}

.gap-tag {
  display: inline-block;
  padding: 3px 8px;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.gap-tag.red    { background: rgba(255,45,85,0.12);  color: var(--accent-red); }
.gap-tag.orange { background: rgba(255,94,31,0.12);  color: var(--accent-orange); }
.gap-tag.cyan   { background: rgba(0,229,204,0.12);  color: var(--accent-cyan); }

/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 1100px) {
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .studio-two-col         { grid-template-columns: 1fr; gap: 40px; }
  .studio-values-grid     { grid-template-columns: 1fr; }
  .expertise-grid         { grid-template-columns: 1fr; }
  .studio-mission-block   { grid-template-columns: 1fr; }
  .benefit-split          { grid-template-columns: 1fr; }
  .project-metrics        { grid-template-columns: repeat(2, 1fr); }
  .project-gap-item       { grid-template-columns: 1fr; gap: 4px; }
  .studio-checker         { display: none; }
}

  /* NOISE TEXTURE */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.4;
    z-index: 9998;
  }

  /* NAVIGATION */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(8,8,8,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Outfit", sans-serif;
    font-size: 30px;
    letter-spacing: -2px;
    font-weight: 900;
    color: white;
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--accent-cyan); }

  .nav-date {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--muted);
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
  }

  .hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(var(--grid) 1px, transparent 1px),
      linear-gradient(90deg, var(--grid) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
  }

  .hero-accent-line {
    position: absolute;
    top: 0; left: 120px;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--accent-cyan) 30%, var(--accent-orange) 70%, transparent);
    opacity: 0.15;
  }

  .hero-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.8s ease both;
  }

  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 9vw, 128px);
    line-height: 0.9;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.8s 0.1s ease both;
  }

  .hero h1 .accent { color: var(--accent-cyan); }
  .hero h1 .accent-o { color: var(--accent-orange); }

  .hero-sub {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: clamp(18px, 2.5vw, 26px);
    color: var(--muted);
    margin-top: 24px;
    max-width: 600px;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.8s 0.2s ease both;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 64px;
    background: var(--border);
    position: relative;
    z-index: 1;
    animation: fadeUp 0.8s 0.3s ease both;
  }

  .hero-stat {
    background: var(--bg);
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
  }

  .hero-stat::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent-cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .hero-stat:hover::before { transform: scaleX(1); }

  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    line-height: 1;
    display: block;
  }

  .stat-num.cyan { color: var(--accent-cyan); }
  .stat-num.orange { color: var(--accent-orange); }
  .stat-num.yellow { color: var(--accent-yellow); }
  .stat-num.red { color: var(--accent-red); }

  .stat-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 8px;
    display: block;
    font-family: 'IBM Plex Mono', monospace;
  }

  .stat-source {
    font-size: 10px;
    color: #444;
    margin-top: 4px;
    font-family: 'IBM Plex Mono', monospace;
  }

  /* SECTIONS */
  section {
    padding: 80px 40px;
    border-bottom: 1px solid var(--border);
    position: relative;
  }

  section:nth-child(even) { background: var(--bg2); }

  .section-index {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--accent-cyan);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 16px;
  }

  .section-lead {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--muted);
    max-width: 700px;
    margin-bottom: 48px;
    line-height: 1.5;
  }

  /* CHART CONTAINERS */
  .chart-grid {
    display: grid;
    gap: 1px;
    background: var(--border);
    margin-top: 48px;
  }

  .chart-grid-2 { grid-template-columns: 1fr 1fr; }
  .chart-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .chart-grid-60-40 { grid-template-columns: 3fr 2fr; }
  .chart-grid-40-60 { grid-template-columns: 2fr 3fr; }

  .chart-box {
    background: var(--bg);
    padding: 32px;
    position: relative;
  }

  .chart-box-full {
    background: var(--bg);
    padding: 32px;
    margin-top: 1px;
  }

  .chart-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 8px;
  }

  .chart-desc {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
    font-family: 'IBM Plex Mono', monospace;
  }

  .chart-wrap {
    position: relative;
    height: 280px;
  }

  .chart-wrap-tall {
    position: relative;
    height: 380px;
  }

  .chart-wrap-full {
    position: relative;
    height: 320px;
  }

  /* PROSE */
  .prose {
    max-width: 800px;
  }

  .prose p {
    margin-bottom: 20px;
    color: #b0a898;
    line-height: 1.8;
  }

  .prose strong {
    color: var(--text);
    font-weight: 600;
  }

  .prose .highlight {
    color: var(--accent-cyan);
    font-weight: 600;
  }

  .prose .highlight-o {
    color: var(--accent-orange);
    font-weight: 600;
  }

  /* DATA TABLE */
  .data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 32px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
  }

  .data-table th {
    text-align: left;
    padding: 12px 16px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    border-bottom: 1px solid var(--border);
    background: var(--bg3);
    font-weight: 600;
  }

  .data-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: #9a9080;
    vertical-align: middle;
  }

  .data-table tr:hover td {
    background: rgba(0,229,204,0.03);
    color: var(--text);
  }

  .data-table .td-name {
    color: var(--text);
    font-weight: 600;
  }

  .badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 2px;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
  }

  .badge-red { background: rgba(255,45,85,0.15); color: var(--accent-red); }
  .badge-cyan { background: rgba(0,229,204,0.12); color: var(--accent-cyan); }
  .badge-orange { background: rgba(255,94,31,0.15); color: var(--accent-orange); }
  .badge-yellow { background: rgba(245,200,66,0.15); color: var(--accent-yellow); }

  /* KPI CARDS */
  .kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    margin-top: 48px;
  }

  .kpi-card {
    background: var(--bg);
    padding: 28px 24px;
    border-top: 2px solid transparent;
    transition: border-color 0.3s;
  }

  .kpi-card:hover { border-top-color: var(--accent-cyan); }
  .kpi-card.orange:hover { border-top-color: var(--accent-orange); }
  .kpi-card.yellow:hover { border-top-color: var(--accent-yellow); }

  .kpi-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    line-height: 1;
    color: var(--accent-cyan);
  }

  .kpi-value.orange { color: var(--accent-orange); }
  .kpi-value.yellow { color: var(--accent-yellow); }
  .kpi-value.red { color: var(--accent-red); }

  .kpi-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 6px;
  }

  .kpi-note {
    font-size: 12px;
    color: #444;
    margin-top: 8px;
    font-family: 'IBM Plex Mono', monospace;
  }

  /* CONCLUSION */
  .conclusion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    margin-top: 48px;
  }

  .conclusion-item {
    background: var(--bg);
    padding: 32px;
    position: relative;
  }

  .conclusion-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    color: rgba(125,249,168,0.15);
    position: absolute;
    top: 8px; right: 16px;
    line-height: 1;
  }

  .conclusion-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 12px;
  }

  .conclusion-text {
    font-size: 14px;
    color: #9a9080;
    line-height: 1.7;
  }

  /* FOOTER */
  footer {
    padding: 48px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid var(--border);
  }

  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 4px;
    color: var(--accent-cyan);
  }

  .footer-sources {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: #333;
    max-width: 600px;
    line-height: 1.8;
    text-align: right;
  }

  /* DIVIDER */
  .divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-cyan), transparent);
    margin: 48px 0;
    opacity: 0.2;
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .animate-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .animate-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* QUOTE BLOCK */
  .pull-quote {
    border-left: 3px solid var(--accent-orange);
    padding: 20px 32px;
    margin: 32px 0;
    background: rgba(255,94,31,0.04);
  }

  .pull-quote p {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--text);
    line-height: 1.5;
  }

  .pull-quote cite {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 2px;
    margin-top: 12px;
    display: block;
    text-transform: uppercase;
  }

  /* SCROLLBAR */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--accent-cyan); opacity: 0.3; }

  /* PROGRESS BAR CHART */
  .bar-list { list-style: none; margin-top: 24px; }
  .bar-item { margin-bottom: 20px; }
  .bar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
  }
  .bar-name { color: var(--text); }
  .bar-val { color: var(--accent-cyan); }
  .bar-track {
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 0;
    overflow: hidden;
  }
  .bar-fill {
    height: 100%;
    background: linear-gradient(to right, var(--accent-cyan), rgba(0,229,204,0.4));
    border-radius: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.2s cubic-bezier(0.4,0,0.2,1);
  }
  .bar-fill.orange { background: linear-gradient(to right, var(--accent-orange), rgba(255,94,31,0.4)); }
  .bar-fill.yellow { background: linear-gradient(to right, var(--accent-yellow), rgba(245,200,66,0.4)); }
  .bar-fill.red { background: linear-gradient(to right, var(--accent-red), rgba(255,45,85,0.4)); }
  .bar-fill.visible { transform: scaleX(1); }

/* ══════════════════════════════════════════════════════════════════
   ECO THEME OVERRIDES — Shared component styling for eco page
   ══════════════════════════════════════════════════════════════════ */

/* ── ECO NAVIGATION OVERRIDES ─────────────────────────────────── */
body.eco nav {
  background: rgba(250, 250, 248, 0.95);
  border-bottom: 1px solid var(--eco-border-mid);
}

body.eco .nav-logo {
  color: var(--eco-ink);
}

body.eco .nav-logo-img {
  filter: invert(1);
  opacity: 0.85;
}

body.eco .nav-logo-img:hover {
  opacity: 1;
}

body.eco .nav-links a {
  color: var(--eco-ink-3);
}

body.eco .nav-links a:hover {
  color: var(--eco-green);
}

body.eco .nav-links a.active {
  color: var(--eco-green);
}

body.eco .nav-links a.active::after {
  background: var(--eco-green);
}

body.eco .nav-date {
  color: var(--eco-ink-4);
}

/* ── ECO FOOTER OVERRIDES ─────────────────────────────────────── */
/* Light footer to match eco page white theme */
body.eco footer {
  background: var(--eco-bg-card);
  border-top: 1px solid var(--eco-border-mid);
}

body.eco .footer-logo {
  color: var(--eco-green-dark);
  opacity: 0.7;
}

body.eco .footer-sources {
  color: var(--eco-ink-3);
}

/* ── ECO PAGINATION OVERRIDES ─────────────────────────────────── */
body.eco .page-nav {
  background: var(--eco-bg);
  border-top: 1px solid var(--eco-border-mid);
}

body.eco .page-nav-btn {
  background: var(--eco-bg-card);
  border: 1px solid var(--eco-border-mid);
}

body.eco .page-nav-btn:hover {
  background: var(--eco-bg-tint);
  border-color: var(--eco-green);
}

body.eco .page-nav-label {
  color: var(--eco-ink-3);
}

body.eco .page-nav-title {
  color: var(--eco-ink);
}

body.eco .page-nav-btn:hover .page-nav-title {
  color: var(--eco-green);
}

/* ══════════════════════════════════════════════════════════════════
   ECO PAGE COMPONENTS — Styles specific to eco.html
   ══════════════════════════════════════════════════════════════════ */

/* ── ECO HERO ─────────────────────────────────────────────────── */
.eco-hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 7vw 6rem;
  padding-top: 120px;
  position: relative;
}

/* Globe 3D container */
.eco-globe-container {
  position: absolute;
  right: -5vw;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  pointer-events: none;
  opacity: 0.85;
  z-index: 1;
  overflow: visible;
}

.eco-globe-container canvas {
  display: block;
}

@media (max-width: 1400px) {
  .eco-globe-container {
    width: 550px;
    height: 550px;
    right: -8vw;
  }
}

@media (max-width: 1200px) {
  .eco-globe-container {
    width: 450px;
    height: 450px;
    right: -10vw;
    opacity: 0.5;
  }
}

@media (max-width: 900px) {
  .eco-globe-container {
    display: none;
  }
}

.eco-hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--eco-green-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.eco-hero-eyebrow::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--eco-green);
}

.eco-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 12vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--eco-ink);
  margin-bottom: 2.5rem;
  max-width: 700px;
}

.eco-hero-title .green-word {
  color: var(--eco-green);
}

.eco-hero-lead {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.55;
  color: var(--eco-ink-2);
  max-width: 560px;
  margin-bottom: 3rem;
}

/* Bande de stats en bas du hero */
.eco-hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--eco-border-mid);
}

.eco-hero-stat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--eco-green-dark);
  display: block;
}

.eco-hero-stat-lbl {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eco-ink-4);
  display: block;
  margin-top: 0.2rem;
}

/* Badge décoratif flottant */
.eco-badge {
  position: absolute;
  bottom: 6rem;
  right: 7vw;
  top: auto;
  left: auto;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eco-green-dark);
  border: 1px solid var(--eco-green);
  padding: 0.6rem 1rem;
  background: var(--eco-green-muted);
  max-width: 180px;
  text-align: center;
  line-height: 1.7;
  z-index: 10;
}

@media (max-width: 768px) {
  .eco-badge { display: none; }
}

/* ── ECO SECTIONS ─────────────────────────────────────────────── */
.eco-section {
  padding: 5rem 7vw;
}

.eco-section + .eco-section {
  border-top: 1px solid var(--eco-border);
}

.eco-section.tinted {
  background: var(--eco-bg-tint);
}

/* Numéro de section */
.eco-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--eco-green);
  margin-bottom: 0.5rem;
}

/* Titre de section */
.eco-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--eco-ink);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

/* Paragraphe d'introduction */
.eco-lead {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--eco-ink-2);
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.eco-lead strong {
  color: var(--eco-ink);
  font-weight: 600;
}

.eco-lead em {
  font-style: italic;
  color: var(--eco-green-dark);
}

/* Label de sous-section réutilisable */
.eco-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eco-ink-4);
  margin-bottom: 0.5rem;
  margin-top: 2.5rem;
  display: block;
}

/* ── ECO GRILLES DE MISE EN PAGE ─────────────────────────────── */
.eco-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.eco-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

@media (max-width: 860px) {
  .eco-grid-2,
  .eco-grid-3 { grid-template-columns: 1fr; }
}

/* ── ECO CARTES KPI ──────────────────────────────────────────── */
.eco-card {
  background: var(--eco-bg-card);
  border: 1px solid var(--eco-border-mid);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.eco-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--eco-green);
}

.eco-card:hover {
  border-color: rgba(40, 212, 74, 0.35);
  box-shadow: 0 4px 20px rgba(40, 212, 74, 0.07);
}

.eco-card-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eco-ink-4);
  margin-bottom: 0.6rem;
}

.eco-card-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  color: var(--eco-green-dark);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.eco-card-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  color: var(--eco-ink-3);
  line-height: 1.55;
}

/* ── ECO KPI GRANDE TAILLE (lignes bilan) ────────────────────── */
.eco-kpi-row {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--eco-border);
}

.eco-kpi-row:first-of-type {
  border-top: 1px solid var(--eco-border);
}

.eco-kpi-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  color: var(--eco-green);
  line-height: 1;
  flex-shrink: 0;
  min-width: 9rem;
}

.eco-kpi-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--eco-ink);
  display: block;
}

.eco-kpi-src {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--eco-ink-4);
  display: block;
  margin-top: 0.25rem;
}

/* ── ECO TABLEAU COMPARATIF ──────────────────────────────────── */
.eco-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  margin: 1.5rem 0;
}

.eco-table th {
  text-align: left;
  padding: 0.65rem 0.85rem;
  border-bottom: 2px solid var(--eco-border-mid);
  color: var(--eco-green-dark);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.eco-table td {
  padding: 0.6rem 0.85rem;
  border-bottom: 1px solid var(--eco-border);
  color: var(--eco-ink-3);
  vertical-align: top;
}

.eco-table tr:last-child td { border-bottom: none; }

.eco-table td.t-pos      { color: var(--eco-green-dark); font-weight: 500; }
.eco-table td.t-neg      { color: #c82020; }
.eco-table td.t-hi       { color: var(--eco-ink); font-weight: 500; }

.eco-table tr.t-total td {
  color: var(--eco-ink);
  border-top: 2px solid var(--eco-border-mid);
  font-weight: 600;
  padding-top: 0.85rem;
}

.eco-table tbody tr:hover td {
  background: rgba(40, 212, 74, 0.02);
}

/* ── ECO BLOC VERSUS (comparaison côte à côte) ───────────────── */
.eco-vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (max-width: 700px) {
  .eco-vs { grid-template-columns: 1fr; }
  .eco-vs-sep { display: none; }
}

.eco-vs-side {
  border: 1px solid var(--eco-border-mid);
  padding: 1.5rem;
  background: var(--eco-bg-card);
}

.eco-vs-side.vs-bad  { border-left: 3px solid #c82020; }
.eco-vs-side.vs-good { border-left: 3px solid var(--eco-green); }

.eco-vs-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eco-ink-4);
  margin-bottom: 0.5rem;
}

.eco-vs-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.eco-vs-side.vs-bad  .eco-vs-title { color: #c82020; }
.eco-vs-side.vs-good .eco-vs-title { color: var(--eco-green-dark); }

.eco-vs-item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  color: var(--eco-ink-3);
  margin-bottom: 0.3rem;
  line-height: 1.55;
}

.eco-vs-item::before {
  content: '· ';
  color: var(--eco-ink-4);
}

.eco-vs-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--eco-ink-4);
  text-align: center;
}

/* ── ECO GRILLE MESSAGES RSE ─────────────────────────────────── */
.eco-rse-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--eco-border);
  border: 1px solid var(--eco-border-mid);
  margin: 2rem 0;
}

@media (max-width: 700px) {
  .eco-rse-grid { grid-template-columns: 1fr; }
}

.eco-rse-item {
  background: var(--eco-bg-card);
  padding: 1.75rem 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.eco-rse-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: rgba(40, 212, 74, 0.18);
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
}

.eco-rse-quote {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--eco-ink-2);
  line-height: 1.55;
  margin-bottom: 0.5rem;
}

.eco-rse-src {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eco-green-dark);
}

/* ── ECO PILLS ANALOGIES ─────────────────────────────────────── */
.eco-analogy-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.eco-pill {
  border: 1px solid var(--eco-green);
  background: rgba(40, 212, 74, 0.04);
  padding: 0.75rem 1.25rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  color: var(--eco-green-dark);
  line-height: 1.55;
}

.eco-pill strong {
  font-weight: 500;
  color: var(--eco-ink);
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.15rem;
}

/* ── ECO CITATION / PULLQUOTE ────────────────────────────────── */
.eco-pullquote {
  border-left: 3px solid var(--eco-green);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  background: rgba(40, 212, 74, 0.035);
}

.eco-pullquote p {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--eco-ink-2);
  line-height: 1.6;
  margin: 0;
}

.eco-pullquote cite {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eco-green-dark);
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
}

/* ── ECO ZONE PLACEHOLDER CHART ──────────────────────────────── */
.eco-chart-zone {
  border: 1px dashed rgba(40, 212, 74, 0.3);
  background: rgba(40, 212, 74, 0.025);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  margin: 0.5rem 0 1.5rem;
  position: relative;
}

.eco-chart-zone.tall  { min-height: 360px; }
.eco-chart-zone.short { min-height: 200px; }

.eco-chart-zone canvas {
  position: absolute;
  inset: 16px;
}

.eco-chart-ph-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(40, 212, 74, 0.45);
  margin-bottom: 0.4rem;
}

.eco-chart-ph-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: rgba(40, 212, 74, 0.35);
  text-align: center;
  padding: 0 2rem;
  line-height: 1.3;
}

/* ── ECO ANIMATIONS D'ENTRÉE ─────────────────────────────────── */
.eco-fade {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.eco-fade.visible {
  opacity: 1;
  transform: none;
}

.eco-fade:nth-child(2) { transition-delay: 0.08s; }
.eco-fade:nth-child(3) { transition-delay: 0.16s; }
.eco-fade:nth-child(4) { transition-delay: 0.24s; }

/* ── ECO RESPONSIVE GLOBAL ───────────────────────────────────── */
@media (max-width: 600px) {
  .eco-hero       { padding: 0 5vw 4rem; }
  .eco-section    { padding: 3.5rem 5vw; }
  .eco-hero-stats { gap: 1.5rem; }
  .eco-kpi-num    { font-size: 3rem; min-width: auto; }
}

  @media (max-width: 900px) {
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .chart-grid-2, .chart-grid-3, .chart-grid-60-40, .chart-grid-40-60 { grid-template-columns: 1fr; }
    .kpi-grid { grid-template-columns: 1fr 1fr; }
    .conclusion-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
  }


/* ══════════════════════════════════════════════════════════════════
   CONSUMER HOMEPAGE STYLES
   ══════════════════════════════════════════════════════════════════ */

/* ── CONSUMER NAVIGATION ─────────────────────────────────────── */
.nav-investor {
  color: var(--accent-orange) !important;
  border: 1px solid rgba(176, 156, 255, 0.3);
  padding: 6px 12px;
  transition: all 0.2s ease;
}

.nav-investor:hover {
  background: rgba(176, 156, 255, 0.1);
  border-color: var(--accent-orange);
}

.nav-cta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent-cyan);
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: #5ce090;
  transform: translateY(-1px);
}

/* ── CONSUMER HERO ───────────────────────────────────────────── */
.consumer-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 40px 80px;
}

.consumer-hero .hero-sub {
  max-width: 650px;
  margin-bottom: 40px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s 0.4s ease both;
}

.cta-button {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent-cyan);
  padding: 16px 32px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid var(--accent-cyan);
}

.cta-button:hover {
  background: transparent;
  color: var(--accent-cyan);
}

.cta-secondary {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 16px 32px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.cta-secondary:hover {
  color: var(--text);
  border-color: var(--text);
}

/* ── CONSUMER SECTIONS ───────────────────────────────────────── */
.consumer-section {
  padding: 100px 40px;
  border-bottom: 1px solid var(--border);
}

.consumer-section.alt {
  background: var(--bg2);
}

.consumer-section .section-title .accent {
  color: var(--accent-cyan);
}

.consumer-section .section-title .accent-o {
  color: var(--accent-orange);
}

/* ── FEATURES GRID ───────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 48px;
}

.feature-card {
  background: var(--bg);
  padding: 40px 32px;
  transition: all 0.3s ease;
  border-top: 2px solid transparent;
}

.feature-card:hover {
  background: var(--bg3);
  border-top-color: var(--accent-cyan);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent-cyan);
}

.feature-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── GAMES SHOWCASE ──────────────────────────────────────────── */
.games-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 48px;
}

.game-card {
  background: var(--bg);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
}

.game-card:hover {
  background: var(--bg3);
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-cyan);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.game-card:hover::before {
  transform: scaleX(1);
}

.game-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.game-status {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 8px;
}

.game-status.online {
  background: rgba(125, 249, 168, 0.15);
  color: var(--accent-cyan);
}

.game-players {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--muted);
}

.game-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 4px;
}

.game-genre {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 12px;
}

.game-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.games-cta {
  text-align: center;
  padding: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: none;
}

.games-count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  color: var(--muted);
}

.games-count strong {
  color: var(--accent-cyan);
}

/* ── COMMUNITY STATS ─────────────────────────────────────────── */
.community-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 48px;
}

.community-stat {
  background: var(--bg);
  padding: 48px 32px;
  text-align: center;
}

.community-stat .stat-num {
  font-size: 72px;
  margin-bottom: 8px;
}

.community-stat .stat-label {
  font-size: 12px;
}

/* ── DOWNLOAD SECTION ────────────────────────────────────────── */
.download-section {
  text-align: center;
  background: var(--bg2);
}

.download-section .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.download-options {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.2s ease;
  min-width: 200px;
}

.download-btn:hover {
  border-color: var(--accent-cyan);
  background: var(--bg3);
}

.download-btn.primary {
  border-color: var(--accent-cyan);
  background: rgba(125, 249, 168, 0.05);
}

.download-icon {
  font-size: 24px;
}

.download-icon svg {
  width: 24px;
  height: 24px;
}

.download-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.download-platform {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--text);
}

.download-size {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1px;
}

.download-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  margin-top: 32px;
}

/* ── CONSUMER FOOTER ─────────────────────────────────────────── */
.consumer-footer {
  padding: 80px 40px 40px;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--muted);
}

/* ── CONSUMER RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .features-grid,
  .games-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .consumer-hero {
    padding: 100px 24px 60px;
  }
  
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-button,
  .cta-secondary {
    text-align: center;
  }
  
  .features-grid,
  .games-showcase,
  .community-stats {
    grid-template-columns: 1fr;
  }
  
  .download-options {
    flex-direction: column;
    align-items: center;
  }
  
  .download-btn {
    width: 100%;
    max-width: 300px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 48px;
  }
  
  .footer-links {
    flex-wrap: wrap;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .consumer-section {
    padding: 60px 24px;
  }
  
  .community-stat .stat-num {
    font-size: 48px;
  }
}


/* ══════════════════════════════════════════════════════════════════
   404 ERROR PAGE STYLES
   ══════════════════════════════════════════════════════════════════ */

/* ── Error Hero Section ──────────────────────────────────────── */
.error-hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 40px 80px;
}

.error-code {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(120px, 20vw, 280px);
  line-height: 0.85;
  letter-spacing: -4px;
  color: rgba(125, 249, 168, 0.15);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 0;
  pointer-events: none;
}

.error-hero h1 {
  position: relative;
  z-index: 1;
}

.error-hero .hero-sub {
  max-width: 600px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.error-actions {
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ── Launcher Preview Section ────────────────────────────────── */
.launcher-preview {
  text-align: center;
}

.launcher-preview .section-lead {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.launcher-preview .features-grid {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(3, 1fr);
}

.download-cta-wrapper {
  margin-top: 48px;
  text-align: center;
}

/* ── 404 Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .error-hero {
    padding: 100px 24px 60px;
  }
  
  .error-code {
    font-size: 100px;
  }
  
  .launcher-preview .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .error-code {
    font-size: 80px;
  }
}


/* ══════════════════════════════════════════════════════════════════
   WAITING LIST PAGE STYLES
   ══════════════════════════════════════════════════════════════════ */

.waitlist-hero {
  min-height: 60vh;
}

.waitlist-section {
  padding: 80px 40px;
}

.waitlist-form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
  max-width: 1000px;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input[type="email"],
.form-group input[type="text"] {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 16px 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}

.form-group input[type="email"]:focus,
.form-group input[type="text"]:focus {
  outline: none;
  border-color: var(--accent-cyan);
  background: var(--bg3);
}

.form-group input::placeholder {
  color: var(--muted);
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-cyan);
  cursor: pointer;
}

.checkbox-group label {
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text);
  cursor: pointer;
}

.waitlist-submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

.waitlist-benefits h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 24px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.benefits-list li:hover {
  border-color: var(--accent-cyan);
}

.benefit-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.benefits-list li span:last-child {
  font-size: 14px;
  color: var(--text);
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  max-width: 1000px;
}

.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 28px;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--accent-cyan);
}

.faq-question {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}

.faq-answer {
  font-size: 14px;
  color: #9a9080;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
  .waitlist-form-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════════
   NAVIGATION INVESTOR LINK STYLES
   ══════════════════════════════════════════════════════════════════ */

.nav-investor {
  color: var(--accent-orange) !important;
  border: 1px solid rgba(176, 156, 255, 0.3);
  padding: 6px 14px !important;
  font-size: 10px !important;
  transition: all 0.2s;
}

.nav-investor:hover {
  background: rgba(176, 156, 255, 0.1);
  border-color: var(--accent-orange);
}

/* Back to client link for investor pages */
.nav-back-client {
  color: var(--accent-cyan) !important;
  border: 1px solid rgba(125, 249, 168, 0.3);
  padding: 6px 14px !important;
  font-size: 10px !important;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-back-client:hover {
  background: rgba(125, 249, 168, 0.1);
  border-color: var(--accent-cyan);
}

.nav-back-client::before {
  content: '←';
  font-size: 12px;
}

/* CTA Button styles for consumer pages */
.nav-cta {
  background: var(--accent-cyan);
  color: var(--bg) !important;
  padding: 10px 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: #fff;
  transform: translateY(-1px);
}
