:root {
  --yellow: #F8BC20;
  --yellow-deep: #D9970A;
  --ink: #17171C;
  --bg: #F1F0EB;
  --card: #FFFFFF;
  --muted: #6B6B72;
  --line: #E6E4DC;
  --red: #E5484D;
  --radius: 20px;
  --maxw: 880px;
}

* { box-sizing: border-box; }

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

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

.wrap {
  max-width: var(--maxw);
  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;
  font-weight: 900;
  font-size: 19px;
  color: var(--ink);
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: block;
}

nav.site-nav {
  display: flex;
  gap: 22px;
}

nav.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--muted);
}

nav.site-nav a:hover,
nav.site-nav a.active {
  color: var(--ink);
}

main {
  padding: 56px 0 80px;
}

.hero {
  text-align: center;
  padding: 40px 0 8px;
}

.hero .glyph {
  width: 84px;
  height: 84px;
  border-radius: 24px;
  margin: 0 auto 24px;
  display: block;
}

h1 {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  line-height: 1.08;
}

.hero p.tagline {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 30px;
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--ink);
  color: #fff;
}

.btn.ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 56px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.card .emoji {
  font-size: 26px;
  display: block;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 16px;
  margin: 0 0 6px;
  font-weight: 800;
}

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

.legal h1 {
  font-size: 30px;
  text-align: left;
}

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

.legal h2 {
  font-size: 18px;
  font-weight: 800;
  margin: 36px 0 10px;
}

.legal h2:first-of-type { margin-top: 0; }

.legal p, .legal li {
  font-size: 15px;
  color: #2c2c33;
}

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

.legal .note {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 14px;
  color: var(--muted);
  margin: 18px 0;
}

/* ---- home page: extra sections ---- */

.section-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 40px;
}

.section-head .kicker {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}

.section-head p {
  color: var(--muted);
  font-size: 15.5px;
  margin: 0;
}

section.block {
  padding: 64px 0;
  border-top: 1px solid var(--line);
}

section.block:first-of-type { border-top: none; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.step {
  position: relative;
  padding: 26px 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step .num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 16.5px;
  font-weight: 800;
  margin: 0 0 6px;
}

.step p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.sources-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.source-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 18px 10px 10px;
  font-size: 14px;
  font-weight: 700;
}

.source-pill img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
}

.source-note {
  text-align: center;
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 18px;
}

.trust-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.trust-split ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-split li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: #2c2c33;
}

.trust-split li .tick {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}

.trust-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
}

.trust-card .big {
  font-size: 40px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-card p {
  color: #C9C9D1;
  font-size: 14px;
  margin: 0 0 22px;
}

.trust-card p:last-child { margin-bottom: 0; }

.faq {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.faq-item:first-child { padding-top: 0; }

.faq-item h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 8px;
}

.faq-item p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
}

.final-cta {
  text-align: center;
  background: var(--ink);
  border-radius: 28px;
  padding: 56px 32px;
  color: #fff;
}

.final-cta h2 {
  font-size: 30px;
  font-weight: 900;
  margin: 0 0 12px;
  color: #fff;
}

.final-cta p {
  color: #C9C9D1;
  font-size: 15.5px;
  max-width: 420px;
  margin: 0 auto 26px;
}

.final-cta .btn.primary {
  background: var(--yellow);
  color: var(--ink);
}

.final-cta .btn.ghost {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}

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

footer.site {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

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

footer.site p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

footer.site .links {
  display: flex;
  gap: 16px;
}

footer.site .links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}

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

@media (max-width: 560px) {
  h1 { font-size: 30px; }
  nav.site-nav { gap: 14px; }
  nav.site-nav a { font-size: 13px; }
}
