/* ==========================================================================
   Page d'accueil
   ========================================================================== */

.hero {
  position: relative; overflow: hidden;
  color: var(--on-gradient-title); padding: 96px 0 150px;
  background: var(--gradient-hero);
}
.hero .wide { position: relative; z-index: 3; }
.hero .eyebrow { color: var(--on-gradient-eyebrow); }
.hero .eyebrow i { background: var(--on-gradient-dot); animation: blip 1.9s ease-in-out infinite; }
@keyframes blip { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.45); opacity: .5; } }

.hero-logo { margin: 2px 0 -40px; line-height: 0; }
.hero-logo img {
  width: min(640px, 88%); height: auto;
  filter: drop-shadow(var(--shadow-logo));
}

.hero-date {
  font-size: clamp(2.5rem, 8vw, 6.6rem);
  text-transform: uppercase; color: var(--on-gradient-em);
  text-shadow: var(--shadow-hero);
}
.hero-place {
  font-family: var(--display); font-weight: 900;
  font-variation-settings: var(--wonk);
  font-size: clamp(1.25rem, 2.9vw, 2.05rem);
  color: var(--on-gradient-title); letter-spacing: -.02em; line-height: 1.15; margin-top: 12px;
}
.hero-free { font-size: 19px; margin-top: 14px; color: var(--on-gradient); }
.hero-free b {
  font-weight: 700; color: var(--on-accent); background: var(--accent);
  padding: .08em .4em; border-radius: 7px;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
}
.hero .cta-buttons { margin-top: 34px; }

.hero .drop-1 { width: 186px; height: 186px; top: 9%;  right: 5%;  animation-delay: -1s; }
.hero .drop-2 { width: 104px; height: 104px; top: 36%; right: 20%; animation-delay: -3.4s; }
.hero .drop-3 { width: 58px;  height: 58px;  top: 66%; right: 9%;  animation-delay: -5.2s; }
.hero .drop-4 { width: 34px;  height: 34px;  top: 22%; right: 31%; animation-delay: -2s; }

/* ------------------------------------------------------------ Manifeste -- */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.tile {
  border-radius: var(--radius-lg); padding: 34px;
  position: relative; overflow: hidden;
  transition: transform var(--dur) var(--ease);
}
.tile:hover { transform: translateY(-6px); }
.tile h3 {
  font-size: clamp(1.45rem, 2.5vw, 2.05rem); line-height: 1;
  margin-bottom: 11px; color: inherit;
}
.tile p { font-size: 16px; line-height: 1.5; opacity: .9; }
.tile .glyph {
  font-family: var(--display); font-weight: 900; font-size: 92px; line-height: 1;
  position: absolute; right: 4px; bottom: -24px; opacity: .16; pointer-events: none;
}
.tile-1 { grid-column: span 7; background: var(--fill-deep);  color: var(--on-fill-deep); min-height: 250px; }
.tile-2 { grid-column: span 5; background: var(--highlight);  color: var(--on-highlight); }
.tile-3 { grid-column: span 5; background: var(--accent);     color: var(--on-accent); }
.tile-4 { grid-column: span 7; background: var(--brand-fill); color: var(--on-brand); }

/* -------------------------------------------------------------- Chiffres -- */
.stats { background: var(--surface-inverse); color: var(--on-inverse); padding: 84px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 28px; }
.stat b {
  display: block; font-family: var(--display); font-weight: 900;
  font-variation-settings: var(--wonk);
  font-size: clamp(3.8rem, 8vw, 7rem); line-height: .84;
  letter-spacing: -.05em; color: var(--highlight);
}
.stat:nth-child(2n) b { color: var(--accent); }
.stat span {
  display: block; font-size: 13.5px; font-weight: 600; letter-spacing: .11em;
  text-transform: uppercase; margin-top: 13px; color: var(--on-inverse-muted);
}

/* ------------------------------------------------------- Aperçu programme */
.preview-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 40px;
}

/* --------------------------------------------------------- Texte de fond -- */
.seo-block { background: var(--surface-3); }
.seo-block .wide { max-width: 800px; }
.seo-block p { color: var(--text-muted); font-size: 17px; }

@media (max-width: 1000px) {
  .tile-1, .tile-2, .tile-3, .tile-4 { grid-column: span 12; }
}
@media (max-width: 760px) {
  .hero { padding: 56px 0 120px; }
  .hero-logo { margin-bottom: -14px; }
  .hero-logo img { width: 100%; }
  .hero-free { font-size: 17px; }
  .hero .drop-1 { width: 110px; height: 110px; top: 4%; right: -24px; }
  .hero .drop-2 { width: 60px; height: 60px; top: auto; bottom: 20%; right: 6%; }
  .hero .drop-3, .hero .drop-4 { display: none; }
  .tile { padding: 26px; }
}
