.deepdoc-hero{
  position:relative;
  max-width:100%;
  overflow-x:clip;
  padding-top:72px;
  padding-bottom:76px;
  border-bottom:1px solid var(--border);
  background:linear-gradient(180deg,var(--bg-hero-top),var(--bg-hero-bottom));
}
.deepdoc-hero::before{
  position:absolute;
  inset:0;
  background-image:var(--grain);
  content:"";
  opacity:.03;
  pointer-events:none;
}
.deepdoc-hero::after{
  position:absolute;
  right:0;
  bottom:0;
  left:0;
  height:8px;
  background:linear-gradient(90deg,var(--accent),var(--relay),var(--direct));
  content:"";
  opacity:.55;
  pointer-events:none;
}
.deepdoc-hero__inner{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.deepdoc-hero h1{
  max-width:920px;
  margin-bottom:20px;
  font-size:clamp(52px,5vw,68px);
}
.deepdoc-hero__lede{
  max-width:800px;
  margin-bottom:0;
  color:var(--text-muted);
  font-size:19px;
  line-height:1.75;
}
.deepdoc-hero__actions{
  display:flex;
  gap:12px;
  margin-top:28px;
}
.deepdoc-hero__facts{
  justify-content:center;
  margin-top:32px;
}
.deepdoc-layout{
  padding-top:64px;
  padding-bottom:100px;
}
.deepdoc-article{
  width:100%;
  max-width:960px;
  margin-inline:auto;
}
.deepdoc-intro{
  margin-bottom:40px;
  padding:30px;
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  background:var(--panel);
  box-shadow:var(--shadow-card);
}
.deepdoc-intro p{
  color:var(--text-muted);
}
.deepdoc-intro p:last-of-type{
  margin-bottom:22px;
}
.deepdoc-intro a,
.deepdoc-section a{
  color:var(--accent);
  font-weight:700;
  text-decoration:underline;
  text-decoration-color:var(--border);
  text-underline-offset:4px;
}
.deepdoc-section{
  padding-top:62px;
  padding-bottom:62px;
  border-bottom:1px solid var(--border);
}
.deepdoc-section:first-of-type{
  padding-top:42px;
}
.deepdoc-section:last-of-type{
  border-bottom:0;
}
.deepdoc-section h2{
  max-width:820px;
  margin-bottom:34px;
}
.deepdoc-section h3{
  margin-top:42px;
  margin-bottom:16px;
  padding-left:16px;
  border-left:3px solid var(--accent);
  font-size:24px;
}
.deepdoc-section p{
  color:var(--text-muted);
}
.deepdoc-section .table-scroll{
  margin-top:30px;
  margin-bottom:34px;
}
.deepdoc-section .callout{
  margin-top:28px;
  margin-bottom:0;
}
.deepdoc-section pre{
  margin-top:24px;
  margin-bottom:26px;
}
.deepdoc-promo{
  margin-top:72px;
}
@media (max-width:768px){
  .deepdoc-hero{
    padding-top:52px;
    padding-bottom:58px;
  }
  .deepdoc-hero h1{
    font-size:clamp(30px,9vw,40px);
  }
  .deepdoc-hero__lede{
    font-size:17px;
  }
  .deepdoc-layout{
    padding-top:42px;
    padding-bottom:72px;
  }
  .deepdoc-intro{
    padding:22px;
  }
  .deepdoc-section{
    padding-top:52px;
    padding-bottom:52px;
  }
  .deepdoc-section h3{
    margin-top:34px;
    font-size:22px;
  }
}
@media (max-width:640px){
  .deepdoc-hero__actions{
    width:100%;
    flex-direction:column;
  }
  .deepdoc-hero__facts{
    width:100%;
    flex-direction:column;
  }
  .deepdoc-hero__facts .info-badge{
    width:100%;
  }
  .deepdoc-intro{
    padding:20px 16px;
  }
  .deepdoc-section h2{
    margin-bottom:26px;
  }
  .deepdoc-section h3{
    padding-left:12px;
  }
  .deepdoc-promo{
    margin-top:52px;
  }
}