/* ============================================================
   HERO SESSIONS
   All rules scoped to .hero-ses to avoid conflicts.
   Mirrors the /subscriptions hero (.hero-sub): left-aligned,
   var(--fs-h1) headline, full container width, navy background.
   ============================================================ */

/* ------------------------------------------------------------
   Section wrapper
   ------------------------------------------------------------ */
.hero-ses {
  position: relative;
  background: #0E1438; /* matches the /subscriptions hero exactly */
  min-height: 480px;
  padding: 4rem 0 5rem;
}

/* ------------------------------------------------------------
   Inner container — matches .container exactly
   ------------------------------------------------------------ */
.hero-ses__container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 48px;
}

/* ------------------------------------------------------------
   Eyebrow — matches the /subscriptions hero eyebrow
   ------------------------------------------------------------ */
.hero-ses__eyebrow {
  display: block;
  font-family: Inter, -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 18px;
  -webkit-font-smoothing: antialiased;
}

/* ------------------------------------------------------------
   Headline — var(--fs-h1)
   ------------------------------------------------------------ */
.hero-ses__headline {
  font-family: 'Inter Display', Inter, -apple-system, sans-serif;
  font-size: var(--fs-h1);
  font-weight: var(--fw-heading);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #ffffff;
  max-width: 800px;
  margin: 0 0 1.25rem;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  -webkit-font-smoothing: antialiased;
}

/* ------------------------------------------------------------
   Subhead — white at ~82% for readability on navy
   ------------------------------------------------------------ */
.hero-ses__subhead {
  font-family: Inter, -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.005em;
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  margin: 0 0 2rem;
  -webkit-font-smoothing: antialiased;
}

/* ------------------------------------------------------------
   CTA button — purple, matches the /subscriptions hero CTA
   ------------------------------------------------------------ */
.hero-ses__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple);
  color: #ffffff;
  font-family: Inter, -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 500;
  height: 48px;
  padding: 0 26px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease;
  -webkit-font-smoothing: antialiased;
}

.hero-ses__cta:hover {
  background: #5A2C6E;
  color: #ffffff;
  text-decoration: none;
}

.hero-ses__cta-arrow {
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE — mirrors the /subscriptions hero breakpoints
   ============================================================ */

@media (max-width: 1024px) {
  .hero-ses {
    padding: 3rem 0 4rem;
  }
}

@media (max-width: 768px) {
  .hero-ses {
    padding: 2.5rem 0 3rem;
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .hero-ses__container {
    padding-inline: 24px;
  }

  .hero-ses__headline {
    max-width: 100%;
  }

  .hero-ses__subhead {
    max-width: 100%;
    font-size: 14px;
  }
}

/* ============================================================
   ACCESSIBILITY - prefers-reduced-motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero-ses__cta {
    transition: none;
  }
}
