/* =========================
   HOME ONLY (SCOPÉ)
   ========================= */
.home-page{
  position: relative;
  min-height: 100vh;

  /* IMPORTANT : on met un fond de base neutre ici */
  background: #05070c;
  color: #e9eef7;
}

/* Calque fixe derrière toute la page => plus aucune "coupure" au scroll */
.home-page::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background:
    radial-gradient(1200px 700px at 70% 25%, rgba(40,140,255,.20), transparent 60%),
    radial-gradient(900px 600px at 15% 55%, rgba(40,140,255,.12), transparent 60%),
    linear-gradient(180deg, #05070c 0%, #070d1a 35%, #05070c 100%);
}

/* Container */
.home-page .container {
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
}

/* =========================
   HEADER (même style que les autres pages)
   ========================= */
.home-page .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(6,10,18,.78), rgba(6,10,18,.45));
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.home-page .nav-shell {
  display: grid;
  grid-template-columns: 220px 1fr 180px;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
}

.home-page .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #e9eef7;
  font-weight: 700;
}

.home-page .brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #39a6ff;
  box-shadow: 0 0 18px rgba(57,166,255,.55);
}

.home-page .nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.home-page .nav-link {
  text-decoration: none;
  color: rgba(233,238,247,.82);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.home-page .nav-link:hover {
  color: #ffffff;
}

.home-page .nav-link.is-active {
  color: #ffffff;
  border-bottom-color: rgba(57,166,255,.75);
}

.home-page .cta-top {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #39a6ff, #5b7cff);
  color: #06101a;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(57,166,255,.22);
}

/* =========================
   HERO
   ========================= */
.home-page .hero {
  padding: 60px 0 30px;
}

.home-page .hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 44px;
  align-items: center;
}

.home-page .kicker {
  letter-spacing: .22em;
  font-size: 12px;
  color: rgba(57,166,255,.9);
  margin-bottom: 14px;
}

.home-page .hero-title {
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.02;
  margin: 0 0 16px;
  font-weight: 850;
}

.home-page .hero-accent {
  background: linear-gradient(90deg, #39a6ff, #6a7cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-page .hero-subtitle {
  margin: 0 0 24px;
  color: rgba(233,238,247,.78);
  max-width: 560px;
  font-size: 16px;
  line-height: 1.6;
}

.home-page .hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.home-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  border: 1px solid rgba(255,255,255,.10);
}

.home-page .btn-primary {
  background: linear-gradient(135deg, #39a6ff, #5b7cff);
  color: #06101a;
  box-shadow: 0 14px 34px rgba(57,166,255,.22);
  border: none;
}

.home-page .btn-ghost {
  background: rgba(255,255,255,.04);
  color: rgba(233,238,247,.95);
}

.home-page .btn-ghost:hover {
  background: rgba(255,255,255,.07);
}

.home-page .hero-bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
  color: rgba(233,238,247,.85);
}

.home-page .hero-bullets .muted {
  color: rgba(233,238,247,.62);
}

.home-page .bullet-ico {
  margin-right: 10px;
}

/* =========================
   GLOBE CARD (canvas toujours visible)
   ========================= */
.home-page .globe-card {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1 / 1;
  margin-left: auto;

  /* PAS DE CADRE */
  background: transparent;
  border: none;
  box-shadow: none;

  /* MASQUE ROND (indispensable pour éviter les bords coupés/cheat) */
  border-radius: 50%;
  overflow: hidden;
}

.home-page #globe-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.home-page .globe-hint {
  display: none;
}

/* =========================
   SECTIONS
   ========================= */
.home-page .section {
  padding: 60px 0;
}

.home-page .section-kicker {
  letter-spacing: .22em;
  font-size: 12px;
  color: rgba(57,166,255,.9);
  margin-bottom: 10px;
}

.home-page .section-title {
  margin: 0 0 10px;
  font-size: clamp(34px, 3.5vw, 54px);
  line-height: 1.05;
  font-weight: 850;
}

.home-page .section-subtitle {
  margin: 0 0 26px;
  color: rgba(233,238,247,.70);
  max-width: 820px;
  line-height: 1.6;
}

/* Cards */
.home-page .cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-page .cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.home-page .card {
  border-radius: 22px;
  padding: 22px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}

.home-page .card-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
}

.home-page .card-text {
  margin: 0;
  color: rgba(233,238,247,.72);
  line-height: 1.6;
}

.home-page .list {
  margin: 0;
  padding-left: 18px;
  color: rgba(233,238,247,.72);
  line-height: 1.75;
}

/* CTA box fin */
.home-page .cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 34px;
  border-radius: 26px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}

.home-page .cta-title {
  margin: 0 0 8px;
  font-size: 34px;
  font-weight: 850;
}

.home-page .cta-text {
  margin: 0;
  color: rgba(233,238,247,.72);
  line-height: 1.6;
}

/* Footer */
.home-page .site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: transparent; /* <- plus de bande */
}

.home-page .footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.home-page .footer-right {
  display: flex;
  gap: 18px;
}

.home-page .site-footer a {
  color: rgba(233,238,247,.75);
  text-decoration: none;
}

.home-page .site-footer a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 980px) {
  .home-page .nav-shell {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 0;
  }
  .home-page .nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px 18px;
  }
  .home-page .cta-top { justify-self: start; }

  .home-page .hero-grid {
    grid-template-columns: 1fr;
  }
  .home-page .globe-card {
    margin: 18px 0 0;
    width: 100%;
  }
  .home-page .cards-3 {
    grid-template-columns: 1fr;
  }
  .home-page .cards-2 {
    grid-template-columns: 1fr;
  }
  .home-page .cta-box {
    grid-template-columns: 1fr;
  }
}
