:root {
  --ink: #0b1f33;
  --ink-soft: #4a5f72;
  --bg: #ffffff;
  --bg-tint: #f4f8f9;
  --accent: #0f766e;
  --accent-dark: #0b5a54;
  --accent-soft: #e6f2f0;
  --border: #e2eaee;
  --radius: 12px;
  --maxw: 1060px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
a { color: var(--accent); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--accent-dark); }
h1, h2, h3 { line-height: 1.2; font-weight: 700; letter-spacing: -0.01em; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 18px; color: var(--ink); }
.brand .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--accent); display: inline-block; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--ink-soft); font-size: 15px; font-weight: 500; }
.nav-links a:hover { color: var(--ink); }

/* Buttons */
.btn {
  display: inline-block; background: var(--accent); color: #fff;
  padding: 12px 22px; border-radius: 9px; font-weight: 600; font-size: 15px;
  transition: background .15s ease, transform .15s ease;
}
.btn:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--bg-tint); color: var(--ink); }

/* Hero */
.hero { padding: 92px 0 72px; }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .08em;
  font-size: 13px; font-weight: 600; color: var(--accent);
  background: var(--accent-soft); padding: 6px 12px; border-radius: 100px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(34px, 5vw, 52px); max-width: 14ch; margin-bottom: 20px; }
.hero p.lead { font-size: clamp(17px, 2.2vw, 20px); color: var(--ink-soft); max-width: 56ch; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Sections */
section { padding: 70px 0; }
.tint { background: var(--bg-tint); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 60ch; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 18px; }

/* Grids & cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; }
.card .num { font-size: 14px; font-weight: 700; color: var(--accent); margin-bottom: 12px; }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 15.5px; }
.stat { font-size: 40px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.stat-label { color: var(--ink-soft); font-size: 15.5px; margin-top: 6px; }

/* Value list */
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 40px; max-width: 820px; }
.value { display: flex; gap: 13px; align-items: flex-start; }
.value .tick { color: var(--accent); font-weight: 700; font-size: 18px; line-height: 1.5; }
.value h3 { font-size: 17px; margin-bottom: 2px; }
.value p { color: var(--ink-soft); font-size: 15px; }

/* Contact */
.contact-card { background: var(--accent); color: #fff; border-radius: 16px; padding: 52px 44px; text-align: center; }
.contact-card h2 { font-size: clamp(26px, 3.4vw, 34px); margin-bottom: 12px; }
.contact-card p { color: #d8efec; font-size: 18px; max-width: 52ch; margin: 0 auto 26px; }
.contact-card .btn { background: #fff; color: var(--accent-dark); }
.contact-card .btn:hover { background: #eafaf7; color: var(--accent-dark); }
.disclosure { font-size: 13px; color: var(--ink-soft); max-width: 70ch; margin: 22px auto 0; text-align: center; }

/* Footer */
.site-footer { background: var(--ink); color: #c4d2dc; padding: 54px 0 38px; margin-top: 8px; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 28px; margin-bottom: 30px; }
.footer-brand { color: #fff; font-weight: 700; font-size: 18px; display: flex; align-items: center; gap: 9px; }
.footer-brand .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--accent); }
.footer-tag { color: #8fa6b4; font-size: 14px; margin-top: 8px; max-width: 38ch; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #c4d2dc; font-size: 15px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #1d3447; padding-top: 22px; font-size: 13px; color: #7e95a4; }

/* Legal pages */
.legal { max-width: 760px; margin: 0 auto; padding: 64px 24px 80px; }
.legal h1 { font-size: 36px; margin-bottom: 8px; }
.legal .updated { color: var(--ink-soft); font-size: 15px; margin-bottom: 36px; }
.legal h2 { font-size: 21px; margin: 34px 0 12px; }
.legal p, .legal li { color: #2c4254; font-size: 16px; margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal a { font-weight: 500; }
.back-home { display: inline-block; margin-bottom: 8px; font-size: 14px; font-weight: 500; }

/* Responsive */
@media (max-width: 760px) {
  .grid-3 { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .nav-links { gap: 16px; }
  .nav-links a.hide-sm { display: none; }
  .contact-card { padding: 40px 24px; }
  section { padding: 54px 0; }
}
