@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

html.lenis {
  height: auto;
}

html.lenis body {
  overflow: hidden;
}

body {
  font-family: 'Manrope', sans-serif;
  background-color: #F6FAF7;
  color: #000000;
}

/* Regla de identidad visual: nunca sombras negras, solo verdes tintadas. */
* {
  --tw-shadow-color: rgba(43, 200, 102, 0.15);
}

[x-cloak] {
  display: none !important;
}

/* ===== Phone mockup (hero) ===== */
.phone-mockup {
  position: relative;
  width: 280px;
  border-radius: 44px;
  padding: 40px 14px 14px;
  background: linear-gradient(160deg, #0B1F14 0%, #14301F 55%, #0B1F14 100%);
  box-shadow:
    0 30px 60px -20px rgba(15, 60, 35, 0.45),
    0 10px 30px -10px rgba(43, 200, 102, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #0B1F14;
  border-radius: 999px;
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-mockup__screen {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: #F6FAF7;
}

.phone-mockup__screen img {
  display: block;
  width: 100%;
  height: auto;
}

.phone-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border-radius: 18px;
  padding: 12px 16px;
  box-shadow: 0 12px 30px -8px rgba(43, 200, 102, 0.35);
}

/* ===== Mesh gradient backgrounds ===== */
.mesh-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.mesh-blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
}

/* ===== Hover lift for cards ===== */
.hover-lift {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
}

/* ===== Step connector line (Cómo funciona) ===== */
.step-connector {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    rgba(43, 200, 102, 0.35) 0,
    rgba(43, 200, 102, 0.35) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}
