/* ─────────────────────────────────────────────
   Bilanxeo — Feuille de style partagée
   ───────────────────────────────────────────── */

/* ── Variables ── */
:root {
  --bg:      #0b00a4;
  --primary: #3B32B8;
  --white:   #ffffff;
  --grey:    #9CA3AF;
  --muted:   rgba(255,255,255,0.50);
  --hint:    rgba(255,255,255,0.18);
  --border:  rgba(255,255,255,0.09);
  --card:    rgba(255,255,255,0.04);
  --green:   #BCFF51;
  --cyan:    #54F3FF;
  --yellow:  #FFEEA0;
  --purple:  #A78BFA;
  --pink:    #FD75B1;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, #1f0f3b, #0b00a4);
}

/* ── Utilitaires ── */
.wrap { width: min(1060px, calc(100% - 48px)); margin: auto; }

hr { border: none; border-top: 1px solid var(--border); }

.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 18px;
}

/* ── NAV ── */
nav {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(24px);
  background: rgba(21,8,58,0.55);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-weight: 900; font-size: 19px; letter-spacing: -0.3px;
  text-decoration: none; color: var(--white);
}
.logo em { font-style: normal; color: var(--green); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 14px; font-weight: 500; transition: color .15s;
}
.nav-links a:hover { color: var(--white); }
.btn-nav {
  font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 700;
  padding: 9px 22px; border-radius: 999px;
  background: var(--white); color: var(--bg);
  border: none; cursor: pointer; text-decoration: none;
  transition: opacity .15s;
}
.btn-nav:hover { opacity: .88; }

/* ── Boutons ── */
.btn-white {
  background: var(--white); color: var(--bg);
  padding: 14px 30px; border-radius: 999px; border: none;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 15px;
  cursor: pointer; text-decoration: none;
  transition: opacity .15s, transform .15s;
}
.btn-white:hover { opacity: .88; transform: translateY(-1px); }

.btn-outline {
  background: transparent; color: var(--muted);
  padding: 14px 28px; border-radius: 999px;
  border: 1px solid var(--border);
  font-family: 'Nunito', sans-serif; font-weight: 500; font-size: 15px;
  cursor: pointer; text-decoration: none;
  transition: color .15s, border-color .15s;
}
.btn-outline:hover { color: var(--white); border-color: var(--hint); }

/* ── Cards ── */
.ccard {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 24px; padding: 30px 26px;
  transition: background .18s;
}
.ccard:hover { background: rgba(59,50,184,0.15); }
.ccard-ico { font-size: 26px; margin-bottom: 16px; }
.ccard h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.ccard p { font-size: 14px; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 26px 0;
}
footer .wrap {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.foot-logo { font-weight: 900; font-size: 16px; }
.foot-logo em { font-style: normal; color: var(--green); }
.foot-links { display: flex; gap: 20px; list-style: none; }
.foot-links a {
  color: var(----white); font-size: 12px;
  text-decoration: none; transition: color .15s;
}
.foot-links a:hover { color: var(--muted); }
.foot-copy { font-size: 11px; color: var(--white); }

/* ── Stores ── */
.stores {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.stores .store img {
  display: block;
}

.store-disabled {
  cursor: not-allowed;
  pointer-events: none;
}

.store-disabled img {
  filter: grayscale(100%);
}
/* .stores { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.store {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--border); border-radius: 14px;
  padding: 0px 0px; text-decoration: none; color: var(--white);
  background: var(--card); transition: background .18s, border-color .18s;
} */
.store:hover { background: rgba(59,50,184,0.2); border-color: var(--hint); }
.store-ico { font-size: 24px; }
.store-sm { font-size: 10px; color: var(--muted); }
.store-name { font-size: 14px; font-weight: 800; }

/* ─────────────────────────────────────────────
   INDEX — sections spécifiques
   ───────────────────────────────────────────── */

/* ── Hero ── */
.hero {
  min-height: calc(100vh - 57px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 80px 0 60px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); border-radius: 999px;
  padding: 5px 14px; font-size: 12px; font-weight: 500;
  color: var(--muted); margin-bottom: 28px;
}
.hero-tag-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
h1 {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 900; line-height: 1.02; letter-spacing: -2px;
  margin-bottom: 6px;
}
h1 .dim { color: var(--muted); font-weight: 700; display: block; }
h1 .acc { color: var(--green); display: block; }
.hero-desc {
  margin-top: 22px; margin-bottom: 38px;
  font-size: 17px; font-weight: 300; line-height: 1.75;
  color: var(--muted); max-width: 430px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Phone mockup */
.hero-right { display: flex; justify-content: center; position: relative; }
.phone-wrap { position: relative; display: flex; gap: 16px; align-items: flex-end; }
.phone-glow {
  position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,50,184,0.35) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.phone {
  border-radius: 38px; border: 1px solid rgba(255,255,255,0.12);
  background: #110730; box-shadow: 0 40px 100px rgba(0,0,0,0.55);
  overflow: hidden; display: flex; flex-direction: column;
}
.phone-a { width: 200px; }
.phone-b { width: 164px; opacity: .5; margin-bottom: -18px; }
.phone-dot-bar { height: 22px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.phone-dot { width: 52px; height: 5px; border-radius: 99px; background: rgba(255,255,255,0.12); }

/* Screen A – stats */
.sA { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.sA-title { font-size: 14px; font-weight: 800; }
.sA-card { background: rgba(26,51,32,0.6); border: 1px solid rgba(188,255,81,0.14); border-radius: 12px; padding: 12px; }
.sA-lbl { font-size: 8px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.sA-val { font-size: 24px; font-weight: 900; color: var(--green); letter-spacing: -1px; }
.sA-val span { font-size: 9px; font-weight: 500; color: var(--muted); }
.sA-sub { font-size: 8px; color: var(--muted); margin-top: 1px; }
.sA-donut { background: rgba(59,50,184,0.2); border: 1px solid var(--border); border-radius: 12px; padding: 10px; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.sA-donut-lbl { font-size: 8px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); align-self: flex-start; }

/* Screen B – journal */
.sB { padding: 12px; display: flex; flex-direction: column; gap: 7px; }
.sB-title { font-size: 12px; font-weight: 800; }
.sB-day { font-size: 8px; color: var(--muted); }
.sB-total { font-size: 16px; font-weight: 900; }
.je { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 8px; padding: 6px 7px; }
.je-ico { width: 16px; height: 16px; border-radius: 4px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; font-size: 8px; flex-shrink: 0; }
.je-name { font-size: 8px; flex: 1; color: var(--muted); }
.je-val { font-size: 8px; font-weight: 800; }

/* ── Citation ── */
.quote-section { padding: 100px 0; text-align: center; }
.quote-box {
  border: 1px solid var(--border); border-radius: 32px;
  padding: 72px 56px; background: var(--card);
  backdrop-filter: blur(12px); max-width: 860px; margin: auto;
}
.quote-text {
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 800; line-height: 1.2; letter-spacing: -0.8px;
  margin-bottom: 20px;
}
.quote-sub { font-size: 16px; color: var(--muted); font-weight: 300; line-height: 1.7; }

/* ── Concept ── */
.concept-section { padding: 88px 0; }
.concept-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }

/* ── Steps ── */
.steps-section { padding: 88px 0; }
.steps-grid { display: flex; flex-direction: column; gap: 0; max-width: 740px; }
.step {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 28px 0; border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-n {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: var(--muted);
  flex-shrink: 0; margin-top: 2px;
}
.step-title { font-size: 17px; font-weight: 800; margin-bottom: 5px; }
.step-desc { font-size: 14px; color: var(--muted); font-weight: 300; line-height: 1.7; }
.step-acc { color: var(--green); font-weight: 600; }

/* ── Screenshots ── */
.screens-section { padding: 88px 0; }
.screens-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: end; }
.sc { border-radius: 40px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.sc img { width: 100%; display: block; }
.sc-mid { transform: translateY(-20px); }

/* ── Crédibilité ── */
.cred-section { padding: 88px 0; }
.cred-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }

/* ── CTA final ── */
.final-section { padding: 100px 0 120px; text-align: center; }
.final-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900; letter-spacing: -1.5px; line-height: 1.06;
  margin-bottom: 18px;
}
.final-title .dim { color: var(--muted); font-weight: 700; display: block; }
.final-sub {
  font-size: 16px; color: var(--muted); font-weight: 300;
  line-height: 1.7; max-width: 380px; margin: 0 auto 36px;
}

/* ─────────────────────────────────────────────
   POLITIC — politique de confidentialité
   ───────────────────────────────────────────── */
.privacy-wrap { max-width: 760px; }

.privacy-hero { padding: 100px 0 72px; }

.privacy-title {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02; letter-spacing: -2px;
  font-weight: 900; margin-bottom: 24px;
}
.privacy-sub {
  font-size: 18px; line-height: 1.8;
  color: var(--muted); max-width: 620px; font-weight: 300;
}
.privacy-date { margin-top: 28px; font-size: 13px; color: var(--hint); }

.privacy-content { padding: 72px 0 120px; }

.privacy-block {
  padding: 42px 0;
  border-bottom: 1px solid var(--border);
}
.privacy-block:last-child { border-bottom: none; }
.privacy-block h2 { font-size: 28px; font-weight: 900; letter-spacing: -1px; margin-bottom: 22px; }
.privacy-block h3 { font-size: 17px; font-weight: 800; margin-top: 28px; margin-bottom: 10px; }
.privacy-block p,
.privacy-block li { color: var(--white); font-size: 16px; line-height: 1.9; font-weight: 300; }
.privacy-block p + p { margin-top: 18px; }
.privacy-block ul { padding-left: 20px; margin: 16px 0; }
.privacy-block li + li { margin-top: 8px; }

/* ─────────────────────────────────────────────
   Responsive
   ───────────────────────────────────────────── */
@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 60px 0 50px; gap: 48px; }
  .phone-b { display: none; }
  .concept-grid, .cred-grid, .screens-row { grid-template-columns: 1fr; }
  .sc-mid { transform: none; }
  .quote-box { padding: 44px 24px; }
  nav .nav-links { display: none; }

  /* Steps responsive */
  .steps-section [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}
