body {
  margin: 0;
  background: #07080f;
  color: #f5f7ff;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

.site-header,
.hero,
.section,
footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  color: white;
  text-decoration: none;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
}

nav {
  display: flex;
  gap: 18px;
}

nav a,
.primary,
.secondary {
  color: white;
  text-decoration: none;
  font-weight: 800;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
}

.hero h1 {
  max-width: 860px;
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero p {
  max-width: 660px;
  color: #aeb7d8;
  font-size: 1.1rem;
  line-height: 1.7;
}

.eyebrow {
  color: #a9c3ff;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary,
.secondary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: 7px;
  padding: 0 18px;
  background: #1f63ff;
}

.section {
  padding: 74px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.section h2 {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.steps article {
  background: #10131f;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 18px;
}

.steps strong {
  color: #a9c3ff;
  font-size: 1.2rem;
}

.steps p,
.split p {
  color: #aeb7d8;
  line-height: 1.65;
}

.split {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

footer {
  padding: 28px 0;
  color: #aeb7d8;
}

@media (max-width: 780px) {
  nav { display: none; }
  .steps { grid-template-columns: 1fr; }
  .split { display: block; }
}
