.support-hero{
  position:relative;
  max-width:100%;
  overflow-x:clip;
  border-bottom:1px solid var(--border);
}
.support-hero::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(180deg,var(--wash-top),var(--wash-mid),var(--wash-bottom)),
    linear-gradient(to right,var(--grid-line) 1px,transparent 1px) 0 0/72px 72px,
    linear-gradient(to bottom,var(--grid-line) 1px,transparent 1px) 0 0/72px 72px;
}
.support-hero__inner{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(300px,.85fr);
  align-items:center;
  gap:48px;
  min-height:520px;
  padding-top:72px;
  padding-bottom:72px;
}
.support-hero__copy{
  min-width:0;
}
.support-hero__copy .eyebrow{
  margin-top:22px;
  margin-bottom:12px;
}
.support-hero__copy h1{
  max-width:720px;
  margin-bottom:18px;
}
.support-hero__lead{
  max-width:720px;
  margin-bottom:0;
  color:var(--muted);
  font-size:18px;
  line-height:1.75;
}
.support-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:26px;
}
.support-console{
  position:relative;
  min-width:0;
  overflow:hidden;
  padding:24px;
}
.support-console::after{
  content:"";
  position:absolute;
  right:-72px;
  bottom:-96px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--accent),var(--cyan));
  opacity:.18;
}
.support-console__head{
  position:relative;
  z-index:1;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  padding-bottom:18px;
  border-bottom:1px solid var(--ink-line);
}
.support-console__head strong{
  color:var(--on-ink);
  font-family:var(--font-display);
  font-size:18px;
}
.support-console__facts{
  position:relative;
  z-index:1;
  display:grid;
  gap:0;
  margin:0;
}
.support-console__facts div{
  display:grid;
  grid-template-columns:88px minmax(0,1fr);
  gap:16px;
  padding-top:16px;
  padding-bottom:16px;
  border-bottom:1px solid var(--ink-line);
}
.support-console__facts div:last-child{
  border-bottom:0;
  padding-bottom:0;
}
.support-console__facts dt{
  color:var(--on-ink-faint);
  font:650 11px/1.5 var(--font-mono);
  letter-spacing:.08em;
}
.support-console__facts dd{
  min-width:0;
  margin:0;
  color:var(--on-ink);
  overflow-wrap:anywhere;
}
.support-console__facts .mono{
  color:var(--cyan);
  font-weight:750;
}
.support-route{
  border-bottom:1px solid var(--border);
  background:var(--panel-soft);
}
.support-route__grid{
  display:grid;
  grid-template-columns:minmax(220px,.6fr) minmax(0,1.4fr);
  gap:48px;
  padding-top:48px;
  padding-bottom:48px;
}
.support-route h2{
  margin:10px 0 0;
  font-size:clamp(30px,4vw,46px);
}
.support-route__steps{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.support-route__steps p{
  min-width:0;
  margin:0;
  padding:16px;
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  background:var(--panel);
  box-shadow:var(--shadow-card);
  color:var(--muted);
}
.support-route__steps strong{
  display:block;
  margin-bottom:4px;
  color:var(--text);
}
.help-content{
  padding-top:56px;
  padding-bottom:96px;
}
.help-content .toc-tabs{
  margin-bottom:24px;
}
.help-section{
  padding-top:64px;
  padding-bottom:24px;
}
.help-section__head{
  display:grid;
  grid-template-columns:minmax(240px,.8fr) minmax(0,1.2fr);
  align-items:end;
  gap:36px;
  margin-bottom:28px;
  padding-bottom:22px;
  border-bottom:1px solid var(--border);
}
.help-section__head h2{
  margin:8px 0 0;
  font-size:clamp(30px,4vw,46px);
}
.help-section__head p{
  max-width:660px;
  margin:0;
  color:var(--muted);
  font-size:16px;
}
.help-section__code{
  color:var(--accent);
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
}
.help-section .faq-list{
  grid-template-columns:repeat(2,minmax(0,1fr));
  align-items:start;
}
.help-section .faq-item{
  min-width:0;
}
.help-section .faq-item summary{
  align-items:flex-start;
  min-height:72px;
  line-height:1.55;
}
.help-section .faq-answer{
  font-size:15px;
  line-height:1.85;
}
.help-section .callout{
  margin-top:18px;
  margin-bottom:0;
}

@media (max-width:900px){
  .support-hero__inner{
    grid-template-columns:1fr;
    gap:32px;
    min-height:auto;
  }
  .support-console{
    max-width:720px;
  }
  .support-route__grid,
  .help-section__head{
    grid-template-columns:1fr;
    gap:22px;
  }
}
@media (max-width:720px){
  .support-hero__inner{
    padding-top:52px;
    padding-bottom:52px;
  }
  .support-hero__lead{
    font-size:16px;
  }
  .support-route__steps,
  .help-section .faq-list{
    grid-template-columns:1fr;
  }
  .help-section{
    padding-top:52px;
  }
}
@media (max-width:480px){
  .support-hero__actions{
    align-items:stretch;
    flex-direction:column;
  }
  .support-hero__actions .btn{
    width:100%;
  }
  .support-console{
    padding:20px;
  }
  .support-console__head{
    align-items:flex-start;
    flex-direction:column;
    gap:8px;
  }
  .support-console__facts div{
    grid-template-columns:1fr;
    gap:4px;
  }
}