.chase-hero {
  margin-top: -88px;
  padding: 150px 0 104px;
  background:
    radial-gradient(circle at right top, rgba(241, 88, 48, 0.18), transparent 22%),
    radial-gradient(circle at left bottom, rgba(66, 204, 255, 0.14), transparent 26%),
    linear-gradient(135deg, #09111c 0%, #111a2b 45%, #0c1726 100%);
  color: #fff;
}

.chase-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 40px;
  align-items: center;
}

.chase-hero__logo {
  width: 170px;
  margin-bottom: 26px;
}

.chase-hero__copy h1 {
  margin: 0 0 18px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  line-height: 1.06;
}

.chase-hero__copy p {
  max-width: 640px;
  color: var(--text-on-dark);
  font-size: 1.05rem;
  line-height: 1.75;
}

.chase-hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.chase-hero__visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.chase-glow {
  width: min(380px, 72vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(241, 88, 48, 0.22), rgba(241, 88, 48, 0.04) 46%, transparent 66%);
  filter: blur(4px);
}

.chase-signal-card {
  position: absolute;
  width: min(250px, 56vw);
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.chase-signal-card:first-of-type {
  top: 48px;
  left: 0;
}

.chase-signal-card:last-of-type {
  right: 0;
  bottom: 52px;
}

.chase-signal-card span {
  display: block;
  margin-bottom: 8px;
  color: #ffb26f;
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.chase-signal-card strong {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.45;
}

.chase-process {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fbfcfd, #f0f4f8);
  box-shadow: var(--shadow);
}

.chase-process img {
  width: 100%;
}

.chase-modules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.chase-modules .info-panel p strong {
  color: var(--text);
}

.chase-diagram {
  margin-top: 32px;
}

.chase-approach {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.approach-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top right, rgba(241, 88, 48, 0.12), transparent 34%),
    linear-gradient(180deg, #0d1726, #142338);
  color: #fff;
  box-shadow: 0 20px 50px rgba(7, 17, 27, 0.15);
}

.approach-card h3 {
  margin: 0 0 14px;
  font-family: "Poppins", sans-serif;
}

.approach-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .chase-hero__grid,
  .chase-modules,
  .chase-approach {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .chase-hero {
    margin-top: -78px;
    padding-top: 136px;
  }
}

@media (max-width: 680px) {
  .chase-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .chase-signal-card {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .chase-hero__visual {
    display: grid;
    gap: 20px;
    min-height: 0;
  }

  .chase-glow {
    width: min(280px, 72vw);
  }
}
