:root {
  --lfr-bg: #131420;
  --lfr-bg-alt: #1b1c2d;
  --lfr-card: #161b33;
  --lfr-pink: #ff4fd8;
  --lfr-pink-soft: rgba(255, 79, 216, 0.1);
  --lfr-text: #ffffff;
  --lfr-muted: #a5abb6;
  --lfr-dark: #131420;
  --lfr-border: rgba(255, 255, 255, 0.08);
  --lfr-container: 1440px;
  --lfr-container-narrow: 1440px;
  --lfr-font-body: "Montserrat", system-ui, -apple-system, sans-serif;
  --lfr-font-display: "Urbanist", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--lfr-bg);
  color: var(--lfr-text);
  font-family: var(--lfr-font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.lfr-no-scroll {
  overflow: hidden;
}
body.lfr-resizing *,
body.lfr-resizing *::before,
body.lfr-resizing *::after {
  transition: none !important;
  animation-duration: 0s !important;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--lfr-font-display);
  margin: 0;
  line-height: 1.15;
  color: var(--lfr-text);
}
p {
  margin: 0;
}
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-main {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 32px;
  border-radius: 999px;
  border: 0;
  font-family: var(--lfr-font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: var(--lfr-pink);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 79, 216, 0.35);
}
.btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.btn--ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
}
.btn__icon {
  width: 16px;
  height: 10px;
  display: inline-flex;
  align-items: center;
}
.btn__icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lfr-pink-soft);
  color: var(--lfr-pink);
  padding: 8px 24px;
  border-radius: 100px;
  font-family: var(--lfr-font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.section-heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.section-heading__title {
  font-family: var(--lfr-font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
}
.section-heading__title span {
  color: #ff4fd8;
}
.section-heading__desc {
  color: var(--lfr-muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 660px;
}

