.support-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 152px 24px 110px;
}

.support-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.support-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 34px;
  color: #777782;
  font-size: .78rem;
  font-weight: 650;
}

.support-breadcrumb a {
  transition: color .18s ease;
}

.support-breadcrumb a:hover,
.support-breadcrumb a:focus-visible {
  color: #fff;
}

.support-breadcrumb span[aria-current="page"] {
  color: #c8c8cf;
}

.support-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 50px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.support-hero > * {
  min-width: 0;
}

.support-overline {
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.support-hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: .96;
  letter-spacing: -.065em;
}

.support-hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.support-hero p {
  max-width: 680px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.support-hero-meta {
  min-width: 165px;
  padding: 0 0 8px 22px;
  border-left: 1px solid rgba(255,0,67,.35);
}

.support-hero-meta strong,
.support-hero-meta span {
  display: block;
}

.support-hero-meta strong {
  color: #fff;
  font-size: .82rem;
}

.support-hero-meta span {
  margin-top: 7px;
  color: var(--muted);
  font-size: .75rem;
}

.help-search-wrap {
  position: relative;
  margin-top: 42px;
}

.help-search-wrap svg {
  position: absolute;
  left: 20px;
  top: 50%;
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.7;
  transform: translateY(-50%);
  pointer-events: none;
}

.help-search {
  width: 100%;
  height: 68px;
  padding: 0 22px 0 57px;
  border: 1px solid rgba(255,0,67,.2);
  border-radius: 16px;
  outline: none;
  background: rgba(11,11,15,.78);
  color: #fff;
  font: inherit;
  font-size: .96rem;
  box-shadow: 0 22px 60px rgba(0,0,0,.2);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.help-search::placeholder {
  color: #70707b;
}

.help-search:focus {
  border-color: rgba(255,0,67,.65);
  background: rgba(14,14,19,.96);
  box-shadow: 0 0 0 4px rgba(255,0,67,.08), 0 22px 60px rgba(0,0,0,.24);
}

.help-toolbar {
  margin: 22px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.help-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.help-filter {
  min-height: 39px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  color: #9898a3;
  font-size: .76rem;
  font-weight: 700;
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.help-filter:hover,
.help-filter:focus-visible,
.help-filter.active {
  border-color: rgba(255,0,67,.38);
  background: rgba(255,0,67,.09);
  color: #fff;
}

.help-result-count {
  flex: 0 0 auto;
  color: #777782;
  font-size: .76rem;
}

.help-list {
  border-top: 1px solid rgba(255,255,255,.08);
}

.help-item {
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.help-item[hidden] {
  display: none;
}

.help-item details {
  padding: 0 2px;
}

.help-item summary {
  min-height: 82px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 18px;
  list-style: none;
  cursor: pointer;
}

.help-item summary::-webkit-details-marker {
  display: none;
}

.help-category {
  color: var(--accent);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.help-question {
  color: #f0f0f3;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.015em;
}

.help-plus {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  transition: border-color .2s ease, background .2s ease;
}

.help-plus::before,
.help-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 1.5px;
  border-radius: 2px;
  background: #b7b7c0;
  transform: translate(-50%, -50%);
  transition: transform .2s ease, background .2s ease;
}

.help-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.help-item details[open] .help-plus {
  border-color: rgba(255,0,67,.35);
  background: rgba(255,0,67,.08);
}

.help-item details[open] .help-plus::before {
  background: var(--accent);
}

.help-item details[open] .help-plus::after {
  background: var(--accent);
  transform: translate(-50%, -50%) rotate(0deg);
}

.help-answer {
  max-width: 820px;
  margin: -4px 54px 0 110px;
  padding: 0 0 30px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.75;
}

.help-answer a {
  color: #ff6b91;
  font-weight: 700;
}

.help-answer a:hover,
.help-answer a:focus-visible {
  color: #fff;
}

.help-empty {
  padding: 54px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-align: center;
}

.help-empty strong,
.help-empty span {
  display: block;
}

.help-empty strong {
  font-size: 1.1rem;
}

.help-empty span {
  margin-top: 9px;
  color: var(--muted);
  line-height: 1.6;
}

.help-empty button {
  margin-top: 18px;
  color: var(--accent);
  font-weight: 750;
  cursor: pointer;
}

.support-contact {
  margin-top: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 46px;
  padding: 44px 0;
  border-top: 1px solid rgba(255,0,67,.24);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.support-contact h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.support-contact h2 span {
  color: var(--accent);
}

.support-contact p {
  max-width: 650px;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.support-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.support-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 19px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 11px;
  color: #fff;
  font-size: .8rem;
  font-weight: 750;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.support-button.primary {
  border-color: var(--accent);
  background: var(--accent);
}

.support-button:hover,
.support-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255,0,67,.7);
  background: rgba(255,0,67,.12);
}

.support-button.primary:hover,
.support-button.primary:focus-visible {
  background: #df003b;
}

.legal-layout {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: start;
  gap: clamp(48px, 8vw, 100px);
}

.legal-nav {
  position: sticky;
  top: 118px;
  padding-left: 18px;
  border-left: 1px solid rgba(255,0,67,.3);
}

.legal-nav strong {
  display: block;
  margin-bottom: 18px;
  color: #fff;
  font-size: .72rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.legal-nav a {
  display: block;
  padding: 7px 0;
  color: #858590;
  font-size: .78rem;
  line-height: 1.45;
  transition: color .18s ease, transform .18s ease;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: #fff;
  transform: translateX(3px);
}

.legal-content {
  min-width: 0;
}

.legal-notice {
  margin-bottom: 12px;
  padding: 17px 20px;
  border: 1px solid rgba(255,0,67,.16);
  border-radius: 12px;
  background: rgba(255,0,67,.045);
  color: #b7b7c0;
  font-size: .82rem;
  line-height: 1.65;
}

.legal-section {
  scroll-margin-top: 120px;
  padding: 44px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.legal-section:first-of-type {
  padding-top: 32px;
}

.legal-index {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .7rem;
  font-weight: 700;
}

.legal-section h2 {
  color: #f4f4f6;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  line-height: 1.2;
  letter-spacing: -.035em;
}

.legal-section p,
.legal-section li {
  color: #a5a5af;
  font-size: .92rem;
  line-height: 1.82;
}

.legal-section p {
  margin-top: 16px;
}

.legal-section ul {
  margin: 16px 0 0 20px;
}

.legal-section li + li {
  margin-top: 8px;
}

.legal-section li::marker {
  color: var(--accent);
}

.legal-section a {
  color: #ff6b91;
  font-weight: 700;
}

.legal-section a:hover,
.legal-section a:focus-visible {
  color: #fff;
}

.legal-signoff {
  margin-top: 50px;
  color: #777782;
  font-size: .76rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

html[data-theme="light"] .support-breadcrumb a:hover,
html[data-theme="light"] .support-breadcrumb a:focus-visible,
html[data-theme="light"] .support-hero-meta strong,
html[data-theme="light"] .help-question,
html[data-theme="light"] .legal-nav strong,
html[data-theme="light"] .legal-section h2 { color: var(--text); }
html[data-theme="light"] .support-breadcrumb span[aria-current="page"],
html[data-theme="light"] .legal-notice { color: var(--muted-strong); }
html[data-theme="light"] .support-hero,
html[data-theme="light"] .help-list,
html[data-theme="light"] .help-item,
html[data-theme="light"] .help-empty,
html[data-theme="light"] .support-contact,
html[data-theme="light"] .legal-section { border-color: rgba(66,39,48,.12); }
html[data-theme="light"] .help-search { background: rgba(255,255,255,.86); color: var(--text); box-shadow: 0 20px 50px rgba(62,36,45,.08); }
html[data-theme="light"] .help-search:focus { background: #fff; }
html[data-theme="light"] .help-filter { border-color: rgba(65,38,47,.12); color: var(--muted); }
html[data-theme="light"] .help-filter:hover,
html[data-theme="light"] .help-filter:focus-visible,
html[data-theme="light"] .help-filter.active { color: var(--text); }
html[data-theme="light"] .help-plus { border-color: rgba(65,38,47,.12); }
html[data-theme="light"] .help-plus::before,
html[data-theme="light"] .help-plus::after { background: #70676e; }
html[data-theme="light"] .support-button { border-color: rgba(65,38,47,.15); color: var(--text); background: rgba(255,255,255,.62); }
html[data-theme="light"] .support-button.primary { color: #fff; background: var(--accent); }
html[data-theme="light"] .legal-notice { background: rgba(255,255,255,.58); }
html[data-theme="light"] .legal-section p,
html[data-theme="light"] .legal-section li { color: var(--muted); }

@media (max-width: 820px) {
  .support-page {
    padding: 128px 18px 88px;
  }

  .support-hero,
  .support-contact {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .support-hero-meta {
    padding: 0;
    border-left: 0;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 16px;
    padding: 0 0 20px;
    border-left: 0;
    border-bottom: 1px solid rgba(255,0,67,.2);
  }

  .legal-nav strong {
    width: 100%;
    margin-bottom: 5px;
  }

  .legal-nav a {
    padding: 4px 0;
  }
}

@media (max-width: 580px) {
  .support-page {
    padding: 112px 14px 72px;
  }

  .support-breadcrumb {
    margin-bottom: 25px;
  }

  .support-hero {
    padding-bottom: 38px;
  }

  .support-hero h1 {
    font-size: clamp(2.6rem, 11vw, 3.35rem);
  }

  .help-search-wrap {
    margin-top: 30px;
  }

  .help-search {
    height: 60px;
  }

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

  .help-filters {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
  }

  .help-filters::-webkit-scrollbar {
    display: none;
  }

  .help-filter {
    flex: 0 0 auto;
  }

  .help-item summary {
    min-height: 88px;
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 14px;
  }

  .help-category {
    grid-column: 1;
    align-self: end;
    margin-bottom: -8px;
  }

  .help-question {
    grid-column: 1;
    align-self: start;
    padding-bottom: 16px;
    font-size: .93rem;
  }

  .help-plus {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .help-answer {
    margin: 0 42px 0 0;
    padding-bottom: 27px;
    font-size: .88rem;
  }

  .support-contact {
    margin-top: 55px;
    padding: 35px 0;
  }

  .support-actions,
  .support-button {
    width: 100%;
  }

  .legal-layout {
    margin-top: 44px;
  }

  .legal-section {
    padding: 35px 0;
  }
}
