/* =========================================================
   COMMON.LESS
   Base commune du site : variables, mixins, reset, helpers
   ========================================================= */
/* ---------- Variables ---------- */
/* ---------- Mixins ---------- */
/* =========================================================
   GLOBAL THEME VARIABLES
   Ces variables ne sont PAS liées au header.
   Elles pilotent tout le site via #main.main-theme-dark / light.
   ========================================================= */
/* =========================================================
   GLOBAL STRUCTURE VARIABLES
   ========================================================= */
/* =========================================================
   HOME.LESS
   Styles spécifiques à la home
   Les couleurs viennent uniquement du thème global #main
   ========================================================= */
.main-section {
  overflow: hidden;
  color: var(--theme-text);
}
/* ---------- HERO ---------- */
.section-hero {
  padding: 72px 0 40px;
}
.section-hero .hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 42px;
  align-items: center;
}
.section-hero .hero-grid .hero-content {
  max-width: 680px;
}
.section-hero .hero-grid .hero-content .hero-text {
  font-size: 18px;
  margin-bottom: 28px;
  color: var(--theme-text-soft);
}
.section-hero .hero-grid .hero-content .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.section-hero .hero-grid .hero-content .hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.section-hero .hero-grid .hero-content .hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--theme-card);
  border: 1px solid var(--theme-border);
  color: var(--theme-text-soft);
  font-size: 14px;
}
.section-hero .hero-grid .hero-content .hero-points i {
  color: var(--theme-secondary);
}
.btn-hero {
  padding-left: 24px;
  padding-right: 24px;
  min-height: 50px;
}
.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-main {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 430px;
  padding: 28px;
  background: var(--theme-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--theme-border);
  box-shadow: var(--theme-shadow-soft);
  border-radius: 32px;
}
.hero-card-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(108, 79, 125, 0.16);
  border: 1px solid rgba(108, 79, 125, 0.24);
  color: var(--theme-text-primary);
}
.hero-card-logo {
  width: 96px;
  height: 96px;
  margin-bottom: 22px;
  border-radius: 24px;
  padding: 10px;
  background: var(--theme-card-hover);
  border: 1px solid var(--theme-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.hero-card-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--theme-text);
  margin-bottom: 10px;
}
.hero-card-text {
  margin-bottom: 0;
  color: var(--theme-text-soft);
}
.hero-floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--theme-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--theme-border);
  box-shadow: var(--theme-shadow-soft);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--theme-text);
}
.hero-floating-card i {
  color: var(--theme-secondary);
}
.hero-floating-card-top {
  top: 40px;
  right: 10px;
}
.hero-floating-card-bottom {
  bottom: 44px;
  left: 10px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: .85;
  pointer-events: none;
}
.hero-orb-1 {
  width: 220px;
  height: 220px;
  top: 40px;
  left: 30px;
  background: radial-gradient(circle, rgba(108, 79, 125, 0.38), transparent 68%);
}
.hero-orb-2 {
  width: 260px;
  height: 260px;
  bottom: 10px;
  right: 40px;
  background: radial-gradient(circle, rgba(39, 193, 165, 0.28), transparent 68%);
}
/* ---------- PRESENTATION ---------- */
.section-presentation {
  padding-top: 80px;
  padding-bottom: 80px;
}
.step-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 26px;
  overflow: hidden;
  background: var(--theme-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--theme-border);
  box-shadow: var(--theme-shadow-soft);
  border-radius: 24px;
}
.step-card.reverse .step-card-image {
  order: 2;
}
.step-card.reverse .step-card-caption {
  order: 1;
}
.step-card-image {
  min-height: 320px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--theme-card);
}
.image-account {
  background-image: linear-gradient(rgba(9, 13, 28, 0.35), rgba(9, 13, 28, 0.35)), url("../img/account.jpg");
}
.image-deck {
  background-image: linear-gradient(rgba(9, 13, 28, 0.35), rgba(9, 13, 28, 0.35)), url("../img/deck.jpg");
}
.image-table {
  background-image: linear-gradient(rgba(9, 13, 28, 0.35), rgba(9, 13, 28, 0.35)), url("../img/table.jpg");
}
.image-play {
  background-image: linear-gradient(rgba(9, 13, 28, 0.35), rgba(9, 13, 28, 0.35)), url("../img/play.jpg");
}
.step-card-caption {
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
  box-shadow: 0 12px 30px rgba(39, 193, 165, 0.2);
}
.caption-title {
  color: var(--theme-text);
}
.caption-content {
  margin-bottom: 0;
  color: var(--theme-text-soft);
}
/* ---------- CONTACT ---------- */
.section-contact {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-top: 20px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.info-card {
  padding: 28px;
  background: var(--theme-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--theme-border);
  box-shadow: var(--theme-shadow-soft);
  border-radius: 24px;
  text-align: center;
  height: 100%;
  color: var(--theme-text);
}
.info-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(108, 79, 125, 0.18), rgba(39, 193, 165, 0.18));
  border: 1px solid var(--theme-border);
  font-size: 30px;
  color: var(--theme-text);
}
.info-card .btn {
  margin-top: 10px;
}
/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-content {
    max-width: none;
  }
  .hero-visual {
    min-height: 420px;
  }
  .step-card {
    grid-template-columns: 1fr;
  }
  .step-card.reverse .step-card-image,
  .step-card.reverse .step-card-caption {
    order: initial;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .section-hero {
    padding-top: 46px;
  }
  .hero-text {
    font-size: 16px;
  }
  .hero-visual {
    min-height: 360px;
  }
  .hero-card-main {
    padding: 22px;
  }
  .hero-card-title {
    font-size: 24px;
  }
  .hero-floating-card {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    margin-top: 12px;
  }
  .hero-visual {
    display: block;
  }
  .step-card-image {
    min-height: 220px;
  }
  .step-card-caption {
    padding: 26px 22px;
  }
}

/*# sourceMappingURL=index.min.css.map */