/* ===== KDistribution — Page "Coming soon" =====
   Palette d'après la marque : bleu #246CFC, encre #0F1B2D, fond clair */

:root {
  --blue: #246CFC;
  --blue-dark: #1A4FD0;
  --blue-soft: #E8F0FF;
  --ink: #0F1B2D;
  --muted: #5B6B82;
  --bg: #FAFCFF;
  --bg-2: #EEF4FF;
  --white: #ffffff;
  --radius: 22px;
  --shadow: 0 30px 70px -30px rgba(36, 108, 252, 0.45);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 80% -10%, var(--bg-2), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, #F0F6FF, transparent 55%),
    var(--bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== Décor animé ===== */
.bg-decor { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 16s ease-in-out infinite;
}
.blob-1 { width: 480px; height: 480px; top: -160px; right: -120px;
  background: radial-gradient(circle at 30% 30%, #BBD2FF, #246CFC); }
.blob-2 { width: 400px; height: 400px; bottom: -180px; left: -140px;
  background: radial-gradient(circle at 30% 30%, #DCE8FF, #5B90FF);
  animation-delay: -6s; opacity: 0.4; }

.lens {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(36, 108, 252, 0.18);
  box-shadow: inset 0 0 0 8px rgba(36, 108, 252, 0.05);
  animation: drift 24s linear infinite;
}
.lens::after {
  content: ""; position: absolute; inset: 22%;
  border-radius: 50%; border: 2px solid rgba(36, 108, 252, 0.14);
}
.lens-1 { width: 120px; height: 120px; top: 16%; left: 8%; animation-duration: 26s; }
.lens-2 { width: 80px;  height: 80px;  top: 72%; left: 16%; animation-duration: 20s; animation-delay: -5s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-24px, 30px) scale(1.06); }
}
@keyframes drift {
  0%   { transform: translateY(0) rotate(0deg); }
  50%  { transform: translateY(-26px) rotate(180deg); }
  100% { transform: translateY(0) rotate(360deg); }
}

/* ===== Mise en page ===== */
.page {
  position: relative;
  z-index: 1;
  width: min(1060px, 92vw);
  margin: 0 auto;
  padding: 44px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
}
.brand__icon {
  width: clamp(46px, 6vw, 58px);
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(36, 108, 252, 0.18));
}
.brand__name {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  letter-spacing: -0.03em;
  color: var(--ink);
}

/* Grille héro */
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  background: var(--white);
  border: 1px solid var(--blue-soft);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--blue-dark);
  box-shadow: 0 8px 24px -16px rgba(36, 108, 252, 0.5);
}
.badge__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(36, 108, 252, 0.5);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(36, 108, 252, 0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(36, 108, 252, 0); }
  100% { box-shadow: 0 0 0 0 rgba(36, 108, 252, 0); }
}

/* Titre */
.hero__title {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 22px 0 18px;
}
.accent {
  background: linear-gradient(120deg, var(--blue), #5B90FF);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__text {
  max-width: 520px;
  font-size: clamp(1rem, 1.6vw, 1.08rem);
  line-height: 1.7;
  color: var(--muted);
}
.hero__text strong { color: var(--ink); font-weight: 600; }

/* Mention distributeur officiel */
.official {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding: 8px 14px 8px 16px;
  background: var(--white);
  border: 1px solid var(--blue-soft);
  border-radius: 16px;
  box-shadow: 0 14px 30px -22px rgba(36, 108, 252, 0.5);
}
.official__label {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.25;
  color: var(--muted);
  border-right: 1px solid var(--blue-soft);
  padding-right: 14px;
}
.official__logo {
  height: 52px;
  width: auto;
  display: block;
}

/* Coordonnées */
.contact {
  list-style: none;
  margin: 22px 0 4px;
  display: grid;
  gap: 10px;
}
.contact__item {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact__item:hover { color: var(--blue); }
.contact__item a { color: inherit; text-decoration: none; }
.contact__item a:hover { color: var(--blue); }
.contact__item svg {
  flex: none;
  width: 18px;
  height: 18px;
  fill: var(--blue);
  background: var(--blue-soft);
  padding: 7px;
  border-radius: 9px;
  box-sizing: content-box;
}

/* Barre de progression */
.progress {
  width: min(360px, 100%);
  height: 8px;
  margin: 30px 0 12px;
  background: var(--blue-soft);
  border-radius: 100px;
  overflow: hidden;
}
.progress__bar {
  height: 100%; width: 40%; border-radius: 100px;
  background: linear-gradient(90deg, var(--blue), #6AA0FF);
  animation: load 2.6s ease-in-out infinite;
}
@keyframes load {
  0%   { transform: translateX(-110%); width: 45%; }
  50%  { width: 65%; }
  100% { transform: translateX(280%); width: 45%; }
}
.progress__label { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em; }

/* ===== Colonne visuelle ===== */
.media { position: relative; }
.media__frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
  animation: floatY 7s ease-in-out infinite;
}
.media__frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 55%, rgba(36, 108, 252, 0.12));
  pointer-events: none;
}
.media__img { width: 100%; height: 100%; object-fit: cover; display: block; }

.media__thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.media__thumb {
  flex: 1;
  height: 74px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 24px -18px rgba(15, 27, 45, 0.6);
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Pied de page */
.foot {
  margin-top: 48px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
}
.foot strong { color: var(--blue-dark); }
.foot__copy { font-size: 0.78rem; opacity: 0.8; }

/* ===== Apparition ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .media { order: -1; }
  .media__frame { aspect-ratio: 16 / 10; }
}

@media (max-width: 520px) {
  .page { padding: 32px 0; text-align: center; }
  .brand { justify-content: center; }
  .badge { margin: 0 auto; }
  .hero__text { margin: 0 auto; }
  .official { margin-left: auto; margin-right: auto; }
  .contact { justify-items: center; }
  .progress { margin-left: auto; margin-right: auto; }
  .media__thumb { height: 60px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
