:root {
  --bg: #f7f9fc;
  --bg-alt: #eef3f9;
  --card: #ffffff;
  --ink: #0e2235;
  --muted: #5c6f83;
  --accent: #2d8bd8;
  --accent-2: #327DA0;
  --accent-3: #f7a600;
  --shadow: 0 12px 24px rgba(12, 46, 76, 0.06);
  --radius: 18px;
  scroll-behavior: smooth;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Sora', 'Space Grotesk', system-ui, -apple-system, sans-serif;
  background: linear-gradient(145deg, #fdfefe 0%, #f1f5fb 50%, #fdfefe 100%);
  color: var(--ink);
  line-height: 1.65;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
main { padding-top: 0; }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1200px at 82% 10%, rgba(50,125,160,0.10), transparent 55%),
    radial-gradient(1200px at 30% 120%, rgba(45,139,216,0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: normal;
  filter: blur(0.8px);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid #e3ebf3;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  gap: 18px;
}
nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  letter-spacing: 0.4px;
}
.brand img {
  width: 150px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
}
nav ul {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
nav a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 500;
  transition: all 0.2s ease;
}
nav a:hover, nav a:focus {
  color: var(--ink);
  background: #e8f1fb;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(50,125,160,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta.secondary {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid #d6e1ec;
  box-shadow: 0 2px 8px rgba(12,46,76,0.08);
}
.agent-btn {
  margin-left: 0;
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 14px;
}
.agent-btn:hover { border-color: #c1d2e2; }
.cta:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(50,125,160,0.16); }
.cta.secondary:hover { border-color: #c1d2e2; box-shadow: 0 5px 12px rgba(12,46,76,0.1); }
.mode-toggle {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: none;
  background: transparent;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  text-decoration: none;
}
.mode-toggle:hover,
.mode-toggle:focus-visible {
  transform: translateY(-1px);
  background: rgba(12,46,76,0.14);
}
.mode-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}
.hero {
  padding: 72px 0 54px;
  position: relative;
  overflow: hidden;
}
.hero::after, .hero::before {
  content: "";
  position: absolute;
  filter: blur(120px);
  opacity: 0.6;
  z-index: 0;
}
.hero::after {
  width: 360px; height: 360px;
  background: var(--accent);
  top: -60px; right: 5%;
  opacity: 0.18;
}
.hero::before {
  display: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  align-items: center;
}
h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -1px;
}
p.lead {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 26px;
}
.tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e9f2f7;
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 13px;
}
.pill-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.trust {
  color: var(--muted);
  font-size: 14px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.9;
}
.pill {
  padding: 10px 14px;
  border-radius: 12px;
  background: #eef3f9;
  border: 1px solid #d6e1ec;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
}
section {
  padding: 72px 0;
  position: relative;
  scroll-margin-top: 140px;
}
.section-title {
  font-size: 32px;
  margin: 0 0 8px;
}
.section-sub {
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 720px;
}
.grid {
  display: grid;
  gap: 20px;
}
.grid.cols-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card {
  background: linear-gradient(180deg, #f8fbff 0%, #edf3fa 100%);
  border: 1px solid #d8e4f1;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 18px rgba(12,46,76,0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card::after {
  display: none;
}
.card:hover,
.card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(12,46,76,0.1);
  border-color: #c7d6e5;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}
.card p { margin: 0; color: var(--muted); }
.card strong { color: var(--ink); }
.card.snapshot {
  color: #0e2235;
  border-color: #cddbec;
  box-shadow: 0 10px 24px rgba(12,46,76,0.12);
  background:
    radial-gradient(140% 120% at 10% 10%, rgba(45,139,216,0.2), transparent 45%),
    linear-gradient(140deg, #fff9ec 0%, #e9f2fb 52%, #d8e7f7 100%);
}
.card.snapshot h3 { color: #0b1b2b; }
.card.snapshot p { color: #2a4056; }
.card.snapshot .eyebrow { color: var(--accent-3); }
.card.snapshot .pill {
  background: rgba(255,255,255,0.78);
  border: 1px solid #d6e1ec;
  color: #0e2235;
}
.eyebrow {
  color: var(--accent-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 6px;
  display: block;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.step {
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fbff 0%, #edf3fa 100%);
  border: 1px solid #d8e4f1;
  box-shadow: 0 8px 18px rgba(12,46,76,0.08);
}
.step span.num {
  display: inline-flex;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: #e7f1fb;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent-2);
  margin-bottom: 8px;
}
.solutions-grid .card { padding-bottom: 70px; }
.card .link {
  position: absolute;
  bottom: 18px;
  left: 20px;
  color: var(--accent-2);
  font-weight: 700;
}
.highlight {
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #fff6e6;
  border: 1px solid #f7d38f;
  color: #b36a00;
  font-weight: 600;
}
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: center;
}
.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 10px;
  background: #e8f3f9;
  color: var(--accent-2);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}
.list li { margin-bottom: 8px; display: flex; gap: 10px; align-items: flex-start; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  margin-top: 7px;
  flex-shrink: 0;
}
.use-cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.use-cases .card {
  background: linear-gradient(180deg, #f8fbff 0%, #edf3fa 100%);
}
.cta-block {
  text-align: center;
  background: linear-gradient(120deg, #eaf3fb, #e3eef7);
  padding: 48px;
  border-radius: 22px;
  border: 1px solid #dbe6f2;
  box-shadow: 0 8px 18px rgba(12,46,76,0.08);
}
.cta-block h2 { margin: 0 0 12px; font-size: 32px; }
.cta-block p { margin: 0 0 24px; color: var(--ink); }
.solutions-detail .card {
  padding: 24px;
  background: var(--bg-alt);
  border: 1px solid #d6e1ec;
}
.mono {
  font-family: 'Space Grotesk', monospace;
  letter-spacing: 0.6px;
  font-size: 12px;
  color: var(--accent-2);
}
.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}
form {
  background: var(--card);
  padding: 22px;
  border-radius: 16px;
  border: 1px solid #e0e9f3;
  box-shadow: var(--shadow);
}
.form-note {
  color: var(--muted);
  font-size: 13px;
  margin-top: 12px;
}
label {
  display: block;
  margin: 10px 0 6px;
  font-weight: 600;
  color: var(--ink);
}
input, select, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d6e1ec;
  background: #f7fafc;
  color: var(--ink);
  font-family: inherit;
}
textarea { resize: vertical; min-height: 120px; }
footer {
  padding: 28px 0 38px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid #e3ebf3;
  margin-top: 32px;
}
@media (max-width: 900px) {
  nav ul { display: none; }
  nav ul.open { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
  header { padding: 0 4vw; }
  .nav { flex-wrap: wrap; }
  .agent-btn { display: none; }
}

