@layer components {

  /***** Layout helpers *****/
  .container {
    max-width: 1100px;
    margin-inline: auto;
    padding: 2rem 1rem;
  }
  .section-title {
    font-size: clamp(1.25rem, 2vw + 1rem, 2rem);
    margin-bottom: 1rem;
  }
  .visually-hidden {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
  }
  .media-frame {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 10px var(--black-tp-1);
  }
  .media-frame:hover {
    box-shadow: 0 1px 10px var(--black-tp-3);
    transition: box-shadow 0.3s ease-in-out;
  }
  .media-frame img,
  .media-frame iframe {
    display:block;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }

  /***** Hero *****/
  .hero {
    display: grid;
    gap: 1.5rem;
    align-items: center;
  }
  .hero__title {
    font-size: clamp(1.75rem, 3vw + 1rem, 2.5rem);
    line-height: 1.15;
  }
  .hero__tagline {
    color: var(--grey-darker);
    margin: .75rem 0 1rem;
  }
  .hero__cta {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap
   }
  .hero__bullets {
    display: grid;
    gap: .25rem;
    margin-top: .75rem;
    margin-left: 1.25rem;
    color: var(--grey-darker);
  }

  /***** Trust *****/
  .trust {
    text-align: center;
  }
  .eyebrow {
    text-transform: uppercase;
    padding-bottom: 0.5rem;
    letter-spacing: .08em;
    font-size: .75rem;
    color: var(--grey);
  }
  .trust__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    list-style-type: none;
  }
  .trust__logo {
    text-align: center;
    width: 120px;
    white-space: nowrap;
    background: var(--white);
    padding: .5rem .75rem;
    border-radius: 999px;
    border: 1px solid var(--grey-white);
    box-shadow: 0 1px 10px var(--black-tp-1);
  }

  /***** Features *****/
  .card-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
  }
  .bio-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 1rem;
  }
  .card {
    grid-column: span 12;
    background: var(--whitest);
    border: 1px solid var(--white-dark);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 1px 10px var(--black-tp-1);
  }
  .card:hover {
    box-shadow: 0 10px 30px var(--black-tp-3);
    transition: box-shadow 0.3s ease-in-out;
  }
  .card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .card h1,
  .card h2 {
    margin: .25rem 0 .25rem;
    cursor: default;
  }
  .card__title {
    margin: .25rem 0 .25rem;
    font-size: 1.1rem;
    cursor: default;
  }
  .card__body {
    color: var(--grey-darker);
    cursor: default;
  }
  .card__body a {
    text-decoration: underline;
  }
  .card__list {
    margin-top: 1rem;
    border-top: 1px solid var(--grey);
    padding-top: 1rem;
    padding-left: 1rem;
    color: var(--grey-darker);
    cursor: default;
  }

  /***** Steps *****/
  .steps {
    display: grid;
    gap: .75rem;
    counter-reset: step;
  }
  .step {
    display: grid;
    align-items: center;
    grid-template-columns: auto 1fr;
    gap: .75rem;
    background: var(--whitest);
    border: 1px solid var(--white-dark);
    border-radius: 12px;
    padding: .75rem;
  }
  .step__num {
    width: 2rem;
    height: 2rem;
    display: grid;
    place-content: center;
    border-radius: 999px;
    background: var(--main-blue);
    color: var(--white);
    font-weight: 700;
  }
  .step__content h3 {
    margin: 0 0 .25rem;
    font-size: 1rem;
  }
  .step__content p {
    margin: 0;
    color: var(--grey-darker);
  }

  /***** Demo *****/
  .demo {
    display: grid;
    gap: 1rem;
    align-items: center;
  }
  .media-frame--video {
    aspect-ratio: 16/9;
  }

  /***** Split panels *****/
  .split {
    display: grid;
    gap: 1rem;
  }
  .split__panel {
    background: var(--whitest);
    border: 1px solid var(--white-dark);
    border-radius: 12px;
    padding: 1rem;
  }
  .split__panel:hover {
    box-shadow: 0 10px 30px var(--black-tp-1);
    transition: box-shadow 0.3s ease-in-out;
  }
  .split__panel h3 {
    cursor: default;
  }
  .checklist {
    display: grid;
    gap: .5rem;
  }
  .checklist li {
    margin-left: 1rem;
    cursor: default;
  }
  .checklist li a {
    text-decoration: underline;
  }

  /***** Integrations *****/
  .logo-row {
    display: grid;
    grid-auto-flow: column;
    gap: 1rem;
    justify-content: start;
    align-items: center;
    overflow-x: auto;
    list-style-type: none;
  }
  .logo-row img {
    height: 28px;
  }

  /***** Testimonial *****/
  .quote {
    max-width: 70ch;
    margin: 0 auto;
    text-align: center;
  }
  .quote blockquote {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  .quote figcaption {
    margin-top: .5rem;
    color: var(--grey);
  }

  /***** FAQ *****/
  .faq__item {
    background: var(--whitest);
    border: 1px solid var(--white-dark);
    border-radius: 12px;
    padding: .75rem 1rem;
  }
  .faq__item + .faq__item {
    margin-top: .5rem;
  }

  /***** Final CTA *****/
  .final-cta__box {
    display: grid;
    gap: .5rem;
    text-align: center;
    background: var(--whitest);
    border: 1px solid var(--white-dark);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 10px var(--black-tp-1);
  }
  .final-cta__box-link {
    display: flex;
    justify-content: center;
  }
  .final-cta__box-link a {
    color: var(--main-blue);
    width: 120px;
    text-align: center;
    border: 1px solid var(--white-darker);
    border-radius: 999px;
  }
  .final-cta__box-link a:hover {
    box-shadow: 0 1px 10px var(--black-tp-1);
  }

  /***** Responsive *****/
  @media (min-width: 768px) {
    .hero {
      grid-template-columns: 1.1fr .9fr;
    }
    .demo {
      grid-template-columns: 1.1fr .9fr;
    }
    .card {
      grid-column: span 6;
    }
  }
  @media (min-width: 1024px) {
    .card {
      grid-column: span 3;
    }
    .split {
      grid-template-columns: 1fr 1fr;
    }
  }
}
