    :root{
      /* fallback si jamais pas dans style.css */
      --font-sans: "TT Firs Neue Trial", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
      --font-display: "Neue Machina", "TT Firs Neue Trial", system-ui, sans-serif;

      --text-black: #100C08;
      --muted-black: rgba(16,12,8,0.55);

      --accentblue: #95BAFF;
      --accentgreen: #CDFFD8;

      --blue-rgb: 149,186,255;
      --border-blue: rgba(var(--blue-rgb), 0.65);

      --card-radius: 12px;
    }

    *{ box-sizing:border-box; }
    html,body{ height:100%; }

    body{
      margin:0;
      font-family: "TT Firs Neue Trial", system-ui, sans-serif;
      background:#fff;
      color: var(--text-black);
      width: 100%;
      overflow-x: hidden;
    }



    /* ===== Top area ===== */
    .top-area{
      position: relative;

      padding: 42px 56px;
      display:flex;
      align-items: space-between;
      justify-content:flex-start;
    }

    .brand{
      font-family: var(--font-display);
      font-weight: 800;
      letter-spacing: 0.12em;
      font-size: 22px;
      line-height: 1;
      margin-top: 4px;

    }


    .coming-soon-pre{
      position:absolute;
      top: 18px;
      right: 24px;
      width: min(360px, 32vw);
      transform: rotate(18deg);
      opacity: 0.95;
      pointer-events:none;

      /* ✅ fait ressortir le blanc */
      filter: drop-shadow(0 18px 30px rgba(0,0,0,0.45))
              drop-shadow(0 6px 14px rgba(0,0,0,0.35));

    }
    .coming-soon-pre::before{
      content:"";
      position:absolute;
      inset:-18px;
      border-radius: 999px;
      background: rgba(0,0,0,0.16);
      filter: blur(12px);
      z-index:-1;
    }
    .logo_button{

      display: flex;
      align-items: center;
      gap: 12px;
      flex-direction: column;
      margin-bottom: 50px;
    }
    .logo_button img{
      width: 100px;
      height: auto;
    }

    .btn-intention-mobile{
      display: none;

    }

.btn-intention{
  text-decoration: none;
  color: #111;
  font-family: "TT Firs Neue Trial", system-ui, sans-serif;
  background: #fff;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid #b1b1b1;
  font-size: 14px;
  text-align: center;

  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

.btn-intention:hover{
  background: var(--accentblue);      /* léger gris */
  border-color: var(--accentblue);       /* bordure plus marquée */
  color: #fff;
}




    /* ===== Lower area (grey band) ===== */
    .lower-area{
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
 
  padding: 54px 18px 64px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

/* couche "verre" */
.lower-area::before{
  content:"";
  position:absolute;
  inset: 0;
  background: rgba(149, 186, 255, 0.1);              /* voile */
  backdrop-filter: blur(18px) saturate(1.4);        /* ✅ liquid glass */
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  pointer-events: none;
  z-index: 0;
}



    /* BIG background words */
    .bg-words{
      position:absolute;
      inset:0;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding: 0 60px;
      pointer-events:none;
      user-select:none;
      opacity: 0.18;
    }
    .bg-words span{
      font-family: "Staatliches", var(--font-display), sans-serif;
      font-weight: 700;
      letter-spacing: -0.02em;
      font-size: clamp(64px, 10vw, 140px);
      line-height: 1;
      color: #6b6b6b;
      white-space: nowrap;
    }

    /* ===== Card ===== */
    .card{
      position: relative;
      width: min(640px, 92vw);
      background: #fff;
      border-radius: var(--card-radius);
      box-shadow: 0 18px 50px rgba(0,0,0,0.12);
      padding: 34px 36px 26px;
      z-index: 2;
    }

    .card h1{
      margin:0;
      font-size: clamp(26px, 3vw, 34px);
      line-height: 1.18;
      font-weight: 500;
      color: var(--accentbluedark); /* bleu like capture */
    }

    .field{
      margin-top: 18px;
    }

    label{
      display:block;
      font-size: 14px;
      color: var(--accentbluedark);
      margin-bottom: 8px;
      font-weight: 500;
    }
      .label-left{
    text-align: left;
    width: 100%;
  }

    .input{
      width:100%;
      padding: 12px 12px;
      border-radius: 4px;
      border: 1px solid var(--border-blue);
      outline:none;
      font-size: 15px;
    }
    .input::placeholder{
  color: var(--accentbluedark);
  opacity: 0.5; /* important pour éviter le gris auto */
}

    .input:focus{
      border-color: rgba(var(--blue-rgb), 0.95);
      box-shadow: 0 0 0 3px rgba(var(--blue-rgb), 0.20);
    }

    /* option buttons like the screenshot */
    .choice-group{
      display:flex;
      flex-direction:column;
      gap: 10px;
      margin-top: 8px;
    }

    .choice{
      border: 1px solid rgba(30,60,160,0.18);
      background: #FFFFFF;
      color: var(--accentbluedark);
      padding: 12px 14px;
      border-radius: 6px;
      cursor:pointer;
      font-size: 15px;
      text-align:left;
      transition: filter .15s ease, transform .15s ease, background .15s ease;
    }
    .choice:hover{ transform: translateY(-1px); filter: brightness(1.02); }
    .choice.is-active{
      background: var(--accentblue);
      border-color: rgba(149,186,255,0.55);
      color: #FFFFFF;
    }

    .actions{
      margin-top: 14px;
    }

    .btn-submit{
      width: 100%;
      border: none;
      border-radius: 10px;
      padding: 12px 14px;
      background: #d9d9d9;
      color: #1f3ea6;
      font-size: 16px;
      cursor:pointer;
      transition: filter .15s ease, transform .15s ease;
    }
    .btn-submit:hover{ transform: translateY(-1px); filter: brightness(1.02); }

    .fineprint{
      margin-top: 10px;
      font-size: 11px;
      color: rgba(31,62,166,0.75);
      text-align:center;
    }


    .success-text{
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(16,12,8,0.75);
}

.success-link{
  color: var(--accentbluedark);
  text-decoration: none;
  font-weight: 700;
}
.success-link:hover{
  text-decoration: underline;
}

.success-domain{
  font-weight: 800;
  color: rgba(16,12,8,0.85);
}

.success-btn{
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}


    .drawer__panel--intention{
      width: 500px;
      height: auto;
    }
    .drawer__close-button{
      text-align: right;
    } 
    .about__desc{
      text-align: center;
      font-size: 20px;
    }



    /* Responsive tweaks */
    @media (max-width: 900px){
      .top-area{ padding: 32px 18px; min-height: 10px; }
      .coming-soon-pre{ display: none;}
      .bg-words{ padding: 0 20px; }
      .card{ padding: 26px 18px 20px; }
    }
    /* ===== MOBILE ONLY ===== */
@media (max-width: 900px){

  /* la page prend tout l'écran */

  .lower-area{
    flex: 1 1 auto;
    min-height: 0;
    padding: 18px 14px 18px;
  }

  /* ✅ container logo en "barre" pleine largeur pour centrer le logo */
  .logo_button{
    display: none;
  }

  .btn-intention-mobile{
    display: inline-flex;
    position: static;
    margin-left: auto;
    margin-right: 20px;
    pointer-events: auto;
  }



}
@media (max-width: 900px){
  .lower-area::before{
    content: none !important;
  }
  .card{
    box-shadow: none !important;

  }
  .bg-words{
    display: none !important;
  }
}


/* ===== Drawer / Modal (Intention) ===== */
.drawer{
  position: fixed;
  inset: 0;
  z-index: 9999;

  /* caché par défaut */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  transition: opacity .22s ease, visibility .22s ease;
}

.drawer.is-open{
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* fond sombre cliquable */
.drawer__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

/* panneau centré */
.drawer__panel{
  position: absolute;
  left: 50%;
  top: 50%;

  width: min(980px, calc(100vw - 36px));
  max-height: min(78vh, 720px);
  overflow: auto;

  background: rgba(10,10,12,0.96);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  padding: 18px;

  /* animation */
  transform: translate(-50%, calc(-50% + 24px));
  opacity: 0;
  transition: transform .28s ease, opacity .28s ease;
}

.drawer.is-open .drawer__panel{
  transform: translate(-50%, -50%);
  opacity: 1;
}

/* bouton fermer */
.drawer__close{
  position: sticky;
  top: 0;
  margin-left: auto;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.92);

  cursor: pointer;
}

/* contenu intention */
.projects{
  padding: 12px 8px 6px;
  color: rgba(255,255,255,0.92);
}

.projects__title{
  margin: 0 0 16px;
  text-align: center;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 26px;
}

.about__desc{
  margin: 0;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  font-size: 16px;
  white-space: normal; /* ton HTML le force déjà inline */
}

/* mobile */
@media (max-width: 720px){
  .drawer__panel{
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    padding: 14px;
  }

  .projects__title{
    font-size: 22px;
  }
}