:root {
  --ink: #1a1d24;
  --muted: #5b6472;
  --line: #e4e7ec;
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --accent: #2f5d8a;
  --accent-ink: #ffffff;
  --radius: 12px;
  --maxw: 880px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand:hover { text-decoration: none; }
.nav a {
  margin-left: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Hero */
.hero {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line);
}
.hero h1 {
  font-size: 2.1rem;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0;
  max-width: 620px;
}

/* Sections */
section { padding: 56px 0; border-bottom: 1px solid var(--line); }
section h2 {
  font-size: 1.4rem;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
section .lead { color: var(--muted); margin: 0 0 28px; }

/* Product cards */
.products { display: grid; gap: 18px; }
@media (min-width: 700px) {
  .products { grid-template-columns: repeat(3, 1fr); }
}
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
}
.card h3 { margin: 0 0 6px; font-size: 1.15rem; }
.card .desc { color: var(--muted); font-size: 0.95rem; flex: 1; margin: 0 0 16px; }
.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 12px;
  width: fit-content;
}
.badge.live { background: #e3f1e8; color: #1f6b3b; }
.badge.soon { background: #eef0f3; color: #5b6472; }
.price { font-weight: 600; font-size: 0.95rem; margin: 0 0 14px; }
.price span { color: var(--muted); font-weight: 400; }
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  width: fit-content;
}
.btn:hover { text-decoration: none; opacity: 0.92; }

/* Contact */
.contact a { font-weight: 600; }

/* Legal pages */
.legal { padding: 56px 0 72px; }
.legal h1 { font-size: 1.9rem; margin: 0 0 6px; letter-spacing: -0.02em; }
.legal .updated { color: var(--muted); font-size: 0.9rem; margin: 0 0 36px; }
.legal h2 { font-size: 1.2rem; margin: 36px 0 10px; }
.legal p, .legal li { color: #2c333d; }
.legal ul { padding-left: 20px; }

/* Footer */
.site-footer {
  padding: 36px 0 48px;
  color: var(--muted);
  font-size: 0.9rem;
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  align-items: center;
  justify-content: space-between;
}
.site-footer nav a { color: var(--muted); margin-left: 18px; }
.site-footer nav a:first-child { margin-left: 0; }
.site-footer .legal-name { margin: 0; }
