*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--qon-text);
  background:
    radial-gradient(circle at 8% 12%, rgba(51, 208, 161, 0.12), transparent 28rem),
    radial-gradient(circle at 92% 34%, rgba(22, 102, 174, 0.14), transparent 32rem),
    var(--qon-bg);
  font-family: var(--qon-font);
  font-size: 16px;
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(82, 205, 190, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 205, 190, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid rgba(51, 208, 161, 0.9);
  outline-offset: 4px;
}

.qon-container {
  width: var(--qon-page);
  margin-inline: auto;
}

.qon-section {
  position: relative;
  padding-block: var(--qon-section-space);
}

.qon-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--qon-green);
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.qon-eyebrow::before {
  width: 26px;
  height: 1px;
  content: "";
  background: currentColor;
}

.qon-section-heading {
  max-width: 720px;
  margin-bottom: 46px;
}

.qon-section-heading h2 {
  margin-bottom: 18px;
  font-size: 36px;
  font-weight: 500;
  line-height: 43px;
}

.qon-section-heading p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--qon-text-soft);
  font-size: 16px;
  line-height: 26px;
}

.qon-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
