:root {
  color-scheme: light;
  --bg: #f6f7fb;
  --surface: #ffffff;
  --surface-muted: #f0f3f8;
  --text: #151821;
  --muted: #5c6475;
  --line: #d9dfeb;
  --accent: #2463eb;
  --accent-soft: #eaf1ff;
  --success: #0f9f6e;
  --shadow: 0 24px 60px rgba(16, 24, 40, 0.08);
  --radius: 18px;
  --content-width: 980px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
}

.page {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
  padding: 32px 0 64px;
}

.hero {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.15;
}

h1 {
  margin-top: 16px;
  font-size: clamp(36px, 5vw, 56px);
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
}

p {
  margin: 0;
}

.lead {
  margin-top: 16px;
  max-width: 760px;
  font-size: 20px;
  color: var(--muted);
}

.hero-actions,
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 600;
}

.button {
  background: var(--text);
  color: #ffffff;
}

.button:hover {
  text-decoration: none;
}

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

.button-secondary:hover {
  text-decoration: none;
}

.section {
  margin-top: 28px;
}

.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.panel-muted {
  background: var(--surface-muted);
}

.meta {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.meta-item {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.meta-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.meta-value {
  margin-top: 4px;
  font-size: 16px;
}

.list {
  margin: 14px 0 0;
  padding-left: 18px;
}

.list li + li {
  margin-top: 8px;
}

.policy {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.policy section {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.policy section p + p,
.policy section p + ul,
.policy section ul + p {
  margin-top: 12px;
}

.footer {
  margin-top: 40px;
  font-size: 14px;
  color: var(--muted);
}

.breadcrumb {
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 640px) {
  .page {
    width: min(calc(100% - 24px), var(--content-width));
    padding-top: 20px;
  }

  .hero,
  .panel,
  .policy section {
    padding: 18px;
    border-radius: 16px;
  }

  .lead {
    font-size: 18px;
  }
}

