/* ============================================================
   HORIZON CUMULUS — Base v2
   Copie exacte du reset et de la typographie des maquettes
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Poppins:wght@400;500;600;700&family=Work+Sans:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .float-cloud { display: none !important; }
  .cursor-glow { display: none !important; }
  .pulse-ring { display: none !important; }
  .word { opacity: 1 !important; transform: none !important; }
  .hero-svg-cloud, .hero-svg-server { stroke-dashoffset: 0 !important; }
  .marquee-track { animation: none !important; }
  .scroll-progress { display: none !important; }
}

body {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1 { font-family: 'Archivo Black', sans-serif; font-weight: 400; line-height: 1.08; }
h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.2; }

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green); }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

:focus-visible { outline: 2px solid var(--accent-light); outline-offset: 2px; }

.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }
