:root {
  --accent: #0f766e;
  --ink: #0f172a;
}

body {
  position: relative;
  background:
    radial-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 45%, #f1f5f9 100%);
  background-size: 28px 28px, auto;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(15, 23, 42, 0.04) 0 1px,
      transparent 1px 120px
    ),
    repeating-linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.04) 0 1px,
      transparent 1px 120px
    );
  opacity: 0.35;
}

body::after {
  background-image: radial-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.25;
  mix-blend-mode: multiply;
}

body > * {
  position: relative;
  z-index: 1;
}

.section-divider {
  height: 1px;
  margin: 0 auto;
  max-width: 72rem;
  background: linear-gradient(90deg, transparent, rgba(15, 118, 110, 0.35), transparent);
}

.nav-link-active {
  color: var(--accent);
  font-weight: 600;
}

.faq-icon {
  display: inline-flex;
  width: 1.5rem;
  justify-content: center;
}

.illustration-img {
  filter: brightness(1.05) saturate(0.92);
}

.link-disabled {
  pointer-events: none;
  opacity: 0.45;
  cursor: not-allowed;
}
