:root {
  --navy: #0f2942;
  --navy-2: #21456a;
  --brand: #2f6df0;
  --brand-d: #2457c5;
  --bg: #ffffff;
  --soft: #eef2f7;
  --line: #e6ebf2;
  --text: #142235;
  --muted: #5b6b7f;
  --ok: #2e7d32;
  --radius: 16px;
  --shadow: 0 1px 3px rgba(16,40,66,.06), 0 10px 30px rgba(16,40,66,.06);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: -apple-system, "Segoe UI", system-ui, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; line-height: 1.6;
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; color: var(--navy); font-size: 18px; letter-spacing: -.3px; }
.brand:hover { text-decoration: none; }
.mark {
  width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-2)); font-size: 20px; box-shadow: 0 2px 8px rgba(15,41,66,.25);
}
.navlinks { display: flex; align-items: center; gap: 26px; }
.navlinks a { color: var(--text); font-size: 14px; font-weight: 600; }
.navlinks a:hover { color: var(--brand); text-decoration: none; }
.btn {
  display: inline-block; background: var(--brand); color: #fff; font-weight: 700; font-size: 14px;
  padding: 10px 20px; border-radius: 10px; transition: background .15s, transform .05s; border: none; cursor: pointer;
  box-shadow: 0 4px 12px rgba(47,109,240,.25);
}
.btn:hover { background: var(--brand-d); text-decoration: none; color: #fff; }
.btn:active { transform: translateY(1px); }
.btn.ghost { background: #fff; color: var(--navy); border: 1.5px solid var(--line); box-shadow: none; }
.btn.ghost:hover { background: var(--soft); color: var(--navy); }
.btn.lg { padding: 14px 28px; font-size: 16px; }
@media (max-width: 760px) { .navlinks a:not(.btn) { display: none; } }

/* Hero */
.hero { background: radial-gradient(1100px 460px at 50% -160px, #dde9fb 0%, rgba(221,233,251,0) 70%), #f6f9fd; padding: 72px 0 64px; text-align: center; }
.eyebrow { display: inline-block; background: #fff; border: 1px solid var(--line); color: var(--brand); font-weight: 700; font-size: 12px; letter-spacing: .4px; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; box-shadow: var(--shadow); }
.hero h1 { font-size: 46px; line-height: 1.1; letter-spacing: -1px; margin: 20px auto 14px; max-width: 760px; color: var(--navy); }
.hero p.sub { font-size: 19px; color: var(--muted); max-width: 620px; margin: 0 auto 28px; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.trustline { margin-top: 22px; font-size: 13px; color: var(--muted); }
.frameworks { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.fw { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 6px 15px; font-size: 13px; font-weight: 600; color: #334155; box-shadow: var(--shadow); }
@media (max-width: 600px) { .hero h1 { font-size: 34px; } }

/* Sections */
section { padding: 64px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { font-size: 32px; letter-spacing: -.5px; margin: 0 0 12px; color: var(--navy); }
.section-head p { font-size: 17px; color: var(--muted); margin: 0; }
.alt { background: var(--soft); }

/* Feature grid */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .grid { grid-template-columns: 1fr; } }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.card .ico { font-size: 26px; }
.card h3 { font-size: 18px; margin: 14px 0 8px; color: var(--navy); }
.card p { margin: 0; color: var(--muted); font-size: 15px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.step .num { width: 34px; height: 34px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.step h3 { margin: 0 0 8px; color: var(--navy); font-size: 17px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }

/* Security/data list */
.checklist { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.checklist .item { display: flex; gap: 12px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; box-shadow: var(--shadow); }
.checklist .tick { color: var(--ok); font-weight: 800; font-size: 18px; flex: 0 0 auto; }
.checklist b { color: var(--navy); }
.checklist span.t { font-size: 15px; color: var(--muted); }

/* Pricing */
.price-card { max-width: 420px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 36px; text-align: center; box-shadow: var(--shadow); }
.price-card .amt { font-size: 46px; font-weight: 800; color: var(--navy); letter-spacing: -1px; }
.price-card .amt span { font-size: 17px; font-weight: 600; color: var(--muted); }
.price-card ul { list-style: none; padding: 0; margin: 22px 0; text-align: left; }
.price-card li { padding: 8px 0 8px 28px; position: relative; color: var(--text); font-size: 15px; }
.price-card li:before { content: "✓"; color: var(--ok); font-weight: 800; position: absolute; left: 0; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; text-align: center; border-radius: 20px; padding: 48px 28px; }
.cta-band h2 { font-size: 30px; margin: 0 0 10px; letter-spacing: -.5px; }
.cta-band p { color: #c7d6e4; margin: 0 0 24px; font-size: 17px; }
.cta-band .btn.ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.cta-band .btn.ghost:hover { background: rgba(255,255,255,.1); color: #fff; }

/* Footer */
footer { background: #0b2036; color: #b9c7d6; padding: 48px 0 32px; font-size: 14px; }
footer .cols { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
footer a { color: #b9c7d6; }
footer a:hover { color: #fff; }
footer .brand { color: #fff; }
footer .resi { color: #fff; font-weight: 600; margin-top: 14px; }
footer .legal { border-top: 1px solid #1c3a57; margin-top: 28px; padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: #8aa0b5; }

/* Doc pages (privacy/terms) */
.doc { max-width: 800px; margin: 0 auto; padding: 56px 24px; }
.doc h1 { color: var(--navy); font-size: 34px; letter-spacing: -.5px; }
.doc .updated { color: var(--muted); font-size: 14px; margin-top: -8px; }
.doc h2 { color: var(--navy); font-size: 21px; margin-top: 34px; border-bottom: 1px solid var(--line); padding-bottom: 8px; }
.doc p, .doc li { color: #2b3a4d; font-size: 15.5px; }
.doc code { background: var(--soft); border: 1px solid var(--line); border-radius: 6px; padding: 1px 6px; font-size: 13px; }
.callout { background: var(--soft); border: 1px solid var(--line); border-left: 4px solid var(--brand); border-radius: 10px; padding: 16px 18px; }
