.entry-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 18% 16%, color-mix(in srgb, var(--soft) 86%, transparent), transparent 34%),
    radial-gradient(circle at 88% 82%, color-mix(in srgb, var(--accent) 20%, transparent), transparent 28%),
    var(--bg);
}

.entry-card {
  width: min(560px, 100%);
  padding: clamp(34px, 7vw, 58px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  box-shadow: 0 28px 80px rgba(68, 48, 42, .1);
  text-align: center;
}

.entry-mark {
  display: grid;
  width: 82px;
  height: 82px;
  margin: 0 auto 27px;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font: 600 48px "Playfair Display", serif;
}

.entry-card h1 {
  margin: 14px 0 18px;
  font: 600 clamp(42px, 8vw, 66px)/.98 "Playfair Display", serif;
  letter-spacing: -.035em;
}

.entry-lead {
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.entry-actions {
  display: grid;
  gap: 11px;
  margin-top: 30px;
}

.entry-actions button {
  min-height: 58px;
  border-radius: 15px;
  font-size: 17px;
  font-weight: 600;
}

.entry-primary {
  border: 0;
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 72%, var(--ink)));
  color: #fff;
}

.entry-secondary {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.entry-guest {
  border: 0;
  background: transparent;
  color: var(--accent);
}

.entry-actions button:hover {
  transform: translateY(-1px);
}

.entry-actions button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 42%, transparent);
  outline-offset: 3px;
}

.entry-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.account-card .muted {
  max-width: 52ch;
  line-height: 1.55;
}

html[data-theme="midnight"] .entry-card {
  box-shadow: 0 28px 80px rgba(0, 0, 0, .3);
}

html[data-theme="midnight"] .entry-primary {
  color: #1d1b1a;
}

@media (max-width: 580px) {
  .entry-screen {
    padding: 18px;
  }

  .entry-card {
    padding: 35px 22px;
    border-radius: 24px;
  }

  .entry-mark {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    font-size: 42px;
  }

  .entry-card h1 {
    font-size: 46px;
  }

  .entry-lead {
    font-size: 15px;
  }
}
