:root {
  color-scheme: dark;
  --ink: #f7f5ef;
  --muted: #b9b3a7;
  --line: rgba(247, 245, 239, 0.2);
  --bg: #101214;
  --accent: #d8b56d;
  font-family:
    Pretendard, Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 18%, rgba(216, 181, 109, 0.15), transparent 32%),
    linear-gradient(180deg, #17191d 0%, var(--bg) 62%);
}

.page {
  display: grid;
  width: min(1040px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 72px 0 34px;
  grid-template-rows: 1fr auto;
}

.hero {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.kicker {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.25rem, 9vw, 7.8rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  word-break: keep-all;
}

.lede {
  max-width: 34rem;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.8;
  word-break: keep-all;
}

.credits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: rgba(247, 245, 239, 0.72);
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(0.9rem, 2vw, 1.08rem);
  font-style: italic;
}

.credits span {
  white-space: nowrap;
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 28px, 1040px);
    padding-top: 42px;
  }

  h1 {
    max-width: 8ch;
    font-size: 3.35rem;
  }

  .lede {
    max-width: 18rem;
  }

  .credits {
    align-content: center;
    flex-direction: column;
    gap: 8px;
  }
}
