/* ═══════════════════════════════════════
   VENDY — Variables & Reset
   Votre succès, notre priorité
═══════════════════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* ── Brand Vendy ── */
  --v1: #6623D3;
  --v2: #5B08DC;
  --v3: #39039E;
  --gold: #FEC502;
  --gold2: #FFD740;
  --gold-dark: #C99A00;

  /* ── Surfaces claires ── */
  --v-light: #F0EAFF;
  --v-pale: #FAF7FF;
  --v-glass: rgba(102, 35, 211, 0.08);
  --v-border: rgba(102, 35, 211, 0.12);

  /* ── Texte ── */
  --ink: #12062A;
  --muted: #6B5F82;
  --white: #FFFFFF;

  /* ── Radius & spacing ── */
  --r: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-pill: 50px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}