@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --paper: #f6f7f9;
  --card: #ffffff;
  --ink: #17191c;
  --muted: rgba(23, 25, 28, 0.68);
  --line: rgba(23, 25, 28, 0.1);
  --accent: #3768d8;
  --shadow: 0 24px 60px rgba(14, 20, 34, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #fbfcfd 0%, var(--paper) 100%);
  color: var(--ink);
  font-family: 'Manrope', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(920px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 32px 0 72px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.back-link {
  font-size: 14px;
  color: var(--muted);
}

.hero {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px 28px 24px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero p {
  margin: 16px 0 0;
  max-width: 700px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}

.content {
  margin-top: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px 28px 8px;
  box-shadow: var(--shadow);
}

.section {
  padding: 0 0 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

.section h2 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.section p,
.section li {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
}

.section ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.footer {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 13px;
  color: var(--muted);
}

.footer a {
  color: var(--accent);
  font-weight: 600;
}
