/* ============================================================================
   Kippis · Landing (/)
   ----------------------------------------------------------------------------
   Solo lo exclusivo de la home. Los valores son los de la landing original:
   mismas medidas, mismos clamp(), mismos breakpoints.
   ========================================================================== */

/* ── Hero ──────────────────────────────────────────────────────────────────── */

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
  padding: 72px 0 110px;
}

.hero__brand {
  color: var(--color-olive);
  font-family: var(--font-logo);
  font-size: clamp(76px, 10vw, 132px);
  font-weight: 700;
  letter-spacing: -5px;
  line-height: 0.82;
}

.hero__brand-dot {
  color: var(--color-coral);
}

.hero__description {
  max-width: 470px;
  margin-top: 50px;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

/* ── Tarjeta del hero ──────────────────────────────────────────────────────── */

.hero-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: 34px;
  overflow: hidden;
  background: var(--color-olive);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* Círculos decorativos: textura de marca, no ilustración. */
.hero-card::before {
  content: "";
  position: absolute;
  top: -64px;
  right: -48px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(249, 247, 243, 0.14);
  border-radius: 50%;
  background: rgba(255, 238, 140, 0.05);
}

.hero-card::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(90, 16, 42, 0.24);
}

.hero-card__badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  padding: 8px 14px;
  color: var(--color-background);
  background: var(--color-bordo);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.hero-card__badge span {
  width: 6px;
  height: 6px;
  background: var(--color-yellow);
  border-radius: 50%;
}

.hero-card__title {
  position: relative;
  z-index: 2;
  max-width: 310px;
  margin-top: 28px;
  color: var(--color-background);
  font-family: var(--font-title);
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -2.4px;
  line-height: 0.92;
}

.hero-card__title span {
  color: var(--color-yellow);
}

/* ── Secciones ─────────────────────────────────────────────────────────────── */

.section {
  padding: 74px 0;
}

.section__header {
  max-width: 560px;
  margin-bottom: 36px;
}

.section__kicker {
  margin-bottom: 12px;
  color: var(--color-olive);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section__title {
  color: var(--color-text);
  font-family: var(--font-title);
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 500;
  letter-spacing: -2.4px;
  line-height: 0.96;
}

/* `em` acá es acento cromático, no énfasis itálico: la identidad usa Newsreader
   sin itálica. */
.section__title em {
  color: var(--color-olive);
  font-style: normal;
}

.section__description {
  max-width: 520px;
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ── Pasos ─────────────────────────────────────────────────────────────────── */

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
}

.step-card {
  min-height: 230px;
  padding: 26px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
}

.step-card__number {
  color: var(--color-olive);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

.step-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-top: 24px;
  place-items: center;
  background: var(--color-yellow-soft);
  border-radius: 15px;
  color: var(--color-bordo);
}

.step-card__icon svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.step-card__title {
  margin-top: 20px;
  color: var(--color-text);
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.7px;
  line-height: 1.08;
}

.step-card__text {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* ── Bloque de suscripción ─────────────────────────────────────────────────── */

.pass-section {
  padding: 28px 0 80px;
}

.pass {
  position: relative;
  padding: 52px 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 238, 140, 0.16), transparent 30%),
    var(--color-bordo);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.pass::before {
  content: "";
  position: absolute;
  top: -92px;
  right: 18%;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(255, 238, 140, 0.06);
}

.pass__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.pass__title {
  color: var(--color-background);
  font-family: var(--font-title);
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 0.98;
}

.pass__title em {
  color: var(--color-yellow);
  font-style: normal;
}

.pass__text {
  max-width: 520px;
  margin-top: 18px;
  margin-bottom: 28px;
  color: rgba(249, 247, 243, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

/* Nota de edad dentro del bloque bordó. */
.pass__note {
  margin-top: 20px;
  color: rgba(249, 247, 243, 0.58);
  font-size: 13px;
  line-height: 1.6;
}

/* ── CTA final ─────────────────────────────────────────────────────────────── */

.final-cta {
  padding: 92px 0 104px;
  text-align: center;
}

.final-cta__title {
  color: var(--color-text);
  font-family: var(--font-title);
  font-size: clamp(46px, 6vw, 72px);
  font-weight: 500;
  letter-spacing: -2.5px;
  line-height: 0.96;
}

.final-cta__title em {
  color: var(--color-coral);
  font-style: normal;
}

.final-cta__text {
  max-width: 420px;
  margin: 20px auto 30px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
}

.final-cta__stores {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* ── Responsive ────────────────────────────────────────────────────────────── */

@media (max-width: 820px) {
  .nav__link {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 0 84px;
  }

  .hero-card {
    min-height: 330px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .pass {
    padding: 36px 30px;
  }
}

@media (max-width: 520px) {
  .hero__brand {
    letter-spacing: -3px;
  }

  .hero__description {
    margin-top: 34px;
    font-size: 16px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-card {
    min-height: 300px;
    padding: 26px;
  }

  .hero-card__title {
    font-size: 46px;
  }

  .section {
    padding: 58px 0;
  }

  .final-cta {
    padding: 72px 0 86px;
  }
}
