/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 34px) 0 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0.08) 46%,
      rgba(241, 234, 255, 0.1) 100%
    );
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -2;
  height: 120px;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}

.hero-orb-1 {
  top: 128px;
  right: 8%;
  width: 170px;
  height: 170px;
  background: rgba(142, 220, 255, 0.16);
  filter: blur(10px);
}

.hero-orb-2 {
  left: 5%;
  bottom: 78px;
  width: 130px;
  height: 130px;
  background: rgba(185, 150, 255, 0.14);
  filter: blur(10px);
}

.hero-container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(400px, 0.62fr);
  align-items: center;
  gap: clamp(34px, 5vw, 78px);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 14px;
  border: 1px solid rgba(159, 122, 234, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--color-primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 26px rgba(85, 51, 151, 0.06);
}

.hero h1 {
  max-width: 760px;
  font-family: var(--font-title);
  font-size: clamp(2.85rem, 5.05vw, 4.85rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  color: #23172f;
}

.hero h1::after {
  content: "";
  display: block;
  width: 118px;
  height: 5px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-blue));
}

.hero p {
  max-width: 650px;
  margin-top: 26px;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.42vw, 1.16rem);
}

.hero-mobile-points {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-actions .btn {
  min-width: 210px;
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: end;
  overflow: visible;
}

.hero-person-card {
  position: relative;
  width: min(100%, 490px);
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}

.hero-person-card::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 90%;
  height: 72%;
  transform: translateX(-50%);
  border-radius: 42px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.42),
      rgba(255, 255, 255, 0.16)
    ),
    linear-gradient(
      135deg,
      rgba(241, 234, 255, 0.62),
      rgba(233, 248, 255, 0.54)
    );
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow:
    0 26px 76px rgba(57, 38, 96, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(12px);
}

.hero-person-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 66%;
  height: 30px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(57, 38, 96, 0.14);
  filter: blur(18px);
}

.hero-person-glow {
  position: absolute;
  right: -10px;
  top: 112px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(142, 220, 255, 0.32),
    rgba(142, 220, 255, 0) 70%
  );
  filter: blur(8px);
}

.hero-person {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: none;
  height: min(74vh, 660px);
  max-height: 680px;
  object-fit: contain;
  object-position: bottom center;
  transform: translateY(8px);
  filter: drop-shadow(0 24px 34px rgba(35, 23, 47, 0.14));
}

.hero-person-badge {
  position: absolute;
  z-index: 3;
  left: -8px;
  bottom: 72px;
  max-width: 255px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(57, 38, 96, 0.13);
}

.hero-person-badge strong {
  display: block;
  color: var(--color-primary-dark);
  font-size: 0.9rem;
  line-height: 1.2;
}

.hero-person-badge span {
  display: block;
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}
