:root {
  --brand: #3C3489;
  --mint: #9FE1CB;
  --amber: #FAC775;
  --blue: #85B7EB;
  --coral: #F0997B;
  --ink: #1c1a2e;
  --paper: #ffffff;
  --muted: #6a6680;
  --line: #e8e6f2;
}

* { 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(--paper);
  line-height: 1.6;
}

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

.wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

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

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 18px;
}

.brand img { height: 32px; width: 32px; }

nav.site-nav a {
  margin-left: 22px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
}

nav.site-nav a:hover { color: var(--brand); }

.hero {
  background: linear-gradient(135deg, var(--brand), #5a4fc4);
  color: white;
  padding: 72px 0 88px;
  text-align: center;
}

.hero img.logo-large {
  height: 84px;
  width: 84px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 40px;
  margin: 0 0 8px;
}

.hero p.tagline {
  font-size: 20px;
  opacity: 0.92;
  margin: 0 0 32px;
}

.badges-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.badge-link img { height: 48px; }

section { padding: 56px 0; }

section h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

section p.lead {
  color: var(--muted);
  margin-top: 0;
  font-size: 17px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 700px) {
  .features { grid-template-columns: 1fr; }
}

.feature-card {
  background: #f7f6fc;
  border-radius: 20px;
  padding: 24px;
}

.feature-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.feature-logo {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.feature-card h3 {
  margin: 0;
  font-size: 18px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.cta {
  background: #f7f6fc;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta h2 { margin-bottom: 12px; }

.button {
  display: inline-block;
  background: var(--brand);
  color: white;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  margin-top: 8px;
}

footer.site {
  padding: 32px 0 48px;
  color: var(--muted);
  font-size: 14px;
}

footer.site .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

footer.site a {
  color: var(--muted);
  margin-right: 16px;
  text-decoration: none;
}

footer.site a:hover { color: var(--brand); }

.legal h1 {
  font-size: 30px;
  margin-bottom: 4px;
}

.legal .updated {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 32px;
}

.legal h2 {
  font-size: 20px;
  margin-top: 36px;
}

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

.contact-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  margin-top: 24px;
}

.contact-card a.email {
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}
