.hero {
  position: relative;
  padding: 78px 0 88px;
}

.hero::before {
  content: "";
  position: absolute;
  left: -12vw;
  top: 32%;
  width: 48vw;
  height: 48vw;
  max-width: 760px;
  max-height: 760px;
  border: 1px solid rgba(210,167,217,.26);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  gap: 56px;
  align-items: center;
}

.fund-line {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 27px;
  padding: 14px 16px;
  border-left: 3px solid var(--lavender);
  background: rgba(234,228,235,.58);
  border-radius: 0 16px 16px 0;
  max-width: 720px;
}

.fund-logos {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: none;
}

.fund-logo {
  width: 92px;
  height: 44px;
  object-fit: contain;
  object-position: left center;
  flex: none;
  background: #fff;
  border-radius: 8px;
}

.fund-logo--putp {
  width: 92px;
  height: 70px;
  padding: 2px;
  object-position: center;
}

.fund-copy {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #625865;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--plum-2);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--lavender);
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 5.45vw, 78px);
  line-height: .99;
  letter-spacing: -.058em;
  font-weight: 820;
  max-width: 760px;
}

.hero-subtitle {
  margin-bottom: 14px;
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.22;
  letter-spacing: -.03em;
  color: var(--plum);
  font-weight: 760;
  max-width: 690px;
}

.hero-description {
  max-width: 665px;
  margin-bottom: 30px;
  font-size: 18px;
  color: var(--muted);
}

.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.btn {
  min-height: 52px;
  padding: 0 23px;
  font-size: 15px;
}

.btn-primary { background: var(--plum); color: #fff; }
.btn-soft { background: var(--lavender-soft); color: var(--plum); }

.hero-note {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--muted);
}

.hero-note .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px var(--green-soft);
  margin-left: 6px;
}
.dialog-stage {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.dialog-stage::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210,167,217,.34) 0%, rgba(234,228,235,.20) 44%, rgba(255,255,255,0) 72%);
  z-index: 0;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.dialog-stage::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(210,167,217,.24);
  border-radius: 50%;
  z-index: 0;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.mockup-glow { display: none; }

.hero-device {
  position: relative;
  z-index: 2;
  width: min(100%, 455px);
}

.hero-device img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 26px 58px rgba(49,35,54,.20));
}

.hero-badge {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  max-width: 260px;
  padding: 10px 14px;
  border: 1px solid rgba(73,50,79,.09);
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  color: var(--plum);
  box-shadow: 0 14px 34px rgba(73,50,79,.13);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 12px;
  line-height: 1.15;
  font-weight: 820;
  letter-spacing: -.015em;
  white-space: nowrap;
  pointer-events: none;
}


.badge-interface {
  right: 2px;
  top: 88px;
  transform: rotate(3deg);
}

.badge-audits {
  left: -12px;
  top: 210px;
  transform: rotate(-4deg);
}

.badge-flow {
  right: 10px;
  bottom: 92px;
  transform: rotate(3deg);
}


.phone-caption::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--green-soft);
}

