.page {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  background: #090909;
  color: #f5f4f0;
  font-family: "Segoe UI", "Manrope", system-ui, sans-serif;
}

.skipLink {
  position: fixed;
  left: 24px;
  top: 12px;
  z-index: 20;
  translate: 0 -160%;
  border-radius: 4px;
  background: #f5f4f0;
  color: #090909;
  padding: 10px 14px;
  text-decoration: none;
}

.skipLink:focus {
  translate: 0;
}

.shell {
  width: min(calc(100% - 40px), 720px);
  margin: 0 auto;
  padding: clamp(48px, 8vh, 96px) 0 clamp(64px, 10vh, 120px);
}

.brand {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(36px, 6vh, 56px);
}

.eyebrow {
  display: grid;
  grid-template-columns: 64px auto 1fr;
  align-items: center;
  gap: 16px;
  margin: 0;
}

.eyebrowRule {
  display: block;
  height: 1px;
  background: rgb(190 141 18 / 75%);
}

.eyebrowLabel {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgb(245 244 240 / 58%);
}

.eyebrowTail {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgb(255 255 255 / 10%), transparent);
}

.wordmark {
  display: block;
  width: min(100%, 320px);
  height: 64px;
}

.wordmarkNeutral {
  color: #f4f4f5;
}

.wordmarkAccent {
  color: #be8d12;
}

.ownership {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(161 161 170 / 72%);
}

.card {
  border: 1px solid #d4cec2;
  border-radius: 3px;
  background: linear-gradient(180deg, #f9f8f4 0%, #f5f3ed 50%, #f1eee6 100%);
  color: #18181b;
  box-shadow:
    0 18px 34px rgb(0 0 0 / 27%),
    inset 0 1px 0 rgb(255 255 255 / 92%);
}

.cardInner {
  padding: clamp(28px, 5vw, 40px) clamp(22px, 4vw, 36px) clamp(28px, 5vw, 40px);
}

.headline {
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.lead,
.bodyText {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: #3f3f46;
}

.sections {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.sectionTitle {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9a9182;
}

.actions {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.login {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 3px;
  background: #18181b;
  color: #f5f4f0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.login:hover {
  background: #27272a;
}

.login:focus-visible {
  outline: 2px solid #be8d12;
  outline-offset: 3px;
}

.note {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #71717a;
}

.note a {
  color: inherit;
  text-underline-offset: 3px;
}

.note a:focus-visible {
  outline: 2px solid #be8d12;
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .login {
    width: 100%;
  }
}
