/* WordPress — compléments à la CSS issue de la landing */

img {
  max-width: 100%;
  height: auto;
}

.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  clip: auto !important;
  width: auto;
  height: auto;
  padding: 8px 16px;
  background: var(--gold);
  color: var(--bg);
  z-index: 100000;
  left: 8px;
  top: 8px;
  position: fixed;
}

body.admin-bar .nav {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .nav {
    top: 46px;
  }
}

/* Menus WP dans la barre type landing */
.nav__links .menu,
.nav__links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.nav__links .menu-item {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links .menu-item a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-mid);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
  display: inline-block;
}

.nav__links .menu-item a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.nav__links .current-menu-item > a,
.nav__links .current_page_item > a {
  color: var(--white);
}

/* Contenu éditeur sous la home */
.block-editor-content,
.entry-content,
.page-content {
  padding-block: 48px;
}

.block-editor-content a,
.entry-content a,
.page-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content h2,
.page-content h2 {
  margin-top: 1.5em;
  font-size: 1.5rem;
}

.archive-layout,
.page-layout,
.single-layout {
  padding: 96px 0 80px;
}

.archive-card {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.archive-card__title {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.archive-card__title a {
  color: var(--white);
}

.archive-card__title a:hover {
  color: var(--gold);
}

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

:root {
  --bg:      #010914;
  --bg-1:    #040D1A;
  --bg-2:    #070E1C;
  --card:    #080F1D;
  --card-2:  #0B1424;
  --card-3:  #0E1929;

  --gold:    #e0c484;
  --gold-2:  #f0d9a0;
  --gold-3:  #c9ad6a;
  --gold-glow: rgba(224,196,132,.13);
  --gold-border: rgba(224,196,132,.18);

  --white:   #F4F6FA;
  --grey-hi: rgba(244,246,250,.72);
  --grey-mid:#8A9AB0;
  --grey-lo: rgba(244,246,250,.35);

  --border:  rgba(255,255,255,.06);
  --border-2:rgba(255,255,255,.1);

  --r-sm: 8px;
  --r-md: 13px;
  --r-lg: 18px;
  --r-xl: 26px;
  --r-2xl:34px;
  --max-w: 1160px;
  --sv: 116px;

  --font: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --cockpit-cyan: #6bc9d4;
  --cockpit-cyan-dim: rgba(107, 201, 212, 0.88);
  --cockpit-violet: #b9a8ff;
  --cockpit-glass: rgba(8, 15, 29, 0.78);
  --glass-bg: linear-gradient(165deg, rgba(14, 22, 40, 0.78) 0%, rgba(5, 10, 22, 0.92) 100%);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-inset: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  --glass-shadow: 0 22px 56px rgba(0, 0, 0, 0.45);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

input,
textarea,
select,
button {
  font-family: inherit;
}

/* Empêche tout débordement horizontal parasite (mobile/tablette). */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
::selection { background: var(--gold-glow); color: var(--white); }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 28px;
}

/* ── TYPOGRAPHY ─────────────────────────────────────── */
.t-display {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
}
.t-h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.028em;
}
.t-h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.018em;
}
.t-body { font-size: clamp(.98rem, 1.7vw, 1.06rem); line-height: 1.82; }
.t-sm   { font-size: .88rem; line-height: 1.68; }
.t-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

/* ── UTILS ──────────────────────────────────────────── */
.c-gold  { color: var(--gold); }
.c-gold2 { color: var(--gold-2); }
.c-dim   { color: var(--grey-hi); }
.c-muted { color: var(--grey-mid); }
/* Brand Solide. in running text = regular italic + gold */
.brand {
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}

/* Noise grain overlay */
.grain::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 0;
}

/* Reveal */
.rev {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .62s ease, transform .62s ease;
}
.rev.on { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .18s; }
.d3 { transition-delay: .28s; }
.d4 { transition-delay: .38s; }
.d5 { transition-delay: .48s; }

/* Section tag */
.stag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold);
}
.stag::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ── NAV ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background .35s, box-shadow .35s, backdrop-filter .35s;
}
.nav.stuck {
  background: rgba(1, 9, 20, 0.82);
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(224, 196, 132, 0.12), 0 18px 48px rgba(0, 0, 0, 0.35);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__inner > * { min-width: 0; }
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo img { height: 28px; width: auto; display: block; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.nav__link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--grey-mid);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,.05); }
.nav__link--active { color: var(--white); }

.nav__right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav__wp {
  font-size: .84rem;
  font-weight: 600;
  color: var(--grey-mid);
  padding: 8px 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: color .2s, border-color .2s;
}
.nav__wp:hover { color: var(--gold); border-color: var(--gold-border); }

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--bg);
  font-size: .875rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 100px;
  font-family: var(--font);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-cta:hover {
  background: var(--gold-2);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px var(--gold-glow);
}

.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(8, 15, 29, 0.82);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  color: var(--white);
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.mobile-nav {
  position: absolute;
  inset: 100% 0 auto 0;
  background: rgba(1, 9, 20, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 16px 0;
}
.mobile-nav__panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  box-shadow: var(--glass-shadow), var(--glass-inset);
  overflow: hidden;
}
.mobile-nav__link {
  display: block;
  padding: 13px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--grey-hi);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-nav__link--withico {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-nav__ico {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
  border-radius: 5px;
}
.mobile-nav__link:last-child { border-bottom: none; }
.mobile-nav__link--page {
  color: var(--gold);
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 148px 0 108px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 65% at 88% 18%, rgba(107, 201, 212, 0.06) 0%, transparent 52%),
    radial-gradient(ellipse 70% 55% at 8% 72%, rgba(185, 168, 255, 0.07) 0%, transparent 48%),
    linear-gradient(138deg, #010814 0%, #040f1c 45%, #020a14 100%);
  box-shadow: inset 0 -100px 140px rgba(0, 0, 0, 0.35);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
}

.hero__blob {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(100px);
}
.hero__blob--a {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(224,196,132,.09) 0%, transparent 70%);
  top: -120px; right: -100px;
}
.hero__blob--b {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(224,196,132,.05) 0%, transparent 70%);
  bottom: -60px; left: -80px;
}
.hero__grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(224,196,132,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224,196,132,.025) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero__ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(224,196,132,.06);
  pointer-events: none;
}
.hero__ring--1 { width: 680px; height: 680px; top: -180px; right: -200px; }
.hero__ring--2 { width: 980px; height: 980px; top: -380px; right: -420px; border-color: rgba(224,196,132,.03); }

.hero__layout {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,196,132,.08);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pdot 2s ease-in-out infinite;
}
@keyframes pdot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.4; transform:scale(.72); }
}

.hero__title.t-display {
  color: var(--white);
  margin-bottom: 22px;
  font-size: clamp(1.96rem, 4.2vw, 3.36rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero__sub { color: var(--grey-hi); max-width: 500px; margin-bottom: 42px; }

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--bg);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 34px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: background .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--gold-glow);
}

.btn-primary--hero {
  font-size: 0.85rem;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--grey-hi);
  font-size: .94rem;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1px solid var(--border-2);
  cursor: pointer;
  font-family: var(--font);
  transition: background .2s, color .2s, border-color .2s;
}
.btn-secondary:hover { background: rgba(255,255,255,.05); color: var(--white); border-color: rgba(255,255,255,.18); }

.hero__trust {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(6px, 1.5vw, 10px);
  font-size: clamp(.72rem, 1.4vw, .83rem);
  color: var(--grey-mid);
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.hero__trust::-webkit-scrollbar { display: none; }
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  white-space: nowrap;
}
.hero__sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.hero__trust-ico {
  flex-shrink: 0;
  color: var(--gold);
  display: block;
}
.hero__trust .s {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--grey-mid);
  opacity: .4;
  flex-shrink: 0;
}

.hero__legal {
  margin-top: 14px;
  max-width: 36rem;
  font-size: clamp(0.68rem, 1.35vw, 0.76rem);
  line-height: 1.5;
  color: rgba(138, 154, 176, 0.88);
}

/* Hero cockpit (dashboard immersif) */
.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
}
.hero-cockpit {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  min-height: 360px;
}
.hero-cockpit__rings {
  position: absolute;
  inset: -6%;
  pointer-events: none;
  border-radius: 40%;
  opacity: 0.45;
  background: repeating-conic-gradient(from 0deg, transparent 0deg 9deg, rgba(224,196,132,.045) 9deg 10deg);
  mask-image: radial-gradient(ellipse 78% 78% at 50% 42%, black 22%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 78% 78% at 50% 42%, black 22%, transparent 70%);
  animation: heroRingDrift 48s linear infinite;
}
@keyframes heroRingDrift { to { transform: rotate(360deg); } }
.hero-cockpit__stage {
  position: relative;
  perspective: 1500px;
  padding: 8px 0 20px;
}
.hero-cockpit__stack {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(5deg) rotateY(-8deg);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-cockpit:hover .hero-cockpit__stack { transform: rotateX(3deg) rotateY(-4deg); }
.hero-cockpit-card {
  position: absolute;
  z-index: 3;
  width: min(198px, 46vw);
  padding: 15px 17px;
  border-radius: 17px;
  background: var(--cockpit-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  font-size: 0.72rem;
  color: var(--grey-mid);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.hero-cockpit-card:hover {
  border-color: rgba(224, 196, 132, 0.3);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.58), 0 0 48px rgba(224, 196, 132, 0.1);
}
.hero-cockpit-card--projection {
  top: -9%;
  left: 47%;
  transform: rotate(-3.5deg) translateZ(28px);
}
.hero-cockpit-card--delta {
  bottom: 14%;
  right: -13%;
  transform: rotate(4deg) translateZ(36px);
}
.hero-cockpit-card__label {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: 8px;
}
.hero-cockpit-card__k {
  font-size: 1.38rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.hero-cockpit-card__k small {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(95, 210, 180, 0.95);
}
.hero-cockpit-card__note { margin-top: 8px; font-size: 0.68rem; line-height: 1.45; color: var(--grey-mid); }
.hero-cockpit-card__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.hero-cockpit-card__meta { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey-mid); }
.hero-cockpit-card__v { font-weight: 700; font-size: 0.95rem; color: var(--white); margin-top: 2px; }
.hero-cockpit-card__v--soft { font-weight: 600; font-size: 0.82rem; color: var(--grey-hi); }
.hero-cockpit-card__col--end { text-align: right; }
.hero-cockpit-main {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 408px;
  border-radius: 24px;
  padding: 22px 22px 18px;
  background: linear-gradient(168deg, rgba(14, 22, 40, 0.95) 0%, rgba(5, 9, 20, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(224, 196, 132, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.hero-cockpit-main__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.hero-cockpit-main__title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cockpit-cyan-dim);
  margin-bottom: 4px;
}
.hero-cockpit-main__h {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.hero-cockpit-main__live {
  flex-shrink: 0;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(244, 246, 250, 0.48);
  padding: 6px 11px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.32);
}
.hero-cockpit-main__live span { color: var(--cockpit-cyan); margin-right: 4px; }
.hero-cockpit-main__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 16px;
}
.hero-cockpit-kpi__label { font-size: 0.65rem; color: var(--grey-mid); margin-bottom: 4px; }
.hero-cockpit-kpi__val {
  font-size: clamp(1.62rem, 4vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--white);
  line-height: 1;
}
.hero-cockpit-kpi__delta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cockpit-cyan-dim);
}
.hero-cockpit-kpi__hint { font-weight: 600; color: var(--grey-mid); }
.hero-cockpit-spark { width: 100%; height: 44px; margin-top: 10px; display: block; }
.hero-cockpit-spark path.cockpit-line {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: heroLineIn 2.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes heroLineIn { to { stroke-dashoffset: 0; } }
.hero-cockpit-donut-wrap { position: relative; width: 94px; height: 94px; flex-shrink: 0; }
.hero-cockpit-donut {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    var(--gold) 0deg 151deg,
    var(--cockpit-cyan) 151deg 252deg,
    var(--cockpit-violet) 252deg 318deg,
    rgba(244, 246, 250, 0.2) 318deg 360deg
  );
  box-shadow: inset 0 0 22px rgba(0, 0, 0, 0.4), 0 0 32px rgba(224, 196, 132, 0.12);
}
.hero-cockpit-donut::after {
  content: '';
  position: absolute;
  inset: 21px;
  border-radius: 50%;
  background: linear-gradient(165deg, #050c18 0%, #0b1426 100%);
  box-shadow: inset 0 2px 14px rgba(0, 0, 0, 0.55);
}
.hero-cockpit-donut__cap {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-cockpit-donut__cap strong { font-size: 0.88rem; font-weight: 800; color: var(--white); }
.hero-cockpit-donut__cap span { font-size: 0.55rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--grey-mid); }
.hero-cockpit-alloc { margin-bottom: 14px; }
.hero-cockpit-alloc__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.hero-cockpit-alloc__head b {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-hi);
}
.hero-cockpit-alloc__hint { font-size: 0.58rem; color: var(--grey-mid); }
.hero-cockpit-alloc__row {
  display: grid;
  grid-template-columns: 44px 1fr 34px;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--grey-hi);
}
.hero-cockpit-alloc__bar {
  height: 5px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.hero-cockpit-alloc__bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform-origin: left center;
  transform: scaleX(0.12);
  opacity: 0.5;
  animation: heroBarGrow 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-cockpit-alloc__row:nth-child(3) .hero-cockpit-alloc__bar i { animation-delay: 0.08s; background: linear-gradient(90deg, var(--cockpit-cyan), #489fb0); }
.hero-cockpit-alloc__row:nth-child(4) .hero-cockpit-alloc__bar i { animation-delay: 0.16s; background: linear-gradient(90deg, var(--cockpit-violet), #8b7fd9); }
.hero-cockpit-alloc__row:nth-child(5) .hero-cockpit-alloc__bar i { animation-delay: 0.24s; background: linear-gradient(90deg, rgba(244,246,250,.45), rgba(244,246,250,.2)); }
.hero-cockpit-alloc__pct { text-align: right; font-weight: 700; font-size: 0.62rem; }
.hero-cockpit-alloc__pct--gold { color: var(--gold); }
.hero-cockpit-alloc__pct--cyan { color: var(--cockpit-cyan); }
.hero-cockpit-alloc__pct--vio { color: var(--cockpit-violet); }
.hero-cockpit-alloc__pct--sl { color: var(--grey-hi); }
@keyframes heroBarGrow {
  from { transform: scaleX(0.08); opacity: 0.35; }
  to { transform: scaleX(1); opacity: 1; }
}
.hero-cockpit-goal { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.hero-cockpit-goal__box {
  padding: 11px 12px;
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.hero-cockpit-goal__box:hover { border-color: rgba(224, 196, 132, 0.2); background: rgba(224, 196, 132, 0.04); }
.hero-cockpit-goal__lbl {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-mid);
}
.hero-cockpit-goal__t { font-size: 0.8rem; font-weight: 700; color: var(--white); margin-top: 4px; line-height: 1.25; }
.hero-cockpit-goal__track { margin-top: 8px; height: 4px; border-radius: 100px; background: rgba(255, 255, 255, 0.07); overflow: hidden; }
.hero-cockpit-goal__fill { height: 100%; border-radius: inherit; }
.hero-cockpit-goal__fill--gold { width: 22%; background: linear-gradient(90deg, var(--gold), var(--gold-2)); }
.hero-cockpit-goal__fill--cyan { width: 31%; background: linear-gradient(90deg, var(--cockpit-cyan), #489fb0); }
.hero-cockpit-goal__stat { margin-top: 4px; font-size: 0.62rem; font-weight: 700; }
.hero-cockpit-goal__stat--gold { color: var(--gold); }
.hero-cockpit-goal__stat--cyan { color: var(--cockpit-cyan); }
.hero-cockpit-time {
  display: flex;
  gap: 6px;
  align-items: stretch;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.hero-cockpit-time__step {
  flex: 1;
  text-align: center;
  padding: 9px 4px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.hero-cockpit-time__step:hover {
  border-color: rgba(224, 196, 132, 0.22);
  background: rgba(224, 196, 132, 0.06);
  transform: translateY(-1px);
}
.hero-cockpit-time__y { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.06em; color: var(--grey-mid); }
.hero-cockpit-time__p { font-size: 0.74rem; font-weight: 700; color: var(--white); margin-top: 3px; }
@media (prefers-reduced-motion: reduce) {
  .hero-cockpit__rings { animation: none; }
  .hero-cockpit-spark path.cockpit-line { animation: none; stroke-dashoffset: 0; }
  .hero-cockpit-alloc__bar i { animation: none; transform: scaleX(1); opacity: 1; }
  .hero-cockpit:hover .hero-cockpit__stack { transform: rotateX(5deg) rotateY(-8deg); }
}

/* ── SECTION: ACTIFS PATRIMOINE (focus) ─────────────── */
.asset-focus {
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 85% 0%, rgba(107, 201, 212, 0.06) 0%, transparent 45%),
    radial-gradient(ellipse 55% 45% at 0% 100%, rgba(185, 168, 255, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #010914 0%, #050f1a 45%, #040d1a 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.asset-focus::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background: repeating-linear-gradient(-18deg, transparent 0 14px, rgba(224,196,132,.018) 14px 15px);
}
.asset-focus .container { position: relative; z-index: 1; }
.asset-focus__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}
.asset-focus__head .stag { justify-content: center; }
.asset-focus__head h2 { margin-bottom: 10px; }
.asset-focus__sub { color: var(--grey-hi); font-size: clamp(.92rem, 1.5vw, 1.02rem); line-height: 1.75; }
.asset-focus__sub .asset-focus__asset-def {
  display: block;
  padding-top: 30px;
  line-height: 1.55;
  font-size: 0.92em;
  color: var(--grey-mid);
}
.asset-focus__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.af-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 22px 16px;
  text-align: center;
  border-top: 3px solid var(--gold);
  box-shadow: var(--glass-shadow), var(--glass-inset);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform .22s, border-color .22s, box-shadow .22s;
}
.af-card:hover {
  transform: translateY(-3px);
  border-color: rgba(224, 196, 132, 0.28);
  box-shadow: 0 20px 52px rgba(0,0,0,.48), 0 0 36px rgba(224, 196, 132, 0.08), var(--glass-inset);
}
.af-illus {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  border-radius: var(--r-md);
  background: rgba(224,196,132,.1);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.af-illus .icon-emoji {
  font-size: 1.65rem;
  line-height: 1;
  font-family: system-ui, "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}
.af-title { font-size: .86rem; font-weight: 700; color: var(--white); margin-bottom: 6px; letter-spacing: -0.02em; }
.af-desc  { font-size: .76rem; color: var(--grey-mid); line-height: 1.55; }

/* ── SECTION: VISION ────────────────────────────────── */
.vision {
  padding: var(--sv) 0;
  position: relative;
  background:
    radial-gradient(ellipse 65% 55% at 100% 20%, rgba(185, 168, 255, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 80%, rgba(107, 201, 212, 0.06) 0%, transparent 48%),
    linear-gradient(160deg, var(--bg-1) 0%, var(--bg-2) 100%);
  overflow: hidden;
}
.vision::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 -80px 100px rgba(0, 0, 0, 0.25);
}
.vision__blob {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
}
.vision__blob--1 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(224,196,132,.07) 0%, transparent 65%);
  bottom: -140px; right: -60px;
}
.vision__blob--2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(107, 201, 212, 0.08) 0%, rgba(224,196,132,.04) 40%, transparent 68%);
  top: -100px; left: -80px;
}
.vision__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.vision__text { color: var(--grey-hi); margin-bottom: 28px; }
.vision__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.vpill {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 15px;
  font-size: .84rem;
  color: var(--grey-hi);
  transition: background .2s, border-color .2s, color .2s;
}
.vpill:hover { background: rgba(224,196,132,.08); border-color: var(--gold-border); color: var(--gold); }

.vcards { display: flex; flex-direction: column; gap: 12px; }
.vc {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--glass-shadow), var(--glass-inset);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.vc:hover {
  border-color: rgba(224, 196, 132, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.42), 0 0 32px rgba(224, 196, 132, 0.06), var(--glass-inset);
}
.vc-ico {
  width: 38px; height: 38px;
  background: rgba(224,196,132,.09);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  font-family: system-ui, "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  flex-shrink: 0;
}
.vc-title { font-size: .92rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.vc-desc  { font-size: .83rem; color: var(--grey-mid); }

/* ── SECTION: COMMUNAUTE ───────────────────────────── */
.community {
  padding: 100px 0 100px;
  background:
    radial-gradient(ellipse 72% 52% at 10% 42%, rgba(255, 142, 168, 0.08) 0%, transparent 56%),
    radial-gradient(ellipse 58% 48% at 92% 58%, rgba(168, 182, 255, 0.1) 0%, transparent 52%),
    linear-gradient(180deg, var(--bg-2) 0%, #040d1a 100%);
}
.community__inner {
  width: calc(70% * 1.05); /* +5 % vs 70 % */
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background:
    linear-gradient(128deg, rgba(255, 160, 178, 0.06) 0%, var(--glass-bg) 42%, rgba(160, 175, 255, 0.05) 100%);
  border: 1px solid rgba(255, 172, 188, 0.16);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  box-shadow:
    var(--glass-shadow),
    var(--glass-inset),
    0 0 48px rgba(255, 148, 172, 0.06),
    0 0 36px rgba(168, 182, 255, 0.05);
}
.community__copy {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 60%;
}
.community__copy .stag {
  margin-bottom: 8px;
}
.community__copy h2 {
  margin-bottom: 8px;
}
.community__copy p {
  max-width: 100%;
}
.community__cta {
  flex-shrink: 0;
}
.community__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px; /* ~ +20 % vs 10px */
  flex: 0 0 auto;
  /* Largeur minimale ~ +20 % vs l’ancienne bande floaters (156px) ; le CTA peut élargir au-delà */
  min-width: calc(156px * 1.2);
  padding-inline: calc(0.5rem * 1.2);
  box-sizing: border-box;
}
.community__floaters {
  position: relative;
  height: calc(56px * 1.2);
  width: calc(156px * 1.2);
}
.community__floater {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(8, 15, 29, 0.78);
  border: 1px solid rgba(255, 184, 198, 0.38);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32), 0 0 20px rgba(255, 160, 180, 0.12);
  font-size: 1.2rem;
  line-height: 1;
  font-family: system-ui, "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}
.community__floater--a {
  left: 0;
  top: calc(10px * 1.2);
  width: calc(36px * 1.2);
  height: calc(36px * 1.2);
  font-size: 1.05rem;
  animation: communityFloatA 5.2s ease-in-out infinite;
}
.community__floater--b {
  left: calc(48px * 1.2);
  top: 0;
  width: calc(46px * 1.2);
  height: calc(46px * 1.2);
  font-size: 1.35rem;
  animation: communityFloatB 6.2s ease-in-out infinite;
}
.community__floater--c {
  left: calc(106px * 1.2);
  top: calc(8px * 1.2);
  width: calc(42px * 1.2);
  height: calc(42px * 1.2);
  font-size: 1.2rem;
  animation: communityFloatC 5.7s ease-in-out infinite;
}
@keyframes communityFloatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes communityFloatB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes communityFloatC {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ── SECTION: OUTILS (bento / cockpit) ───────────────── */
.tools {
  padding: calc(var(--sv) * 0.95) 0;
  position: relative;
  background: linear-gradient(185deg, #030a14 0%, var(--bg-2) 42%, var(--bg-1) 100%);
  overflow: hidden;
}
.tools::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 85% 55% at 50% -5%, rgba(185, 168, 255, 0.11) 0%, transparent 52%),
    radial-gradient(ellipse 55% 45% at 8% 60%, rgba(107, 201, 212, 0.06) 0%, transparent 48%),
    radial-gradient(ellipse 50% 40% at 95% 75%, rgba(224, 196, 132, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.tools::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cpath fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1' d='M14 0v11m0 27v11M0 24.5h28M14 0l-7 4m7-4l7 4m-7 45l-7-4m7 4l7-4'/%3E%3C/svg%3E");
  background-size: 28px 49px;
}
.tools .container { position: relative; z-index: 1; }
.tools__head {
  text-align: center;
  max-width: min(680px, 100%);
  margin: 0 auto clamp(36px, 5vw, 52px);
}
.tools__head h2 {
  margin-bottom: 12px;
  letter-spacing: -0.032em;
}
.tools__head .stag { justify-content: center; }

.tools__actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

.tools__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
}

/* Page d’accueil : grille 3×2 identique au dashboard app (priorité sur la grille 12 cols) */
.tools .tools__grid.app-dash__grid--mosaic {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: min(1120px, 100%);
  margin-inline: auto;
  gap: clamp(14px, 2vw, 20px);
}
@media (max-width: 1024px) {
  .tools .tools__grid.app-dash__grid--mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .tools .tools__grid.app-dash__grid--mosaic {
    grid-template-columns: 1fr;
  }
}

/* Accueil — grille outils : moins de hauteur (évite l’espace entre texte et « Accéder ») */
.tools .tools__grid.app-dash__grid--mosaic .app-dash__card {
  min-height: 0;
  /* +5 % vs version compacte (hauteur perçue des cartes) */
  gap: clamp(8.4px, 1.47vw, 12.6px);
  padding: clamp(12.6px, 1.89vw, 16.8px) clamp(14px, 2vw, 20px);
}
.tools .tools__grid.app-dash__grid--mosaic .app-dash__card-top {
  gap: clamp(10.5px, 1.68vw, 14.7px);
}
.tools .tools__grid.app-dash__grid--mosaic .app-dash__card-visual {
  width: 50px;
  height: 50px;
  border-radius: 13px;
}
.tools .tools__grid.app-dash__grid--mosaic .app-dash__card-icon {
  font-size: clamp(1.365rem, 2.415vw, 1.628rem);
}
.tools .tools__grid.app-dash__grid--mosaic .app-dash__card p {
  flex-grow: 0;
  margin-bottom: clamp(8.4px, 1.26vw, 12.6px);
}
.tools .tools__grid.app-dash__grid--mosaic .app-dash__card .app-dash__cta.btn-primary,
.tools .tools__grid.app-dash__grid--mosaic .app-dash__card .app-dash__cta {
  margin-top: 0;
}
.tools .tools__grid.app-dash__grid--mosaic .app-dash__card-body > .badge {
  margin-top: 0;
}

@media (min-width: 981px) {
  /* Bloc grille centré dans la page ; lignes 1 et 2 alignées sur la même bande */
  .tools__grid {
    max-width: min(960px, 100%);
    margin-inline: auto;
  }
  .tools__grid > .tc:not(.tc--r2a):not(.tc--r2b):not(.tc--r2c):nth-child(1) {
    grid-column: 1 / span 4;
  }
  .tools__grid > .tc:not(.tc--r2a):not(.tc--r2b):not(.tc--r2c):nth-child(2) {
    grid-column: 5 / span 4;
  }
  .tools__grid > .tc:not(.tc--r2a):not(.tc--r2b):not(.tc--r2c):nth-child(3) {
    grid-column: 9 / span 4;
  }
  .tools__grid > .tc--r2a {
    grid-row: 2;
    grid-column: 1 / span 4;
  }
  .tools__grid > .tc--r2b {
    grid-row: 2;
    grid-column: 5 / span 4;
  }
  .tools__grid > .tc--r2c {
    grid-row: 2;
    grid-column: 9 / span 4;
  }
}

.tc {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: clamp(256px, 33vw, 308px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass-shadow), var(--glass-inset);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform .26s ease, border-color .26s ease, box-shadow .26s ease;
}
.tc::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .26s ease;
  background: radial-gradient(120% 80% at 50% 0%, rgba(224, 196, 132, 0.08) 0%, transparent 55%);
}
.tc:hover::before { opacity: 1; }
.tc:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 196, 132, 0.22);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.48),
    0 0 48px rgba(185, 168, 255, 0.07),
    0 0 36px rgba(107, 201, 212, 0.05),
    var(--glass-inset);
}

.tc-visual {
  flex: 0 0 148px;
  height: 148px;
  min-height: 148px;
  max-height: 148px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(ellipse 90% 85% at 50% 20%, rgba(185, 168, 255, 0.12) 0%, transparent 58%),
    linear-gradient(168deg, rgba(107, 201, 212, 0.1) 0%, rgba(224, 196, 132, 0.08) 42%, rgba(5, 10, 22, 0.95) 100%);
  transition: filter 0.34s ease, box-shadow 0.34s ease;
}
.tc-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.22;
  transition: opacity 0.34s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='35' viewBox='0 0 20 35'%3E%3Cpath fill='none' stroke='rgba(255,255,255,0.12)' d='M10 0v35M0 17.5h20'/%3E%3C/svg%3E");
  background-size: 20px 35px;
  pointer-events: none;
}
.tc-visual[class*='tc-visual--']::after {
  opacity: 0.12;
}
.tc-visual__art {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 140px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.38));
  transform: translateZ(0);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.32, 1), filter 0.38s ease;
}
.tools .tc:hover .tc-visual {
  filter: saturate(1.08) brightness(1.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.tools .tc:hover .tc-visual::after {
  opacity: 0.3;
}
.tools .tc:hover .tc-visual[class*='tc-visual--']::after {
  opacity: 0.22;
}
.tools .tc:hover .tc-visual__art {
  transform: translateY(-5px) scale(1.03);
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.48));
}
.tools .tc:hover .tc-title {
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 0 28px rgba(224, 196, 132, 0.12);
}
.tools .tc:hover .badge--soon {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}
@media (prefers-reduced-motion: reduce) {
  .tools .tc:hover {
    transform: none;
  }
  .tools .tc:hover .tc-visual {
    filter: brightness(1.02);
  }
  .tools .tc:hover .tc-visual::after {
    opacity: 0.22;
  }
  .tools .tc:hover .tc-visual[class*='tc-visual--']::after {
    opacity: 0.12;
  }
  .tools .tc:hover .tc-visual__art {
    transform: none;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.38));
  }
  .tools .tc:hover .tc-title {
    text-shadow: none;
  }
}
.tc-visual--edu {
  background:
    radial-gradient(ellipse 100% 90% at 50% 0%, rgba(107, 201, 212, 0.16) 0%, transparent 56%),
    radial-gradient(ellipse 70% 55% at 100% 100%, rgba(185, 168, 255, 0.08) 0%, transparent 45%),
    linear-gradient(175deg, rgba(8, 15, 29, 0.96) 0%, rgba(5, 10, 22, 0.9) 100%);
}
.tc-visual--sim {
  background:
    radial-gradient(ellipse 95% 88% at 72% 18%, rgba(107, 201, 212, 0.18) 0%, transparent 52%),
    radial-gradient(ellipse 55% 50% at 8% 88%, rgba(224, 196, 132, 0.08) 0%, transparent 42%),
    linear-gradient(175deg, rgba(5, 10, 22, 0.95) 0%, rgba(3, 8, 18, 0.92) 100%);
}
.tc-visual--pat {
  background:
    radial-gradient(ellipse 88% 82% at 18% 12%, rgba(185, 168, 255, 0.16) 0%, transparent 50%),
    radial-gradient(ellipse 65% 55% at 96% 78%, rgba(224, 196, 132, 0.09) 0%, transparent 46%),
    linear-gradient(175deg, rgba(8, 15, 29, 0.97) 0%, rgba(5, 10, 22, 0.9) 100%);
}
.tc-visual--budget {
  background:
    radial-gradient(ellipse 92% 82% at 12% 12%, rgba(107, 201, 212, 0.18) 0%, transparent 52%),
    radial-gradient(ellipse 65% 54% at 95% 85%, rgba(224, 196, 132, 0.1) 0%, transparent 45%),
    linear-gradient(175deg, rgba(8, 15, 29, 0.97) 0%, rgba(5, 10, 22, 0.9) 100%);
}
.tc-visual--com {
  background:
    radial-gradient(ellipse 100% 88% at 18% 24%, rgba(255, 152, 176, 0.24) 0%, transparent 54%),
    radial-gradient(ellipse 72% 62% at 96% 70%, rgba(172, 186, 255, 0.2) 0%, transparent 48%),
    linear-gradient(168deg, rgba(26, 10, 22, 0.92) 0%, rgba(5, 10, 22, 0.92) 100%);
}
.tc-visual--life {
  background:
    radial-gradient(ellipse 100% 85% at 50% 0%, rgba(224, 196, 132, 0.15) 0%, transparent 52%),
    radial-gradient(ellipse 52% 48% at 6% 100%, rgba(107, 201, 212, 0.11) 0%, transparent 48%),
    radial-gradient(ellipse 48% 42% at 94% 86%, rgba(185, 168, 255, 0.11) 0%, transparent 44%),
    linear-gradient(175deg, rgba(8, 15, 29, 0.96) 0%, rgba(5, 10, 22, 0.88) 100%);
}

.tc-body {
  padding: clamp(16px, 2.4vw, 20px) clamp(18px, 2.5vw, 22px) clamp(18px, 2.6vw, 22px);
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}
.tc-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.tc-title {
  font-size: clamp(0.92rem, 1.35vw, 1.02rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.28;
  letter-spacing: -0.02em;
}
.tc-desc {
  font-size: clamp(0.74rem, 1.1vw, 0.8rem);
  color: rgba(138, 154, 176, 0.92);
  line-height: 1.62;
}

/* Status badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 3px 9px;
  white-space: nowrap;
  flex-shrink: 0;
}
.tools .badge {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: none;
  padding: 2px 8px;
  line-height: 1.25;
}
.tools .badge .badge-dot {
  width: 4px;
  height: 4px;
  opacity: .85;
}
.badge--launch {
  background: rgba(224,196,132,.1);
  border: 1px solid rgba(224,196,132,.2);
  color: var(--gold);
}
.badge--soon {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  color: var(--grey-mid);
}
.badge--live {
  background: rgba(46,212,120,.1);
  border: 1px solid rgba(46,212,120,.22);
  color: #5ddaa0;
}
.badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
}

/* ── SECTION: POUR QUI ──────────────────────────────── */
.forwhom {
  padding: calc(var(--sv) * 0.9) 0;
  background:
    radial-gradient(ellipse 55% 40% at 100% 0%, rgba(185, 168, 255, 0.05) 0%, transparent 48%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--card) 100%);
}
.forwhom__head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 44px;
}
.forwhom__head h2 { margin-bottom: 12px; }
.forwhom__head .stag { justify-content: center; }

.forwhom__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.fw {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 32px 26px;
  box-shadow: var(--glass-shadow), var(--glass-inset);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform .25s, border-color .25s, box-shadow .22s;
}
.fw:hover {
  transform: translateY(-5px);
  border-color: rgba(224, 196, 132, 0.26);
  box-shadow: 0 24px 56px rgba(0,0,0,.5), 0 0 40px rgba(185, 168, 255, 0.05), var(--glass-inset);
}
.fw-illus {
  width: 64px;
  height: 64px;
  border-radius: var(--r-md);
  background: rgba(224,196,132,.1);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.fw-illus .icon-emoji {
  font-size: 2rem;
  line-height: 1;
  font-family: system-ui, "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}
.fw-title{ font-size: 1.07rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.fw-desc { font-size: .87rem; color: var(--grey-mid); line-height: 1.72; }
.fw-tag  {
  display: inline-block;
  margin-top: 20px;
  background: rgba(224,196,132,.07);
  border: 1px solid rgba(224,196,132,.14);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: .74rem;
  font-weight: 700;
  color: var(--gold-3);
}

/* ── SECTION: WAITLIST ──────────────────────────────── */
.waitlist {
  padding: var(--sv) 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(224, 196, 132, 0.08) 0%, transparent 52%),
    radial-gradient(ellipse 45% 40% at 100% 100%, rgba(107, 201, 212, 0.05) 0%, transparent 45%),
    var(--bg-1);
}
.waitlist__glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,196,132,.07) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  filter: blur(60px);
}
.waitlist__inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.waitlist__inner .stag { justify-content: center; }
.waitlist__inner h2   { margin-bottom: 14px; }
.waitlist__sub { color: var(--grey-hi); margin-bottom: 48px; }

.fcard {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  text-align: left;
  box-shadow: var(--glass-shadow), var(--glass-inset);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.fg { margin-bottom: 18px; }
.fl {
  display: block;
  font-size: .83rem;
  font-weight: 600;
  color: var(--grey-mid);
  margin-bottom: 7px;
}
.fl .opt { font-weight: 400; font-size: .79rem; color: rgba(138,154,176,.5); margin-left: 4px; }
.fi, .fta {
  width: 100%;
  background: rgba(1,9,20,.55);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 12px 16px;
  color: var(--white);
  font-size: .95rem;
  font-family: var(--font);
  outline: none;
  resize: none;
  transition: border-color .2s, background .2s;
}
.fi::placeholder, .fta::placeholder { color: rgba(138,154,176,.38); }
.fi:focus, .fta:focus { border-color: rgba(224,196,132,.4); background: rgba(224,196,132,.03); }
.fta { height: 90px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fsub { width: 100%; justify-content: center; margin-top: 6px; }
.fpriv { text-align: center; margin-top: 13px; font-size: .79rem; color: var(--grey-mid); }

.waitlist-rgpd {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 15, 29, 0.35);
}
.waitlist-rgpd__label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--grey-hi);
}
.waitlist-rgpd__label input {
  margin-top: 3px;
  flex-shrink: 0;
}
.waitlist-rgpd__text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.waitlist-rgpd__meta {
  margin: 8px 0 0;
  padding-left: 26px;
  font-size: 0.7rem;
  line-height: 1.45;
  color: var(--grey-mid);
}
.waitlist-rgpd__policy {
  color: var(--grey-mid);
}

.f-ok {
  display: none; text-align: center; padding: 14px 0;
}
.f-ok-ico {
  width: 58px; height: 58px;
  background: rgba(224,196,132,.1);
  border: 1px solid rgba(224,196,132,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}
.f-ok-title { font-size: 1.28rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.f-ok-text  { font-size: .9rem; color: var(--grey-hi); }
.f-err {
  display: none;
  background: rgba(255,80,80,.07);
  border: 1px solid rgba(255,80,80,.2);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  margin-top: 10px;
  font-size: .84rem;
  color: #fcaaaa;
}
.spin {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(1,9,20,.3);
  border-top-color: var(--bg);
  border-radius: 50%;
  animation: sp .6s linear infinite;
}
@keyframes sp { to { transform: rotate(360deg); } }

/* ── SECTION: ROADMAP (ligne du temps) ─────────────── */
.coming {
  padding: calc(var(--sv) * 0.9) 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 45% at 0% 30%, rgba(107, 201, 212, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--card-2) 100%);
}
.coming::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background: repeating-linear-gradient(12deg, transparent 0 18px, rgba(224,196,132,.015) 18px 19px);
}
.coming .container { position: relative; z-index: 1; }
.coming__intro {
  max-width: 620px;
  margin: 0 auto 40px;
  text-align: center;
}
.coming__intro .stag { justify-content: center; }
.coming__text { color: var(--grey-hi); margin-top: 12px; }

.timeline {
  position: relative;
  margin: 0 0 40px;
  padding: 28px 0 8px;
}
.timeline__rail {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--border), rgba(224,196,132,.35), var(--border));
  border-radius: 2px;
}
.timeline__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
}
.tstep {
  text-align: center;
  padding: 0 4px;
}
.tstep__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--card-2);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(224,196,132,.08);
}
.tstep__dot--live {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(224,196,132,.15);
}
.tstep__date {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  line-height: 1.35;
}
.tstep__date--soft { color: var(--gold-2); }
.tstep__title {
  font-size: .84rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.3;
}
.tstep__desc {
  font-size: .74rem;
  color: var(--grey-mid);
  line-height: 1.5;
}

.coming__cta-wrap {
  margin-top: 16px;
  max-width: min(1080px, 100%);
  margin-left: auto;
  margin-right: auto;
}
.cta-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 52px) clamp(28px, 4vw, 56px);
  text-align: left;
  box-shadow: var(--glass-shadow), var(--glass-inset);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.cta-card__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
}
.cta-card__copy {
  flex: 1 1 340px;
  min-width: 0;
  max-width: 720px;
}
.cta-card__action {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.cta-card-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.cta-card-headline {
  font-size: clamp(1.35rem, 2.9vw, 2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.22;
  margin-bottom: 12px;
}
.cta-card-text {
  font-size: clamp(.9rem, 1.5vw, 1rem);
  color: var(--grey-hi);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 720px) {
  .cta-card { text-align: center; }
  .cta-card__inner { flex-direction: column; align-items: stretch; }
  .cta-card__copy { max-width: none; }
  .cta-card__action { justify-content: center; }
}

/* ── FOOTER ─────────────────────────────────────────── */
.footer {
  position: relative;
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(224, 196, 132, 0.04) 0%, transparent 55%),
    var(--bg);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 56px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer__logo { margin-bottom: 12px; }
.footer__logo img { height: 24px; width: auto; display: block; }
.footer__tag  { font-size: .84rem; color: var(--grey-mid); max-width: 230px; }
.fh { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-mid); margin-bottom: 16px; }
.flinks { display: flex; flex-direction: column; gap: 9px; }
.flink  { font-size: .87rem; color: var(--grey-mid); transition: color .2s; }
.flink:hover { color: var(--white); }

.footer__legal {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  line-height: 1.55;
  text-align: center;
  color: var(--grey-mid);
}
.footer__legal-link {
  color: rgba(244, 246, 250, 0.72);
  text-decoration: none;
}
.footer__legal-link:hover {
  color: var(--white);
  text-decoration: underline;
}
.footer__legal-sep {
  color: var(--grey-mid);
  user-select: none;
}
.footer__copy-link {
  color: inherit;
  text-decoration: underline;
}
.footer__copy-link:hover {
  color: var(--white);
}

.footer__disclaimer {
  margin-top: 28px;
  padding: 16px 0 8px;
  border-top: 1px solid var(--border);
}
.footer__disclaimer p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--grey-mid);
  max-width: 920px;
}

.footer__bot {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer__copy { font-size: .8rem; color: var(--grey-mid); }
.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  justify-self: center;
  font-size: .8rem;
  color: var(--grey-mid);
  transition: color .2s;
}
.footer__credit:hover { color: var(--white); }
.footer__credit img {
  width: auto;
  height: 14px;
  opacity: 0.95;
}
.footer__credit-logo {
  display: inline-flex;
  align-items: center;
  height: 14px;
  opacity: 0.95;
}
.footer__credit-logo svg {
  display: block;
  height: 14px;
  width: auto;
}
.footer__socials { display: flex; gap: 8px; }
.footer__socials { justify-self: end; }
.footer__soc {
  width: 33px; height: 33px;
  border-radius: var(--r-sm);
  background: rgba(8, 15, 29, 0.75);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-mid);
  transition: background .2s, color .2s, border-color .2s;
}
.footer__soc:hover { background: rgba(224,196,132,.1); border-color: var(--gold-border); color: var(--gold); }
.footer__soc .icon-emoji {
  font-size: 1rem;
  line-height: 1;
  font-family: system-ui, "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}
.footer__soc-ico {
  width: 18px;
  height: 18px;
  display: block;
  border-radius: 5px;
}
.btn-arr {
  display: inline-flex;
  margin-left: 6px;
  font-size: 1.05em;
  line-height: 1;
  opacity: .92;
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 980px) {
  :root { --sv: 88px; }
  .nav__links { display: none; }
  .hero__layout  { grid-template-columns: 1fr; gap: 56px; }
  .hero__visual  { order: -1; }
  .hero-cockpit { max-width: 100%; }
  .hero-cockpit-card { display: none; }
  .hero-cockpit__stack { transform: none; }
  .hero-cockpit:hover .hero-cockpit__stack { transform: none; }
  .vision__inner { grid-template-columns: 1fr; gap: 48px; }
  .community__inner { width: 100%; flex-direction: column; align-items: flex-start; }
  .community__copy { max-width: 100%; }
  .community__action { width: 100%; }
  .community__cta { width: 100%; justify-content: center; }
  .forwhom__grid { grid-template-columns: 1fr; }
  .asset-focus__grid { grid-template-columns: repeat(2, 1fr); }
  .tools__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tools__grid > .tc,
  .tools__grid > .tc--r2a,
  .tools__grid > .tc--r2b,
  .tools__grid > .tc--r2c {
    grid-column: auto;
    grid-row: auto;
  }
  .timeline__rail { display: none; }
  .timeline__steps {
    grid-template-columns: 1fr;
    gap: 0;
    border-left: 2px solid var(--border);
    margin-left: 10px;
    padding-left: 22px;
  }
  .tstep {
    text-align: left;
    padding: 18px 0 18px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
  }
  .tstep:last-child { border-bottom: none; }
  .tstep__dot {
    margin: 0 0 12px 0;
    position: absolute;
    left: -31px;
    margin-top: 4px;
  }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  :root { --sv: 72px; }
  body.mobile-nav-open { overflow: hidden; }
  .container { padding-inline: 16px; }
  .nav__wp    { display: none; }
  .nav__right { min-width: 0; gap: 8px; }
  .nav__burger { display: inline-flex; flex-shrink: 0; }
  .btn-cta {
    max-width: 100%;
    padding: 10px 14px;
    font-size: 0.8rem;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
  .tools__grid {
    grid-template-columns: 1fr;
  }
  .tools__grid > .tc,
  .tools__grid > .tc--r2a,
  .tools__grid > .tc--r2b,
  .tools__grid > .tc--r2c {
    grid-column: auto;
    grid-row: auto;
  }
  .tc { min-height: 0; }
  .frow       { grid-template-columns: 1fr; }
  .fcard      { padding: 28px 22px; }
  .asset-focus__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bot { grid-template-columns: 1fr; gap: 13px; text-align: center; }
  .footer__credit {
    display: flex;
    justify-content: center;
    margin: 0;
  }
}

/* Menu WP dans le pied de page */
.footer .flinks ul.menu.footer-menu,
.footer .flinks ul.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer .flinks .menu-item a {
  font-size: 0.87rem;
  color: var(--grey-mid);
  transition: color 0.2s;
}

.footer .flinks .menu-item a:hover {
  color: var(--white);
}
