.access-page {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  min-height: 0;
  margin: 0 auto;
  padding: clamp(28px, 6vh, 64px) clamp(16px, 4vw, 34px);
  display: grid;
  place-items: center;
  flex: 1 0 auto;
}

.access-card {
  width: 100%;
  padding: clamp(30px, 7vw, 56px);
  text-align: center;
  background:
    linear-gradient(150deg, rgba(23, 30, 43, 0.94), rgba(13, 17, 25, 0.94)),
    var(--card);
}

.access-card .eyebrow {
  margin-bottom: 12px;
}

.access-card h1 {
  max-width: none;
  margin-bottom: 16px;
  font-size: clamp(2.35rem, 8vw, 4.4rem);
}

.access-lede {
  max-width: 570px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: clamp(0.96rem, 2.2vw, 1.08rem);
}

.access-actions {
  width: min(100%, 430px);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.access-actions .button {
  width: 100%;
  min-height: 52px;
  justify-content: center;
}

.access-actions .button-secondary {
  border-color: rgba(7, 133, 189, 0.34);
  background: rgba(7, 133, 189, 0.06);
}

.access-actions .button-secondary:hover {
  border-color: rgba(7, 133, 189, 0.7);
  background: rgba(7, 133, 189, 0.12);
}

html.light .access-card {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(230, 242, 249, 0.92)),
    var(--card);
}

html.light .access-actions .button-secondary {
  border-color: rgba(7, 133, 189, 0.34);
  background: rgba(255, 255, 255, 0.58);
}

html.light .access-actions .button-secondary:hover {
  border-color: rgba(7, 133, 189, 0.7);
  background: rgba(7, 133, 189, 0.08);
}

@media (max-width: 650px) {
  .access-page {
    min-height: 0;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .access-card {
    padding: 30px 20px;
  }
}
