@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --blue: #1D4ED8;
  --blue-dark: #1E3A8A;
  --orange: #FF7A1A;
  --ink: #10192B;
  --muted: #5B6472;
  --bg: #F7F9FC;
  --card: #FFFFFF;
  --border: #E2E8F0;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

header.site {
  background: var(--blue);
  background-image: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 20px 0;
}

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

.wordmark {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 22px;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: 0.2px;
}

.wordmark .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-style: normal;
  font-weight: 800;
  margin-right: 8px;
  font-size: 15px;
  vertical-align: middle;
}

nav.site a {
  color: #DCE6FF;
  text-decoration: none;
  margin-left: 22px;
  font-size: 14px;
  font-weight: 500;
}
nav.site a:hover { color: #fff; }

main {
  padding: 56px 0 80px;
}

h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 14px;
}

h1 .accent { color: var(--orange); font-style: italic; }

h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin: 40px 0 12px;
  color: var(--blue-dark);
}

p.lede {
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
}

.callout {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: 10px;
  padding: 18px 20px;
  margin: 28px 0;
  font-size: 14px;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.step .num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 1px;
}

.step h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  margin: 8px 0 6px;
}

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

.legal p, .legal li { color: var(--ink); font-size: 15px; }
.legal h2 { margin-top: 32px; }
.legal .updated { color: var(--muted); font-size: 13px; margin-top: -6px; }

.contact-strip {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.contact-strip a { color: var(--blue); font-weight: 600; text-decoration: none; }

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

footer.site .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

footer.site a { color: var(--muted); text-decoration: none; margin-left: 18px; }
footer.site a:hover { color: var(--blue); }

@media (max-width: 640px) {
  .grid { grid-template-columns: 1fr; }
  h1 { font-size: 27px; }
  nav.site a { margin-left: 14px; font-size: 13px; }
}
