/* ==========================================================================
   Section: .hero-genny  —  "New product available now." (myGenny)
   Fully namespaced. Does NOT touch or inherit from the existing .hero styles.
   Design canvas: 1920 x 800, 300px side gutters (1320px content).
   Assets expected at /i2/ :
     genny-mesh.png  genny-laptop.png  genny-wordmark.png  genny-arrow.png
   ========================================================================== */

.hero-genny {
  position: relative;
  height: 800px;
  padding: 80px 0 0;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: visible; /* the sharp mesh intentionally spills below the black band */
  isolation: isolate;
}

/* ── Decoration: ambient blurred swirl (clipped to the black band) ───────── */
.hero-genny__glow-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.hero-genny__glow {
  position: absolute;
  left: 16%;
  top: -14%;
  width: 88%;
  aspect-ratio: 2144 / 2043;
  background: url("/i2/genny-mesh.png") center/contain no-repeat;
  filter: blur(60px);
  opacity: 0.5;
}

/* ── Decoration: sharp coil mesh ─────────────────────────────────────────── */
.hero-genny__mesh {
  position: absolute;
  left: 45%;
  top: -35px;
  width: 55%;
  aspect-ratio: 2144 / 2043;
  background: url("/i2/genny-mesh.png") center/contain no-repeat;
  z-index: 1;
  pointer-events: none;
}

/* ── Product shot: laptop on rock ────────────────────────────────────────── */
.hero-genny__device {
  position: absolute;
  left: 55%;
  bottom: 0;
  width: 41.67%;
  aspect-ratio: 1600 / 1195;
  background: url("/i2/genny-laptop.png") center bottom/contain no-repeat;
  z-index: 2;
  pointer-events: none;
}

/* ── Content ─────────────────────────────────────────────────────────────── */
.hero-genny__content {
  position: relative;
  z-index: 3;
  width: min(1320px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}
.hero-genny__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  max-width: 872px;
}

/* Logo — "my" set in type, "Genny" from the wordmark asset */
.hero-genny__logo {
  display: block;
  width: 325px;
  height: auto;
}

.hero-genny__heading {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: clamp(38px, 3.4vw, 64px);
  line-height: 110%;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero-genny__subheading {
  margin: 0;
  max-width: 872px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(17px, 1.3vw, 24px);
  line-height: 150%;
  color: #fff;
}

/* CTA */
.hero-genny__cta {
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 6px 6px 6px 16px;
  height: 44px;
  background: #404040;
  border-radius: 32px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.hero-genny__cta:hover {
  background: #4d4d4d;
}
.hero-genny__cta-text {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  white-space: nowrap;
}
.hero-genny__cta-icon {
  display: block;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1400px) {
  .hero-genny {
    height: auto;
    min-height: 680px;
    padding: 72px 0 320px;
  }
  .hero-genny__device {
    left: auto;
    right: -4%;
    width: 54%;
  }
  .hero-genny__mesh {
    left: 40%;
    width: 66%;
  }
}

@media (max-width: 900px) {
  .hero-genny {
    min-height: 0;
    padding: 56px 0 260px;
    overflow: hidden;
  }
  .hero-genny__content {
    gap: 32px;
  }
  .hero-genny__container {
    gap: 24px;
  }
  .hero-genny__logo {
    width: 212px;
  }
  .hero-genny__device {
    right: -14%;
    bottom: 0;
    width: 88%;
  }
  .hero-genny__mesh {
    left: 26%;
    top: auto;
    bottom: -8%;
    width: 96%;
  }
  .hero-genny__glow {
    left: 0;
    width: 120%;
  }
}

/* CTA row: one live pill + two "Soon" pills */
.hero-genny__actions {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

/* Inactive variant — darker fill, no arrow, SOON badge */
.hero-genny__cta--soon {
  position: relative;
  padding: 14px 16px;
  background: #1d1d1d;
  cursor: default;
}
.hero-genny__cta--soon:hover {
  background: #1d1d1d;
}
.hero-genny__cta-badge {
  position: absolute;
  top: -4px;
  right: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  height: 15px;
  padding: 0 6px;
  background: #f48360;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 10px;
  line-height: 15px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #000;
  white-space: nowrap;
}
