body {
  position: relative;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-conic-gradient(
    rgba(255, 255, 255, 0.03) 0% 25%,
    transparent 0% 50%
  ) 0 0 / 4px 4px;
  opacity: 0.02;
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  position: relative;
  z-index: 1;
}

.section {
  padding: var(--sp-24) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-16);
}

.section-title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--sp-4);
  display: inline-block;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: var(--sp-6);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.about-block {
  margin-bottom: var(--sp-16);
}

.about-block-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}

.about-block-title i,
.about-block-title svg {
  color: var(--accent);
}

.highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
