:root {
  --ink: #0b1020;
  --muted: #54607a;
  --line: #e5e9f2;
  --accent: #0ea5e9;
  --accent-2: #6366f1;
  --accent-ink: #ffffff;
  --bg: #ffffff;
  --soft: #f5f8fc;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 24px; height: 64px; }
.brand { font-weight: 800; letter-spacing: -0.02em; text-decoration: none; font-size: 18px; }
.brand span {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 600; font-size: 15px; }
.nav-links a:hover { color: var(--ink); }
.cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: var(--accent-ink);
  padding: 12px 20px; border-radius: 10px; text-decoration: none; font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(14, 165, 233, 0.28); }

.hero { padding: 96px 0 56px; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
h1 { font-size: clamp(34px, 5.4vw, 58px); line-height: 1.04; letter-spacing: -0.03em; margin: 0 0 20px; }
.lede { font-size: clamp(18px, 2.2vw, 22px); color: var(--muted); max-width: 720px; margin: 0 0 32px; }
.row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.ghost { color: var(--ink); text-decoration: none; font-weight: 700; padding: 12px 8px; }
.ghost:hover { color: var(--accent); }

.stats { display: flex; flex-wrap: wrap; gap: 40px; margin: 48px 0 0; padding: 0; }
.stats div { display: flex; flex-direction: column; }
.stats dt { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin: 0; }
.stats dd { margin: 4px 0 0; font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -0.02em; }
.stats span { font-size: 14px; color: var(--muted); }

section { padding: 64px 0; border-top: 1px solid var(--line); }
h2 { font-size: clamp(26px, 3.2vw, 36px); letter-spacing: -0.02em; margin: 0 0 12px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 32px; }
.card { background: var(--soft); border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.card h3 { margin: 0 0 8px; font-size: 19px; }
.card p { margin: 0; color: var(--muted); }

.steps { counter-reset: step; list-style: none; padding: 0; margin: 8px 0 0; }
.step { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.step:last-child { border-bottom: 0; }
.step b { color: var(--ink); }
.num {
  counter-increment: step; flex: 0 0 40px; height: 40px; width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; display: grid; place-items: center; font-weight: 800;
}
.num::before { content: counter(step); }

.tags { display: flex; flex-wrap: wrap; gap: 12px; padding: 0; margin: 28px 0 0; list-style: none; }
.tags li {
  background: var(--soft); border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 18px; font-weight: 600; font-size: 15px;
}

.contact { background: var(--soft); }

footer { padding: 48px 0; color: var(--muted); font-size: 14px; border-top: 1px solid var(--line); }
.addr { font-style: normal; margin-bottom: 12px; }
.addr a { color: var(--accent); }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .hero { padding: 64px 0 40px; }
  .stats { gap: 28px; }
}
