:root {
  --ink: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --bg: #ffffff;
  --accent: #e11d48;
  --accent-soft: #fff1f3;
  --max: 720px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
header.site {
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(8px);
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 700; letter-spacing: -.01em; text-decoration: none; color: var(--ink); }
.brand .pulse { width: 11px; height: 11px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(225,29,72,.5); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(225,29,72,.45); } 70% { box-shadow: 0 0 0 9px rgba(225,29,72,0); } 100% { box-shadow: 0 0 0 0 rgba(225,29,72,0); } }
nav a { color: var(--muted); text-decoration: none; font-size: 15px; margin-left: 20px; }
nav a:hover { color: var(--ink); }
.hero { padding: 84px 0 40px; }
.hero .eyebrow { color: var(--accent); font-weight: 600; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin: 0 0 14px; }
h1 { font-size: 44px; line-height: 1.1; letter-spacing: -.025em; margin: 0 0 20px; }
.lede { font-size: 20px; color: var(--muted); margin: 0 0 28px; }
.cta { display: inline-flex; align-items: center; gap: 10px; background: var(--accent); color: #fff; text-decoration: none; font-weight: 600; padding: 13px 22px; border-radius: 10px; }
.cta:hover { background: #be123c; }
.cta + .trial { color: var(--muted); font-size: 15px; margin-left: 14px; }
section { padding: 34px 0; border-top: 1px solid var(--line); }
h2 { font-size: 26px; letter-spacing: -.02em; margin: 0 0 16px; }
h3 { font-size: 18px; margin: 26px 0 8px; }
p { margin: 0 0 16px; }
ul { padding-left: 22px; margin: 0 0 16px; }
li { margin: 0 0 10px; }
.card { background: var(--accent-soft); border: 1px solid #fecdd3; border-radius: 12px; padding: 20px 22px; margin: 18px 0; }
.steps { counter-reset: s; list-style: none; padding: 0; }
.steps li { counter-increment: s; position: relative; padding-left: 44px; margin-bottom: 16px; }
.steps li::before { content: counter(s); position: absolute; left: 0; top: -2px; width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 700; font-size: 14px; display: grid; place-items: center; }
a { color: var(--accent); }
footer.site { border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; padding: 30px 0 60px; }
footer.site a { color: var(--muted); margin-right: 18px; }
.legal { padding: 56px 0; }
.legal h1 { font-size: 34px; }
.legal .meta { color: var(--muted); font-size: 15px; margin-bottom: 8px; }
.legal blockquote { border-left: 3px solid var(--accent); background: var(--accent-soft); margin: 20px 0; padding: 14px 18px; border-radius: 0 8px 8px 0; }
.legal h2 { font-size: 21px; margin-top: 34px; }
.legal h3 { font-size: 17px; }
@media (max-width: 560px) { h1 { font-size: 34px; } .hero { padding: 56px 0 30px; } nav a:first-child { display: none; } }
