
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── CURSEUR CUSTOM ── */
body { cursor: none; }

#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: #f5e723;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
}

#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 2px solid #f5e723;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}

body.hovering #cursor-ring {
  width: 56px;
  height: 56px;
  border-color: #5ebcb8;
  opacity: 1;
}

    body {
      font-family: 'Inter', sans-serif;
      background: #0a3d51;
      color: #fff;
      overflow-x: hidden;
    }


  /* ── NAVIGATION ── */
    #navbar {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      z-index: 1000;
      padding: 0 200px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: transparent;
      transition: background 0.4s ease, box-shadow 0.4s ease;
        box-shadow: 0 1px 0 rgba(255,255,255,0.08);
          opacity: 0;
  transform: translateY(-10px);
    }
 
    #navbar.scrolled {
      background: #0a3d51;
      box-shadow: 0 1px 0 rgba(255,255,255,0.08);
    }
 
    /* Logo — remplace ce bloc par ton SVG */
    #nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
    }
 
    /* Placeholder logo : cercle jaune + texte */
    /* ↓ REMPLACE tout ce bloc #nav-logo par ton SVG */

#nav-logo svg {
  width: 120px;   /* ← ajuste selon ton SVG */
  height: auto;
}

 
    /* Liens nav */
    #nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }
 
    #nav-links a {
      font-size: 14px;
      font-weight: 600;
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      letter-spacing: 0.01em;
      position: relative;
      transition: color 0.25s ease;
    }
 
    /* Soulignement slide au hover */
    #nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 1.5px;
      background: #f5e723;
      transition: width 0.3s cubic-bezier(0.77, 0, 0.18, 1);
    }
 
    #nav-links a:hover { color: #fff; }
    #nav-links a:hover::after { width: 100%; }
 
    /* CTA bouton nav */
    #nav-cta {
      background: #f5e723;
      color: #0d4a4e;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.08em;
      padding: 14px 28px;
      border-radius: 100px;
      border: none;
      cursor: none;
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
      transition: color 0.35s ease;
    }
 
    #nav-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 100px;
      background: #5ebcb8;
      transform: translateX(-101%);
      transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
      z-index: 0;
    }
 
    #nav-cta span {
      position: relative;
      z-index: 1;
    }
 
    #nav-cta:hover::before { transform: translateX(0); }
    #nav-cta:hover { color: #fff; }



    /* ── HERO ── */
    #hero {
      position: relative;
      width: 100vw;
      height: calc(100vh - 100px);
      background: #0a3d51;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 24px;
      max-width: 860px;
      opacity: 0;
    }

    .hero-content h1 {
      font-size: clamp(32px, 5vw, 64px);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 20px;
    }

.hero-content h1 .surline{
    color: #f5e723;
}

.subtitle{
    color: #5ebcb8;
    font-size: clamp(14px, 1.5vw, 17px);
    margin: 0 auto 15px;
    position: relative;
    display: inline-block;
}

.subtitle:after {
    content: "";
    width: 20px;
    height: 1px;
    background-color:#5ebcb8;
    position: absolute;
    top: 10px;
    left: -40px;
}
.subtitle:before {
    content: "";
    width: 20px;
    height: 1px;
    background-color:#5ebcb8;
    position: absolute;
    top: 10px;
    right: -40px;
}

    .hero-content p {
      font-size: clamp(14px, 1.5vw, 17px);
      color: rgba(255,255,255,0.72);
      max-width: 540px;
      margin: 0 auto 32px;
      line-height: 1.7;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

  /* ── BOUTONS — effet slide gauche → droite ── */
    .btn-yellow,
    .btn-outline {
      position: relative;
      overflow: hidden;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.08em;
      padding: 14px 28px;
      border-radius: 100px;
      cursor: none;
      z-index: 2;
      transition: color 0.35s ease;
    }
 
    /* Pseudo-élément = le fond qui glisse */
    .btn-yellow::before,
    .btn-outline::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 100px;
      transform: translateX(-101%);
      transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
      z-index: -1;
    }
 
    .btn-yellow {
      background: #f5e723;
      color: #0d4a4e;
      border: none;
      width: fit-content;
        text-decoration: none;
    }
    /* Slide vers teal */
    .btn-yellow::before { background: #5ebcb8; }
    .btn-yellow:hover::before { transform: translateX(0); }
    .btn-yellow:hover { color: #fff; }
 
    .btn-outline {
      background: transparent;
      color: #5ebcb8;
      border: 2px solid #5ebcb8;
    }
    /* Slide vers jaune */
    .btn-outline::before { background: #5ebcb8; }
    .btn-outline:hover::before { transform: translateX(0); }
    .btn-outline:hover { color: #ffffff; border-color: #5ebcb8; }
    /* ── IRIS OVERLAY ── */
    #iris-overlay {
      position: fixed;
      inset: 0;
      width: 100vw;
      height: 100vh;
      z-index: 9999;
      pointer-events: none;
    }


/* ── MARQUEE SCROLL ── */
.marquee-wrap {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 28px 0;
  background: transparent;
    opacity: 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  will-change: transform;
}

.marquee-track span {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.15);
  white-space: nowrap;
  
  transition: color 0.3s ease;
}



.marquee-track .dot {
  font-size: 14px;
  color: #f5e723;
  opacity: 1;
}



/* ── SECTION SERVICES ── */
#services {
  height: 400vh;
  position: relative;
}

#services-inner {
  position: sticky;
  top: 72px;
  height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a3d51;
}

/* Block gauche 50% */
.services-left {
  width: 50%;
  flex-shrink: 0;
  padding: 0 80px;
}

.services-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #f5e723;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.services-title {
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.services-title span { color: #5ebcb8; }

.services-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* Zone cards — 50% droite */
.services-cards {
  position: relative;
  width: 50%;
  height: 80vh;
  flex-shrink: 0;
}

/* Chaque card empilée */
.s-card {
  position: absolute;
  top: 0;
    height: 100%;
  left: 0;
  transform: translateY(0%) translateX(110%); /* départ hors écran à droite */
  width: 80%;  /* ~40% de la page = 80% de la zone droite */
  background: #114e65;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  will-change: transform;
    box-shadow: 0px 1px 20px 2px rgba(0,0,0,0.1);
}

/* Z-index : card 3 au-dessus de 2, 2 au-dessus de 1 */
.s-card:nth-child(1) { z-index: 1; }
.s-card:nth-child(2) { z-index: 2; }
.s-card:nth-child(3) { z-index: 3; }

.s-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.s-card-num {
  font-size: 48px;
  font-weight: 800;
  color: rgba(255,255,255,0.2);
  line-height: 1;
}

.s-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(94,188,184,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}


.s-card-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #5ebcb8;
  text-transform: uppercase;
}

.s-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.03em;
}

.s-card-body {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.s-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.s-card-list li {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
}

.s-card-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #f5e723;
  font-size: 6px;
  top: 5px;
}

.s-card-list strong { color: #fff; font-weight: 700; }

.s-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.s-card-tags span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 4px 12px;
}

/* ── SECTION MELDS ── */
#melds {
  background: #0a3d51;
  padding: 100px 80px;
  text-align: center;
}

.melds-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #5ebcb8;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.melds-title {
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}

.melds-cta {
  display: inline-block;
  background: #f5e723;
  color: #0a3d51;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  margin-bottom: 64px;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease;
}

.melds-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: #5ebcb8;
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 0;
}

.melds-cta span { position: relative; z-index: 1; }
.melds-cta:hover::before { transform: translateX(0); }
.melds-cta:hover { color: #fff; }

/* Cards */
.melds-cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.melds-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 28px 24px;
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;                    /* départ invisible pour l'animation */
  transform: translateY(30px);   /* départ décalé vers le bas */
}

.melds-letter {
  font-size: 42px;
  font-weight: 800;
  color: #5ebcb8;
  line-height: 1;
}

.melds-card strong {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.melds-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}


    /* ── SECTION PROCESS── */

#process {
  height: 800vh; /* durée du scroll — augmente pour ralentir */
  position: relative;
}
 
#process-inner {
  position: sticky;
  top: 72px; /* hauteur nav */
  height: calc(100vh - 72px);
  overflow: hidden;
  background: #0a3d51;
}
 
.process-slides {
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 400%; /* 4 slides × 100vw */
  will-change: transform;
}
 
/* ── SLIDE BASE ── */
.slide {
  width: 100vw;
  height: 100%;
  flex-shrink: 0;
  padding: 60px 80px;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
 
/* ── SLIDE 1 — Intro centrée ── */
.slide-intro {
  justify-content: center;
  align-items: center;
}
 
.slide-intro-content {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
    text-align: center;
}
 
.slide-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #5ebcb8;
  text-transform: uppercase;
}
 
.slide-title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
}
 
.slide-title span { color: #f5e723; }
 
.slide-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
 
.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  width: fit-content;
}
 
.slide-cta:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}
 
/* ── SLIDE SPLIT (2 colonnes) ── */
.slide-split {
  gap: 80px;
  align-items: center;
}
 
.slide-split-left {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
 
.slide-split-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
 
.slide-split-right--title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
 
/* Slide inversée — texte à gauche, titre à droite */
.slide-split--reverse .slide-split-left { order: 1; }
.slide-split--reverse .slide-split-right { order: 2; }
 

.big-number{
    font-size: 30vw;
    font-weight: 800;
    color: rgba(255,255,255,0.10);
    position: absolute;
    z-index: 0;
    top: 60px;
}

.slide-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #5ebcb8;
  border: 1px solid #5ebcb8;
  border-radius: 100px;
  padding: 4px 14px;
  width: fit-content;
}
 
.slide-big-title {
  font-size: clamp(48px, 5vw, 100px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
 
.slide-split-body {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}
 
.slide-highlight {
  background: rgba(94,188,184,0.08);
  border: 1px solid rgba(94,188,184,0.3);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
 
.slide-highlight-label {
  font-weight: 700;
  color: #5ebcb8;
  margin-right: 6px;
  font-size: 11px;
  letter-spacing: 0.08em;
}
 
.slide-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}
 
.slide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
 
.slide-tags span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 5px 14px;
}
 
.slide-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
 
.slide-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
 
.slide-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #f5e723;
  font-size: 6px;
  top: 5px;
}
 
/* ── SLIDE 5 — End centrée ── */
.slide-end {
  justify-content: center;
  align-items: center;
        background: #5ebcb8;
}
 
.slide-end-content {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
    text-align: center;

}

.models{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
        margin-top: 30px;
}

.model{
background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(10, 61, 81, 0.43);
    border-radius: 14px;
    padding: 28px 24px;
    width: 27%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    /*opacity: 0;
    transform: translateY(30px);*/}

.model h3{
    color: #5ebcb8;
}

.model p{
    color: #0a3d51;
    font-weight: 400;
}



/* ============================================
   SECTION DOT GRID 
   ============================================ */
 
#horizons {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #0a3d51;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
 
#horizons #dotCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none; /* le canvas capte les events via JS sur la section */
}
 
.horizons-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 40px;
  max-width: 860px;
  pointer-events: none;
}
 
.horizons-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #5ebcb8;
  text-transform: uppercase;
  margin-bottom: 20px;
}
 
.horizons-title {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 56px;
}
 
.horizons-title span { color: #f5e723; }
 
.horizons-cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
    margin-top: 30px;
}
 
.horizons-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: left;
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: auto;
  transition: border-color 0.3s ease;
    text-align: center;
}
 
.horizons-card:hover {
  border-color: rgba(94,188,184,0.4);
}
 
.horizons-card--active {
  background: rgba(94,188,184,0.1);
  border-color: #5ebcb8;
    
}
 
.horizons-badge {
  font-size: 30px;
  font-weight: 800;
  color: #f5e723;
}
 
.horizons-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

    /* ── SECTION SUIVANTE (placeholder) ── */
    #next-section {
      min-height: 100vh;
      background: #0a3d51;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: rgba(255,255,255,0.3);
    }
