:root {
  --bg: #0b1220;
  --bg-alt: #0f1729;
  --surface: #131c30;
  --surface-2: #182238;
  --border: #24314d;
  --text: #e6ecf7;
  --muted: #9fb0cc;
  --brand: #2563eb;
  --brand-2: #3b82f6;
  --brand-ink: #ffffff;
  --accent: #38bdf8;
  --ok: #34d399;
  --radius: 14px;
  --maxw: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 .5rem; letter-spacing: -0.02em; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .4rem; font-weight: 600; cursor: pointer; border: 1px solid transparent;
  border-radius: 999px; padding: .7rem 1.25rem; font-size: .95rem;
  transition: transform .08s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: var(--brand-ink); box-shadow: 0 6px 24px -8px rgba(37,99,235,.7); }
.btn-primary:hover { background: var(--brand-2); }
.btn-outline { border-color: var(--border); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--brand-2); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.04); border-color: var(--border); color: var(--text); }
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.btn-sm { padding: .5rem .9rem; font-size: .85rem; }
.btn-lg { padding: .9rem 1.6rem; font-size: 1.05rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,18,32,.8); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; gap: 1.5rem; height: 64px; }
.brand { display: flex; align-items: center; gap: .55rem; font-weight: 700; font-size: 1.05rem; }
.brand-mark {
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 8px;
  background: var(--brand); color: #fff; font-weight: 800;
}
.brand-mark.small { width: 24px; height: 24px; font-size: .8rem; }
.nav-links { display: flex; gap: 1.25rem; margin-left: auto; font-size: .92rem; color: var(--muted); }
.nav-links a:hover { color: #fff; }
.nav .btn-primary { margin-left: 0; }

/* Hero */
.hero {
  padding: 84px 0 40px;
  background:
    radial-gradient(1000px 500px at 70% -10%, rgba(37,99,235,.28), transparent 60%),
    radial-gradient(700px 400px at 10% 0%, rgba(56,189,248,.14), transparent 55%);
}
.hero-inner { text-align: center; max-width: 860px; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; color: var(--accent); font-weight: 700; margin-bottom: 1rem; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 1.1rem; }
.lede { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--muted); max-width: 720px; margin: 0 auto 1.75rem; }
.hero-cta { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.1rem; }
.hero-trust { color: var(--muted); font-size: .85rem; }
.hero-badges { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; margin-top: 2.25rem; }
.badge {
  padding: .4rem .85rem; border: 1px solid var(--border); border-radius: 999px;
  font-size: .8rem; color: var(--muted); background: var(--surface); font-weight: 600;
}

/* Sections */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-title { font-size: clamp(1.5rem, 3vw, 2.1rem); text-align: center; }
.section-sub { color: var(--muted); text-align: center; max-width: 680px; margin: 0 auto 2.5rem; }

/* Grid + cards */
.grid { display: grid; gap: 1.25rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; transition: transform .12s ease, border-color .15s ease;
}
.card:hover { transform: translateY(-3px); border-color: #33456b; }
.card-icon { font-size: 1.6rem; margin-bottom: .6rem; }
.card h3 { font-size: 1.15rem; }
.card p { color: var(--muted); margin: 0; }

/* Products */
.product {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.4rem; display: flex; flex-direction: column;
  transition: transform .12s ease, border-color .15s ease;
}
.product:hover { transform: translateY(-3px); border-color: #33456b; }
.product h3 { font-size: 1.08rem; }
.product p { color: var(--muted); font-size: .95rem; flex-grow: 0; }
.product-tags { list-style: none; display: flex; gap: .4rem; flex-wrap: wrap; padding: 0; margin: .25rem 0 1.1rem; }
.product-tags li { font-size: .72rem; color: var(--accent); border: 1px solid var(--border); border-radius: 6px; padding: .15rem .5rem; }
.product .btn { margin-top: auto; align-self: flex-start; }

/* Compliance */
.compliance-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.compliance-inner .section-title, .compliance-inner .section-sub { text-align: left; margin-left: 0; }
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { position: relative; padding-left: 1.75rem; margin-bottom: .7rem; color: var(--muted); }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--ok); font-weight: 800;
  background: rgba(52,211,153,.12); border-radius: 6px; width: 1.25rem; height: 1.25rem;
  display: grid; place-items: center; font-size: .8rem;
}
.matrix {
  display: grid; grid-template-columns: 1.4fr repeat(5, 1fr); gap: 6px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px;
}
.matrix-cell { display: grid; place-items: center; padding: .55rem .2rem; font-size: .85rem; color: var(--muted); }
.matrix-cell.head { font-weight: 700; color: var(--text); font-size: .78rem; }
.matrix-cell.row-head { justify-content: flex-start; font-weight: 600; color: var(--text); font-size: .82rem; }
.matrix-cell.on { color: var(--ok); font-size: 1rem; background: rgba(52,211,153,.08); border-radius: 6px; }

/* Pricing */
.pricing .price-card { display: flex; flex-direction: column; position: relative; }
.price-card .price { font-size: 2rem; font-weight: 800; margin: .3rem 0 1rem; }
.price-card .price span { font-size: .95rem; font-weight: 500; color: var(--muted); }
.price-card .checklist { margin-bottom: 1.4rem; }
.price-card .btn { margin-top: auto; }
.price-card.featured { border-color: var(--brand); box-shadow: 0 12px 40px -18px rgba(37,99,235,.8); }
.ribbon {
  position: absolute; top: -12px; right: 16px; background: var(--brand); color: #fff;
  font-size: .72rem; font-weight: 700; padding: .25rem .7rem; border-radius: 999px;
}

/* CTA band */
.cta-band { padding: 64px 0; background: linear-gradient(120deg, rgba(37,99,235,.22), rgba(56,189,248,.12)); }
.cta-band-inner { text-align: center; }
.cta-band h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1.5rem; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 2.5rem 0; background: var(--bg-alt); }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; }
.footer-inner strong { margin-left: .5rem; }
.muted { color: var(--muted); }
.small { font-size: .82rem; }
.footer-inner .muted { margin-top: .5rem; max-width: 340px; }

/* Responsive */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .compliance-inner { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .grid-3 { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 32px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .card, .product { transition: none; }
}
