body {
  font-family: "Sora", "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 16px;
  color: var(--text);
  background:
    var(--gradient-aurora),
    var(--surface-0);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01" 1, "calt" 1;
}

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

body::before {
  inset: -24vh -32vw auto auto;
  width: 72vw;
  height: 72vw;
  max-width: 960px;
  max-height: 960px;
  background: radial-gradient(circle at 50% 50%, rgba(0, 151, 201, 0.14), transparent 70%);
}

body::after {
  inset: auto auto -26vh -24vw;
  width: 64vw;
  height: 64vw;
  max-width: 860px;
  max-height: 860px;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.10), transparent 72%);
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Sora", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text-strong);
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.15rem, 3.35vw, 3.25rem);
  line-height: 1.04;
  margin: 0.75rem 0 0.6rem;
}

h2 {
  font-size: clamp(1.32rem, 1.6vw, 1.76rem);
  line-height: 1.2;
  margin: 0 0 0.5rem;
}

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

h3 {
  font-size: 1.08rem;
  line-height: 1.22;
  margin: 0 0 0.4rem;
}

p {
  margin: 0.4rem 0 0;
}

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

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

code {
  font-family: "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.85rem;
  background: rgba(0, 139, 191, 0.1);
  padding: 0.25rem 0.45rem;
  border-radius: 6px;
}
