﻿:root {
  --bg: #ffffff;
  --text: #0b1521;
  --muted: #5e6a78;
  --line: #e6ebf1;
  --accent: #46a7d9;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1;
  width: min(880px, 100% - 40px);
  margin: 0 auto;
}

.hero {
  min-height: 84dvh;
  display: grid;
  place-items: center;
  text-align: center;
}

.hero-inner {
  width: min(620px, 100%);
}

.logo {
  width: min(420px, 78vw);
  height: auto;
  margin: 0 auto 28px;
  display: block;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 7vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2.6vw, 21px);
  line-height: 1.45;
}

.cta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #f7fbff;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.cta:hover {
  transform: translateY(-1px);
  border-color: #c8d5e4;
  box-shadow: 0 8px 24px rgba(15, 41, 68, 0.08);
}

.legal {
  border-top: 1px solid var(--line);
}

.legal-row {
  width: min(980px, 100% - 40px);
  margin: 0 auto;
  padding: 18px 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.legal-row a {
  text-decoration: none;
}

.legal-row a:hover {
  text-decoration: underline;
}

.doc {
  padding: 44px 0 58px;
}

.doc h1 {
  font-size: clamp(30px, 6vw, 44px);
  margin: 0 0 18px;
}

.doc h2 {
  margin: 28px 0 10px;
  font-size: 20px;
}

.doc h3 {
  margin: 20px 0 8px;
  font-size: 17px;
}

.doc p,
.doc li {
  color: #1f2b39;
  font-size: 16px;
  line-height: 1.62;
}

.doc ul,
.doc ol {
  padding-left: 20px;
  margin: 8px 0 0;
}

.top-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.top-link:hover {
  text-decoration: underline;
}
