:root {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: #242721;
  background: #f6f5ef;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 5vw;
  border-bottom: 1px solid #dedfd4;
}
header a {
  color: inherit;
  font-size: 20px;
  font-weight: 650;
  text-decoration: none;
}
header a span {
  font-weight: 400;
  color: #70746a;
}
header > span {
  font-size: 12px;
  border: 1px solid #d5d9ca;
  border-radius: 24px;
  padding: 5px 12px;
}
main {
  width: min(640px, 90vw);
  margin: auto;
  padding: 72px 0;
}
.eyebrow {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.14em;
  color: #64724d;
}
h1 {
  font-size: clamp(44px, 7vw, 68px);
  letter-spacing: -0.055em;
  line-height: 1.06;
  font-weight: 550;
  margin: 24px 0;
}
.intro {
  color: #686d60;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 36px;
}
button {
  background: #2d412b;
  color: #fff;
  padding: 16px 22px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  cursor: pointer;
}
button span {
  margin-left: 30px;
}
button:disabled {
  opacity: 0.6;
  cursor: wait;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid #9dac70;
  outline-offset: 5px;
}
#account {
  border-top: 1px solid #dedfd4;
  margin: 24px 0;
  padding-top: 22px;
}
h2 {
  font-size: 24px;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
#email,
#account > p:last-child {
  color: #686d60;
}
#status {
  max-width: 460px;
  line-height: 1.6;
}
footer {
  padding: 24px 5vw;
  color: #777c70;
  font-size: 12px;
}
[hidden] {
  display: none !important;
}
