.docs-hero .featured-copy h1 {
  max-width: 760px;
}

.doc-hero-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.doc-hero-list span,
.platform-strip a,
.docs-path a,
.doc-procedure article {
  border: 1px solid var(--line);
  background: #fff;
}

.doc-hero-list span {
  border-radius: 14px;
  padding: 12px 14px;
  color: #334155;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(26, 26, 46, .06);
}

.platform-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.platform-strip a {
  display: block;
  border-radius: 16px;
  padding: 18px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.platform-strip a:hover {
  border-color: rgba(70, 135, 255, .32);
  box-shadow: 0 18px 42px rgba(26, 26, 46, .1);
  transform: translateY(-4px);
}

.platform-strip strong,
.platform-strip span,
.docs-path strong,
.docs-path small {
  display: block;
}

.platform-strip strong {
  font-size: 20px;
}

.platform-strip span,
.docs-path small {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

.doc-card .avatar {
  flex-basis: 34px;
  width: 34px;
  height: 34px;
  font-size: 12px;
}

.docs-inline-cta {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, .28), transparent 34%),
    linear-gradient(135deg, var(--brand), var(--purple));
}

.docs-path {
  display: grid;
  gap: 12px;
}

.docs-path h2 {
  margin-bottom: 4px;
}

.docs-path a {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  border-radius: 14px;
  padding: 14px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.docs-path a:hover {
  border-color: rgba(70, 135, 255, .35);
  box-shadow: 0 14px 30px rgba(26, 26, 46, .08);
  transform: translateY(-3px);
}

.docs-path a > span {
  display: grid;
  grid-row: 1 / 3;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--purple));
  font-size: 13px;
  font-weight: 950;
}

.docs-path strong {
  font-size: 16px;
}

.doc-procedure {
  margin-top: 64px;
  border-radius: 24px;
  padding: clamp(22px, 4vw, 34px);
  background: #eef2f8;
}

.procedure-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.doc-procedure article {
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(26, 26, 46, .07);
}

.doc-procedure article span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--purple));
  font-size: 13px;
  font-weight: 950;
}

.doc-procedure h3 {
  margin-top: 16px;
  font-size: 22px;
}

.doc-procedure p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .platform-strip,
  .procedure-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .doc-hero-list,
  .platform-strip,
  .procedure-grid {
    grid-template-columns: 1fr;
  }
}
