/* Invitations and the future console, in paper and graphite. */
.header-account {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  white-space: nowrap;
}
.header-login {
  font-size: 11px;
  padding: 12px 2px;
  border-bottom: 1px solid transparent;
}
.header-login:hover,
.header-login[aria-current] {
  border-color: var(--ink);
}
.header-join {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  border: 1px solid var(--ink);
  padding: 10px 15px;
  transition:
    background 0.2s,
    color 0.2s;
}
.header-join:hover {
  background: var(--ink);
  color: var(--paper);
}
.header-join > span {
  font-size: 18px;
  line-height: 1;
}
.site-header {
  gap: 24px;
}
.desktop-nav {
  gap: 24px;
  margin-left: auto;
}
.waitlist-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  padding-block: 85px;
  border-top: 1px solid var(--line);
}
.waitlist-band h2 {
  font: clamp(40px, 4.2vw, 65px) / 1.05 var(--serif);
  margin: 18px 0;
}
.waitlist-band p:not(.eyebrow) {
  max-width: 560px;
  font-size: 13px;
  color: var(--muted);
}
.waitlist-band-action {
  flex-shrink: 0;
  display: grid;
  justify-items: start;
  gap: 17px;
}
.waitlist-band-action > span {
  font: 17px var(--serif);
  font-style: italic;
  color: var(--muted);
}
html.invitation-open {
  overflow: hidden;
}
html:not(.js) .account-loading {
  display: none;
}
.invitation-dialog {
  padding: 0;
  border: 1px solid #8b8e81;
  background: var(--paper);
  color: var(--ink);
  width: min(584px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  margin: auto;
  box-shadow: 0 30px 100px #101a1659;
  overflow: auto;
}
.invitation-dialog::backdrop {
  background: #202822b8;
  backdrop-filter: blur(5px);
}
.invitation-dialog[open] {
  animation: invitation-in 0.32s var(--ease);
}
.invitation-sheet {
  position: relative;
  padding: 44px 48px 34px;
  background-image: linear-gradient(
    90deg,
    transparent calc(100% - 18px),
    #69715720 calc(100% - 18px),
    #69715720 calc(100% - 17px),
    transparent calc(100% - 17px)
  );
}
.invitation-close {
  position: absolute;
  top: 14px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font: 10px var(--mono);
  min-height: 36px;
  padding: 5px;
}
.invitation-close > span:last-child {
  font: 26px var(--sans);
  font-weight: 300;
}
.invitation-number {
  display: block;
  color: var(--accent);
  font: 9px var(--mono);
  letter-spacing: 0.15em;
  margin-bottom: 29px;
}
.invitation-intro h2 {
  font: clamp(40px, 4.4vw, 57px) / 0.98 var(--serif);
  margin: 12px 0 14px;
  letter-spacing: -0.025em;
}
.invitation-intro > p:last-child {
  font-size: 12px;
  line-height: 1.8;
  max-width: 330px;
  color: var(--muted);
  margin-bottom: 25px;
}
.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 19px;
  min-width: 0;
}
.form-field > label,
.use-case-field legend {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
}
.form-field > label > span {
  font-weight: 400;
  color: var(--muted);
  font-size: 10px;
  margin-left: 6px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 45px;
  border: 1px solid #b5b7aa;
  background: #fbfaf6;
  color: var(--ink);
  border-radius: 0;
  padding: 11px 13px;
  font: 13px/1.5 var(--sans);
}
.form-field textarea {
  resize: vertical;
  min-height: 76px;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #777b70;
  opacity: 1;
}
.form-field input:focus-visible,
.form-field textarea:focus-visible,
.form-field select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.field-hint {
  font-size: 10px;
  color: #60675a;
  line-height: 1.65;
  margin: 0;
}
.use-case-field {
  border: 0;
  padding: 0;
  margin: 0 0 20px;
  min-width: 0;
}
.use-case-field legend {
  margin-bottom: 10px;
}
.use-case-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.use-case-options label {
  position: relative;
  cursor: pointer;
}
.use-case-options input {
  position: absolute;
  left: 14px;
  top: 18px;
  accent-color: var(--accent);
  width: 15px;
  height: 15px;
  margin: 0;
}
.use-case-options label > span {
  display: grid;
  gap: 3px;
  min-height: 78px;
  padding: 14px 12px 12px 39px;
  border: 1px solid #b5b7aa;
  background: #fbfaf65c;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.use-case-options b {
  font-size: 12px;
  font-weight: 500;
}
.use-case-options small {
  font-size: 9px;
  color: var(--muted);
  line-height: 1.6;
}
.use-case-options input:checked + span {
  border-color: var(--accent);
  background: #e8ecdf;
}
.use-case-options input:focus-visible + span {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-submit {
  width: 100%;
  justify-content: space-between;
  min-height: 49px;
}
.form-privacy {
  font-size: 9px;
  color: #62695d;
  line-height: 1.8;
  margin: 14px 0 0;
}
.form-privacy a,
.privacy-page a:not(.text-link) {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-feedback {
  font-size: 12px;
  line-height: 1.7;
  color: #793c2e;
  padding: 11px 13px;
  border-left: 2px solid #94604c;
  background: #f0e7df;
  margin: 12px 0;
}
.form-notice {
  font-size: 12px;
  line-height: 1.7;
  color: #475f37;
  margin: 10px 0;
}
.form-notice:empty {
  display: none;
}
button:disabled {
  cursor: wait;
  opacity: 0.6;
}
.waitlist-success {
  padding: 10px 0 18px;
  outline: none;
}
.waitlist-success svg {
  display: block;
  width: 80px;
  height: 80px;
  color: var(--accent);
  margin: 6px 0 26px;
}
.waitlist-success h3 {
  font: 44px/1 var(--serif);
  margin: 15px 0;
}
.waitlist-success > p:not(.eyebrow) {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
}
.waitlist-success .success-note {
  font-size: 11px !important;
  margin: 18px 0 24px;
}
.join-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
  padding-block: 95px 120px;
  align-items: start;
  max-width: 1200px;
}
.join-copy h1,
.privacy-page h1 {
  font: clamp(54px, 6.2vw, 86px) / 0.98 var(--serif);
  letter-spacing: -0.04em;
  margin: 25px 0;
}
.join-copy > p:not(.eyebrow) {
  max-width: 420px;
  color: var(--muted);
  font-size: 14px;
}
.join-copy .handwritten {
  display: block;
  margin-top: 40px;
  font-size: 24px;
  transform: rotate(-3deg);
}
.join-sheet {
  padding: 35px;
  border: 1px solid var(--line);
  background: #faf9f475;
  box-shadow: 7px 7px 0 #dcded340;
}
.privacy-page {
  max-width: 850px;
  padding-block: 85px 110px;
}
.privacy-page h2 {
  font: 31px var(--serif);
  margin: 35px 0 10px;
}
.privacy-page > p {
  color: var(--muted);
  font-size: 14px;
}
.privacy-page .privacy-date {
  font: 10px var(--mono);
  margin-bottom: 45px;
}
@keyframes invitation-in {
  from {
    opacity: 0;
    transform: translateY(13px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1200px) {
  .desktop-nav {
    gap: 16px;
  }
  .header-account {
    gap: 16px;
  }
  .site-header {
    gap: 18px;
  }
  .header-join {
    padding: 9px 11px;
    gap: 9px;
  }
  .brand {
    gap: 9px;
  }
}
@media (min-width: 761px) and (max-width: 1050px) {
  .header-join {
    display: none;
  }
  .desktop-nav {
    gap: 18px;
  }
  .header-account {
    margin-left: 0;
  }
}
@media (max-width: 760px) {
  .header-join {
    display: none;
  }
  .header-account {
    margin-left: auto;
  }
  .header-login {
    font-size: 11px;
  }
  .site-header {
    gap: 17px;
  }
  .menu-toggle {
    padding-left: 0;
    gap: 10px;
  }
  .waitlist-band {
    display: block;
    padding-block: 55px;
  }
  .waitlist-band-action {
    margin-top: 25px;
  }
  .waitlist-band h2 {
    font-size: 42px;
  }
  .invitation-sheet {
    padding: 60px 26px 26px;
  }
  .invitation-number {
    margin-bottom: 23px;
  }
  .invitation-intro h2 {
    font-size: 46px;
  }
  .invitation-intro > p:last-child {
    margin-bottom: 23px;
  }
  .join-page {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 55px 70px;
  }
  .join-copy h1,
  .privacy-page h1 {
    font-size: 59px;
  }
  .join-copy .handwritten {
    margin-top: 22px;
    font-size: 21px;
  }
  .join-sheet {
    padding: 25px;
  }
  .privacy-page {
    padding-block: 50px 70px;
  }
  .footer-links {
    flex-wrap: wrap;
  }
}
@media (max-width: 370px) {
  .brand > span {
    font-size: 9px;
  }
  .brand svg {
    width: 30px;
    height: 30px;
  }
  .brand {
    gap: 7px;
  }
  .site-header {
    gap: 13px;
    padding-inline: 18px;
  }
  .menu-toggle {
    font-size: 9px;
    gap: 7px;
  }
  .menu-toggle i {
    width: 17px;
  }
  .invitation-sheet {
    padding-inline: 21px;
  }
  .invitation-intro h2 {
    font-size: 41px;
  }
  .use-case-options label > span {
    padding-left: 32px;
    padding-right: 7px;
  }
  .use-case-options input {
    left: 10px;
  }
  .use-case-options small {
    font-size: 8px;
  }
  .join-sheet {
    padding: 20px;
  }
  .join-copy h1,
  .privacy-page h1 {
    font-size: 50px;
  }
}
@media (max-width: 760px) {
  .form-field input,
  .form-field textarea,
  .form-field select {
    font-size: 16px;
  }
  .use-case-options small {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .invitation-dialog[open] {
    animation: none;
  }
  .header-join,
  .use-case-options label > span {
    transition: none;
  }
}
@media print {
  .invitation-dialog,
  .waitlist-band-action,
  .console-actions {
    display: none !important;
  }
}

.invitation-intro h2 {
  padding-top: 20px;
}

/* The public Login is a placeholder for the future hosting console. */
.console-page {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 5%;
  align-items: center;
  min-height: 680px;
  padding-block: 90px 110px;
}
.console-status {
  font: 12px var(--sans);
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  margin-bottom: 24px;
}
.console-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.console-copy h1 {
  font: clamp(62px, 6.7vw, 96px) / 0.98 var(--serif);
  letter-spacing: -0.035em;
  margin-bottom: 30px;
}
.console-copy > p:not(.console-status) {
  max-width: 430px;
  color: var(--muted);
  font-size: 14px;
}
.console-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 30px;
  flex-wrap: wrap;
}
.console-drawing {
  color: var(--accent);
  opacity: 0.75;
}
.console-drawing .orb-center {
  color: var(--ink);
}
.console-drawing .orb-label {
  color: var(--accent);
}
body[data-page="index"] .hero-main {
  min-height: 680px;
}
body[data-page="index"] .section-heading h2 {
  margin-top: 0;
}
body[data-page="index"] .world-copy h2 {
  margin-top: 0;
}
@media (max-width: 760px) {
  .console-page {
    grid-template-columns: 1fr;
    padding-block: 60px;
    gap: 20px;
    min-height: 0;
  }
  .console-copy h1 {
    font-size: 64px;
  }
  .console-drawing {
    max-width: 430px;
    width: 100%;
    margin: auto;
  }
  .console-actions {
    gap: 25px;
  }
  body[data-page="index"] .hero-main {
    min-height: 0;
  }
}
@media (max-width: 370px) {
  .console-copy h1 {
    font-size: 55px;
  }
}
