:root {
  --bg: #fbfaf8;
  --surface: #ffffff;
  --text: #1c1c1e;
  --muted: #5d5d66;
  --line: #e3e0da;
  --accent: #1f5d54;
  --accent-soft: #eaf2f0;
  --radius: 12px;
  --maxw: 44rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #131316;
    --surface: #1b1b1f;
    --text: #ecebe8;
    --muted: #a3a2a8;
    --line: #2e2e34;
    --accent: #7fc4b6;
    --accent-soft: #1e2a28;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

header.site {
  border-bottom: 1px solid var(--line);
}

header.site .wrap {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--text);
}

.brand span { color: var(--accent); }

.tagline {
  color: var(--muted);
  font-size: 0.92rem;
}

h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

h2 {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  margin: 2.5rem 0 0.75rem;
}

h3 {
  font-size: 1.02rem;
  margin: 1.75rem 0 0.5rem;
}

p, li { color: var(--text); }

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  margin: 1.5rem 0;
}

.prices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.85rem;
  margin: 1.25rem 0 0.5rem;
  padding: 0;
  list-style: none;
}

.prices li {
  background: var(--accent-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}

.prices strong {
  display: block;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.prices span {
  color: var(--muted);
  font-size: 0.85rem;
}

.note {
  color: var(--muted);
  font-size: 0.9rem;
}

dl.legal dt {
  font-weight: 650;
  margin-top: 1rem;
}

dl.legal dd { margin: 0.15rem 0 0; }

table.proc {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.92rem;
}

table.proc th, table.proc td {
  text-align: left;
  padding: 0.55rem 0.6rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

table.proc th { color: var(--muted); font-weight: 600; }

.scroll { overflow-x: auto; }

footer.site {
  border-top: 1px solid var(--line);
  margin-top: 3rem;
}

footer.site .wrap {
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

footer.site nav a {
  margin-right: 1rem;
  display: inline-block;
}

.big-ok {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
