/* Headlight lens anatomy */
.results-explainer-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 54%, rgba(247, 182, 50, 0.1), transparent 32%),
    linear-gradient(145deg, #181c1f 0%, #101214 100%);
}

.results-explainer-section::before {
  content: "ANATOMY";
  position: absolute;
  z-index: -1;
  top: -0.13em;
  right: -0.05em;
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(8rem, 17vw, 18rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.045);
  white-space: nowrap;
  pointer-events: none;
}

.results-explainer-shell {
  position: relative;
  z-index: 1;
}

.results-explainer-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.7fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: end;
  margin-bottom: 46px;
}

.results-explainer-heading h2 {
  max-width: 770px;
  font-size: clamp(2.35rem, 4vw, 4.2rem);
  line-height: 1.02;
}

.results-explainer-lede {
  max-width: 540px;
  margin: 0 0 7px;
  color: #cbd0d3;
  font-size: 1.06rem;
  line-height: 1.72;
}

.lens-anatomy {
  margin: 0;
}

.lens-anatomy-visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 1672 / 941;
  border-radius: 26px;
  background: #080a0b;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}

.lens-anatomy-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 7, 8, 0.3), transparent 25%, transparent 72%, rgba(6, 7, 8, 0.42)),
    linear-gradient(90deg, rgba(6, 7, 8, 0.22), transparent 18%, transparent 82%, rgba(6, 7, 8, 0.18));
  pointer-events: none;
}

.lens-anatomy-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lens-callout {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 178px;
  max-width: 220px;
  padding: 12px 15px 13px;
  border-left: 3px solid var(--amber);
  border-radius: 0 9px 9px 0;
  background: rgba(10, 12, 13, 0.82);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
}

.lens-callout span {
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.lens-callout strong {
  margin-top: 7px;
  color: var(--clear);
  font-family: var(--font-display);
  font-size: 0.82rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.lens-callout-removed {
  top: 5.5%;
  left: 2.2%;
}

.lens-callout-refined {
  bottom: 5.5%;
  left: 21%;
}

.lens-callout-protected {
  top: 5.5%;
  left: 43%;
}

.lens-callout-unchanged {
  right: 2.2%;
  bottom: 5.5%;
}

.lens-anatomy-note {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin: 0 28px;
  padding: 21px 26px;
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.lens-anatomy-note span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lens-anatomy-note p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.5;
}

@media (max-width: 960px) {
  .results-explainer-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 34px;
  }

  .results-explainer-heading h2 {
    max-width: 800px;
  }

  .results-explainer-lede {
    max-width: 760px;
  }

  .lens-callout {
    min-width: 160px;
    padding: 10px 12px;
  }

  .lens-callout-refined {
    left: 18%;
  }

  .lens-callout-protected {
    left: 42%;
  }

  .lens-anatomy-note {
    margin-inline: 18px;
  }
}

@media (max-width: 720px) {
  .results-explainer-section {
    padding-block: 72px;
  }

  .results-explainer-section::before {
    top: 0.03em;
    font-size: 31vw;
  }

  .lens-anatomy-visual {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    aspect-ratio: auto;
    padding: 0 12px 14px;
    border-radius: 18px;
  }

  .lens-anatomy-image {
    grid-column: 1 / -1;
    width: calc(100% + 24px);
    max-width: none;
    height: auto;
    margin-inline: -12px;
    aspect-ratio: 1672 / 941;
    object-fit: cover;
  }

  .lens-anatomy-visual::after {
    bottom: auto;
    height: auto;
    aspect-ratio: 1672 / 941;
  }

  .lens-callout {
    position: static;
    min-width: 0;
    max-width: none;
    padding: 13px 12px 14px;
    border-left: 0;
    border-top: 3px solid var(--amber);
    border-radius: 0 0 8px 8px;
    background: #15181a;
    box-shadow: none;
    backdrop-filter: none;
  }

  .lens-callout strong {
    font-size: 0.76rem;
  }

  .lens-anatomy-note {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-inline: 10px;
    padding: 18px 20px;
  }

  .lens-anatomy-note p {
    font-size: 0.87rem;
  }
}

@media (max-width: 440px) {
  .lens-anatomy-visual {
    grid-template-columns: 1fr;
  }

  .lens-callout strong {
    font-size: 0.8rem;
  }
}
