/* ============================================================
   DESIGN SYSTEM — La BD du sportif
   Orange #FF5A1F · Crème #F5F4EF · Bebas Neue + Inter
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@600&display=swap');

/* ── VARIABLES ── */
:root {
  --orange:       #FF5A1F;
  --orange-dark:  #D94A12;
  --orange-light: #FFF0EB;
  --orange-mid:   #FF7A47;
  --cream:        #F5F4EF;
  --cream-dark:   #EAE9E2;
  --dark:         #1A1A18;
  --dark-soft:    #2D2D2A;
  --muted:        #6B6B65;
  --muted-light:  #9B9B93;
  --line:         #E0DED6;
  --white:        #FFFFFF;

  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body:    'Inter', -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius:       6px;
  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    12px;
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.07);
  --shadow:       0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.14);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHIE ── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--dark);
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.125rem; font-weight: 600; line-height: 1.3; }

.label-tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--orange);
}

/* ── BOUTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  min-height: 44px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 90, 31, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}

.btn-secondary:hover {
  background: var(--orange-light);
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn-dark:hover {
  background: var(--dark-soft);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.0625rem;
}

.btn-sm {
  padding: 9px 18px;
  min-height: 44px;
  font-size: 0.875rem;
}

/* ── LAYOUT ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

@media (max-width: 600px) {
  .container, .container-narrow { padding: 0 16px; }
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
}

/* ── UTILITAIRES ── */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-muted  { color: var(--muted); }
.text-white  { color: var(--white); }

.mt-4  { margin-top: 1rem; }
.mt-8  { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

/* ── BADGE DÉCO ── */
.badge-outline {
  display: inline-block;
  border: 1.5px solid currentColor;
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.8125rem;
  font-weight: 600;
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: var(--line);
  border: none;
}

/* ── CARD DE BASE ── */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
