/* ════════════════════════════════════════════════════════════
   HERO + TARJETAS DE SELECCIÓN
════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--bg-dark);
  color: #fff;
  padding-top: 9rem;
  padding-bottom: 6rem;
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero__blob--1 {
  width: 480px;
  height: 480px;
  background: rgba(219, 103, 125, 0.18);
  top: -120px;
  right: -80px;
  animation: blobDrift 10s ease-in-out infinite;
}

.hero__blob--2 {
  width: 420px;
  height: 420px;
  background: rgba(79, 168, 168, 0.18);
  bottom: -160px;
  left: -100px;
  animation: blobDrift 12s ease-in-out infinite reverse;
}

@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.08); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero__logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 1.75rem;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08), 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-shadow);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 780px;
  margin: 0 auto 1.1rem;
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(95deg, var(--primary) 10%, var(--teal) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 540px;
  margin: 0 auto 3.25rem;
  line-height: 1.7;
}

/* ─── Tarjetas de selección ─────────────────────────────── */
.choice-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
  max-width: 900px;
  margin: 0 auto;
}

.choice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), border-color 0.35s ease, background 0.35s ease;
  overflow: hidden;
}

.choice-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.choice-card--invites::before {
  background: radial-gradient(circle at 30% 20%, rgba(219, 103, 125, 0.28), transparent 70%);
}

.choice-card--web::before {
  background: radial-gradient(circle at 30% 20%, rgba(79, 168, 168, 0.28), transparent 70%);
}

.choice-card:hover,
.choice-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.28);
}

.choice-card:hover::before,
.choice-card:focus-visible::before {
  opacity: 1;
}

.choice-card > * {
  position: relative;
  z-index: 1;
}

.choice-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: #fff;
}

.choice-card--invites .choice-card__icon {
  background: color-mix(in srgb, var(--primary) 25%, transparent);
}

.choice-card--web .choice-card__icon {
  background: color-mix(in srgb, var(--teal) 25%, transparent);
}

.choice-card__icon svg {
  width: 24px;
  height: 24px;
}

.choice-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.choice-card__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.choice-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: auto;
}

.choice-card--invites .choice-card__cta {
  color: #ffb9c6;
}

.choice-card--web .choice-card__cta {
  color: #9fe0e0;
}

.choice-card__cta-arrow {
  transition: transform 0.3s ease;
}

.choice-card:hover .choice-card__cta-arrow {
  transform: translateY(3px);
}

@media (max-width: 700px) {
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 7.5rem;
  }
}
