@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/ibm-plex-sans-latin-400.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/ibm-plex-sans-latin-500.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/ibm-plex-mono-latin-400.woff2") format("woff2");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #0c0c0b;
  color: #ece8e1;
  font-family: "IBM Plex Sans", ui-sans-serif, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: #ece8e1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: #c45c26;
}

code,
.mono {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #2a2926;
  margin-bottom: 40px;
}

.wordmark {
  font-weight: 500;
  text-decoration: none;
}

.wordmark:hover {
  color: #ece8e1;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.nav a {
  text-decoration: none;
}

h1 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

h2 {
  font-size: 16px;
  font-weight: 500;
  margin: 40px 0 16px;
}

p {
  margin: 0 0 16px;
}

.muted {
  color: #9a958c;
}

.lede {
  margin-bottom: 40px;
}

dl {
  margin: 0;
  padding: 24px 0;
  border-top: 1px solid #2a2926;
  border-bottom: 1px solid #2a2926;
}

dt {
  color: #9a958c;
  font-size: 13px;
  margin: 0;
}

dd {
  margin: 0 0 16px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

dd:last-child {
  margin-bottom: 0;
}

.actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #ece8e1;
  background: transparent;
  color: #ece8e1;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover {
  background: #ece8e1;
  color: #0c0c0b;
}

.btn-fill {
  background: #c45c26;
  border-color: #c45c26;
  color: #0c0c0b;
  text-decoration: none;
}

.btn-fill:hover {
  background: #ece8e1;
  border-color: #ece8e1;
  color: #0c0c0b;
}

form.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: #9a958c;
}

select,
input[type="text"],
input[type="password"],
input[type="search"] {
  background: #0c0c0b;
  color: #ece8e1;
  border: 1px solid #2a2926;
  padding: 8px 12px;
  font-family: inherit;
  font-size: 16px;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

input::placeholder {
  color: #9a958c;
}

select:focus,
input:focus {
  outline: 1px solid #ece8e1;
}

.error {
  color: #ece8e1;
  border: 1px solid #2a2926;
  padding: 16px;
  margin-bottom: 24px;
}

.note {
  border: 1px solid #2a2926;
  padding: 16px;
  margin: 24px 0;
}

ul.dates {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.dates li {
  padding: 16px 0;
  border-bottom: 1px solid #2a2926;
}

ul.dates time {
  display: block;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  color: #9a958c;
  font-size: 13px;
  margin-bottom: 8px;
}

.admin {
  max-width: 960px;
}

.admin h1 {
  font-size: 20px;
}

.search {
  display: flex;
  gap: 16px;
  align-items: end;
  margin-bottom: 24px;
}

.search input[type="text"],
.search select {
  min-width: 240px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

th,
td {
  text-align: left;
  padding: 8px 12px 8px 0;
  border-bottom: 1px solid #2a2926;
  vertical-align: top;
  font-weight: 400;
}

th {
  color: #9a958c;
}

.inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: end;
}

.inline-form input {
  font-size: 13px;
  padding: 4px 8px;
  max-width: 140px;
}

.inline-form .btn {
  font-size: 13px;
  padding: 4px 12px;
}

.foot {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #2a2926;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.foot-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.foot a {
  color: #9a958c;
  text-decoration: none;
}

.foot a:hover {
  color: #c45c26;
}

.legal h2 {
  font-size: 16px;
  font-weight: 500;
  margin: 24px 0 12px;
}

.plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 40px 0;
}

@media (min-width: 640px) {
  .plans {
    grid-template-columns: 1fr 1fr;
  }
}

.plan {
  border: 1px solid #2a2926;
  padding: 24px;
}

.plan-price {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 28px;
  margin: 8px 0 16px;
}

.plan-price span {
  font-size: 16px;
  color: #9a958c;
}

.faq details {
  border-bottom: 1px solid #2a2926;
  padding: 16px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 500;
}

.faq p {
  margin: 16px 0 0;
  color: #9a958c;
}

.reqs {
  border-top: 1px solid #2a2926;
  border-bottom: 1px solid #2a2926;
  padding: 24px 0;
}

.reqs p {
  margin: 0 0 16px;
}

.reqs dl {
  margin: 0;
  padding: 0;
  border: 0;
}

.mod-search {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 32px;
  max-width: 400px;
  font-size: 13px;
  color: #9a958c;
}

.mod-search input {
  background: #0c0c0b;
  color: #ece8e1;
  border: 1px solid #2a2926;
  padding: 8px 12px;
  font-family: inherit;
  font-size: 16px;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

.mod-cat {
  margin: 0;
  border-bottom: 1px solid #2a2926;
}

.mod-cat > summary {
  font-size: 16px;
  font-weight: 500;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
}

.mod-cat > summary::-webkit-details-marker {
  display: none;
}

.mod-cat > summary::marker {
  content: "";
}

.mod-cat > summary:hover {
  color: #c45c26;
}

.mod-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}

.mod {
  border-bottom: 1px solid #2a2926;
}

.mod-toggle {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: #ece8e1;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 13px;
  padding: 10px 0;
  cursor: pointer;
}

.mod-toggle:hover {
  color: #c45c26;
}

.mod-desc {
  display: none;
  margin: 0 0 12px;
  color: #9a958c;
}

.mod-body {
  display: none;
}

.mod.open .mod-desc,
.mod.open .mod-body {
  display: block;
}

.mod-opts {
  list-style: none;
  padding: 0 0 12px;
  margin: 0;
  color: #9a958c;
  font-size: 13px;
}

.mod-opts > li {
  padding: 6px 0;
  border-bottom: 1px solid #2a2926;
}

.mod-opts ul {
  list-style: none;
  padding: 8px 0 0 16px;
  margin: 0;
}

.mod-opts ul li {
  padding: 4px 0;
  border-bottom: 1px solid #2a2926;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 13px;
}

ul.mods {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.mods li {
  padding: 8px 0;
  border-bottom: 1px solid #2a2926;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 13px;
}

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

textarea {
  background: #0c0c0b;
  color: #ece8e1;
  border: 1px solid #2a2926;
  padding: 8px 12px;
  font-family: inherit;
  font-size: 16px;
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  display: none;
}

@media (max-width: 720px) {
  body.has-sticky .wrap {
    padding-bottom: calc(112px + env(safe-area-inset-bottom, 0px));
  }

  .sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 12px 24px calc(12px + env(safe-area-inset-bottom, 0px));
    background: #0c0c0b;
    border-top: 1px solid #2a2926;
    z-index: 5;
  }

  .sticky-cta[hidden] {
    display: none;
  }

  .sticky-cta .btn {
    display: block;
    text-align: center;
  }
}
