html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--ds-font-sans);
  color: var(--ds-color-text);
  line-height: var(--ds-lh-body);
  background:
    radial-gradient(980px 420px at -8% -10%, rgba(37, 99, 255, 0.16), transparent 70%),
    radial-gradient(920px 460px at 108% -12%, rgba(0, 194, 255, 0.12), transparent 72%),
    linear-gradient(180deg, #050a18 0%, #070f24 46%, #060b1b 100%);
}

.container {
  width: min(var(--ds-container-max), calc(100% - (var(--ds-container-pad) * 2)));
  margin-inline: auto;
}

section {
  padding: var(--ds-space-7) 0;
}

.section-head {
  margin-bottom: clamp(24px, 3vw, 38px);
}

.section-head h1,
.section-head h2,
.section-head h3 {
  margin: 0;
  color: var(--ds-color-text);
  letter-spacing: -0.02em;
}

.section-head h1 {
  font-size: var(--ds-fs-h1);
  line-height: var(--ds-lh-tight);
}

.section-head h2 {
  font-size: var(--ds-fs-h2);
  line-height: var(--ds-lh-head);
}

.section-head h3 {
  font-size: var(--ds-fs-h3);
  line-height: 1.28;
}

.section-head .section-desc,
.section-head p,
p {
  font-size: var(--ds-fs-body);
  color: var(--ds-color-text-soft);
  line-height: var(--ds-lh-body);
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 1024px) {
  .grid-12 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 767px) {
  section {
    padding: var(--ds-space-6) 0;
  }

  .grid-12 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
