:root {
  color-scheme: light;
  --bg: #f8f5ff;
  --surface: rgba(255, 255, 255, 0.86);
  --text: #11121a;
  --muted: #696b78;
  --line: rgba(111, 53, 255, 0.16);
  --accent: #6f35ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(111, 53, 255, 0.14), transparent 32rem),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

a:hover {
  text-decoration: underline;
}

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

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 0;
}

.logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(111, 53, 255, 0.24);
}

.eyebrow,
.updated {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 10px 0 0;
  max-width: 680px;
  font-size: clamp(42px, 8vw, 74px);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.links a,
.back {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  padding: 0 16px;
  box-shadow: 0 10px 30px rgba(20, 20, 35, 0.08);
}

.document {
  padding: 36px 0 80px;
}

.document h1 {
  margin-top: 28px;
  font-size: clamp(38px, 8vw, 62px);
}

.document h2 {
  margin: 34px 0 8px;
  font-size: 20px;
}

.document p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 520px) {
  .hero {
    justify-content: flex-start;
    padding-top: 72px;
  }

  .links {
    flex-direction: column;
  }
}
