:root {
  color-scheme: light;
  --paper: #faf8f5;
  --ink: #25231f;
  --muted: #625f59;
  --rust: #a63819;
  --line: #e6e0d7;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial,
    sans-serif;
  line-height: 1.5;
}
a {
  color: var(--rust);
  text-underline-offset: 4px;
}
img {
  display: block;
  max-width: 100%;
}
:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 5px;
}
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.skip-link:focus {
  position: absolute;
  z-index: 10;
  padding: 12px 20px;
  background: white;
}
.wrap {
  width: min(100% - 56px, 1064px);
  margin-inline: auto;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-decoration: none;
}
.mark {
  width: 36px;
  height: 36px;
}
.site-header nav,
.support-footer nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
}
.site-header nav a,
.support-footer nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted);
  text-decoration: none;
}
.site-header [aria-current] {
  color: var(--rust);
}
.support-page {
  max-width: 800px;
}
.support-intro {
  padding-block: 52px 28px;
}
h1,
h2 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.035em;
}
h1 {
  margin: 0 0 12px;
  font-size: 40px;
}
h2 {
  margin: 0;
  font-size: 24px;
}
.support-intro p {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
}
.support-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  background: #f1eee7;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.support-contact h2 {
  font-size: 17px;
  letter-spacing: -0.02em;
}
.support-contact p {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--muted);
  max-width: 39ch;
}
.support-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}
.support-layout {
  margin-top: 40px;
}
.topic-links {
  display: flex;
  flex-wrap: wrap;
  column-gap: 24px;
  margin-block: 8px 18px;
}
.topic-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 13px;
  color: var(--muted);
  text-decoration-color: #c4bdb3;
}
.support-answers {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.support-answers details + details {
  border-top: 1px solid var(--line);
}
.support-answers details {
  scroll-margin-top: 24px;
}
.support-answers summary {
  display: flex;
  position: relative;
  align-items: center;
  cursor: pointer;
  list-style: none;
  padding: 20px 58px 20px 24px;
  min-height: 66px;
  border-radius: 9px;
}
.support-answers summary::-webkit-details-marker {
  display: none;
}
.support-answers summary::before,
.support-answers summary::after {
  content: '';
  position: absolute;
  right: 25px;
  top: calc(50% - 1px);
  height: 1.5px;
  width: 12px;
  background: var(--muted);
}
.support-answers summary::after {
  transform: rotate(90deg);
}
.support-answers details[open] summary::after {
  transform: rotate(0);
}
.support-answers summary:focus-visible {
  outline-offset: -3px;
}
.faq-copy {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}
.support-answers details > div {
  padding: 0 58px 22px 24px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}
.support-answers details p {
  margin: 0 0 12px;
}
.support-answers details p:last-child {
  margin-bottom: 0;
}
.support-answers details strong,
.report-guide strong {
  color: var(--ink);
  font-weight: 600;
}
.report-guide {
  margin-block: 36px 40px;
}
.report-guide h2 {
  margin-bottom: 12px;
  font-size: 20px;
}
.report-guide p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.report-guide .support-privacy-note {
  font-size: 13px;
}
.support-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 18px 28px;
  border-top: 1px solid var(--line);
}
.support-footer p,
.support-footer nav {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}
@media (hover: hover) {
  a:hover {
    color: var(--rust);
    text-decoration: underline;
  }
  .support-answers summary:hover {
    background: #faf8f5;
  }
}
@media (max-width: 600px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    min-height: 80px;
    gap: 16px;
  }
  .site-header nav {
    gap: 18px;
    font-size: 13px;
  }
  .support-intro {
    padding-block: 36px 24px;
  }
  h1 {
    font-size: 34px;
  }
  .support-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px;
  }
  .support-layout {
    margin-top: 32px;
  }
  .topic-links {
    column-gap: 18px;
  }
  .support-answers summary {
    padding: 18px 44px 18px 18px;
  }
  .support-answers summary::before,
  .support-answers summary::after {
    right: 18px;
  }
  .support-answers details > div {
    padding: 0 18px 20px;
  }
  .support-footer nav {
    gap: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
