:root {
  --lilas: #9B8FD6;
  --bleu: #A9C4F2;
  --menthe: #9ED7C4;
  --fond: #FAF9FD;
  --fond-lilas: #F3EEF9;
  --encre: #272642;
  --texte: #62617A;
  --bord: rgba(155,143,214,.20);
  --grad: linear-gradient(135deg, var(--lilas), var(--bleu) 58%, var(--menthe));
  --shadow: 0 18px 48px rgba(58, 49, 114, .10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--texte);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 0%, rgba(183,175,230,.34), transparent 24%),
    radial-gradient(circle at 92% 10%, rgba(158,215,196,.24), transparent 22%),
    var(--fond);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1040px, calc(100% - 36px)); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250,249,253,.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bord);
}
.topbar__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--encre);
  text-decoration: none;
  font-family: "Comfortaa", "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: .08em;
}
.brand img { width: 52px; height: 52px; object-fit: contain; }
.topbar nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  font-size: 14px;
  font-weight: 700;
}
.topbar nav a { text-decoration: none; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 19px;
  border-radius: 999px;
  color: white;
  background: var(--grad);
  box-shadow: 0 14px 34px rgba(155,143,214,.28);
  text-decoration: none;
  font-weight: 800;
}
.hero { padding: 76px 0 42px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #7568cc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: var(--grad);
}
h1, h2, h3 {
  margin: 0;
  color: var(--encre);
  font-family: "Comfortaa", "Poppins", sans-serif;
  line-height: 1.12;
  letter-spacing: 0;
}
h1 {
  max-width: 850px;
  margin-top: 18px;
  font-size: clamp(36px, 5.8vw, 66px);
}
.lead {
  max-width: 780px;
  margin-top: 20px;
  color: #4f4d69;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.7;
}
.hero-media {
  margin-top: 34px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--bord);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.78);
}
.hero-media img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}
.content {
  display: grid;
  gap: 28px;
  padding: 34px 0 78px;
}
.panel {
  padding: clamp(24px, 3vw, 34px);
  border-radius: 28px;
  background: rgba(255,255,255,.84);
  border: 1px solid var(--bord);
  box-shadow: var(--shadow);
}
.panel h2 { margin-bottom: 14px; font-size: clamp(27px, 3vw, 38px); }
.panel h3 { margin: 22px 0 8px; font-size: 22px; }
.panel p, .panel li { font-size: 16px; line-height: 1.75; }
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.mini-card {
  padding: 18px;
  border-radius: 22px;
  background: var(--fond-lilas);
  border: 1px solid rgba(155,143,214,.16);
}
.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.footer {
  padding: 28px 0 42px;
  border-top: 1px solid var(--bord);
  font-size: 14px;
}
@media (max-width: 760px) {
  .topbar__inner { align-items: flex-start; flex-direction: column; padding: 12px 0; }
  .topbar nav { justify-content: flex-start; }
  .hero { padding-top: 48px; }
  .grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
}
