/* Светлая тема 1:1 с приложением (ThemeContext LIGHT + Geist). */
:root {
  --bg: #fafafa;
  --card: #ffffff;
  --border: #e5e5e5;
  --text: #0a0a0a;
  --muted: #737373;
  --soft: #f4f4f4;
  --contrast: #0a0a0a;
  --on-contrast: #ffffff;
  --radius: 16px;
  --radius-btn: 14px;
  color-scheme: light;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

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

.hero {
  font-size: 32px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: -0.8px;
}

.heading {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: -0.4px;
}

.title {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.2px;
}

.body {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.caption {
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  color: var(--muted);
}

.small {
  font-size: 11px;
  font-weight: 500;
  line-height: 14px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 24px;
  border-radius: var(--radius-btn);
  background: var(--contrast);
  color: var(--on-contrast);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.2px;
  text-decoration: none;
  border: 0;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  align-items: center;
}

.legal-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
}

.legal-links a:hover { color: var(--text); }

.legal-dot { color: var(--muted); font-size: 13px; }

/* ── landing ── */
.landing {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.landing main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 24px;
  text-align: center;
}

.logo {
  width: 200px;
  height: auto;
  display: block;
  fill: var(--text);
}

.landing h1 {
  margin: 36px 0 0;
  max-width: 440px;
}

.landing .tag {
  margin: 10px 0 0;
  max-width: 400px;
}

.landing .sub {
  margin: 12px 0 0;
  max-width: 420px;
}

.landing .cta {
  margin-top: 36px;
}

.landing footer {
  padding: 8px 24px 28px;
  text-align: center;
}

/* ── privacy ── */
.policy-top {
  display: flex;
  align-items: center;
  height: 52px;
  padding: 0 8px;
}

.policy-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text);
  text-decoration: none;
}

.policy-top a svg {
  width: 22px;
  height: 22px;
}

.wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 8px 24px 80px;
}

.wrap h1 {
  margin: 8px 0 8px;
}

.wrap h2 {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.2px;
  margin: 28px 0 8px;
}

.wrap p,
.wrap li {
  font-size: 14px;
  line-height: 20px;
  color: var(--text);
}

.wrap .meta {
  margin: 0 0 4px;
}

.wrap ul { padding-left: 20px; }

.wrap a { text-underline-offset: 2px; }

.note {
  margin: 20px 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  font-size: 14px;
  line-height: 20px;
}

.table-wrap {
  overflow-x: auto;
  margin: 12px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
  line-height: 18px;
}

th, td {
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}

th {
  background: var(--soft);
  font-weight: 500;
}

tr:last-child td { border-bottom: 0; }

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