
:root {
  --bg: #fbfaf7;
  --paper: #ffffff;
  --ink: #0b2742;
  --muted: #5d6b7a;
  --line: #e7edf3;
  --blue: #2563eb;
  --blue-dark: #102a43;
  --blue-soft: #eaf4ff;
  --green: #1f8a5b;
  --gold: #b7791f;
  --shadow: 0 24px 70px rgba(16, 42, 67, 0.09);
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(231, 237, 243, 0.85);
}
.nav {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo-wrap { display: inline-flex; align-items: center; flex: 0 0 auto; }
.logo-wrap img {
  width: 390px;
  max-height: 82px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 21px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 650;
}
.nav-links a:hover { color: var(--ink); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 750;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 14px 34px rgba(16, 42, 67, 0.22); }
.button.secondary { background: white; color: var(--ink); border: 1px solid var(--line); box-shadow: none; }

.hero { padding: 96px 0 72px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 64px;
  align-items: center;
}
.kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 850;
}
h1, h2, h3 { line-height: 1.08; margin: 0; letter-spacing: -0.04em; }
h1 { font-size: clamp(48px, 7vw, 82px); font-weight: 850; }
h2 { font-size: clamp(34px, 4vw, 54px); font-weight: 820; }
h3 { font-size: 24px; font-weight: 800; }
.lede {
  margin: 28px 0 0;
  max-width: 660px;
  color: var(--muted);
  font-size: 20px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.trust-line { margin-top: 26px; color: var(--muted); font-size: 15px; }
.scope-line {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  max-width: 720px;
}

.dashboard-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}
.dashboard-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.pills { display: flex; gap: 7px; }
.pill { width: 10px; height: 10px; border-radius: 50%; background: #dbe6f0; }
.pill.green { background: #2eb67d; }
.pill.yellow { background: #f4bf50; }
.pill.red { background: #e05252; }
.status-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.status-tile {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: #fcfdff;
}
.status-tile span { display: block; color: var(--muted); font-size: 13px; }
.status-tile strong { display: block; margin-top: 10px; font-size: 26px; }
.status-tile.ok strong { color: var(--green); }
.status-tile.warn strong { color: var(--gold); }
.chart {
  margin-top: 18px;
  height: 160px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.10), transparent),
    repeating-linear-gradient(to right, transparent 0, transparent 54px, rgba(231, 237, 243, 0.7) 55px),
    repeating-linear-gradient(to bottom, transparent 0, transparent 39px, rgba(231, 237, 243, 0.7) 40px);
  position: relative;
  overflow: hidden;
}
.chart svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.section { padding: 88px 0; }
.services-section { padding-top: 72px; }
.section-header { max-width: 780px; margin-bottom: 42px; }
.section-header p, .page-lede { color: var(--muted); font-size: 19px; margin: 18px 0 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 12px 36px rgba(16, 42, 67, 0.05);
}
.featured-card { border-color: rgba(37, 99, 235, 0.24); box-shadow: 0 18px 50px rgba(37, 99, 235, 0.08); }
.card-eyebrow {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.card p, .split p, .faq p { color: var(--muted); }
.card ul, .check-list { margin: 22px 0 0; padding: 0; list-style: none; }
.card li, .check-list li {
  position: relative;
  padding-left: 25px;
  margin: 12px 0;
  color: var(--muted);
}
.card li::before, .check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.panel {
  background: var(--blue-dark);
  color: white;
  border-radius: var(--radius);
  padding: 42px;
  box-shadow: var(--shadow);
}
.panel p { color: rgba(255,255,255,0.72); }
.panel .button { background: white; color: var(--ink); box-shadow: none; }

.page-hero { padding: 72px 0 48px; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(44px, 6vw, 72px); }
.page-lede { max-width: 780px; font-size: 20px; margin-top: 24px; }

.steps { display: grid; gap: 16px; }
.step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.faq { display: grid; gap: 18px; }
.faq-item { background: white; border: 1px solid var(--line); border-radius: 24px; padding: 26px; }
.faq-item h3 { font-size: 20px; }

.cta { padding: 90px 0; }
.cta-box {
  background: var(--ink);
  color: white;
  border-radius: 34px;
  padding: 54px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.cta-box p { color: rgba(255,255,255,0.75); font-size: 19px; }
.cta-box .button { background: white; color: var(--ink); box-shadow: none; }

.site-footer { border-top: 1px solid var(--line); padding: 36px 0; color: var(--muted); font-size: 14px; }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.mobile-toggle { display: none; }

@media (max-width: 1160px) {
  .logo-wrap img { width: 330px; }
  .nav-links { gap: 15px; }
}
@media (max-width: 980px) {
  .logo-wrap img { width: 285px; }
}
@media (max-width: 880px) {
  .hero-grid, .split, .cta-box { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .nav { min-height: 78px; }
  .logo-wrap img { width: 245px; max-height: 64px; }
  .mobile-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    background: white;
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--ink);
    font-weight: 750;
  }
  .nav-links {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links .button { width: 100%; }
  .hero { padding-top: 62px; }
  .status-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1120px); }
  h1 { font-size: 46px; }
  .hero-actions .button { width: 100%; }
  .logo-wrap img { width: 215px; }
  .dashboard-card, .card, .panel, .cta-box { border-radius: 22px; }
}
