:root {
  --discovery-ink: #171a21;
  --discovery-secondary: #4e5665;
  --discovery-muted: #737c8c;
  --discovery-border: #dfe3e8;
  --discovery-surface: #f6f8fa;
  --discovery-white: #ffffff;
  --discovery-blue: #1769e0;
  --discovery-blue-hover: #0f58c7;
  --discovery-success: #17814b;
}

.discovery-page,
.discovery-page * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.discovery-page {
  background: var(--discovery-white);
  color: var(--discovery-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.discovery-page h1,
.discovery-page h2,
.discovery-page h3,
.discovery-page p,
.discovery-page figure,
.discovery-page dl,
.discovery-page dd {
  margin-top: 0;
}

.discovery-page h1,
.discovery-page h2,
.discovery-page h3 {
  color: var(--discovery-ink);
  font-family: inherit;
}

.discovery-hero {
  padding: 120px 0 40px;
  overflow: hidden;
}

.discovery-hero__inner {
  max-width: 840px;
  text-align: center;
}

.discovery-eyebrow,
.discovery-kicker {
  color: var(--discovery-blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.discovery-eyebrow span {
  background: var(--discovery-blue);
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin-right: 8px;
  width: 8px;
}

.discovery-hero h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 20px;
}

.discovery-lede {
  color: var(--discovery-secondary);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
  margin: 0 auto 28px;
  max-width: 720px;
}

.discovery-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.discovery-button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 650;
  gap: 8px;
  justify-content: center;
  line-height: 20px;
  min-height: 48px;
  padding: 13px 20px;
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.discovery-button:hover,
.discovery-button:focus-visible {
  text-decoration: none;
}

.discovery-button--primary {
  background: var(--discovery-blue);
  color: var(--discovery-white);
}

.discovery-button--primary:hover,
.discovery-button--primary:focus-visible {
  background: var(--discovery-blue-hover);
  color: var(--discovery-white);
}

.discovery-button--secondary {
  background: var(--discovery-white);
  border-color: var(--discovery-border);
  color: var(--discovery-ink);
}

.discovery-button--secondary:hover,
.discovery-button--secondary:focus-visible {
  background: var(--discovery-surface);
  border-color: #c9d0d8;
  color: var(--discovery-ink);
}

.discovery-facts {
  align-items: center;
  color: var(--discovery-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 20px;
  justify-content: center;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.discovery-facts li {
  align-items: center;
  display: inline-flex;
  gap: 7px;
}

.discovery-facts .fa-check {
  color: var(--discovery-success);
}

.discovery-gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 44px;
  max-width: 1060px;
}

.discovery-output {
  background: var(--discovery-white);
  border: 1px solid var(--discovery-border);
  border-radius: 8px;
  margin-bottom: 0;
  overflow: hidden;
}

.discovery-output a {
  background: var(--discovery-surface);
  display: block;
  height: 280px;
  overflow: hidden;
}

.discovery-output img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 200ms cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.discovery-output a:hover img,
.discovery-output a:focus-visible img {
  transform: scale(1.015);
}

.discovery-output figcaption {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 52px;
  padding: 12px 16px;
}

.discovery-output figcaption span {
  color: var(--discovery-ink);
  font-size: 14px;
  font-weight: 650;
}

.discovery-output figcaption small {
  color: var(--discovery-muted);
  font-size: 12px;
}

.discovery-band {
  background: var(--discovery-surface);
  border-bottom: 1px solid var(--discovery-border);
  border-top: 1px solid var(--discovery-border);
  padding: 72px 0;
}

.discovery-section {
  padding: 80px 0;
}

.discovery-section-heading {
  max-width: 680px;
}

.discovery-section-heading h2,
.discovery-final h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.discovery-section-heading > p:last-child {
  color: var(--discovery-secondary);
  font-size: 17px;
  line-height: 1.6;
}

.discovery-workflows {
  border-top: 1px solid var(--discovery-border);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 32px;
}

.discovery-workflows article {
  display: grid;
  gap: 16px;
  grid-template-columns: 40px minmax(0, 1fr);
  padding: 32px 32px 0 0;
}

.discovery-workflows article + article {
  border-left: 1px solid var(--discovery-border);
  padding-left: 32px;
}

.discovery-workflow-icon {
  align-items: center;
  background: var(--discovery-white);
  border: 1px solid var(--discovery-border);
  border-radius: 8px;
  color: var(--discovery-blue);
  display: flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.discovery-workflows h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}

.discovery-workflows p {
  color: var(--discovery-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.discovery-workflows a {
  color: var(--discovery-blue);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.discovery-workflows a i {
  font-size: 11px;
  margin-left: 5px;
}

.discovery-details {
  align-items: start;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.discovery-detail-list {
  border-top: 1px solid var(--discovery-border);
  margin-bottom: 0;
}

.discovery-detail-list > div {
  align-items: baseline;
  border-bottom: 1px solid var(--discovery-border);
  display: grid;
  gap: 24px;
  grid-template-columns: 88px minmax(0, 1fr);
  padding: 18px 0;
}

.discovery-detail-list dt {
  color: var(--discovery-ink);
  font-size: 14px;
  font-weight: 700;
}

.discovery-detail-list dd {
  color: var(--discovery-secondary);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 0;
}

.discovery-faq__layout {
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.discovery-faq__items {
  border-top: 1px solid var(--discovery-border);
}

.discovery-faq details {
  border-bottom: 1px solid var(--discovery-border);
  padding: 20px 0;
}

.discovery-faq summary {
  color: var(--discovery-ink);
  cursor: pointer;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.45;
  padding-right: 24px;
}

.discovery-faq details p {
  color: var(--discovery-secondary);
  font-size: 14px;
  line-height: 1.65;
  margin: 12px 0 0;
  max-width: 640px;
}

.discovery-final {
  padding: 80px 0 96px;
  text-align: center;
}

.discovery-final .container {
  max-width: 720px;
}

.discovery-final p {
  color: var(--discovery-secondary);
  font-size: 17px;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .discovery-hero {
    padding: 104px 0 32px;
  }

  .discovery-hero h1 {
    font-size: 38px;
    line-height: 1.12;
  }

  .discovery-lede {
    font-size: 18px;
  }

  .discovery-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .discovery-button {
    width: 100%;
  }

  .discovery-facts {
    gap: 12px 16px;
  }

  .discovery-gallery {
    grid-template-columns: repeat(3, 240px);
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    overflow-x: auto;
    padding-bottom: 12px;
    padding-left: 16px;
    padding-right: 16px;
    scroll-snap-type: x mandatory;
  }

  .discovery-output {
    scroll-snap-align: start;
  }

  .discovery-output a {
    height: 248px;
  }

  .discovery-band,
  .discovery-section,
  .discovery-final {
    padding: 56px 0;
  }

  .discovery-section-heading h2,
  .discovery-final h2 {
    font-size: 28px;
  }

  .discovery-workflows,
  .discovery-details,
  .discovery-faq__layout {
    gap: 32px;
    grid-template-columns: 1fr;
  }

  .discovery-workflows article {
    padding: 24px 0 0;
  }

  .discovery-workflows article + article {
    border-left: 0;
    border-top: 1px solid var(--discovery-border);
    margin-top: 24px;
    padding-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .discovery-page *,
  .discovery-page *::before,
  .discovery-page *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
