:root {
  --teal: #0f766e;
  --teal-dark: #0d5c56;
  --teal-soft: #e6f4f2;
  --private: #7c6af7;
  --private-soft: #efeaff;
  --text: #1a1c1c;
  --text-2: #434656;
  --text-3: #6b7280;
  --bg: #f6f3f2;
  --card: #ffffff;
  --line: #e8e4e1;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(15, 118, 110, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
a { color: var(--teal); }
img { max-width: 100%; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner, .wrap, .hero-inner, .footer-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: inherit;
  text-decoration: none;
  font-weight: 800;
}
.mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: radial-gradient(circle at 30% 20%, #14958b, var(--teal-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.nav-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
}
.nav-links a:hover { color: var(--teal); }

.hero {
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(124, 106, 247, 0.16), transparent 60%),
    radial-gradient(700px 380px at -10% 0%, rgba(15, 118, 110, 0.18), transparent 55%),
    #fff;
  border-bottom: 1px solid var(--line);
}
.hero-inner { padding: 3.2rem 1.25rem 3.5rem; }
.badge {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--teal-soft);
  color: var(--teal-dark);
  padding: .28rem .65rem;
  border-radius: 999px;
  font-weight: 700;
}
h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.2; margin: .7rem 0 .5rem; }
.lede { font-size: 1.08rem; color: var(--text-2); max-width: 40rem; }
.cta-row { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .7rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}
.btn-primary { background: linear-gradient(#0f766e, #0d5c56); color: #fff; }
.btn-ghost { background: #fff; color: var(--teal-dark); border: 1px solid var(--line); }

.section { padding: 2.6rem 0 3.2rem; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 .4rem; font-size: 1.05rem; }
.card p { margin: 0; color: var(--text-2); font-size: .95rem; }
.legal-list a {
  display: block;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  font-weight: 700;
}
.legal-list a span { display: block; font-weight: 500; color: var(--text-3); font-size: .9rem; }

.doc { max-width: 46rem; margin: 0 auto; padding: 2.2rem 1.25rem 4rem; }
.crumbs { font-size: .88rem; margin-bottom: 1.2rem; }
.crumbs a { color: var(--teal); text-decoration: none; }
.meta { color: var(--text-3); font-size: .92rem; }
h2 {
  font-size: 1.18rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
h3 { font-size: 1.02rem; margin-top: 1.2rem; }
table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .93rem; }
th, td { text-align: left; padding: .55rem .5rem; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--text-2); }
.contact {
  background: var(--teal-soft);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  margin: 1.1rem 0;
}
footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 1.6rem 0 2rem;
  color: var(--text-3);
  font-size: .9rem;
}
.footer-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
footer a { color: var(--teal); }

@media (prefers-color-scheme: dark) {
  :root {
    --text: #e8eeed;
    --text-2: #c5cdc9;
    --text-3: #9aa3a0;
    --bg: #101413;
    --card: #171c1b;
    --line: #2a3230;
    --teal-soft: #163835;
    --shadow: none;
  }
  .nav, .hero, footer { background: #141918; }
  .nav { background: rgba(20, 25, 24, 0.9); }
  .btn-ghost { background: #171c1b; color: #d7efeb; }
  .contact { background: #163835; }
}
