.landing-page {
  background:
    radial-gradient(circle at 8% 10%, rgba(52, 181, 223, 0.09), transparent 20%),
    radial-gradient(circle at 92% 18%, rgba(250, 186, 63, 0.11), transparent 22%),
    radial-gradient(circle at 80% 76%, rgba(239, 116, 74, 0.08), transparent 20%),
    var(--bg-warm);
  font-family: 'Sniglet', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.landing-page p,
.landing-page li,
.landing-page a:not(.button) {
  font-weight: 400 !important;
  font-style: normal;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.landing-nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.landing-nav__links a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease;
}

.landing-nav__links a:hover {
  color: var(--text-strong);
}

.landing-page .topbar {
  border-bottom: none;
  background: rgba(248, 246, 242, 0.88);
  box-shadow: 0 10px 24px rgba(32, 54, 58, 0.035);
}

.landing-page .topbar__inner {
  min-height: 70px;
}

.landing-page .brand-lockup {
  gap: 0;
}

.landing-page .brand-lockup img {
  width: auto;
  height: 52px;
  transform: scale(1.9);
  transform-origin: left center;
}

.landing-page .landing-nav {
  gap: 12px;
}

.landing-page .landing-nav__links {
  gap: 20px;
}

.landing-page .landing-nav .button {
  min-height: 42px;
  padding: 0 18px;
}

a.brand-lockup {
  color: inherit;
  text-decoration: none;
}

.landing-main {
  position: relative;
  z-index: 1;
  margin-top: 22px;
}

.landing-hero {
  position: relative;
  overflow: hidden;
  padding: 33px 0 var(--space-5);
}

.landing-hero::before,
.landing-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(28px);
}

.landing-hero::before {
  top: -120px;
  left: -120px;
  width: 420px;
  height: 420px;
  background:
    radial-gradient(circle, rgba(52, 181, 223, 0.22), rgba(52, 181, 223, 0));
}

.landing-hero::after {
  top: -40px;
  right: -120px;
  width: 520px;
  height: 520px;
  background:
    radial-gradient(circle, rgba(250, 186, 63, 0.18), rgba(250, 186, 63, 0));
}

.landing-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(460px, 1.06fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
}

.landing-hero__copy {
  position: relative;
  z-index: 2;
  padding-top: 0;
}

.landing-hero__eyebrow {
  color: var(--color-primary);
}

.landing-hero__chips {
  margin-top: var(--space-4);
}

.landing-hero__copy h1 {
  margin: var(--space-4) 0 0;
  font-size: clamp(56px, 7.4vw, 94px);
  line-height: 0.88;
  letter-spacing: -0.06em;
  max-width: 8.3ch;
  text-wrap: balance;
}

.landing-hero__copy h1 span {
  position: relative;
  display: inline-block;
  color: var(--color-primary);
}

.landing-hero__copy h1 span::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -6px;
  bottom: 12px;
  height: 18px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(250, 186, 63, 0.44), rgba(239, 116, 74, 0.26));
  z-index: -1;
  transform: skewX(-12deg);
}

.landing-hero__copy p {
  margin: var(--space-5) 0 0;
  max-width: 50ch;
  color: var(--text-body);
  font-size: 20px;
  line-height: 1.72;
}

.landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.landing-hero__actions .button {
  min-height: 56px;
  padding: 0 24px;
  font-size: 15px;
}

.landing-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
  max-width: 38rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(32, 54, 58, 0.08);
  color: var(--text-body);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(32, 54, 58, 0.06);
}

.trust-pill::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 6px rgba(52, 155, 170, 0.12);
}

.landing-hero__micro {
  margin-top: var(--space-6);
  max-width: 44ch;
  padding: 20px 22px 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 240, 0.96));
  border: 1px solid rgba(32, 54, 58, 0.07);
  box-shadow: 0 24px 48px rgba(32, 54, 58, 0.08);
  color: var(--text-body);
  line-height: 1.68;
}

.landing-hero__micro strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text-strong);
}

.landing-hero__visual {
  position: relative;
  z-index: 1;
}

.hero-stage {
  position: relative;
  min-height: 820px;
  padding: 0 14px 42px;
}

.hero-stage__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(16px);
}

.hero-stage__glow--aqua {
  top: -8px;
  left: 22px;
  width: 280px;
  height: 280px;
  background:
    radial-gradient(circle, rgba(52, 181, 223, 0.28), rgba(52, 181, 223, 0));
}

.hero-stage__glow--gold {
  top: 4px;
  right: 22px;
  width: 260px;
  height: 260px;
  background:
    radial-gradient(circle, rgba(250, 186, 63, 0.26), rgba(250, 186, 63, 0));
}

.hero-stage__glow--coral {
  bottom: 90px;
  right: 62px;
  width: 260px;
  height: 260px;
  background:
    radial-gradient(circle, rgba(239, 116, 74, 0.18), rgba(239, 116, 74, 0));
}

.hero-stage__poster {
  position: absolute;
  inset: 22px 90px 140px 110px;
  border-radius: 48px;
  background:
    linear-gradient(160deg, rgba(255, 252, 248, 0.30), rgba(248, 246, 242, 0.68)),
    url("../LOGO/rukoBg.png") center 44% / 128% auto no-repeat;
  box-shadow:
    0 24px 60px rgba(32, 54, 58, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(32, 54, 58, 0.06);
  opacity: 0.86;
  transform: rotate(-6deg);
}

.hero-product {
  position: absolute;
  inset: 54px 78px 176px 94px;
  margin: 0;
  z-index: 2;
}

.hero-product__frame {
  position: absolute;
  inset: 0;
  border-radius: 44px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(255, 249, 241, 0.58));
  border: 1px solid rgba(32, 54, 58, 0.06);
  box-shadow:
    0 46px 100px rgba(32, 54, 58, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transform: rotate(-3deg);
}

.hero-product__frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.40), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.hero-product__image {
  position: absolute;
  inset: 26px;
  width: calc(100% - 52px);
  height: calc(100% - 52px);
  object-fit: cover;
  border-radius: 34px;
  transform: rotate(-1.4deg);
  box-shadow: 0 34px 78px rgba(32, 54, 58, 0.16);
}

.hero-ticket {
  position: absolute;
  width: 188px;
  padding: 14px 16px 16px;
  border-radius: 28px;
  background: rgba(255, 252, 248, 0.92);
  border: 1px solid rgba(32, 54, 58, 0.08);
  box-shadow: 0 22px 40px rgba(32, 54, 58, 0.09);
  backdrop-filter: blur(10px);
  z-index: 3;
}

.hero-ticket span {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-strong);
  -webkit-text-stroke: 0.18px currentColor;
}

.hero-ticket strong {
  display: block;
  margin-top: 8px;
  color: var(--text-strong);
  line-height: 1.32;
  font-size: 17px;
  font-weight: 400;
  -webkit-text-stroke: 0.22px currentColor;
}

.hero-ticket::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 11px;
  height: 8px;
  border-radius: 999px;
}

.hero-ticket small {
  display: block;
  margin-top: 8px;
  color: var(--text-body);
  line-height: 1.45;
  font-size: 13px;
}

.hero-ticket--cuento {
  top: -8px;
  left: 6px;
  transform: rotate(-8deg);
}

.hero-ticket--cuento::before {
  background: var(--color-cta);
}

.hero-ticket--musica {
  top: 48px;
  right: 4px;
  width: 194px;
  transform: rotate(8deg);
}

.hero-ticket--musica::before {
  background: var(--color-highlight);
}

.hero-ticket--dormir {
  left: 28px;
  bottom: 192px;
  width: 194px;
  transform: rotate(-5deg);
}

.hero-ticket--dormir::before {
  background: var(--color-primary);
}

.hero-ticket--voz {
  right: 6px;
  bottom: 156px;
  width: 194px;
  transform: rotate(6deg);
}

.hero-ticket--voz::before {
  background: var(--color-secondary);
}

.hero-stage__caption {
  position: absolute;
  left: 110px;
  right: 118px;
  bottom: 38px;
  display: grid;
  gap: 6px;
  padding: 18px 22px 20px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 252, 248, 0.94));
  border: 1px solid rgba(32, 54, 58, 0.07);
  box-shadow: 0 18px 42px rgba(32, 54, 58, 0.08);
  z-index: 2;
}

.hero-stage__caption strong {
  color: var(--text-strong);
  font-size: 15px;
  font-weight: 400;
  -webkit-text-stroke: 0.18px currentColor;
}

.hero-stage__caption span {
  color: var(--text-body);
  line-height: 1.55;
}

.hero-ecosystem {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: var(--space-5);
  align-items: center;
  margin-top: -14px;
  padding: 30px 30px 32px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 252, 248, 0.9), rgba(255, 246, 236, 0.96));
  border: 1px solid rgba(32, 54, 58, 0.07);
  box-shadow: 0 22px 60px rgba(32, 54, 58, 0.08);
  overflow: hidden;
}

.hero-ecosystem::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 252, 248, 0.96) 0%, rgba(255, 252, 248, 0.84) 40%, rgba(255, 252, 248, 0.52) 100%),
    url("../LOGO/rukoBg.png") 112% 50% / auto 180% no-repeat;
  opacity: 0.66;
  pointer-events: none;
}

.hero-ecosystem>* {
  position: relative;
  z-index: 1;
}

.hero-ecosystem__copy strong {
  display: block;
  max-width: 24ch;
  font-size: clamp(22px, 3vw, 31px);
  line-height: 1.24;
  letter-spacing: -0.03em;
}

.hero-ecosystem__pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  justify-content: flex-start;
}

.hero-ecosystem__pills span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(32, 54, 58, 0.08);
  box-shadow: 0 14px 24px rgba(32, 54, 58, 0.06);
  color: var(--text-body);
  font-size: 15px;
  font-weight: 700;
}

.section {
  position: relative;
  padding: var(--space-8) 0;
}

.section__head {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.section__head--center {
  align-items: center;
  text-align: center;
}

.section__head--center p {
  max-width: 52ch;
}

.section--flow {
  padding-top: var(--space-8);
}

.section--flow::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(32, 54, 58, 0.10), transparent);
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.steps-grid::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 96px;
  height: 2px;
  background: linear-gradient(90deg, rgba(52, 181, 223, 0.15), rgba(239, 116, 74, 0.18), rgba(250, 186, 63, 0.15));
}

.step-card {
  position: relative;
  overflow: hidden;
}

.step-card:nth-child(2) {
  transform: translateY(20px);
}

.step-card:nth-child(3) {
  transform: translateY(40px);
}

.step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(52, 155, 170, 0.12);
  color: #2f8a98;
  font-size: 14px;
  font-weight: 800;
}

.step-card__art {
  position: relative;
  height: 180px;
  margin: var(--space-5) 0;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 241, 233, 0.9));
  border: 1px solid rgba(32, 54, 58, 0.05);
}

.step-card__art--insert::before,
.step-card__art--read::before,
.step-card__art--play::before {
  content: "";
  position: absolute;
}

.step-card__art--insert::before {
  top: 26px;
  left: 30px;
  width: 112px;
  height: 118px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 246, 242, 0.92));
  border: 1px solid rgba(32, 54, 58, 0.08);
  box-shadow: 0 16px 28px rgba(32, 54, 58, 0.08);
}

.step-card__art--insert::after {
  content: "";
  position: absolute;
  top: 44px;
  right: 30px;
  width: 96px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(52, 155, 170, 0.86), rgba(52, 181, 223, 0.55));
}

.step-card__art--read::before {
  inset: 22px;
  border-radius: 22px;
  background:
    radial-gradient(circle at center, rgba(52, 181, 223, 0.20), transparent 38%),
    rgba(255, 252, 248, 0.95);
}

.step-card__art--read::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 96px;
  height: 96px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #244a52 0 15%, transparent 15.8%),
    radial-gradient(circle at center, #f4d081 0 32%, transparent 32.8%),
    linear-gradient(145deg, var(--color-primary), var(--color-secondary));
}

.step-card__art--play::before {
  inset: 26px 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
}

.step-card__art--play::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform: translate(-45%, -50%);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 34px solid var(--color-cta);
}

.step-card h3,
.feature-card h3,
.deck-card h3,
.personal-copy h3,
.design-copy h3,
.cta-banner h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.step-card p,
.feature-card p,
.deck-card p,
.personal-copy p,
.design-copy p,
.cta-banner p,
.footer-note {
  margin: var(--space-3) 0 0;
  color: var(--text-body);
  line-height: 1.65;
}

.section--cards {
  overflow: hidden;
}

.section--cards::before {
  content: "";
  position: absolute;
  inset: 80px 0 auto;
  height: 320px;
  background:
    radial-gradient(circle at 15% 40%, rgba(250, 186, 63, 0.14), transparent 18%),
    radial-gradient(circle at 88% 10%, rgba(52, 181, 223, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(239, 234, 226, 0.62), rgba(248, 246, 242, 0));
  pointer-events: none;
}

.cards-ecosystem {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.cards-ecosystem__intro {
  position: relative;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 252, 248, 0.96));
  border: 1px solid rgba(32, 54, 58, 0.06);
  box-shadow: 0 30px 70px rgba(32, 54, 58, 0.09);
}

.cards-ecosystem__intro::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(52, 181, 223, 0.08);
}

.cards-ecosystem__highlight {
  margin-top: var(--space-5);
  padding: var(--space-4) var(--space-5);
  border-radius: 24px;
  background: rgba(239, 234, 226, 0.82);
  border: 1px solid rgba(32, 54, 58, 0.05);
  color: var(--text-body);
  line-height: 1.65;
}

.cards-ecosystem__highlight strong {
  color: var(--text-strong);
}

.cards-ecosystem__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.cards-collection {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
  align-content: start;
}

.deck-card {
  position: relative;
  min-height: 220px;
  padding: var(--space-6) var(--space-5) var(--space-5);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 252, 248, 0.96));
  border: 1px solid rgba(32, 54, 58, 0.08);
  box-shadow: 0 18px 44px rgba(32, 54, 58, 0.08);
  overflow: hidden;
}

.deck-card::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 14px;
  height: 10px;
  border-radius: 999px;
}

.deck-card::after {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 110px;
  height: 110px;
  border-radius: 28px;
  opacity: 0.16;
}

.deck-card:nth-child(2) {
  transform: translateY(28px);
}

.deck-card:nth-child(4) {
  transform: translateY(18px);
}

.deck-card:nth-child(5) {
  grid-column: 1 / -1;
}

.deck-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(32, 54, 58, 0.06);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-strong);
}

.deck-card--cuento::before,
.deck-card--cuento::after {
  background: var(--color-cta);
}

.deck-card--musica::before,
.deck-card--musica::after {
  background: var(--color-highlight);
}

.deck-card--rutina::before,
.deck-card--rutina::after {
  background: var(--color-primary);
}

.deck-card--dormir::before,
.deck-card--dormir::after {
  background: var(--color-secondary);
}

.deck-card--custom::before,
.deck-card--custom::after {
  background: linear-gradient(90deg, var(--color-cta), var(--color-highlight), var(--color-primary));
}

.deck-card--custom {
  min-height: 190px;
}

.section--features {
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(52, 181, 223, 0.10), transparent 22%),
    radial-gradient(circle at 100% 100%, rgba(239, 116, 74, 0.10), transparent 20%);
}

.feature-grid {
  gap: var(--space-5);
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -20px -30px auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  opacity: 0.14;
}

.feature-card:nth-child(1)::after,
.feature-card:nth-child(4)::after {
  background: var(--color-primary);
}

.feature-card:nth-child(2)::after,
.feature-card:nth-child(5)::after {
  background: var(--color-highlight);
}

.feature-card:nth-child(3)::after,
.feature-card:nth-child(6)::after {
  background: var(--color-cta);
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 58px;
  border-radius: 18px;
  margin-bottom: var(--space-5);
  padding: 0 14px;
  background: rgba(52, 155, 170, 0.12);
  color: #2f8a98;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.feature-card:nth-child(2) .feature-card__icon,
.feature-card:nth-child(5) .feature-card__icon {
  background: rgba(250, 186, 63, 0.18);
  color: #8a5f05;
}

.feature-card:nth-child(3) .feature-card__icon,
.feature-card:nth-child(6) .feature-card__icon {
  background: rgba(239, 116, 74, 0.14);
  color: #c45935;
}

.section--personalization {
  overflow: hidden;
}

.section--personalization::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 80px;
  bottom: 80px;
  background:
    linear-gradient(180deg, rgba(239, 234, 226, 0.42), rgba(248, 246, 242, 0));
  pointer-events: none;
}

.personal-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.personal-copy {
  position: relative;
  z-index: 1;
}

.personal-points {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.personal-point {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-4);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(32, 54, 58, 0.05);
  box-shadow: 0 16px 30px rgba(32, 54, 58, 0.05);
}

.personal-point__dot {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 8px rgba(52, 155, 170, 0.12);
}

.creator-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 32px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 252, 248, 0.96));
}

.creator-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(250, 186, 63, 0.12);
}

.creator-card::after {
  content: "";
  position: absolute;
  left: -50px;
  bottom: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(52, 181, 223, 0.10);
}

.creator-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-4);
}

.creator-toolbar,
.voice-panel,
.story-upload,
.memory-card {
  position: relative;
  padding: var(--space-4);
  border-radius: 22px;
  background: rgba(255, 252, 248, 0.92);
  border: 1px solid rgba(32, 54, 58, 0.07);
}

.creator-toolbar {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  align-items: center;
}

.toolbar-pills {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.toolbar-pills span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(52, 181, 223, 0.12);
  color: #318caf;
  font-size: 13px;
  font-weight: 700;
}

.toolbar-pills span:nth-child(2) {
  background: rgba(239, 116, 74, 0.12);
  color: #c45935;
}

.toolbar-pills span:nth-child(3) {
  background: rgba(250, 186, 63, 0.16);
  color: #8a5f05;
}

.voice-wave {
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  align-items: end;
  gap: 6px;
  height: 92px;
  margin-top: var(--space-4);
}

.voice-wave span {
  border-radius: 999px;
  background: linear-gradient(180deg, var(--color-secondary), var(--color-primary));
}

.voice-wave span:nth-child(odd) {
  background: linear-gradient(180deg, var(--color-highlight), var(--color-cta));
}

.story-upload {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.upload-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(52, 155, 170, 0.12);
  color: #2f8a98;
  font-size: 13px;
  font-weight: 700;
}

.memory-card strong {
  display: block;
  font-size: 20px;
}

.memory-card small {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  line-height: 1.6;
}

.section--design {
  overflow: hidden;
}

.design-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.design-stage {
  position: relative;
  min-height: 760px;
  padding: 28px;
  border-radius: 38px;
  background:
    radial-gradient(circle at top left, rgba(52, 181, 223, 0.14), transparent 24%),
    radial-gradient(circle at bottom right, rgba(250, 186, 63, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.90), rgba(255, 252, 248, 0.96));
  border: 1px solid rgba(32, 54, 58, 0.06);
  box-shadow: var(--shadow-float);
}

.design-product {
  position: absolute;
  inset: 56px 72px 80px 72px;
  margin: 0;
}

.design-product__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 28px 60px rgba(32, 54, 58, 0.12);
}

.callout {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  max-width: 220px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(32, 54, 58, 0.07);
  box-shadow: 0 16px 26px rgba(32, 54, 58, 0.09);
  color: var(--text-body);
  font-size: 14px;
  font-weight: 700;
}

.callout::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
}

.callout--slot {
  top: 54px;
  left: 18px;
}

.callout--knob {
  top: 202px;
  left: 6px;
}

.callout--display {
  top: 358px;
  left: 22px;
}

.callout--controls {
  top: 110px;
  right: 8px;
}

.callout--speaker {
  right: 12px;
  bottom: 110px;
}

.callout-stack {
  display: none;
}

.design-copy .spec-list {
  display: grid;
  gap: var(--space-4);
}

.spec-list__item {
  padding: var(--space-4);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(32, 54, 58, 0.06);
  box-shadow: 0 14px 24px rgba(32, 54, 58, 0.05);
}

.section--final-cta {
  padding-top: var(--space-9);
}

.cta-banner {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(42px, 6vw, 76px);
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(52, 181, 223, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(250, 186, 63, 0.18), transparent 24%),
    radial-gradient(circle at bottom center, rgba(239, 116, 74, 0.10), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 252, 248, 0.98));
  border: 1px solid rgba(32, 54, 58, 0.06);
  box-shadow: var(--shadow-float);
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: auto -60px -90px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(52, 155, 170, 0.08);
}

.cta-banner h2 {
  font-size: clamp(36px, 5vw, 60px);
}

.cta-banner p {
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.landing-footer {
  padding-bottom: var(--space-8);
}

.landing-footer__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0 0;
  border-top: 1px solid rgba(32, 54, 58, 0.06);
}

.landing-footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.landing-footer__brand img {
  width: 74px;
}

@media (max-width: 1180px) {

  .landing-hero__grid,
  .hero-ecosystem,
  .cards-ecosystem,
  .design-layout,
  .personal-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 760px;
    margin-top: var(--space-5);
  }

  .hero-ecosystem {
    gap: var(--space-4);
  }

  .hero-ecosystem__copy strong {
    max-width: none;
  }

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

  .steps-grid::before {
    display: none;
  }

  .step-card,
  .step-card:nth-child(2),
  .step-card:nth-child(3) {
    transform: none;
  }

  .cards-collection {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-ecosystem__intro {
    max-width: none;
  }
}

@media (max-width: 860px) {
  .landing-nav__links {
    display: none;
  }

  .landing-hero {
    padding-top: var(--space-7);
  }

  .hero-stage {
    min-height: 720px;
    padding-bottom: 34px;
  }

  .hero-stage__poster {
    inset: 62px 44px 170px 54px;
  }

  .hero-product {
    inset: 98px 30px 208px;
  }

  .hero-ticket--cuento {
    top: 12px;
    left: 2px;
  }

  .hero-ticket--musica {
    top: 74px;
    right: 0;
  }

  .hero-ticket--dormir {
    left: 12px;
    bottom: 216px;
  }

  .hero-ticket--voz {
    right: 6px;
    bottom: 182px;
  }

  .hero-stage__caption {
    left: 46px;
    right: 46px;
    bottom: 24px;
  }

  .hero-ecosystem {
    margin-top: var(--space-4);
    padding: 26px 22px 28px;
  }

  .cards-collection {
    grid-template-columns: 1fr;
  }

  .deck-card,
  .deck-card:nth-child(2),
  .deck-card:nth-child(4) {
    transform: none;
  }

  .deck-card:nth-child(5) {
    grid-column: auto;
  }

  .design-stage {
    min-height: 860px;
    padding-bottom: 320px;
  }

  .design-product {
    inset: 42px 28px 280px;
  }

  .callout {
    max-width: 180px;
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .landing-hero__copy h1 {
    font-size: clamp(46px, 13vw, 68px);
  }

  .landing-hero__copy p,
  .section__head p,
  .cta-banner p {
    font-size: 17px;
  }

  .landing-hero__actions,
  .cards-ecosystem__actions,
  .cta-banner__actions {
    flex-direction: column;
  }

  .landing-hero__actions .button,
  .cards-ecosystem__actions .button,
  .cta-banner__actions .button {
    width: 100%;
  }

  .landing-hero__trust {
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-hero__trust {
    gap: var(--space-2);
  }

  .hero-stage {
    min-height: 690px;
    padding: 18px 0 26px;
  }

  .hero-stage__poster {
    inset: 72px 18px 198px;
    border-radius: 34px;
    background-size: 160% auto;
    background-position: 62% 44%;
  }

  .hero-product {
    inset: 102px 16px 222px;
  }

  .hero-ticket {
    width: 136px;
    padding: 12px 14px;
  }

  .hero-ticket strong {
    font-size: 15px;
  }

  .hero-ticket small {
    font-size: 12px;
  }

  .hero-ticket--cuento {
    top: 16px;
    left: 0;
  }

  .hero-ticket--musica {
    top: 58px;
    right: 0;
  }

  .hero-ticket--dormir {
    left: 2px;
    bottom: 236px;
  }

  .hero-ticket--voz {
    right: 4px;
    bottom: 208px;
  }

  .hero-stage__caption {
    left: 14px;
    right: 14px;
    padding: 16px 18px 18px;
  }

  .hero-ecosystem {
    padding: 22px 18px 24px;
  }

  .hero-ecosystem::before {
    background-size: auto 210%;
    background-position: 180% 50%;
  }

  .hero-ecosystem__pills {
    gap: var(--space-2);
  }

  .hero-ecosystem__pills span {
    min-height: 42px;
    font-size: 14px;
  }

  .creator-toolbar,
  .story-upload {
    flex-direction: column;
    align-items: flex-start;
  }

  .design-stage {
    min-height: auto;
    padding: 20px 20px 346px;
  }

  .design-product {
    position: absolute;
    inset: 24px 20px 360px;
  }

  .design-stage>.callout {
    display: none;
  }

  .callout-stack {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: grid;
    gap: var(--space-3);
  }

  .callout-stack .callout {
    position: relative;
    display: inline-flex;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
  }

  .landing-footer__panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================================
   NEW ARCHITECTURE SECTIONS (POLISHED)
   ========================================================= */

/* --- Product Split --- */
.product-split {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: var(--space-5);
}

@media (min-width: 960px) {
  .product-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  min-height: 480px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(253, 250, 245, 0.85));
  border-radius: 36px;
  border: 1px solid rgba(32, 54, 58, 0.06);
  box-shadow: 0 16px 48px rgba(32, 54, 58, 0.06);
}

.product-card__content {
  padding: clamp(32px, 4vw, 48px) clamp(32px, 4vw, 48px) 0;
  position: relative;
  z-index: 2;
}

.product-card__content h2 {
  margin: var(--space-2) 0 var(--space-3);
  font-size: clamp(32px, 4vw, 40px);
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text-strong);
}

.product-card__content p {
  color: var(--text-body);
  max-width: 38ch;
  margin-bottom: var(--space-5);
  font-size: 17px;
  line-height: 1.6;
}

.product-card__visual {
  position: relative;
  flex: 1;
  min-height: 260px;
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.product-card__bg {
  position: absolute;
  inset: 10% 10% -10% 10%;
  background: radial-gradient(circle, rgba(52, 181, 223, 0.25) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.product-card__glow {
  position: absolute;
  inset: 10% 10% -10% 10%;
  background: radial-gradient(circle, rgba(250, 186, 63, 0.25) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.product-card__visual img {
  width: 85%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
  margin-bottom: -24px;
  border-radius: 20px;
  transform: rotate(-3deg);
  box-shadow: 0 24px 50px rgba(32, 54, 58, 0.1);
  position: relative;
  z-index: 1;
}

.product-card__visual--kids {
  align-items: stretch;
  padding: 20px 24px 24px;
}

.product-card__visual--kids .product-card__bg {
  inset: auto 10% 2% 10%;
}

.product-card__visual--kids img {
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center 35%;
  margin-bottom: 0;
  border-radius: 28px;
  transform: none;
}

.cards-stack {
  position: relative;
  width: 240px;
  height: 240px;
  margin-bottom: var(--space-4);
}

.stacked-card {
  position: absolute;
  width: 154px;
  height: 154px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 40px rgba(32, 54, 58, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(252, 249, 245, 1));
}

.stacked-card--dormir {
  top: 40px;
  left: 10px;
  transform: rotate(-10deg);
  z-index: 1;
}

.stacked-card--dormir::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 16px;
  width: calc(100% - 32px);
  height: 8px;
  border-radius: 10px;
  background: var(--color-primary);
}

.stacked-card--musica {
  top: 20px;
  left: 44px;
  transform: rotate(5deg);
  z-index: 2;
}

.stacked-card--musica::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 16px;
  width: calc(100% - 32px);
  height: 8px;
  border-radius: 10px;
  background: var(--color-highlight);
}

.stacked-card--cuento {
  top: 60px;
  left: 76px;
  transform: rotate(15deg);
  z-index: 3;
}

.stacked-card--cuento::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 16px;
  width: calc(100% - 32px);
  height: 8px;
  border-radius: 10px;
  background: var(--color-cta);
}

/* --- Features Grid Compact --- */
.feature-grid-compact {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: var(--space-5);
}

@media (min-width: 600px) {
  .feature-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .feature-grid-compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.feature-card {
  padding: clamp(24px, 3vw, 32px);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(253, 250, 245, 0.8));
  border: 1px solid rgba(32, 54, 58, 0.06);
  box-shadow: 0 16px 36px rgba(32, 54, 58, 0.05);
}

.feature-card__dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin-bottom: var(--space-4);
  background: var(--bg-warm);
}

.feature-card__dot--aqua {
  background: linear-gradient(135deg, rgba(52, 181, 223, 0.3), rgba(52, 181, 223, 0.6));
}

.feature-card__dot--coral {
  background: linear-gradient(135deg, rgba(239, 116, 74, 0.3), rgba(239, 116, 74, 0.6));
}

.feature-card__dot--gold {
  background: linear-gradient(135deg, rgba(250, 186, 63, 0.3), rgba(250, 186, 63, 0.6));
}

.feature-card__dot--primary {
  background: linear-gradient(135deg, rgba(52, 155, 170, 0.3), rgba(52, 155, 170, 0.6));
}


/* --- Discovery Section --- */
.discovery-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .discovery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.discovery-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border-radius: 28px;
  border: 1px solid rgba(32, 54, 58, 0.06);
}

.discovery-card__art {
  height: 220px;
  width: 100%;
  position: relative;
}

.discovery-card--morning .discovery-card__art {
  background: linear-gradient(180deg, rgba(250, 186, 63, 0.5), rgba(250, 186, 63, 0.15));
}

.discovery-card--play .discovery-card__art {
  background: linear-gradient(180deg, rgba(239, 116, 74, 0.4), rgba(239, 116, 74, 0.15));
}

.discovery-card--sleep .discovery-card__art {
  background: linear-gradient(180deg, rgba(52, 181, 223, 0.4), rgba(52, 181, 223, 0.15));
}

.discovery-card__content {
  padding: var(--space-5);
  flex: 1;
  background: rgba(255, 255, 255, 0.8);
}

.discovery-card__content h3 {
  margin: 0 0 var(--space-2);
  font-size: 24px;
}

.discovery-card__content p {
  color: var(--text-body);
  margin: 0;
  line-height: 1.5;
}

/* --- Block Card for Blank --- */

.custom-card-visual {
  height: 320px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(246, 241, 233, 0.9));
  border: 1px solid rgba(32, 54, 58, 0.08);
  box-shadow: 0 24px 50px rgba(32, 54, 58, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-5);
  position: relative;
  overflow: hidden;
}

.custom-card-visual::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 32px;
  right: 32px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-secondary);
}

.custom-card-visual strong {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-strong);
  letter-spacing: -0.02em;
}


/* --- Lifestyle Hero --- */
.lifestyle-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  padding: 0;
  min-height: 540px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.95), rgba(255, 246, 236, 0.6));
  border-radius: 36px;
  border: 1px solid rgba(32, 54, 58, 0.06);
}

@media (min-width: 800px) {
  .lifestyle-hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
  }
}

.lifestyle-hero__content {
  padding: clamp(40px, 6vw, 80px);
  position: relative;
  z-index: 2;
}

.lifestyle-hero__content h2 {
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 var(--space-4);
  color: var(--text-strong);
}

.lifestyle-hero__content p {
  font-size: 19px;
  color: var(--text-body);
  max-width: 38ch;
  line-height: 1.65;
  margin: 0;
}

.lifestyle-hero__visual {
  height: 100%;
  min-height: 340px;
  position: relative;
  background:
    radial-gradient(circle at 70% 30%, rgba(250, 186, 63, 0.25) 0%, transparent 60%),
    radial-gradient(circle at 30% 70%, rgba(52, 181, 223, 0.25) 0%, transparent 60%),
    url("./assets/rukoBg.png") center/cover no-repeat;
  opacity: 0.95;
  border-radius: 0;
}

@media (min-width: 800px) {
  .lifestyle-hero__visual {
    border-radius: 0 36px 36px 0;
  }
}

/* --- Footer Enhancements --- */
.landing-footer {
  padding-top: var(--space-8);
  padding-bottom: var(--space-6);
  background: var(--bg-neutral);
  border-top: 1px solid rgba(32, 54, 58, 0.05);
}

.landing-footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-bottom: var(--space-7);
}

@media (min-width: 800px) {
  .landing-footer__wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}

.landing-footer__navs {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(40px, 6vw, 90px);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col strong {
  font-weight: 400;
  font-size: 16px;
  color: var(--text-strong);
  margin-bottom: 6px;
  -webkit-text-stroke: 0.2px currentColor;
}

.footer-col a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 15px;
  transition: color 150ms ease;
}

.footer-col a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(32, 54, 58, 0.05);
}

@media (min-width: 600px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom small {
  color: var(--text-muted);
  font-size: 14px;
}

/* --- Blank Cards Redesign --- */
.blank-container {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 72px);
}

.blank-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 800px) {
  .blank-intro {
    grid-template-columns: 1fr 1fr;
  }
}

.blank-intro__copy h2 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: var(--space-3) 0 var(--space-4);
  color: var(--text-strong);
}

.blank-intro__copy p {
  color: var(--text-body);
  font-size: 19px;
  line-height: 1.6;
  max-width: 40ch;
}

.blank-intro__hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
}

.blank-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 181, 223, 0.3) 0%, transparent 70%);
  z-index: 0;
  filter: blur(20px);
}

.blank-intro__hero img {
  position: relative;
  z-index: 1;
  width: 75%;
  max-width: 280px;
  transform: rotate(6deg);
  box-shadow: 0 24px 50px rgba(32, 54, 58, 0.12);
  border-radius: 20px;
}

.blank-benefits {
  background: linear-gradient(135deg, rgba(255, 252, 248, 1), rgba(253, 248, 239, 1));
  border-radius: 36px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(32, 54, 58, 0.06);
  box-shadow: 0 24px 48px rgba(32, 54, 58, 0.05);
}

@media (min-width: 800px) {
  .blank-benefits {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.blank-benefits__content {
  padding: clamp(32px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blank-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.blank-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-strong);
}

.blank-list__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.blank-benefits__visual {
  margin: 0;
  height: 100%;
  min-height: 320px;
}

.blank-benefits__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.blank-steps-wrapper {
  text-align: center;
  padding: var(--space-4) 0;
}

.blank-steps-title {
  font-size: 28px;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
  color: var(--text-strong);
}

.blank-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  text-align: left;
}

@media (min-width: 768px) {
  .blank-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.blank-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  border: 1px solid rgba(32, 54, 58, 0.06);
}

.blank-step strong {
  font-size: 42px;
  line-height: 1;
  color: var(--color-cta);
  opacity: 0.8;
  font-family: monospace;
}

.blank-step__text h4 {
  margin: 0 0 4px;
  font-size: 18px;
  color: var(--text-strong);
}

.blank-step__text p {
  margin: 0;
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.4;
}

/* --- Global Font Sniglet --- */
h1,
h2,
h3,
h4 {
  font-family: 'Sniglet', system-ui, -apple-system, sans-serif !important;
  font-weight: 400 !important;
  font-style: normal;
}

.eyebrow,
.button,
.deck-card__label,
.editorial-step strong {
  font-family: 'Sniglet', system-ui, -apple-system, sans-serif !important;
}

.landing-page .button {
  font-weight: 400 !important;
  font-style: normal;
}

.landing-page .eyebrow,
.landing-page .deck-card__label {
  font-weight: 400 !important;
  font-style: normal;
}

/* --- Editorial "Crea tu tarjeta" --- */
.section--editorial {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 16%, rgba(52, 181, 223, 0.09), transparent 20%),
    radial-gradient(circle at 90% 8%, rgba(250, 186, 63, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(239, 234, 226, 0.54), rgba(248, 246, 242, 0.96) 38%, var(--bg-warm));
}

.section--editorial::before,
.section--editorial::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.section--editorial::before {
  width: 280px;
  height: 280px;
  top: 52px;
  right: -120px;
  background: radial-gradient(circle, rgba(239, 116, 74, 0.12), rgba(239, 116, 74, 0));
  filter: blur(12px);
}

.section--editorial::after {
  width: 220px;
  height: 220px;
  left: -80px;
  bottom: 36px;
  background: radial-gradient(circle, rgba(52, 155, 170, 0.10), rgba(52, 155, 170, 0));
  filter: blur(8px);
}

.blank-editorial {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(64px, 10vw, 120px);
  padding: clamp(10px, 2vw, 18px) 0;
}

.editorial-top {
  display: grid;
  gap: clamp(40px, 8vw, 80px);
  align-items: center;
}

@media (min-width: 960px) {
  .editorial-top {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  }
}

.editorial-top__copy {
  max-width: 34rem;
}

.editorial-top__copy h2 {
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1.03;
  margin: var(--space-3) 0 var(--space-4);
  color: var(--text-strong);
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.editorial-top__copy p {
  font-size: 19px;
  line-height: 1.72;
  color: var(--text-body);
  max-width: 44ch;
}

.eyebrow--coral {
  color: var(--color-cta);
}

.editorial-top__copy h2,
.editorial-steps-container h3,
.editorial-fan__title,
.editorial-step__txt h4 {
  font-family: "Sniglet", "SF Pro Rounded", "Avenir Next Rounded", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal;
}

.editorial-fan {
  position: relative;
  width: min(100%, 560px);
  height: 440px;
  margin: 0;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fan-glow {
  display: none;
}

.fan-shadow {
  display: none;
}

.fan-card {
  position: absolute;
  width: clamp(360px, 62vw, 440px);
  max-width: 92%;
  clip-path: none;
  filter: drop-shadow(0 26px 34px rgba(32, 54, 58, 0.14));
  transform-origin: center center;
  will-change: transform;
}

.fan-card--1 {
  z-index: 3;
  transform: rotate(-11deg) translateX(-82px) translateY(2px);
}

.fan-card--2 {
  z-index: 2;
  transform: rotate(-1deg) translateY(-28px);
}

.fan-card--3 {
  z-index: 1;
  transform: rotate(12deg) translateX(84px) translateY(8px);
}

.bullet-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bullet-dot--aqua {
  background: var(--color-primary);
}

.bullet-dot--coral {
  background: var(--color-cta);
}

.bullet-dot--gold {
  background: var(--color-highlight);
}

.bullet-dot--primary {
  background: rgba(52, 181, 223, 1);
}

.editorial-top__photo {
  position: relative;
  z-index: 1;
  margin: 0;
}

.editorial-top__photo--featured {
  min-height: 560px;
}

.editorial-top__photo--featured::before {
  content: "";
  position: absolute;
  inset: auto auto 14px -24px;
  width: 180px;
  height: 180px;
  border-radius: 44px;
  background: linear-gradient(145deg, rgba(52, 181, 223, 0.12), rgba(250, 186, 63, 0.12));
  z-index: 0;
  transform: rotate(-10deg);
}

.editorial-top__photo--featured::after {
  content: "";
  position: absolute;
  inset: 34px -18px auto auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(239, 116, 74, 0.12);
  filter: blur(6px);
  z-index: 0;
}

.editorial-top__photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  position: relative;
  z-index: 1;
  border-radius: 42px;
  object-fit: cover;
  box-shadow: 0 32px 72px rgba(32, 54, 58, 0.12);
}

.editorial-bottom {
  display: grid;
  gap: clamp(40px, 8vw, 80px);
  align-items: center;
}

@media (min-width: 960px) {
  .editorial-bottom {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  }
}

.editorial-bottom__content {
  display: grid;
  gap: 30px;
  align-self: center;
}

.editorial-benefits {
  padding-right: 8px;
}

.editorial-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-strong);
}

.editorial-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.45;
}

.editorial-steps-container {
  padding: 24px 26px 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.70), rgba(255, 252, 248, 0.92));
  border: 1px solid rgba(32, 54, 58, 0.06);
  box-shadow: 0 18px 34px rgba(32, 54, 58, 0.06);
}

.editorial-steps-container h3 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 var(--space-5);
  color: var(--text-strong);
}

.editorial-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 700px) {
  .editorial-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.editorial-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px 0 0;
}

.editorial-step strong {
  font-size: 48px;
  line-height: 0.82;
  color: var(--color-cta);
}

.editorial-step__txt h4 {
  margin: 0 0 6px;
  font-size: 18px;
  color: var(--text-strong);
}

.editorial-step__txt p {
  margin: 0;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.58;
}

@media (max-width: 959px) {
  .editorial-fan {
    justify-self: stretch;
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
  }

  .editorial-top__copy,
  .editorial-bottom__content {
    max-width: none;
  }
}

@media (max-width: 700px) {
  .blank-editorial {
    gap: 52px;
  }

  .editorial-top,
  .editorial-bottom {
    gap: 34px;
  }

  .editorial-top__copy h2 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .editorial-top__copy p {
    font-size: 17px;
  }

  .editorial-fan {
    height: 340px;
  }

  .fan-card {
    width: clamp(280px, 78vw, 350px);
  }

  .fan-card--1 {
    transform: rotate(-11deg) translateX(-48px) translateY(8px);
  }

  .fan-card--3 {
    transform: rotate(11deg) translateX(50px) translateY(12px);
  }

  .editorial-top__photo--featured,
  .editorial-top__photo img {
    min-height: 420px;
  }

  .editorial-list {
    grid-template-columns: 1fr;
    font-size: 16px;
  }

  .editorial-steps-container {
    padding: 22px 20px 24px;
  }

  .editorial-step {
    grid-template-columns: 56px 1fr;
    gap: 12px;
  }

  .editorial-step strong {
    font-size: 42px;
  }
}
