* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    monospace;
  color: #18181b;
  background: #fff;
  line-height: 1.65;
}
.wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 28px 24px 48px;
}
header,
footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #e4e4e7;
  padding-bottom: 18px;
}

header .brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

header .brand img {
  display: block;
  height: 28px;
  width: auto;
}
footer {
  border-top: 1px solid #e4e4e7;
  border-bottom: 0;
  padding-top: 18px;
  color: #71717a;
  font-size: 12px;
}
a {
  color: inherit;
  text-underline-offset: 3px;
}
nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: #71717a;
  font-size: 13px;
}
nav a {
  text-decoration: none;
}
main {
  padding: 44px 0 24px;
}
h1 {
  font-size: clamp(2.1rem, 6vw, 4rem);
  line-height: 0.96;
  letter-spacing: 0;
  margin: 0 0 18px;
}
h2 {
  font-size: 20px;
  margin: 34px 0 10px;
}
p,
li {
  color: #3f3f46;
  font-size: 15px;
}
.notice {
  border: 1px solid #e4e4e7;
  background: #fafafa;
  padding: 14px 16px;
  color: #71717a;
  font-size: 13px;
}
#support-status:empty {
  display: none;
}
.support-form {
  display: grid;
  gap: 14px;
  border: 1px solid #e4e4e7;
  padding: 18px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
label {
  display: grid;
  gap: 8px;
  font-size: 13px;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid #e4e4e7;
  background: #fff;
  color: #18181b;
  padding: 10px 12px;
  font: inherit;
}
textarea {
  min-height: 130px;
}
button.primary {
  border: 1px solid #18181b;
  background: #18181b;
  color: #fff;
  cursor: pointer;
  padding: 10px 14px;
  font: inherit;
}
button.primary:disabled {
  border-color: #e4e4e7;
  background: #fafafa;
  color: #71717a;
  cursor: not-allowed;
}
.turnstile-wrap {
  min-height: 1px;
}
.hidden {
  display: none;
}
@media (max-width: 720px) {
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
