:root {
  color-scheme: dark;
  --bg: #08090a;
  --text: #f2f0eb;
  --muted: #8e9194;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(255,255,255,.05), transparent 34%),
    var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

main {
  width: min(calc(100% - 40px), 900px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 64px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

img {
  width: 76px;
  height: 76px;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  object-fit: cover;
}

.name {
  margin: 0 0 38px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

h1 {
  width: 100%;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6.8vw, 84px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}

.line-one,
.line-two {
  display: block;
  white-space: nowrap;
}

.mobile-break { display: inline; }

.status {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  main {
    width: min(calc(100% - 28px), 900px);
    min-height: 100svh;
    padding: 24px 0 clamp(104px, 18vh, 160px);
  }
  img { width: 64px; height: 64px; margin-bottom: 24px; }
  .name { margin-bottom: 30px; }
  h1 {
    font-size: clamp(34px, 10.5vw, 42px);
    letter-spacing: -.035em;
    line-height: 1.03;
  }
  .mobile-break { display: block; }
  .status { margin-top: 28px; }
}
