html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--body);
  background:
    radial-gradient(circle at 12% 10%, rgba(37, 215, 255, 0.12) 0%, rgba(7, 9, 11, 0) 38%),
    radial-gradient(circle at 88% 4%, rgba(101, 255, 91, 0.12) 0%, rgba(7, 9, 11, 0) 36%),
    linear-gradient(160deg, #050607 0%, #090c10 52%, #0f1318 100%);
  color: var(--text-main);
  line-height: 1.55;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  width: 24rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(5.4rem);
  z-index: -2;
  pointer-events: none;
}

.bg-orb-left {
  left: -12%;
  top: -12%;
  background: rgba(37, 215, 255, 0.16);
}

.bg-orb-right {
  right: -14%;
  bottom: 8%;
  background: rgba(101, 255, 91, 0.16);
}

.container {
  width: min(100% - 10%, var(--container-max));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.section-head {
  max-width: 42rem;
  margin-bottom: clamp(1.8rem, 4.5vw, 2.7rem);
}

.section-kicker {
  font-size: clamp(0.78rem, 0.6rem + 0.6vw, 1rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

h1,
h2,
h3 {
  font-family: var(--headline);
  line-height: 1.1;
}

h1 {
  font-size: clamp(2rem, 1.2rem + 4.6vw, 4rem);
}

h2 {
  font-size: clamp(1.5rem, 1rem + 2.6vw, 2.5rem);
  margin-bottom: 0.8rem;
}

p {
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  padding: 0.8rem 1.35rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #95ff90 56%, #ccffb8 100%);
  color: #081108;
  box-shadow: 0 0.75rem 1.9rem rgba(101, 255, 91, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 1rem 2.4rem rgba(101, 255, 91, 0.35);
}

.btn-outline {
  border-color: rgba(37, 215, 255, 0.42);
  color: var(--text-main);
  background: rgba(37, 215, 255, 0.08);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 48rem) {
  .container {
    width: min(100% - 8%, var(--container-max));
  }
}
