:root {
  --navy: #07182f;
  --blue: #1268f3;
  --cyan: #31d2ff;
  --ink: #102033;
  --muted: #64748b;
  --paper: #f6f9ff;
  --white: #ffffff;
  --line: rgba(15, 23, 42, 0.1);
  --shadow: 0 24px 70px rgba(7, 24, 47, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
}

a { color: inherit; text-decoration: none; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 20px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 34px;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 14px;
  letter-spacing: 0.04em;
}

.nav-links { display: flex; gap: 26px; align-items: center; color: #334155; font-weight: 600; font-size: 14px; }
.nav-cta { padding: 10px 16px; border-radius: 999px; background: var(--navy); color: var(--white); }

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(60px, 9vw, 112px) clamp(20px, 5vw, 72px) 70px;
  background:
    radial-gradient(circle at 82% 22%, rgba(49, 210, 255, 0.26), transparent 28%),
    radial-gradient(circle at 18% 10%, rgba(18, 104, 243, 0.18), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 800;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 780px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
  color: var(--navy);
}

h2 {
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1;
  letter-spacing: -0.055em;
  color: var(--navy);
  margin-bottom: 18px;
}

h3 { color: var(--navy); letter-spacing: -0.03em; margin-bottom: 10px; }
p { color: var(--muted); line-height: 1.65; }

.hero-subtitle { max-width: 650px; font-size: 19px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.primary { color: var(--white); background: linear-gradient(135deg, var(--blue), #0a3fb4); box-shadow: 0 16px 36px rgba(18, 104, 243, 0.25); }
.secondary { background: var(--white); border: 1px solid var(--line); color: var(--navy); }
.light { background: var(--white); color: var(--navy); box-shadow: none; }

.hero-card {
  padding: 22px;
  border-radius: 34px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow);
}

.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 14px; }
.metric-card {
  padding: 22px;
  min-height: 135px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #eef6ff);
  border: 1px solid var(--line);
}
.metric-card.large { min-height: 240px; background: linear-gradient(135deg, var(--navy), #0c51c4); color: var(--white); }
.metric-card span { display: block; color: #6ea8ff; font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px; }
.metric-card strong { display: block; color: inherit; font-size: clamp(22px, 3vw, 34px); letter-spacing: -0.05em; line-height: 1.05; }
.metric-card p { color: rgba(255,255,255,0.78); margin: 18px 0 0; }
.card-grid .metric-card strong { color: var(--navy); font-size: 20px; }

.strip { padding: 22px clamp(20px, 5vw, 72px); background: var(--navy); text-align: center; }
.strip p { margin: 0; color: rgba(255,255,255,0.86); font-weight: 700; }

.section { padding: 90px clamp(20px, 5vw, 72px); }
.section.alt { background: var(--paper); }
.section-heading { max-width: 850px; margin-bottom: 42px; }
.cards.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card, .vertical-grid > div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}
.icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; background: #eaf3ff; color: var(--blue); font-weight: 900; margin-bottom: 22px; }
.vertical-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.steps { display: grid; gap: 18px; }
.step { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 24px; border-radius: 26px; border: 1px solid var(--line); background: #fff; }
.step span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #fff; font-weight: 900; }
.step p { margin-bottom: 0; }

.cta {
  margin: 0 clamp(20px, 5vw, 72px) 72px;
  padding: clamp(44px, 6vw, 78px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 80% 20%, rgba(49,210,255,0.3), transparent 30%),
    linear-gradient(135deg, #07182f, #0c45b5);
  text-align: center;
}
.cta h2, .cta p { color: #fff; }
.cta p { max-width: 740px; margin-left: auto; margin-right: auto; color: rgba(255,255,255,0.78); }
.cta .button { margin-top: 14px; }

.footer { display: flex; justify-content: space-between; gap: 20px; padding: 30px clamp(20px, 5vw, 72px); border-top: 1px solid var(--line); }
.footer p { margin: 0; }
.footer a { color: var(--blue); font-weight: 700; }

@media (max-width: 900px) {
  .nav { align-items: flex-start; gap: 14px; }
  .nav-links { display: none; }
  .hero, .split { grid-template-columns: 1fr; }
  .cards.three, .vertical-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 52px; }
  .card-grid { grid-template-columns: 1fr; }
  .footer { flex-direction: column; }
}


.brand-name {
  color: #0f172a;
  font-weight: 800;
}

.brand-name-secondary {
  color: #475569;
  font-weight: 600;
}

.brand-divider {
  color: #cbd5e1;
}