:root {
  --teal: #1FB6C9;
  --blue: #1463C7;
  --ink: #0e1726;
  --muted: #5b6b82;
  --bg: #f6f9fc;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: var(--blue); }
.hero {
  background: linear-gradient(160deg, var(--teal), var(--blue));
  color: #fff;
  padding: 64px 24px 56px;
  text-align: center;
}
.logo {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 800; font-size: 30px; letter-spacing: -0.5px;
}
.logo .mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='4' width='20' height='13' rx='2'/%3E%3Crect x='9' y='18' width='6' height='2'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='4' width='20' height='13' rx='2'/%3E%3Crect x='9' y='18' width='6' height='2'/%3E%3C/svg%3E") center/contain no-repeat;
}
.hero h1 { font-size: 40px; margin: 22px 0 10px; letter-spacing: -1px; }
.hero p { font-size: 19px; opacity: .92; max-width: 620px; margin: 0 auto; }
.wrap { max-width: 760px; margin: 0 auto; padding: 40px 24px 64px; }
.card {
  background: #fff; border-radius: 16px; padding: 28px 28px 8px;
  box-shadow: 0 8px 30px rgba(20,99,199,.07);
  margin-bottom: 22px;
}
h2 { font-size: 22px; margin-top: 28px; }
h2:first-child { margin-top: 6px; }
.muted { color: var(--muted); }
.pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 26px; }
.pill {
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.35);
  color: #fff; padding: 7px 14px; border-radius: 999px; font-size: 14px; font-weight: 600;
}
.links { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; margin-top: 26px; }
.links a { color: #fff; font-weight: 600; text-decoration: none; opacity: .95; }
.links a:hover { text-decoration: underline; }
footer { text-align: center; color: var(--muted); font-size: 14px; padding: 30px 24px 50px; }
ul { padding-left: 22px; }
li { margin: 6px 0; }
.back { display: inline-block; margin-bottom: 18px; font-weight: 600; text-decoration: none; }
