.support-hero{
  padding-top:clamp(52px,7vw,92px);
  padding-bottom:clamp(58px,8vw,104px);
  border-bottom:1px solid var(--color-border);
}
.support-hero__grid{
  display:grid;
  grid-template-columns:minmax(0,1.45fr) minmax(280px,.55fr);
  align-items:center;
  gap:clamp(32px,6vw,84px);
}
.support-hero__copy{
  min-width:0;
  max-width:820px;
}
.support-hero__copy h1{
  max-width:780px;
  margin-top:18px;
}
.support-hero__copy .lead{
  margin-top:24px;
}
.support-hero__copy .button-row{
  margin-top:30px;
}
.support-summary{
  position:relative;
  min-width:0;
  padding:28px;
  overflow:hidden;
  border:1px solid var(--color-border);
  border-radius:var(--radius-medium);
  background:var(--color-panel);
  box-shadow:var(--shadow-panel);
}
.support-summary::after{
  position:absolute;
  right:-54px;
  bottom:-54px;
  width:130px;
  height:130px;
  border:1px dashed var(--color-border);
  border-radius:50%;
  content:"";
}
.support-summary__label{
  display:block;
  margin-bottom:18px;
  color:var(--color-text-muted);
  font-family:var(--font-mono);
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
}
.support-facts{
  position:relative;
  z-index:1;
  margin:0;
}
.support-facts div{
  display:grid;
  grid-template-columns:72px minmax(0,1fr);
  gap:16px;
  padding:13px 0;
  border-top:1px solid var(--color-border);
}
.support-facts dt{
  color:var(--color-text-muted);
  font-size:13px;
}
.support-facts dd{
  min-width:0;
  margin:0;
  color:var(--color-text);
  font-weight:800;
  overflow-wrap:anywhere;
}
.support-article{
  padding-top:42px;
  padding-bottom:var(--section-space);
}
.support-category{
  padding-top:clamp(58px,8vw,100px);
  padding-bottom:16px;
}
.support-category--last{
  padding-bottom:0;
}
.support-category__heading{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(260px,440px);
  column-gap:48px;
  align-items:end;
  margin-bottom:36px;
}
.support-category__heading .section-kicker{
  grid-column:1/-1;
  margin-bottom:13px;
}
.support-category__heading h2{
  margin:0;
}
.support-category__heading > p{
  margin:0 0 4px;
  color:var(--color-text-muted);
}
.support-category .faq-list{
  border-top-color:var(--color-text);
}
.support-category .faq-item{
  background:transparent;
}
.support-category .faq-item[open]{
  background:var(--color-panel);
}
.support-category .faq-item summary{
  padding-left:18px;
}
.support-category .faq-answer{
  padding-left:18px;
}
.support-category .faq-answer p{
  margin-bottom:0;
  line-height:1.85;
}
.ticket-checklist{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.ticket-check{
  position:relative;
  min-width:0;
  padding:26px 26px 24px 66px;
  border:1px solid var(--color-border);
  border-radius:var(--radius-medium);
  background:var(--color-panel);
  box-shadow:var(--shadow-panel);
}
.ticket-check__mark{
  position:absolute;
  top:27px;
  left:24px;
  color:var(--color-accent);
  font-family:var(--font-mono);
  font-size:13px;
  font-weight:800;
}
.ticket-check h3{
  margin:0 0 9px;
  font-size:19px;
}
.ticket-check p{
  margin:0;
  color:var(--color-text-muted);
}
.support-category .callout{
  margin-top:22px;
  margin-bottom:0;
}
@media (max-width:900px){
  .support-hero__grid{
    grid-template-columns:1fr;
  }
  .support-summary{
    max-width:620px;
  }
  .support-category__heading{
    grid-template-columns:1fr;
    gap:12px;
  }
  .support-category__heading .section-kicker{
    grid-column:auto;
    margin-bottom:0;
  }
  .support-category__heading > p{
    max-width:720px;
  }
}
@media (max-width:768px){
  .support-hero{
    padding-top:48px;
    padding-bottom:56px;
  }
  .support-article{
    padding-top:28px;
    padding-bottom:64px;
  }
  .support-category{
    padding-top:64px;
    padding-bottom:8px;
  }
  .ticket-checklist{
    grid-template-columns:1fr;
  }
}
@media (max-width:520px){
  .support-summary{
    padding:22px;
  }
  .support-facts div{
    grid-template-columns:62px minmax(0,1fr);
    gap:10px;
  }
  .support-category__heading{
    margin-bottom:26px;
  }
  .support-category .faq-item summary{
    padding-left:8px;
  }
  .support-category .faq-answer{
    padding-right:12px;
    padding-left:8px;
  }
  .ticket-check{
    padding:22px 20px 22px 54px;
  }
  .ticket-check__mark{
    top:23px;
    left:20px;
  }
}