:root {
  --text: #e5e4ea;
  --muted: #7e7c86;
  --label: #b8b8c0;
  --panel: #141414;
  --header: #161616;
  --group: #171717;
  --surface: #1c1c1c;
  --raised: #232324;
  --track: #3a3a3c;
  --outline: rgba(255, 255, 255, 0.067);
  --accent: #862ff7;
  --accentalt: #ad6fff;
  --accentrgb: 134, 47, 247;
  --tabhover: #815cb5;
  --danger: #ef5a6a;
  --good: #46d37a;
  --warn: #f0b34a;
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --icons: "fasolid";
}

@font-face {
  font-family: "fasolid";
  src: url("/fonts/fasolid.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: block;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--panel);
  color: var(--text);
  font: 15px/1.5 var(--font);
}

a {
  color: var(--accentalt);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

h1, h2, h3, p, dl, dd, dt, ul {
  margin: 0;
}

button {
  font: inherit;
}

.icon {
  font-family: var(--icons);
  font-weight: 900;
  font-style: normal;
  line-height: 1;
  display: inline-block;
}

[hidden] {
  display: none !important;
}

.topbar {
  height: 58px;
  flex: none;
  display: flex;
  align-items: center;
  padding: 0 24px 0 20px;
  background: var(--header);
  border-bottom: 1px solid var(--outline);
}

.brand {
  display: flex;
  align-items: center;
  color: var(--text);
}

.brand:hover {
  color: var(--text);
}

.brandmark {
  width: 29px;
  height: 28px;
  display: block;
}

.brandtext {
  font-weight: 700;
  font-size: 16px;
  margin-left: -3px;
  line-height: 1;
}

.brandpage {
  margin-left: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1;
  padding-top: 1px;
}

.topnav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.topnav a, .topnav button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color 120ms ease;
}

.topnav .icon {
  font-size: 12px;
}

.topnav a:hover, .topnav button:hover {
  color: var(--tabhover);
}

.topnav .active {
  color: var(--accent);
}

.topnav .button {
  color: #fff;
  font-size: 13px;
  height: 32px;
  padding: 0 14px;
}

.topnav .button:hover {
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 36px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 1px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease, opacity 120ms ease;
}

.button:hover {
  background: var(--accentalt);
  color: #fff;
}

.button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.button:disabled:hover {
  background: var(--accent);
}

.buttonghost {
  background: rgba(35, 35, 36, 0.55);
  border-color: var(--outline);
  color: var(--muted);
  font-weight: 400;
}

.buttonghost:hover {
  background: rgba(35, 35, 36, 0.85);
  border-color: rgba(var(--accentrgb), 0.55);
  color: var(--text);
}

.buttonghost:disabled:hover {
  background: rgba(35, 35, 36, 0.55);
  border-color: var(--outline);
  color: var(--muted);
}

.buttonwide {
  width: 100%;
}

.buttondanger:hover {
  border-color: rgba(239, 90, 106, 0.6);
  color: var(--danger);
}

.linkbutton {
  background: none;
  border: 0;
  padding: 0;
  color: var(--accentalt);
  cursor: pointer;
  font-size: inherit;
  transition: color 120ms ease;
}

.linkbutton:hover {
  color: var(--accent);
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.field {
  display: block;
  margin-bottom: 16px;
}

.field > span {
  display: block;
  margin-bottom: 6px;
  color: var(--label);
  font-size: 14px;
  transition: color 120ms ease;
}

.field:hover > span, .field:focus-within > span {
  color: var(--text);
}

.field input {
  width: 100%;
  height: 38px;
  padding: 0 11px;
  background: var(--surface);
  border: 1px solid rgba(var(--accentrgb), 0.16);
  border-radius: 1px;
  color: var(--text);
  font: 15px var(--font);
  outline: none;
  caret-color: var(--accent);
  transition: border-color 120ms ease;
}

.field input::placeholder {
  color: rgba(126, 124, 134, 0.65);
}

.field:hover input, .field input:focus {
  border-color: rgba(var(--accentrgb), 0.74);
}

input::selection {
  background: rgba(var(--accentrgb), 0.34);
}

.check {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 28px;
  color: #b8b8bf;
  cursor: pointer;
  user-select: none;
  transition: color 120ms ease;
}

.check:hover {
  color: #e0e0e0;
}

.check input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}

.checkbox {
  position: relative;
  flex: none;
  width: 14px;
  height: 14px;
  margin-right: 9px;
  background: var(--surface);
  border: 1px solid var(--outline);
  transition: background 100ms ease, border-color 100ms ease;
}

.check:hover .checkbox {
  background: var(--raised);
  border-color: rgba(var(--accentrgb), 0.85);
}

.check.on .checkbox, .check input:checked + .checkbox {
  background: var(--accent);
}

.checkbox svg {
  position: absolute;
  inset: -1px;
  width: 14px;
  height: 14px;
}

.checkbox path {
  fill: none;
  stroke: #fff;
  stroke-width: 1.25;
  stroke-linecap: butt;
  stroke-dasharray: 11.1;
  stroke-dashoffset: 11.1;
  transition: stroke-dashoffset 160ms ease-out;
}

.check.on path, .check input:checked + .checkbox path {
  stroke-dashoffset: 0;
}

.formerror, .formnotice {
  margin: 0 0 14px;
  padding: 8px 11px;
  border-radius: 1px;
  font-size: 14px;
}

.formerror {
  background: rgba(239, 90, 106, 0.08);
  border: 1px solid rgba(239, 90, 106, 0.3);
  color: var(--danger);
}

.formnotice {
  background: rgba(var(--accentrgb), 0.09);
  border: 1px solid rgba(var(--accentrgb), 0.35);
  color: var(--text);
}

.formsuccess {
  color: var(--label);
  font-size: 15px;
}

.formsuccess strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 17px;
}

.formsuccess .button {
  margin-top: 18px;
}

.group {
  position: relative;
  background: var(--group);
  border: 1px solid var(--outline);
  padding: 44px 14px 14px;
}

.grouptitle {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  padding-left: 13px;
  line-height: 32px;
  background: rgba(255, 255, 255, 0.012);
  border-bottom: 1px solid var(--outline);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.grouptitle .icon {
  font-size: 11px;
  margin-right: 8px;
  color: var(--accent);
}

.grouplead {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.rows > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 34px;
  padding: 4px 0;
  border-top: 1px solid var(--outline);
  font-size: 15px;
}

.rows > div:first-child {
  border-top: 0;
}

.rows dt {
  color: var(--muted);
  flex: none;
}

.rows dd {
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rows dd.muted {
  color: var(--muted);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  box-shadow: 0 0 0 3px rgba(126, 124, 134, 0.18);
}

.dot.operational {
  background: var(--good);
  box-shadow: 0 0 0 3px rgba(70, 211, 122, 0.18);
}

.dot.updating {
  background: var(--warn);
  box-shadow: 0 0 0 3px rgba(240, 179, 74, 0.18);
}

.dot.offline {
  background: var(--danger);
  box-shadow: 0 0 0 3px rgba(239, 90, 106, 0.18);
}

.page {
  flex: 1;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 36px 24px 64px;
}

.pagehead {
  margin-bottom: 22px;
}

.pagehead h1 {
  font-size: 22px;
  font-weight: 700;
}

.pagehead p {
  color: var(--muted);
  margin-top: 4px;
}

.groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.groups .group.wide {
  grid-column: 1 / -1;
}

.authwrap {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 48px 16px 72px;
}

.card {
  width: 100%;
  max-width: 400px;
}

.card .cardlead {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.card .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -4px 0 16px;
  font-size: 14px;
}

.card .cardfoot {
  margin-top: 16px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.landing {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 20px 72px;
}

.hero {
  text-align: center;
  max-width: 560px;
  margin-bottom: 44px;
}

.hero .brand {
  justify-content: center;
}

.hero .brandmark {
  width: 62px;
  height: 60px;
}

.hero .brandtext {
  font-size: 36px;
  margin-left: -7px;
}

.hero p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
}

.hero .actions {
  justify-content: center;
  margin-top: 26px;
}

.hero .actions .button {
  min-width: 150px;
}

.previewlabel {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 14px;
  text-align: center;
}

.previewhost {
  width: 100%;
}

.menuwrap {
  position: relative;
  width: 760px;
  max-width: 100%;
  margin: 0 auto;
}

.menu {
  position: relative;
  width: 760px;
  height: 598px;
  background: var(--panel);
  border: 1px solid var(--outline);
  border-radius: 2px;
  font-size: 13px;
  line-height: 1.25;
  user-select: none;
  overflow: hidden;
  transform-origin: top left;
}

.menuhead {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 58px;
  display: flex;
  align-items: center;
  padding-left: 18px;
  background: var(--header);
  border-bottom: 1px solid var(--outline);
}

.menubrand {
  display: flex;
  align-items: center;
  width: 88px;
  flex: none;
}

.menubrand img {
  width: 25px;
  height: 24px;
}

.menubrand span {
  font-size: 14px;
  font-weight: 700;
  margin-left: -3px;
}

.menutabs {
  display: flex;
  flex: 1;
  height: 100%;
  margin-right: 10px;
}

.menutab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--muted);
  cursor: pointer;
  transition: color 110ms ease;
}

.menutab .icon {
  font-size: 12px;
}

.menutab:hover {
  color: var(--tabhover);
}

.menutab.active {
  color: var(--accent);
}

.menupages {
  position: absolute;
  top: 71px;
  left: 14px;
  right: 14px;
  bottom: 60px;
  overflow: hidden;
}

.menutrack {
  display: flex;
  height: 100%;
  transition: transform 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

.menupage {
  flex: 0 0 100%;
  height: 100%;
  margin-right: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.menupage.three > .menugroup:first-child {
  grid-row: 1 / 3;
}

.menupage.two > .menugroup {
  grid-row: 1 / 3;
}

.menupage.one > .menugroup {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.menugroup {
  position: relative;
  background: var(--group);
  border: 1px solid var(--outline);
  padding: 39px 11px 10px;
  overflow: hidden;
}

.menugroup .grouptitle {
  height: 30px;
  line-height: 30px;
  padding-left: 10px;
  font-size: 11.5px;
}

.menugroup .check {
  height: 28px;
  min-height: 0;
  font-size: 13px;
}

.menugroup .check.highlight, .menugroup .slider.highlight, .menugroup .dropdown.highlight, .menugroup .textbox.highlight {
  box-shadow: inset 0 0 0 100px rgba(var(--accentrgb), 0.14);
}

.slider {
  position: relative;
  height: 40px;
  margin-top: 6px;
  cursor: pointer;
  touch-action: none;
}

.sliderlabel {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--label);
  transition: color 120ms ease;
}

.slider:hover .sliderlabel, .slider.active .sliderlabel {
  color: var(--text);
}

.slidertrack {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  background: var(--track);
}

.sliderfill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--accent);
}

.slidermark {
  position: absolute;
  top: -2px;
  width: 2px;
  height: 6px;
  margin-left: -1px;
  background: var(--text);
  opacity: 0;
  transition: opacity 120ms ease;
}

.slider:hover .slidermark, .slider.active .slidermark {
  opacity: 1;
}

.slidertip {
  position: absolute;
  bottom: 15px;
  height: 21px;
  padding: 0 6px;
  line-height: 19px;
  background: var(--raised);
  border: 1px solid var(--outline);
  color: var(--text);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 120ms ease;
  z-index: 2;
}

.slider:hover .slidertip, .slider.active .slidertip {
  opacity: 1;
}

.dropdown {
  position: relative;
  height: 50px;
  margin-top: 6px;
}

.dropdownlabel {
  color: var(--label);
  transition: color 120ms ease;
}

.dropdown:hover .dropdownlabel, .dropdown.open .dropdownlabel {
  color: var(--text);
}

.dropdownfield {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 27px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  background: var(--surface);
  border: 1px solid rgba(var(--accentrgb), 0.12);
  border-radius: 1px;
  color: var(--text);
  font-size: 11.5px;
  cursor: pointer;
  transition: border-color 120ms ease;
}

.dropdown:hover .dropdownfield, .dropdown.open .dropdownfield {
  border-color: rgba(var(--accentrgb), 0.67);
}

.dropdownvalue {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 12px;
}

.dropdownarrow {
  position: absolute;
  right: 9px;
  top: 50%;
  width: 6px;
  height: 3px;
  margin-top: -1.5px;
  transition: transform 160ms ease;
}

.dropdownarrow polyline {
  fill: none;
  stroke: var(--muted);
  stroke-width: 1;
}

.dropdown.open .dropdownarrow {
  transform: scaleY(-1);
}

.dropdownlist {
  position: absolute;
  z-index: 20;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 1px;
  padding: 2px 6px 2px 2px;
  height: 0;
  overflow: hidden;
  transition: height 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdownlist.scroll {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--accentrgb), 0.88) transparent;
}

.dropdownlist::-webkit-scrollbar {
  width: 6px;
}

.dropdownlist::-webkit-scrollbar-thumb {
  background: rgba(var(--accentrgb), 0.88);
  border-radius: 3px;
  border: 2px solid var(--surface);
}

.dropdownoption {
  height: 25px;
  line-height: 25px;
  padding-left: 8px;
  font-size: 11.5px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: background 110ms ease, color 110ms ease;
}

.dropdownoption:hover {
  background: rgba(var(--accentrgb), 0.07);
  color: var(--text);
}

.dropdownoption.active {
  background: rgba(var(--accentrgb), 0.15);
  color: var(--accent);
}

.dropdown.large {
  height: 66px;
}

.dropdown.large .dropdownlabel {
  font-size: 14px;
}

.dropdown.large .dropdownfield {
  top: 26px;
  height: 38px;
  font-size: 15px;
  padding: 0 11px;
  border-color: rgba(var(--accentrgb), 0.16);
}

.dropdown.large .dropdownarrow {
  right: 13px;
  width: 8px;
  height: 4px;
  margin-top: -2px;
}

.dropdown.large .dropdownlist {
  top: 67px;
  left: 0;
  right: 0;
}

.dropdown.large .dropdownoption {
  height: 34px;
  line-height: 34px;
  font-size: 15px;
  padding-left: 11px;
}

.textbox {
  position: relative;
  height: 47px;
  margin-top: 6px;
}

.textboxlabel {
  color: #bbbbc2;
  transition: color 120ms ease;
}

.textbox:hover .textboxlabel, .textbox:focus-within .textboxlabel {
  color: var(--text);
}

.textbox input {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 27px;
  padding: 0 8px;
  background: var(--surface);
  border: 1px solid rgba(var(--accentrgb), 0.16);
  border-radius: 1px;
  color: var(--text);
  font: 11.5px var(--font);
  outline: none;
  caret-color: var(--accent);
  transition: border-color 120ms ease;
}

.textbox input::placeholder {
  color: rgba(126, 124, 134, 0.65);
}

.textbox:hover input, .textbox input:focus {
  border-color: rgba(var(--accentrgb), 0.74);
}

.menubutton {
  display: flex;
  align-items: center;
  height: 26px;
  padding: 0 8px;
  margin-bottom: 2px;
  border: 1px solid transparent;
  border-radius: 1px;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
}

.menubutton:hover {
  background: rgba(35, 35, 36, 0.72);
  color: var(--text);
}

.menubutton.active {
  background: rgba(var(--accentrgb), 0.16);
  border-color: rgba(var(--accentrgb), 0.5);
  color: var(--text);
}

.menubutton .icon {
  font-size: 11px;
  margin-right: 8px;
  color: var(--accent);
}

.menubutton small {
  margin-left: auto;
  font-size: 11px;
  color: var(--muted);
}

.menufoot {
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 0;
  height: 47px;
  border-top: 1px solid var(--outline);
}

.menuuser {
  position: absolute;
  left: 14px;
  top: 4px;
  height: 22px;
  line-height: 22px;
  color: var(--text);
}

.menuconfig {
  position: absolute;
  left: 14px;
  top: 22px;
  height: 19px;
  display: flex;
  align-items: center;
  font-size: 11.5px;
  color: var(--muted);
}

.menuconfig .icon {
  width: 16px;
  text-align: center;
  font-size: 12px;
  color: var(--accent);
  margin-right: 4px;
}

.iconbutton {
  position: absolute;
  top: 7px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(35, 35, 36, 0.55);
  border: 1px solid var(--outline);
  border-radius: 1px;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
}

.iconbutton:hover {
  background: rgba(35, 35, 36, 0.85);
  border-color: rgba(var(--accentrgb), 0.6);
  color: var(--text);
}

.iconbutton .icon {
  padding-top: 1px;
}

.menusave {
  right: 12px;
}

.menusearch {
  right: 51px;
}

.menusearch.hidden {
  opacity: 0;
  pointer-events: none;
}

.menusearchfield {
  position: absolute;
  top: 7px;
  right: 51px;
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid rgba(var(--accentrgb), 0.28);
  border-radius: 1px;
  overflow: hidden;
  transition: width 220ms cubic-bezier(0.4, 0, 0.2, 1), border-color 220ms ease;
}

.menusearchfield.open {
  width: 430px;
  border-color: rgba(var(--accentrgb), 0.73);
}

.menusearchfield .icon {
  flex: none;
  width: 34px;
  text-align: center;
  font-size: 12px;
  color: var(--accent);
}

.menusearchfield input {
  flex: 1;
  min-width: 0;
  height: 100%;
  background: none;
  border: 0;
  outline: none;
  color: var(--text);
  font: 11.5px var(--font);
  caret-color: var(--accent);
  opacity: 0;
  transition: opacity 160ms ease 80ms;
}

.menusearchfield.open input {
  opacity: 1;
}

.menusearchfield input::placeholder {
  color: var(--muted);
}

.menusearchclose {
  flex: none;
  width: 31px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  cursor: pointer;
  transition: color 120ms ease;
}

.menusearchclose:hover {
  color: var(--text);
}

.menuresults {
  position: absolute;
  right: 51px;
  bottom: 44px;
  width: 430px;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 1px;
  padding: 2px;
  z-index: 30;
}

.menuresult {
  display: flex;
  align-items: center;
  height: 25px;
  padding: 0 8px;
  font-size: 11.5px;
  color: var(--muted);
  cursor: pointer;
  transition: background 110ms ease, color 110ms ease;
}

.menuresult:hover {
  background: rgba(var(--accentrgb), 0.07);
  color: var(--text);
}

.menuresult small {
  margin-left: auto;
  color: var(--muted);
  font-size: 11px;
}

.menuresult.empty {
  cursor: default;
}

.menutoast {
  position: absolute;
  top: 10px;
  right: 51px;
  height: 26px;
  display: flex;
  align-items: center;
  padding: 0 10px 0 5px;
  background: var(--raised);
  border-radius: 1px;
  font-size: 11.5px;
  color: var(--text);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.menutoast.show {
  opacity: 1;
}

.menutoast .icon {
  width: 20px;
  text-align: center;
  font-size: 12px;
  color: var(--accent);
  margin-right: 5px;
}

.menuoverlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.menuoverlay > * {
  pointer-events: auto;
}

.keystrokes {
  display: grid;
  grid-template-columns: repeat(3, 25px);
  justify-content: center;
  margin-top: 14px;
  font-size: 11.5px;
  line-height: 22px;
  color: var(--muted);
  text-align: center;
  user-select: none;
}

.keystrokes span {
  transition: color 80ms ease;
}

.keystrokes span.down {
  color: var(--text);
}

.keystrokes .keyw {
  grid-column: 2;
}

.tooltip {
  position: fixed;
  z-index: 200;
  height: 22px;
  padding: 0 8px;
  line-height: 20px;
  background: var(--raised);
  border: 1px solid var(--outline);
  border-radius: 1px;
  color: var(--text);
  font-size: 13px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 140ms ease;
}

.tooltip.show {
  opacity: 1;
}

.plans {
  display: grid;
  gap: 6px;
}

.plan {
  display: flex;
  align-items: center;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--outline);
  border-radius: 1px;
  background: rgba(35, 35, 36, 0.35);
  color: var(--label);
  cursor: pointer;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
}

.plan:hover {
  background: rgba(35, 35, 36, 0.72);
  color: var(--text);
}

.plan.active {
  background: rgba(var(--accentrgb), 0.16);
  border-color: rgba(var(--accentrgb), 0.5);
  color: var(--text);
}

.plan .price {
  margin-left: auto;
  font-weight: 600;
  color: var(--text);
}

.plan .per {
  margin-left: 6px;
  font-size: 13px;
  color: var(--muted);
}

.helplayout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 14px;
  align-items: start;
}

.helpnav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px;
}

.helpnav a {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 1px;
  color: var(--muted);
  font-size: 14px;
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
}

.helpnav a .icon {
  width: 14px;
  text-align: center;
  font-size: 12px;
}

.helpnav a:hover {
  background: rgba(35, 35, 36, 0.72);
  color: var(--text);
}

.helpnav a.active {
  background: rgba(var(--accentrgb), 0.16);
  border-color: rgba(var(--accentrgb), 0.5);
  color: var(--text);
}

.helpnav .divider {
  height: 1px;
  margin: 6px 4px;
  background: var(--outline);
}

.doc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--label);
}

.doc h2 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin: 22px 0 6px;
}

.doc h2:first-child {
  margin-top: 0;
}

.doc p + p {
  margin-top: 8px;
}

.doc ul {
  padding-left: 20px;
  margin: 6px 0;
}

.doc li + li {
  margin-top: 4px;
}

.doc .meta {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 14px;
}

.doc details {
  border-top: 1px solid var(--outline);
  padding: 10px 0;
}

.doc details:last-child {
  border-bottom: 1px solid var(--outline);
}

.doc summary {
  cursor: pointer;
  color: var(--text);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.doc summary::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--muted);
  border-bottom: 1px solid var(--muted);
  transform: rotate(-45deg);
  transition: transform 160ms ease;
  flex: none;
}

.doc details[open] summary::before {
  transform: rotate(45deg);
}

.doc details p {
  margin-top: 8px;
  padding-left: 16px;
}

.doc code {
  font-family: Consolas, "Cascadia Mono", monospace;
  font-size: 13px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--outline);
  padding: 1px 5px;
  border-radius: 1px;
}

.footer {
  flex: none;
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  gap: 22px;
  border-top: 1px solid var(--outline);
  background: var(--header);
  color: var(--muted);
  font-size: 13px;
}

.footer a {
  color: var(--muted);
}

.footer a:hover {
  color: var(--text);
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 13px;
}

.groupform {
  margin-top: 16px;
}

.tooltipwrap {
  display: inline-block;
}

.tooltipwrap[data-tooltip] {
  cursor: not-allowed;
}

.button:disabled {
  pointer-events: none;
}

.previewspace {
  margin-top: 36px;
}

.menuwrap {
  overflow: hidden;
}

@media (max-width: 860px) {
  .groups {
    grid-template-columns: 1fr;
  }

  .helplayout {
    grid-template-columns: 1fr;
  }

  .helpnav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .helpnav .divider {
    display: none;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 0 14px;
  }

  .brandpage {
    display: none;
  }

  .topnav {
    gap: 16px;
  }

  .topnav .textlink {
    display: none;
  }

  .page {
    padding: 24px 14px 48px;
  }

  .hero .brandmark {
    width: 48px;
    height: 46px;
  }

  .hero .brandtext {
    font-size: 28px;
  }

  .hero .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .rows > div {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .rows dd {
    text-align: left;
  }
}
