/* Mirrored from ChatGPT Sites version 4, source commit 5b29d2b. */
.product-section {
  padding: 108px clamp(24px, 5vw, 76px);
  background: #eafcff;
  border-block: 1px solid #cbeef3;
}

.product-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #b9e5eb;
}

.product-kicker p {
  margin: 0;
  color: #007d8d;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.product-kicker span {
  padding: 8px 11px;
  border: 1px solid #9bd9e1;
  border-radius: 99px;
  background: #ffffffad;
  color: #416775;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.product-intro {
  display: grid;
  grid-template-columns: 1.1fr .55fr;
  gap: 32px 8vw;
  align-items: end;
  padding: 55px 0;
}

.product-intro h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1;
  letter-spacing: -.06em;
}

.product-intro p {
  margin: 0;
  color: #4c6875;
  font-size: 15px;
  line-height: 1.75;
}

.intake-stages {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #9edbe3;
  border-left: 1px solid #9edbe3;
}

.intake-stages article {
  min-height: 210px;
  padding: 23px;
  border-right: 1px solid #9edbe3;
  border-bottom: 1px solid #9edbe3;
  background: #f7feff;
}

.intake-stages b {
  color: #008fa2;
  font-size: 9px;
  letter-spacing: .12em;
}

.intake-stages h3 {
  margin: 42px 0 9px;
  font-size: 18px;
  letter-spacing: -.03em;
}

.intake-stages p {
  margin: 0;
  color: #58737f;
  font-size: 11px;
  line-height: 1.55;
}

.intake-grid {
  display: grid;
  grid-template-columns: 1fr 1fr .82fr;
  gap: 16px;
  margin-top: 16px;
}

.intake-lane,
.system-boundary {
  padding: 28px;
  border: 1px solid #b9e5eb;
  background: #fff;
}

.intake-lane small,
.system-boundary > small,
.product-cta small {
  color: #008fa2;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.intake-lane h3,
.system-boundary h3 {
  margin: 27px 0 13px;
  font-size: 25px;
  letter-spacing: -.04em;
}

.intake-lane p,
.system-boundary > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.intake-lane ul {
  margin: 25px 0 0;
  padding: 20px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.intake-lane li {
  position: relative;
  margin-top: 10px;
  padding-left: 18px;
  color: #405a67;
  font-size: 11px;
  line-height: 1.5;
}

.intake-lane li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00b4c8;
}

.system-boundary {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.system-boundary > small {
  color: var(--cyan);
}

.system-boundary dl {
  margin: 23px 0;
}

.system-boundary dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid #ffffff1f;
}

.system-boundary dt {
  font-size: 11px;
  font-weight: 750;
}

.system-boundary dd {
  margin: 0;
  color: #91a9b4;
  font-size: 9px;
  text-align: right;
}

.system-boundary > p {
  color: #a8bdc8;
}

.system-boundary .agent-ready {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #ffffff1f;
}

.system-boundary .agent-ready strong {
  color: #fff;
}

.product-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 16px;
  padding: 28px;
  border: 1px solid #b9e5eb;
  background: #fff;
}

.product-cta > div {
  max-width: 720px;
}

.product-cta p {
  margin: 9px 0 0;
  color: #4f6975;
  font-size: 13px;
  line-height: 1.65;
}

.product-cta .button {
  flex-shrink: 0;
}

@media (max-width: 1050px) {
  .product-intro {
    grid-template-columns: 1fr;
  }

  .intake-stages {
    grid-template-columns: repeat(3, 1fr);
  }

  .intake-grid {
    grid-template-columns: 1fr 1fr;
  }

  .system-boundary {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .product-section {
    padding-block: 76px;
  }

  .product-kicker,
  .product-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .intake-stages,
  .intake-grid {
    grid-template-columns: 1fr;
  }

  .intake-stages article {
    min-height: 165px;
  }

  .intake-stages h3 {
    margin-top: 25px;
  }

  .system-boundary {
    grid-column: auto;
  }
}
