@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

body {
  font-family: "Plus Jakarta Sans", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(16px, 0.3vw + 15px, 19px);
  line-height: 1.72;
  color: var(--text);
  background: var(--gradient-aurora), var(--surface-0);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "calt" 1, "ss02" 1;
}

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

body::before {
  inset: -30vh -28vw auto auto;
  width: 72vw;
  height: 72vw;
  max-width: 1020px;
  max-height: 1020px;
  background: radial-gradient(circle at 50% 50%, rgba(28, 166, 208, 0.13), transparent 72%);
}

body::after {
  inset: auto auto -32vh -22vw;
  width: 64vw;
  height: 64vw;
  max-width: 880px;
  max-height: 880px;
  background: radial-gradient(circle at 50% 50%, rgba(199, 151, 68, 0.09), transparent 74%);
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Plus Jakarta Sans", "Avenir Next", sans-serif;
  color: var(--text-strong);
  letter-spacing: -0.028em;
  text-wrap: balance;
}

h1 {
  margin: 0.88rem 0 0.66rem;
  font-size: clamp(2.52rem, 3.9vw, 4.2rem);
  line-height: 1.02;
}

h2 {
  margin: 0 0 0.56rem;
  font-size: clamp(1.7rem, 2.2vw, 2.52rem);
  line-height: 1.18;
}

h3 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.16rem, 1.34vw, 1.5rem);
  line-height: 1.36;
}

p {
  margin: 0.42rem 0 0;
}

p + p {
  margin-top: 0.76rem;
}

a {
  color: var(--color-accent-2);
  text-decoration: none;
  text-underline-offset: 3px;
}

a:hover,
a:focus {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

code {
  font-family: "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.84rem;
  border-radius: 6px;
  padding: 0.24rem 0.46rem;
  background: rgba(31, 159, 202, 0.12);
  color: rgba(10, 65, 92, 0.98);
}
