/* ==========================================================================
   Crypto & Macro — Design System
   DA : teal profond + or, fond clair premium, éditorial.
   Couleurs dérivées du logo officiel (teal #014E4A / or #C69A5C).
   Aucune dépendance JS. Fonts via Google Fonts avec fallback système.
   ========================================================================== */

/* ---- Fonts (fallback gracieux si CDN bloqué : Georgia / system-ui) -------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Marque */
  --teal-900: #01302E;
  --teal-800: #013D3A;
  --teal-700: #014E4A;   /* primaire */
  --teal-600: #0B5D57;
  --teal-500: #12716A;
  --teal-400: #3A8F87;

  --gold:      #C69A5C;   /* or logo */
  --gold-deep: #A87E3D;   /* or lisible sur fond clair */
  --gold-soft: #EADbC1;

  /* Neutres chauds */
  --paper:   #FBFCFB;
  --paper-2: #F3F7F6;     /* pale teal, sections alternées */
  --paper-3: #ECF2F1;
  --line:    #E1EAE8;
  --line-2:  #D3E0DD;

  --ink:    #15211F;      /* titres */
  --ink-2:  #35433F;      /* corps */
  --muted:  #6C7B77;      /* meta */
  --muted-2:#93A29E;

  /* Systeme */
  --maxw: 1180px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(1,49,46,.04), 0 2px 8px rgba(1,49,46,.05);
  --shadow-md: 0 8px 24px -8px rgba(1,49,46,.14), 0 2px 6px rgba(1,49,46,.06);
  --shadow-lg: 0 30px 60px -24px rgba(1,49,46,.28);
  --ease: cubic-bezier(.16,1,.3,1);

  --font-display: 'Fraunces', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  color: var(--ink-2);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: rgba(198,154,92,.28); color: var(--ink); }

/* ---- Layout helpers ------------------------------------------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.bg-alt { background: var(--paper-2); }
.center { text-align: center; }

/* ---- Typographie ---------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); font-weight: 500; line-height: 1.12; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { margin: 0 0 1.1em; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow.no-rule::before { display: none; }

.lead { font-size: 1.18rem; color: var(--ink-2); line-height: 1.6; }
.muted { color: var(--muted); }
.serif-accent { font-family: var(--font-display); font-style: italic; color: var(--teal-700); }

/* filet or décoratif */
.rule-gold { width: 54px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-soft)); border: 0; margin: 20px 0; }

/* ---- Boutons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-sans); font-weight: 600; font-size: .95rem;
  padding: 13px 26px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: all .25s var(--ease); white-space: nowrap;
}
.btn-primary { background: var(--teal-700); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--teal-800); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: var(--teal-900); box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: #d3ac72; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--teal-700); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--teal-700); background: #fff; }
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }

/* ---- Header / Nav --------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,252,251,.82); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 1px 0 rgba(1,49,46,.03); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 52px; width: auto; display: block; }
@media (max-width: 900px) { .nav-logo img { height: 44px; } }
.nav-logo .amp { color: var(--gold-deep); margin: 0 1px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: .93rem; font-weight: 500; color: var(--ink-2); transition: color .2s; }
.nav-links a:hover { color: var(--teal-700); }
.nav-links a.active { color: var(--teal-700); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; color: var(--teal-700); }
.nav-links .btn-mobile { display: none; } /* CTA réservé au menu mobile */

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 26px 24px;
  }
  .nav-links.open .btn-mobile { display: inline-flex; }
  .nav-cta .btn-desktop { display: none; }
}

/* ---- Hero ----------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding: 92px 0 72px; }
.hero-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 64px; align-items: center; }
.hero h1 { margin: 22px 0 20px; }
.hero h1 .accent { color: var(--teal-700); font-style: italic; }
.hero .lead { max-width: 52ch; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
}
/* motif "vague du Léman" subtil */
.wave-motif { position: absolute; right: -8%; top: -12%; width: 620px; height: 620px; opacity: .5; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---- Carte compteur (preuve sociale) ------------------------------------- */
.stat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal-700), var(--gold)); }
.stat-count { font-family: var(--font-display); font-size: 3.4rem; font-weight: 600; color: var(--ink); line-height: 1; letter-spacing: -.02em; }
.stat-label { color: var(--muted); font-size: .95rem; margin-top: 8px; display: flex; align-items: center; gap: 8px; }
.live-dot { width: 8px; height: 8px; border-radius: 999px; background: #2fae7a; flex-shrink: 0; box-shadow: 0 0 0 0 rgba(47,174,122,.5); animation: livePulse 2s ease-in-out infinite; }
@keyframes livePulse { 0%,100% { box-shadow: 0 0 0 0 rgba(47,174,122,.5); } 50% { box-shadow: 0 0 0 6px rgba(47,174,122,0); } }
.js-subscribers { font-variant-numeric: tabular-nums; }
.stat-bar { height: 6px; border-radius: 999px; background: var(--paper-3); overflow: hidden; margin: 22px 0 8px; }
.stat-bar > i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--teal-600), var(--gold)); width: 0; transition: width 1.4s var(--ease); }
.stat-bar-meta { display: flex; justify-content: space-between; font-size: .78rem; color: var(--muted); }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.stat-row .n { font-family: var(--font-display); font-size: 1.35rem; color: var(--teal-700); font-weight: 600; }
.stat-row .t { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-top: 3px; }

/* ---- Bandeau confiance / marquee ----------------------------------------- */
.trust-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.trust-inner { display: flex; align-items: center; gap: 44px; padding: 20px 24px; flex-wrap: wrap; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .86rem; font-weight: 500; }
.trust-item strong { color: var(--teal-700); font-weight: 600; }

/* ---- Tags catégorie ------------------------------------------------------- */
.tag {
  display: inline-block; font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--teal-600); background: #fff;
}
.tag.cat-Bitcoin  { color: #9a6a12; border-color: #e6d3a8; background: #fdf7ea; }
.tag.cat-Macro    { color: var(--teal-700); border-color: #c3ddd9; background: #eef6f4; }
.tag.cat-DeFi     { color: #1f6b53; border-color: #bfe0cf; background: #eef7f1; }
.tag.cat-Altcoins { color: #6b4aa0; border-color: #d8cdea; background: #f4f1fb; }
.tag.cat-Analyse  { color: #4a5a56; border-color: var(--line-2); background: var(--paper-2); }
.tag.cat-Débuter  { color: #b07a2a; border-color: #ecd9b8; background: #fbf5e9; }

/* ---- Grille articles ------------------------------------------------------ */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.section-head h2 { margin-top: 12px; }
.section-head .link { font-size: .92rem; color: var(--teal-700); font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.section-head .link:hover { color: var(--gold-deep); }

.feature-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 28px; margin-bottom: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.card-media { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--paper-3); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: .78rem; color: var(--muted); }
.card h3 { font-size: 1.28rem; line-height: 1.25; color: var(--ink); transition: color .2s; }
.card:hover h3 { color: var(--teal-700); }
.card.feature h3 { font-size: 1.7rem; }
.card p { font-size: .95rem; color: var(--muted); margin: 12px 0 0; }
.card .read { margin-top: auto; padding-top: 18px; font-size: .85rem; font-weight: 600; color: var(--teal-700); display: inline-flex; align-items: center; gap: 6px; }

/* carte horizontale (sidebar / archive compacte) */
.card-h { display: grid; grid-template-columns: 116px 1fr; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; align-items: center; transition: box-shadow .3s, border-color .3s, transform .3s; }
.card-h:hover { box-shadow: var(--shadow-sm); border-color: var(--line-2); transform: translateY(-2px); }
.card-h .card-media { border-radius: var(--radius-sm); aspect-ratio: 1; }
.card-h h3 { font-size: 1.02rem; line-height: 1.3; }
.card-h .card-meta { margin-bottom: 8px; }

@media (max-width: 900px) {
  .feature-grid, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ---- Section vidéo -------------------------------------------------------- */
.video-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: center; }
.video-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-lg); background: #000; }
.video-frame .ratio { position: relative; aspect-ratio: 16/9; }
.video-frame iframe, .video-frame .ratio > * { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; color: var(--ink-2); }
.checklist svg { flex-shrink: 0; margin-top: 3px; color: var(--gold-deep); }
@media (max-width: 900px) { .video-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---- Piliers / "le projet" ------------------------------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.pillar { display: flex; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--line); transition: padding-left .3s var(--ease); }
.pillar:last-child { border-bottom: 0; }
.pillar:hover { padding-left: 8px; }
.pillar .num { font-family: var(--font-display); font-size: 1rem; color: var(--gold-deep); font-weight: 600; flex-shrink: 0; width: 34px; }
.pillar h3 { font-size: 1.12rem; margin-bottom: 6px; }
.pillar p { font-size: .95rem; color: var(--muted); margin: 0; }
blockquote.pull { border-left: 3px solid var(--gold); padding: 6px 0 6px 22px; margin: 28px 0; font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--teal-700); line-height: 1.5; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }

/* ---- Bloc newsletter (CTA) ------------------------------------------------ */
.news-block { position: relative; overflow: hidden; border-radius: 22px; background: linear-gradient(135deg, var(--teal-800), var(--teal-700) 55%, var(--teal-600)); color: #fff; padding: 60px; box-shadow: var(--shadow-lg); }
.news-block::after { content: ''; position: absolute; right: -60px; top: -80px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(198,154,92,.28), transparent 65%); pointer-events: none; }
.news-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.news-block h2 { color: #fff; }
.news-block h2 .accent { color: var(--gold); font-style: italic; }
.news-block .lead { color: rgba(255,255,255,.82); }
.news-block .checklist li { color: rgba(255,255,255,.9); }
.news-block .checklist svg { color: var(--gold); }
.news-form { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 28px; backdrop-filter: blur(4px); }
.news-form.card-light { background: #fff; border: 1px solid var(--line); }
.news-form label { font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.8); display: block; margin-bottom: 8px; }
.news-form.card-light label { color: var(--muted); }
.news-form input[type=email] {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: #fff; font-size: 1rem; font-family: var(--font-sans);
  transition: border-color .2s, background .2s;
}
.news-form.card-light input[type=email] { border-color: var(--line-2); background: var(--paper); color: var(--ink); }
.news-form input[type=email]::placeholder { color: rgba(255,255,255,.5); }
.news-form.card-light input[type=email]::placeholder { color: var(--muted-2); }
.news-form input[type=email]:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.12); }
.news-form.card-light input[type=email]:focus { background: #fff; }
.news-form .btn { width: 100%; justify-content: center; margin-top: 14px; }
.news-form .fine { font-size: .74rem; color: rgba(255,255,255,.6); margin: 14px 0 0; text-align: center; }
.news-form.card-light .fine { color: var(--muted); }
.form-status { font-size: .85rem; margin-top: 12px; text-align: center; display: none; }
.form-status.error { display: block; color: #ffd7c2; }
.news-form.card-light .form-status.error { color: #b3402a; }
.form-status.ok { display: block; color: var(--gold-soft); }
@media (max-width: 900px) { .news-block { padding: 40px 28px; } .news-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---- Article (page single) ------------------------------------------------ */
.article-hero { padding: 56px 0 20px; }
.article-hero .meta { display: flex; align-items: center; gap: 14px; margin: 16px 0; font-size: .82rem; color: var(--muted); flex-wrap: wrap; }
.article-hero h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); max-width: 20ch; }
.article-hero .excerpt { font-size: 1.2rem; color: var(--ink-2); max-width: 62ch; margin-top: 18px; font-family: var(--font-display); font-weight: 400; line-height: 1.55; }
.article-cover { margin: 36px 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/8; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.cover-credit { font-size: .72rem; color: var(--muted-2); margin: 8px 0 0; text-align: right; }

.prose { font-size: 1.12rem; line-height: 1.78; color: var(--ink-2); }
.prose > * + * { margin-top: 1.35em; }
.prose h2 { font-size: 1.75rem; margin-top: 1.9em; color: var(--ink); }
.prose h3 { font-size: 1.3rem; margin-top: 1.6em; color: var(--teal-700); }
.prose p { margin: 0; }
.prose a { color: var(--teal-700); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--gold); }
.prose a:hover { color: var(--gold-deep); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin: .5em 0; }
.prose li::marker { color: var(--gold-deep); }
.prose img { border-radius: var(--radius); margin: 1.8em 0; border: 1px solid var(--line); }
.prose blockquote { border-left: 3px solid var(--gold); padding: 4px 0 4px 22px; font-family: var(--font-display); font-style: italic; color: var(--teal-700); font-size: 1.25rem; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.2em 0; }

.article-foot { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--line); }
.byline { display: flex; align-items: center; gap: 14px; }
.byline .av { width: 46px; height: 46px; border-radius: 999px; background: linear-gradient(135deg, var(--teal-700), var(--teal-500)); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; }
.byline .nm { font-weight: 600; color: var(--ink); font-size: .95rem; }
.byline .rl { font-size: .82rem; color: var(--muted); }

/* ---- Footer --------------------------------------------------------------- */
.site-footer { background: var(--teal-900); color: rgba(255,255,255,.72); padding: 64px 0 34px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.site-footer .f-logo { font-family: var(--font-display); font-size: 1.5rem; color: #fff; font-weight: 600; }
.site-footer .f-logo .amp { color: var(--gold); }
.site-footer .f-logo-img { height: 76px; width: auto; display: block; }
.site-footer p { font-size: .9rem; color: rgba(255,255,255,.6); max-width: 42ch; }
.site-footer h4 { color: #fff; font-family: var(--font-sans); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.site-footer a { font-size: .9rem; color: rgba(255,255,255,.7); transition: color .2s; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .8rem; color: rgba(255,255,255,.45); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---- Animations reveal ---------------------------------------------------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
/* Amélioration progressive : le contenu reste visible si JS est absent ou si
   l'observer ne se déclenche pas. On ne masque que lorsque JS est actif. */
.reveal { opacity: 1; }
.js .reveal { opacity: 0; }
.js .reveal.in { animation: fadeUp .8s var(--ease) both; }
.d1 { animation-delay: .08s; } .d2 { animation-delay: .16s; } .d3 { animation-delay: .24s; } .d4 { animation-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal, .reveal.in { opacity: 1; animation: none; } .card, .btn { transition: none; } }

/* ---- Tableau de performance ---------------------------------------------- */
.perf-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.perf-table { width: 100%; border-collapse: collapse; font-size: 1rem; min-width: 460px; }
.perf-table th, .perf-table td { padding: 14px 22px; text-align: right; border-bottom: 1px solid var(--line); }
.perf-table th:first-child, .perf-table td:first-child { text-align: left; }
.perf-table thead th { font-family: var(--font-sans); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); background: var(--paper-2); vertical-align: bottom; }
.perf-table tbody tr:last-child td { border-bottom: 0; }
.perf-table tbody td { font-variant-numeric: tabular-nums; color: var(--ink-2); }
.perf-table tbody td:first-child { color: var(--ink); }
.perf-table .tick { color: var(--muted-2); font-size: .78rem; font-weight: 500; }
.perf-table tbody tr.crypto { background: linear-gradient(90deg, rgba(198,154,92,.10), rgba(198,154,92,.03)); }
.perf-table tbody tr.crypto td { color: var(--teal-700); font-weight: 600; }
.perf-table tbody tr.crypto td:first-child { color: var(--teal-800); }
.perf-table tbody tr.crypto .tick { color: var(--gold-deep); }

/* ---- Breadcrumb / retour -------------------------------------------------- */
.back-link { display: inline-flex; align-items: center; gap: 7px; font-size: .86rem; color: var(--muted); font-weight: 500; }
.back-link:hover { color: var(--teal-700); }

/* ---- Page header générique ----------------------------------------------- */
.page-head { padding: 72px 0 40px; border-bottom: 1px solid var(--line); }
.page-head h1 { margin-top: 14px; }
.page-head p { max-width: 60ch; margin-top: 14px; color: var(--muted); }
