*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  font-size: var(--fs-400);
  line-height: 1.5;
  color: var(--color-text);
  background:
    radial-gradient(circle at top center, rgba(255, 63, 164, 0.10), transparent 30%),
    linear-gradient(180deg, #09090d 0%, #0d0d13 35%, #111119 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.15;
}

p {
  color: var(--color-text-soft);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  border: 0;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: var(--fs-400);
  line-height: 1;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 12px 30px rgba(255, 63, 164, 0.24);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(255, 63, 164, 0.32);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.04);
}
