:root{
  /* LIGHT THEME */
  --bg: #F7F8FC;
  --panel: rgba(10, 14, 25, .05);
  --panel2: rgba(10, 14, 25, .08);
  --text: #0B0D12;
  --muted: rgba(11, 13, 18, .70);
  --line: rgba(11, 13, 18, .12);

  --accent:#7C5CFF;
  --accent2:#2DE2E6;

  --shadow: 0 18px 50px rgba(10,14,25,.12);
  --radius: 18px;
  --radius2: 26px;
  --container: 1120px;
  --font-main: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

@font-face {
  font-family: "Montserrat";
  src: url("/font/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/font/Montserrat-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}


body {
  font-weight: 400;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-weight: 800;
}
html {
  scroll-behavior: smooth;
}


*{box-sizing:border-box}
html,body{
    height: 100%;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
body{
  margin:0;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 400px at 10% 0%, rgba(124,92,255,.14), transparent 60%),
    radial-gradient(900px 400px at 90% 20%, rgba(45,226,230,.12), transparent 55%),
    var(--bg);
  color:var(--text);
  padding-top: 72px;
}
a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto}

.container{
  width:min(var(--container), calc(100% - 48px));
  margin-inline:auto;
}

h1,h2,h3{
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif
  letter-spacing: -.02em;
  margin:0 0 10px;
}
h1{font-size: clamp(40px, 5vw, 64px); line-height:1.05}
h2{font-size: clamp(28px, 3vw, 40px); line-height:1.1}
h3{font-size: 18px; line-height:1.2}

.lead{font-size: 18px; line-height:1.6; color:var(--muted); max-width: 60ch}
.muted{color:var(--muted)}
.small{font-size: 13px}
.center{text-align:center}

.sectionHead{margin: 0 0 18px}
.sectionHead--row{
  display:flex; align-items:flex-end; justify-content:space-between; gap:18px;
}
@media (max-width:900px){
  .sectionHead--row{flex-direction:column; align-items:flex-start}
}

.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
  font-size: 13px;
}

.badge{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(124,92,255,.16);
  border:1px solid rgba(124,92,255,.22);
  font-size:12px;
  color: var(--text);
}
/* FORCE ÉPAISSEUR DES BOUTONS */
a.btn,
button.btn {
  font-weight: 700 !important;
}

