:root {
  color-scheme: dark;
  --bg: #141416;
  --card: #202023;
  --paper: #eee7d1;
  --muted: #b9b5ac;
  --red: #ed5949;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--paper);
  font:
    17px/1.6 system-ui,
    sans-serif;
}
main {
  max-width: 850px;
  margin: auto;
  padding: 36px 20px;
}
header {
  padding: 8px 0 28px;
  border-bottom: 4px solid var(--red);
  margin-bottom: 28px;
}
header p {
  margin: 2px 0;
  color: var(--muted);
}
.brand {
  font-size: 28px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0.04em;
}
.brand span {
  color: var(--red);
}
h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  margin: 12px 0 20px;
}
h2 {
  font-size: 24px;
  line-height: 1.3;
}
a {
  color: var(--paper);
  text-underline-offset: 3px;
}
a:hover {
  color: var(--red);
}
.panel {
  background: var(--card);
  padding: clamp(20px, 4vw, 36px);
  margin: 22px 0;
  border: 1px solid #3b3b3f;
  border-radius: 12px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  color: var(--red);
}
.quiet {
  color: var(--muted);
}
.small {
  font-size: 14px;
}
label {
  display: block;
  font-weight: 650;
  margin: 20px 0 8px;
}
input {
  width: 100%;
  font: inherit;
  padding: 14px;
  background: var(--bg);
  border: 1px solid #777;
  border-radius: 6px;
  color: var(--paper);
}
button,
.download {
  display: inline-block;
  font: inherit;
  font-weight: 750;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--red);
  color: #171719;
  cursor: pointer;
  text-decoration: none;
  margin: 12px 8px 4px 0;
  min-height: 48px;
}
button:hover,
.download:hover {
  background: #ff8070;
  color: #171719;
}
.secondary {
  background: transparent;
  border-color: #777;
  color: var(--paper);
  font-size: 14px;
}
button:disabled {
  opacity: 0.55;
  cursor: wait;
}
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid #f6c26d;
  outline-offset: 4px;
}
#security {
  margin-top: 16px;
}
#status:not(:empty) {
  margin: 18px 0;
  padding: 14px;
  border-left: 4px solid #f6c26d;
  background: #32302b;
}
.accountline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.release {
  border-top: 1px solid #4a4a4e;
  padding: 22px 0;
}
.release h2 {
  margin: 0;
}
.hash {
  overflow-wrap: anywhere;
  font: 12px/1.5 monospace;
}
footer {
  padding: 12px 0;
  font-size: 14px;
}
[hidden] {
  display: none !important;
}
code {
  overflow-wrap: anywhere;
}
.resume {
  display: block;
  margin: 10px 0;
}
