.help-hero{
  padding-bottom:var(--sp-6);
  background:var(--c-light);
  color:#071e1a;
}

.help-hero__grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(22rem,.78fr);
  gap:var(--sp-4);
  align-items:center;
}

.help-hero__copy,
.help-dispatch,
.help-dispatch__list,
.help-check-card,
.help-command-card,
.help-command-card__body,
.help-command-step,
.help-side-card,
.help-runner-card,
.help-ops-step,
.help-storage-card,
.help-escalation-card,
.help-cta__copy{
  min-width:0;
}

.help-hero__copy{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:var(--sp-3);
}

.help-heading{
  display:grid;
  justify-items:start;
  gap:var(--sp-1);
}

.help-heading h1{
  max-width:min(36rem,100%);
}

.help-heading h2{
  max-width:16ch;
}

.help-heading p{
  max-width:46rem;
  color:#56716b;
}

.help-hero__copy .help-heading p{
  max-width:42rem;
  font-size:var(--fs-3);
}

.help-hero__actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-start;
  gap:var(--sp-1);
}

.help-hero__facts{
  width:100%;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:var(--sp-1);
  padding-top:var(--sp-3);
  border-top:1px solid rgba(7,30,26,.12);
}

.help-hero__facts div{
  min-width:0;
  display:grid;
  gap:var(--sp-1);
}

.help-hero__facts strong{
  font-family:var(--font-mono);
  font-size:var(--fs-3);
  font-variant-numeric:tabular-nums;
  overflow-wrap:anywhere;
}

.help-hero__facts span{
  color:#56716b;
  font-size:var(--fs-1);
  line-height:1.45;
}

.help-dispatch{
  overflow:hidden;
  border-radius:var(--r-lg);
  background:#062d27;
  color:#fff;
  box-shadow:var(--shadow-lift);
}

.help-dispatch__head{
  display:grid;
  gap:var(--sp-1);
  padding:var(--sp-3);
  background:#00b34f;
  color:#071e1a;
}

.help-dispatch__head span{
  font-family:var(--font-mono);
  font-size:var(--fs-0);
  font-weight:700;
  letter-spacing:.08em;
}

.help-dispatch__head strong{
  font-family:var(--font-heading);
  font-size:var(--fs-3);
  line-height:1.25;
}

.help-dispatch__list{
  display:grid;
  padding:var(--sp-1);
}

.help-dispatch__list a{
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  gap:var(--sp-1);
  align-items:center;
  border-radius:var(--r-sm);
  padding:var(--sp-2);
  color:#fff;
  transition:background .2s var(--ease),transform .2s var(--ease);
}

.help-dispatch__list a:hover{
  background:#174d44;
  transform:translateX(3px);
}

.help-dispatch__list a>span:nth-child(2){
  min-width:0;
  display:grid;
  gap:var(--sp-1);
}

.help-dispatch__list b{
  font-family:var(--font-heading);
  line-height:1.2;
}

.help-dispatch__list small{
  color:#b0ccc5;
}

.help-dispatch__code{
  display:inline-flex;
  width:2.25rem;
  height:2.25rem;
  align-items:center;
  justify-content:center;
  border-radius:var(--r-pill);
  background:#cffbe5;
  color:#062d27;
  font-family:var(--font-mono);
  font-size:var(--fs-0);
  font-weight:700;
  font-variant-numeric:tabular-nums;
}

.help-check-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(100%,16rem),1fr));
  gap:var(--sp-3);
  align-items:start;
  margin-top:var(--sp-4);
}

.help-check-card{
  container-type:inline-size;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:var(--sp-3);
  border-radius:var(--r-md);
  padding:var(--sp-3);
  background:#fff;
  color:#071e1a;
  box-shadow:var(--shadow-soft);
}

.help-check-card__number{
  display:inline-flex;
  width:2.75rem;
  height:2.75rem;
  align-items:center;
  justify-content:center;
  border-radius:var(--r-pill);
  background:#00b34f;
  color:#071e1a;
  font-family:var(--font-mono);
  font-size:var(--fs-1);
  font-weight:700;
}

.help-card-head{
  display:grid;
  gap:var(--sp-1);
}

.help-card-head p{
  color:#56716b;
}

.help-check-card h3{
  font-size:clamp(1.45rem,9cqi,1.75rem);
}

.help-check-card ul,
.help-storage-card ul{
  margin:0;
  padding-left:1.2rem;
  color:#315e54;
}

.help-check-card li+li,
.help-storage-card li+li{
  margin-top:var(--sp-1);
}

.help-callout{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:var(--sp-2);
  align-items:start;
  margin-top:var(--sp-3);
  background:#e8fbf3;
  color:#153f36;
}

.help-callout__icon{
  display:flex;
  width:2.75rem;
  height:2.75rem;
  align-items:center;
  justify-content:center;
  border-radius:var(--r-pill);
  background:#ddf9ec;
  color:#007c43;
}

.help-ssh-layout{
  margin-top:var(--sp-4);
}

.help-command-card{
  overflow:hidden;
  border-radius:var(--r-lg);
  background:#062d27;
  color:#fff;
}

.help-command-card__label{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:var(--sp-1);
  padding:var(--sp-2) var(--sp-3);
  background:#00b34f;
  color:#071e1a;
  font-family:var(--font-mono);
  font-size:var(--fs-1);
}

.help-command-card__body{
  display:grid;
  gap:var(--sp-3);
  padding:var(--sp-3);
}

.help-command-step{
  display:grid;
  gap:var(--sp-2);
}

.help-command-step>span{
  width:fit-content;
  max-width:100%;
  border-radius:var(--r-pill);
  padding:.45em .85em;
  background:#174d44;
  color:#c9f9e6;
  font-family:var(--font-mono);
  font-size:var(--fs-0);
  font-weight:700;
}

.help-command-step .help-card-head p{
  color:#b0ccc5;
}

.help-command-step .c-code{
  margin:0;
  background:#174d44;
  color:#bff8df;
}

.help-side-card{
  gap:var(--sp-3);
}

.help-side-card p{
  color:#315e54;
}

.help-icon-title{
  display:flex;
  align-items:center;
  gap:var(--sp-1);
}

.help-icon-title svg{
  flex:0 0 auto;
  color:#007c43;
}

.help-icon-title h3{
  min-width:0;
}

.help-heading--dark{
  color:#fff;
}

.help-heading--dark p{
  color:#b0ccc5;
}

.help-heading--dark .c-kicker{
  background:#174d44;
  color:#c9f9e6;
}

.help-runner-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(100%,16rem),1fr));
  gap:var(--sp-3);
  align-items:start;
  margin-top:var(--sp-4);
}

.help-runner-card{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:var(--sp-3);
  border-radius:var(--r-md);
  padding:var(--sp-3);
  background:#174d44;
  color:#fff;
}

.help-runner-card .help-card-head p{
  color:#c9ded8;
}

.help-runner-card dl,
.help-escalation-card dl{
  width:100%;
  display:grid;
  gap:var(--sp-1);
  margin:0;
}

.help-runner-card dl div,
.help-escalation-card dl div{
  min-width:0;
  display:grid;
  grid-template-columns:minmax(5.5rem,.45fr) minmax(0,1fr);
  gap:var(--sp-1);
  padding-top:var(--sp-1);
  border-top:1px solid rgba(255,255,255,.14);
}

.help-runner-card dt{
  color:#6de9c2;
}

.help-runner-card dd{
  color:#fff;
  overflow-wrap:anywhere;
}

.help-ops-flow{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(100%,15rem),1fr));
  gap:var(--sp-3);
  align-items:start;
  margin-top:var(--sp-4);
}

.help-ops-step{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:var(--sp-2);
  border-radius:var(--r-md);
  padding:var(--sp-3);
  background:#f0fff8;
  color:#071e1a;
}

.help-ops-step>span{
  width:fit-content;
  max-width:100%;
  border-radius:var(--r-pill);
  padding:.45em .85em;
  background:#ddf9ec;
  color:#007c43;
  font-family:var(--font-mono);
  font-size:var(--fs-0);
  font-weight:700;
}

.help-table-wrap{
  margin-top:var(--sp-4);
  box-shadow:var(--shadow-soft);
}

.help-table-wrap table{
  min-width:46rem;
}

.help-table-wrap caption{
  padding:var(--sp-2);
  background:#fff;
  color:#315e54;
  font-weight:700;
  text-align:left;
}

.help-table-wrap td{
  overflow-wrap:anywhere;
}

.help-storage-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(100%,17rem),1fr));
  gap:var(--sp-3);
  align-items:start;
  margin-top:var(--sp-4);
}

.help-storage-card{
  display:flex;
  flex-direction:column;
  gap:var(--sp-3);
  color:#071e1a;
}

.help-storage-card p{
  color:#56716b;
}

.help-storage-action{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:var(--sp-3);
  margin-top:var(--sp-3);
  border-radius:var(--r-md);
  padding:var(--sp-3);
  background:#dffbf0;
  color:#071e1a;
}

.help-storage-action .help-card-head{
  max-width:48rem;
}

.help-storage-action .c-btn{
  flex:0 0 auto;
}

.help-decision-list{
  display:grid;
  gap:var(--sp-2);
  margin:var(--sp-4) 0 0;
  padding:0;
  list-style:none;
}

.help-decision-list li{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:var(--sp-2);
  align-items:start;
  border-radius:var(--r-md);
  padding:var(--sp-3);
  background:#f0fff8;
  color:#071e1a;
}

.help-decision-list__number{
  display:inline-flex;
  width:3rem;
  height:3rem;
  align-items:center;
  justify-content:center;
  border-radius:var(--r-pill);
  background:#062d27;
  color:#fff;
  font-family:var(--font-mono);
  font-size:var(--fs-1);
  font-weight:700;
  font-variant-numeric:tabular-nums;
}

.help-decision-list__content{
  min-width:0;
  display:grid;
  gap:var(--sp-2);
}

.help-decision-list__content strong{
  color:#007c43;
  font-size:var(--fs-1);
}

.help-log-sheet{
  overflow:hidden;
  margin-top:var(--sp-4);
  border-radius:var(--r-lg);
  background:#062d27;
  color:#fff;
  box-shadow:var(--shadow-lift);
}

.help-log-sheet__head{
  display:grid;
  gap:var(--sp-1);
  padding:var(--sp-3);
  background:#00b34f;
  color:#071e1a;
}

.help-log-sheet__head span{
  font-family:var(--font-mono);
  font-size:var(--fs-0);
  font-weight:700;
  letter-spacing:.08em;
}

.help-log-sheet__grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(100%,18rem),1fr));
  gap:var(--sp-1);
  padding:var(--sp-3);
}

.help-log-sheet__grid div{
  min-width:0;
  display:grid;
  gap:var(--sp-1);
  border-radius:var(--r-sm);
  padding:var(--sp-2);
  background:#174d44;
  color:#fff;
}

.help-log-sheet__grid b{
  color:#6de9c2;
}

.help-log-sheet__grid span{
  color:#c9ded8;
  font-size:var(--fs-1);
  overflow-wrap:anywhere;
}

.help-escalation-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(100%,18rem),1fr));
  gap:var(--sp-3);
  align-items:start;
  margin-top:var(--sp-4);
}

.help-escalation-card{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:var(--sp-3);
  border-radius:var(--r-lg);
  padding:var(--sp-3);
  background:#fff;
  color:#071e1a;
  box-shadow:var(--shadow-soft);
}

.help-escalation-card .help-card-head p{
  color:#56716b;
}

.help-escalation-card dl div{
  border-top-color:rgba(7,30,26,.12);
}

.help-escalation-card dt{
  color:#007c43;
}

.help-escalation-card dd{
  color:#315e54;
  overflow-wrap:anywhere;
}

.help-escalation-card .c-btn{
  margin-top:auto;
}

.help-escalation-card--primary{
  background:#00b34f;
  color:#071e1a;
}

.help-escalation-card--primary .help-card-head p,
.help-escalation-card--primary dd{
  color:#071e1a;
}

.help-escalation-card--primary dl div{
  border-top-color:rgba(7,30,26,.18);
}

.help-escalation-card--primary dt{
  color:#062d27;
}

.help-escalation-card--primary .c-badge{
  background:#cffbe5;
  color:#062d27;
}

.help-escalation-card--dark{
  background:#062d27;
  color:#fff;
}

.help-escalation-card--dark .help-card-head p,
.help-escalation-card--dark dd{
  color:#b0ccc5;
}

.help-escalation-card--dark dl div{
  border-top-color:rgba(255,255,255,.14);
}

.help-escalation-card--dark dt{
  color:#6de9c2;
}

.help-cta__copy{
  max-width:48rem;
}

.help-cta__copy .help-card-head p{
  color:#b6d1ca;
}

.help-cta__actions{
  flex:0 0 auto;
  flex-direction:column;
  align-items:stretch;
  justify-content:flex-start;
}

.c-cta .help-cta__actions .c-btn--ghost{
  color:#fff;
  border-color:rgba(255,255,255,.42);
}

@media(max-width:64rem){
  .help-hero__grid{
    grid-template-columns:1fr;
  }

  .help-heading h1{
    max-width:13ch;
  }

  .help-dispatch{
    max-width:48rem;
  }
}

@media(max-width:48rem){
  .help-hero__facts{
    grid-template-columns:1fr;
  }

  .help-hero__facts div{
    padding-block:var(--sp-1);
  }

  .help-storage-action{
    align-items:flex-start;
    flex-direction:column;
  }

  .help-storage-action .c-btn{
    width:100%;
  }

  .help-cta__actions{
    width:100%;
  }

  .help-cta__actions .c-btn{
    width:100%;
    white-space:normal;
  }
}

@media(max-width:27rem){
  .help-hero__actions{
    width:100%;
  }

  .help-hero__actions .c-btn{
    width:100%;
    white-space:normal;
  }

  .help-dispatch__list a{
    grid-template-columns:auto minmax(0,1fr);
  }

  .help-dispatch__list a>svg{
    display:none;
  }

  .help-callout{
    grid-template-columns:1fr;
  }

  .help-decision-list li{
    grid-template-columns:1fr;
  }

  .help-runner-card dl div,
  .help-escalation-card dl div{
    grid-template-columns:1fr;
  }
}
.p-doc-hero.help-hero{padding-top:var(--sp-5)}
