:root{
  --bg:#0b0c10;
  --card:#11131a;
  --text:#e7eaf0;
  --muted:#a7afc0;
  --line:#23273a;
  --accent:#ffffff;
  --radius:16px;
}

*{box-sizing:border-box}
html,body{height:100%}

body { font-weight: 300; 
  margin:0;
  font-family: "Calibri Light","Calibri","Calibri",Arial,sans-serif;
  background:
  radial-gradient(1200px 900px at 20% 0%, rgba(255, 255, 255, 0.45) 0%, rgba(0,0,0,0) 60%),
  linear-gradient(180deg, #05060a 0%, var(--bg) 65%, var(--bg) 100%);
background-repeat: no-repeat;
background-attachment: fixed;

  color:var(--text);
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.9}

.container{
  width:min(1100px, 92vw);
  margin:0 auto;
}

.nav{
  position:sticky; top:0; z-index:10;
  background: rgba(11,12,16,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{font-weight:800; letter-spacing:.2px}
.nav-links{display:flex; gap:14px; color:var(--muted); flex-wrap:wrap}

.hero{padding:42px 0 18px}
.hero h1{margin:10px 0 10px; font-size: clamp(28px, 4vw, 44px);}
.hero p{margin:0; color:var(--muted); max-width:65ch; line-height:1.6}

.grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  padding: 18px 0 34px;
}
@media (max-width: 900px){
  .grid{grid-template-columns:1fr}
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
}

.badge{
  display:inline-flex; gap:8px; align-items:center;
  padding:6px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--muted);
  font-size: 13px;
}

.btn-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor:pointer;
  user-select:none;
}
.btn-primary{
  background: var(--accent);
  border-color: transparent;
  color: #0b0c10;
  font-weight: 750;
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0)}



.kv .item{
  width: 100%;          /* ✅ ne dépasse plus la colonne */
  max-width: 100%;      /* ✅ empêche le débordement */
  box-sizing: border-box;

  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  text-align: center;
  color: var(--muted);
}

.kv .item b{
  display: block;
  color: var(--text);
  margin-bottom: 6px;
}
.kv .item span{ display:block; }

/* Mobile: 1 colonne (sinon ça devient trop serré) */
@media (max-width: 520px){
  .kv{ grid-template-columns: 1fr; }
}



/* option: très petit écran -> 1 colonne */
@media (max-width: 420px){
  .kv{ grid-template-columns: 1fr; }
  .kv .item{ max-width: 100%; }
}

.sep{height:1px; background:var(--line); margin:18px 0}

.list{color:var(--muted); line-height:1.75; padding-left:18px}

.products{
  display:grid;
  grid-template-columns: repeat(1, 3fr);
  gap:14px;
}
@media (max-width: 900px){ .products{grid-template-columns: 1fr 1fr} }
@media (max-width: 560px){ .products{grid-template-columns: 1fr} }

.product-card{
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px;
  background: rgba(255,255,255,.03);
}
.product-card h3{margin:0 0 6px}
.price{font-size:22px; margin:10px 0 0}
.muted{color:var(--muted)}

.footer{
  padding:22px 0 40px;
  color:var(--muted);
  border-top:1px solid var(--line);
}
.ui{ position: fixed; left:0; right:0; top:0; z-index: 10; }
.ui-panel{ position: fixed; left:0; right:0; bottom: 18px; z-index: 10; }
canvas{ position: fixed; inset: 0; z-index: 0; display:block; }

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo{
  height: 40px;   /* change ici */
  width: auto;
  display: block;
}

/* Mobile uniquement */
@media (max-width: 768px){
  .hero img,
  .content img,
  img.center-mobile{
    display: block;
    margin: 0 auto;      /* ✅ centre horizontal */
    max-width: 92vw;     /* évite que ça dépasse */
    height: auto;
  }
}
/* ===========================
   PAGE CHOIX PRODUIT — GROS BOUTONS
   =========================== */

.choice-list{
  display: grid;
  gap: 22px;               /* espace entre les boutons */
  margin-top: 22px;
}

/* Le bouton est un lien <a> pleine largeur */
.choice-btn{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 24px 22px;      /* espace à l’intérieur */
  border-radius: 18px;

  text-decoration: none;
  color: var(--text);

  /* séparations visibles */
  border: 1px solid rgba(255,255,255,0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  box-shadow: 0 18px 55px rgba(0,0,0,0.35);

  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.choice-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.28);
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
}

/* Colonne gauche (texte) */
.choice-left{
  display: grid;
  gap: 8px;
  min-width: 0;            /* évite les débordements */
}

.choice-title{
  margin: 0;
  font-size: 19px;
  font-weight: 650;
  letter-spacing: .2px;
}

.choice-desc{
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

/* Flèche / icône à droite */
.choice-arrow{
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;

  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);

  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.choice-btn:hover .choice-arrow{
  transform: translateX(2px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.24);
}

/* Accessibilité clavier */
.choice-btn:focus-visible{
  outline: 2px solid rgba(255,255,255,0.35);
  outline-offset: 3px;
}

/* Mobile */
@media (max-width: 768px){
  .choice-list{
    gap: 16px;
    margin-top: 18px;
  }

  .choice-btn{
    padding: 20px 16px;
    border-radius: 16px;
  }

  .choice-title{ font-size: 18px; }
  .choice-desc{ font-size: 13px; }

  .choice-arrow{
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }
}
html, body{
  width: 100%;
  overflow-x: hidden;
}
.kv .item{
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: anywhere; /* au cas où un mot/valeur est trop long */
}
.container{ max-width: 100%; }

body{
  position: relative;
  overscroll-behavior: none;
}


.video-wrap{
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;          /* centre vraiment */
  display: block;          /* important */
}

.video-wrap video{
  display: block;          /* évite le décalage baseline */
  margin: 0 auto;          /* sécurité */
  max-width: 100%;
  height: auto;
  max-height: 500px;       /* si tu veux */
}
