:root {
  color-scheme: light;
  --bg: #fff7fb;
  --text: #24212a;
  --muted: #6f6574;
  --line: #ead9e4;
  --accent: #ee3f9b;
  --accent-dark: #9d3ff2;
  --panel: rgba(255, 255, 255, 0.82);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 10%, rgba(238, 63, 155, 0.16), transparent 32rem),
    radial-gradient(circle at 84% 24%, rgba(157, 63, 242, 0.13), transparent 28rem),
    var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
}

.shell,
.document {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
}

.shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
}

.hero,
.document {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: 0 24px 80px rgba(82, 47, 74, 0.12);
}

.hero {
  width: 100%;
  padding: 64px;
}

.document {
  margin: 40px auto;
  padding: 48px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.02;
}

.document h1 {
  font-size: clamp(34px, 6vw, 56px);
}

h2 {
  margin: 36px 0 10px;
  font-size: 22px;
  line-height: 1.25;
}

p,
li {
  font-size: 17px;
}

ul {
  padding-left: 22px;
}

.lede {
  max-width: 620px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 20px;
}

.updated,
.back {
  color: var(--muted);
}

.back {
  display: inline-block;
  margin-bottom: 24px;
  text-decoration: none;
  font-weight: 700;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

@media (max-width: 640px) {
  .hero,
  .document {
    border-radius: 18px;
    padding: 28px;
  }

  p,
  li {
    font-size: 16px;
  }
}
