:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f8;
  --border: #e4e4e7;
  --text: #18181b;
  --muted: #71717a;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --navy: #0f172a;
  --radius: 12px;
}

* { box-sizing: border-box; margin: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

.ico {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  vertical-align: -3px;
}

h1 { font-size: 46px; line-height: 1.12; letter-spacing: -0.025em; font-weight: 750; }
h2 { font-size: 30px; letter-spacing: -0.02em; font-weight: 700; margin-bottom: 12px; }
h3 { font-size: 17px; font-weight: 650; margin-bottom: 6px; }
p { color: var(--muted); }
a { color: var(--accent); text-decoration: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-secondary { background: #fff; color: var(--text); border-color: var(--border); }
.btn-secondary:hover { background: var(--bg-soft); }

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  font-size: 17px;
  color: var(--text);
  margin-right: auto;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: var(--muted); font-weight: 500; font-size: 14.5px; }
.nav-links a:hover { color: var(--text); }
.nav .btn { padding: 8px 16px; font-size: 14px; }

/* ---------- Hero ---------- */

.hero {
  padding: 88px 0 64px;
  text-align: center;
  background:
    radial-gradient(600px 300px at 50% -50px, rgba(37, 99, 235, 0.07), transparent),
    var(--bg);
}
.hero p.lead {
  font-size: 19px;
  max-width: 640px;
  margin: 20px auto 32px;
}
.hero-cta { display: flex; gap: 12px; justify-content: center; margin-bottom: 28px; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: #eef2ff;
  border: 1px solid #dbe4ff;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 22px;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.trust-strip span { display: inline-flex; align-items: center; gap: 7px; }
.trust-strip .ico { width: 15px; height: 15px; color: var(--accent); }

/* ---------- Product frame ---------- */

.product-shot { margin: 56px auto 0; max-width: 920px; }
.browser {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(15, 23, 42, 0.25);
  background: #fff;
  text-align: left;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: #d4d4d8; }
.browser-url {
  margin-left: 12px;
  font-size: 12px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 12px;
}
.browser img { display: block; width: 100%; }

/* Mock UI inside the browser frame */
.mock { display: flex; min-height: 360px; font-size: 12.5px; }
.mock-side { width: 168px; border-right: 1px solid var(--border); padding: 14px 10px; background: #fff; flex-shrink: 0; }
.mock-side .m-item { padding: 6px 9px; border-radius: 6px; color: var(--muted); }
.mock-side .m-item.on { background: #eef2ff; color: var(--accent); font-weight: 600; }
.mock-main { flex: 1; background: var(--bg-soft); padding: 18px; }
.mock-title { font-weight: 700; font-size: 15px; margin-bottom: 12px; }
.m-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; margin-bottom: 10px; }
.m-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid var(--bg-soft); color: var(--muted); }
.m-row:last-child { border-bottom: none; }
.m-row b { color: var(--text); font-weight: 550; display: inline-flex; align-items: center; gap: 6px; }
.mock .ico { width: 13px; height: 13px; color: var(--muted); }
.m-pill { font-size: 10.5px; border: 1px solid var(--border); border-radius: 99px; padding: 2px 9px; color: var(--muted); }
.m-pill.blue { background: #eef2ff; color: var(--accent); border-color: #dbe4ff; }

/* ---------- Logos ---------- */

.logos { padding: 48px 0 56px; border-bottom: 1px solid var(--border); text-align: center; }
.logos-label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 26px;
}
.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 48px;
}
.wordmark {
  color: #9ca3af;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.wordmark.serif { font-family: Georgia, "Times New Roman", serif; font-weight: 600; }
.wordmark.caps { text-transform: uppercase; letter-spacing: 0.14em; font-size: 15px; }
.wordmark.light { font-weight: 400; letter-spacing: 0.02em; }
.wordmark small { font-size: 11px; vertical-align: super; font-weight: 500; }

/* ---------- Sections ---------- */

section.block { padding: 80px 0; }
section.block.soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.section-head p { font-size: 17px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.feature .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--accent);
}
.feature .icon .ico { width: 20px; height: 20px; }
.feature p { font-size: 14.5px; }

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 14px;
}

.spaced { margin-top: 8px; }

/* ---------- Security band ---------- */

.band {
  background: var(--navy);
  color: #fff;
  border-radius: 18px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.band h2 { color: #fff; }
.band p { color: #cbd5e1; }
.band ul { list-style: none; padding: 0; display: grid; gap: 12px; }
.band li { display: flex; gap: 10px; color: #e2e8f0; font-size: 15px; font-weight: 500; }
.band li::before { content: "✓"; color: #4ade80; font-weight: 700; }
.band .btn-secondary { margin-top: 22px; }

/* ---------- Testimonials ---------- */

.quote {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.quote blockquote { font-size: 16.5px; color: var(--text); line-height: 1.6; margin-bottom: 18px; }
.quote-who { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e0e7ff;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.quote-who .name { font-weight: 650; font-size: 14.5px; }
.quote-who .role { font-size: 13px; color: var(--muted); }

/* ---------- Stats ---------- */

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.stat-big { font-size: 34px; font-weight: 750; letter-spacing: -0.02em; }
.stat-sub { color: var(--muted); font-size: 14px; }

/* ---------- CTA ---------- */

.cta { text-align: center; padding: 90px 0; }
.cta h2 { font-size: 36px; }
.cta p { font-size: 18px; margin: 12px 0 28px; }

/* ---------- Content pages (security / gdpr) ---------- */

.page-hero { padding: 72px 0 40px; text-align: center; }
.page-hero h1 { font-size: 38px; }
.page-hero p { font-size: 18px; max-width: 620px; margin: 14px auto 0; }

.content { max-width: 760px; margin: 0 auto; padding-bottom: 80px; }
.content h2 { font-size: 22px; margin: 44px 0 14px; }
.content .item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--bg-soft);
}
.content .item .icon { flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.content .item .icon .ico { width: 20px; height: 20px; }
.content .item p { font-size: 15px; }
.notice {
  background: #eef2ff;
  border: 1px solid #dbe4ff;
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 14.5px;
  color: #1e3a8a;
  margin-top: 32px;
}

/* ---------- Footer ---------- */

footer { border-top: 1px solid var(--border); padding: 48px 0 40px; background: var(--bg-soft); }
.foot { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.foot-col { font-size: 14px; }
.foot-about { max-width: 280px; }
.foot-about .brand { margin-bottom: 10px; }
.foot-desc { font-size: 13.5px; }
.foot-col .head { font-weight: 650; margin-bottom: 10px; font-size: 13.5px; }
.foot-col a { display: block; color: var(--muted); padding: 3px 0; }
.foot-col a:hover { color: var(--text); }
.foot-note { margin-top: 36px; font-size: 13px; color: var(--muted); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  h1 { font-size: 34px; }
  h1 br { display: none; }
  .hero-cta { flex-wrap: wrap; padding: 0 8px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .band { grid-template-columns: 1fr; padding: 32px; }
  .nav-links { display: none; }
  .nav-inner { gap: 10px; }
  .hero { padding: 56px 0 40px; }
  .hero p.lead { font-size: 16.5px; }
  .mock-side { display: none; }
  .logo-row { gap: 16px 28px; }
  .wordmark { font-size: 16px; }
  section.block { padding: 56px 0; }
  .cta { padding: 64px 0; }
  .cta h2 { font-size: 28px; }
  .cta .btn { margin: 4px; }
  .page-hero h1 { font-size: 30px; }
  .foot { flex-direction: column; gap: 24px; }
}

.brand-logo { width: 30px; height: 30px; border-radius: 8px; object-fit: cover; display: block; flex-shrink: 0; }
.foot .brand-logo { width: 26px; height: 26px; }
