/* ── FONT ── */
body {
  font-family: "DM Sans", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bricolage Grotesque", sans-serif;
}

/* ── BOTTONI ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #6c3e91;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.btn-primary:hover {
  background: #8b52b8;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(108, 62, 145, 0.25);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 24px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-outline-light:hover {
  border-color: #c09ee0;
  color: #c09ee0;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #6c3e91;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid #6c3e91;
  padding: 14px 24px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-outline-dark:hover {
  background: #6c3e91;
  color: #fff;
}

/* ── SECTION LABEL ── */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6c3e91;
  margin-bottom: 14px;
}
.sec-label::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #6c3e91;
  border-radius: 2px;
  flex-shrink: 0;
}
.sec-label-pale {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c09ee0;
  margin-bottom: 14px;
}
.sec-label-pale::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #c09ee0;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── CARDS ── */
.card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 28px;
  transition: all 0.3s;
}
.card-hover {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 28px;
  transition: all 0.3s;
}
.card-hover:hover {
  border-color: #6c3e91;
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(108, 62, 145, 0.1);
}
.card-dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.25rem;
  padding: 28px;
  transition: all 0.3s;
}
.card-dark-hover {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.25rem;
  padding: 28px;
  transition: all 0.3s;
}
.card-dark-hover:hover {
  border-color: rgba(192, 158, 224, 0.4);
  transform: translateY(-6px);
}

/* ── ORB ── */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}
.orb-1 {
  position: absolute;
  width: 700px;
  height: 700px;
  top: -150px;
  left: -150px;
  background: radial-gradient(
    circle,
    rgba(108, 62, 145, 0.65) 0%,
    transparent 65%
  );
  animation: driftA 14s ease-in-out infinite alternate;
}
.orb-2 {
  position: absolute;
  width: 550px;
  height: 550px;
  bottom: -120px;
  right: -120px;
  background: radial-gradient(
    circle,
    rgba(74, 36, 102, 0.5) 0%,
    transparent 65%
  );
  animation: driftB 11s ease-in-out infinite alternate;
}
.orb-3 {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 35%;
  left: 45%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(192, 158, 224, 0.18) 0%,
    transparent 65%
  );
  animation: driftC 17s ease-in-out infinite alternate;
}

/* ── HERO GRID ── */
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* ── HERO BADGE ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(192, 158, 224, 0.35);
  background: rgba(108, 62, 145, 0.18);
  color: #c09ee0;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c09ee0;
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}

/* ── SEZIONI ── */
.sec {
  padding: 96px 5vw;
}
.sec-in {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── VIGNETTE ── */
.vignette {
  background: radial-gradient(
    ellipse at center,
    transparent 40%,
    rgba(13, 10, 20, 0.7) 100%
  );
}

/* ── GRADIENT TESTO ── */
.text-gradient-brand {
  background: linear-gradient(135deg, #6c3e91, #c09ee0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SCROLL REVEAL ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* ── KEYFRAMES ── */
@keyframes driftA {
  to {
    transform: translate(80px, 60px);
  }
}
@keyframes driftB {
  to {
    transform: translate(-60px, -80px);
  }
}
@keyframes driftC {
  to {
    transform: translate(-40%, -40%) scale(1.15);
  }
}
@keyframes blink {
  0%,
  100% {
    opacity: 0.3;
    box-shadow: none;
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 10px #c09ee0;
  }
}
@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes lineGrow {
  from {
    transform: scaleX(0);
    transform-origin: left;
  }
  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}
/* ── OPACITÀ TESTO BIANCO ── */
.text-white-25 {
  color: rgba(255, 255, 255, 0.25);
}
.text-white-30 {
  color: rgba(255, 255, 255, 0.3);
}
.text-white-35 {
  color: rgba(255, 255, 255, 0.35);
}
.text-white-40 {
  color: rgba(255, 255, 255, 0.4);
}
.text-white-45 {
  color: rgba(255, 255, 255, 0.45);
}
.text-white-50 {
  color: rgba(255, 255, 255, 0.5);
}
.text-white-55 {
  color: rgba(255, 255, 255, 0.55);
}
.text-white-60 {
  color: rgba(255, 255, 255, 0.6);
}
.text-white-65 {
  color: rgba(255, 255, 255, 0.65);
}
.text-white-70 {
  color: rgba(255, 255, 255, 0.7);
}
.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}
.text-white-82 {
  color: rgba(255, 255, 255, 0.82);
}

/* ── OPACITÀ BORDI BIANCHI ── */
.border-white-6 {
  border-color: rgba(255, 255, 255, 0.06);
}
.border-white-7 {
  border-color: rgba(255, 255, 255, 0.07);
}
.border-white-9 {
  border-color: rgba(255, 255, 255, 0.09);
}
.border-white-10 {
  border-color: rgba(255, 255, 255, 0.1);
}

/* ── OPACITÀ SFONDI BIANCHI ── */
.bg-white-4 {
  background-color: rgba(255, 255, 255, 0.04);
}
.bg-white-5 {
  background-color: rgba(255, 255, 255, 0.05);
}
.bg-white-7 {
  background-color: rgba(255, 255, 255, 0.07);
}
/* ── CARD DARK HOVER EFFECT ── */
.card-dark-hover:hover {
  border-color: rgba(192, 158, 224, 0.4) !important;
  transform: translateY(-6px) !important;
  background: rgba(108, 62, 145, 0.08) !important;
  box-shadow: 0 20px 48px rgba(108, 62, 145, 0.15) !important;
}
