*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Nunito", sans-serif;
  color: #1a0f3c;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
}

body, main {
  display: flex;
  flex-direction: column;
}

main, .hero {
  flex-grow: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border-radius: 12px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.btn--primary {
  background: #09bed3;
  color: #ffffff;
  border-color: #09bed3;
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: #07a5b8;
  border-color: #07a5b8;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(9, 190, 211, 0.45);
}
.btn--secondary {
  background: #99ca3d;
  color: #ffffff;
  border-color: #99ca3d;
}
.btn--secondary:hover, .btn--secondary:focus-visible {
  background: #7eae2b;
  border-color: #7eae2b;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(153, 202, 61, 0.4);
}
.btn--outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}
.btn--lg {
  padding: 0.875rem 2.25rem;
  font-size: 1.0625rem;
  border-radius: 14px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 15, 60, 0.97);
  border-bottom: 1px solid rgba(188, 167, 208, 0.18);
  backdrop-filter: blur(12px);
}
.header__inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 2rem;
}
.header__logo {
  flex-shrink: 0;
}
.header__logo img {
  height: 42px;
  width: auto;
}
.header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav {
  flex: 1;
}
.nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav__link {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: color 0.25s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: #09bed3;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav__link:hover, .nav__link:focus-visible {
  color: #ffffff;
}
.nav__link:hover::after, .nav__link:focus-visible::after {
  transform: scaleX(1);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  flex-shrink: 0;
}
.nav__toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__toggle[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  background: #4d3191;
  overflow: hidden;
  padding-block: 6rem 5.5rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/lb-1x1-brick.svg);
  background-repeat: repeat;
  background-size: 40px auto;
  pointer-events: none;
  opacity: 0.5;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 45%, transparent 25%, rgba(26, 15, 60, 0.55) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
.hero__logo {
  width: clamp(240px, 48%, 400px);
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.35));
  animation: float 5s ease-in-out infinite;
}
.hero__tagline {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  font-weight: 600;
  max-width: 440px;
  letter-spacing: 0.015em;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.features {
  padding-block: 5.5rem;
  background: #f8f6ff;
}
.features__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.features__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #09bed3;
  margin-bottom: 0.75rem;
}
.features__title {
  font-family: "Fredoka One", cursive;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1a0f3c;
  line-height: 1.15;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.25rem 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(188, 167, 208, 0.25);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
}
.feature-card:nth-child(1)::before {
  background: #09bed3;
}
.feature-card:nth-child(2)::before {
  background: #99ca3d;
}
.feature-card:nth-child(3)::before {
  background: #bca7d0;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 28px rgba(77, 49, 145, 0.2);
}
.feature-card__icon {
  font-size: 1.875rem;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-card:nth-child(1) .feature-card__icon {
  background: rgba(9, 190, 211, 0.1);
}
.feature-card:nth-child(2) .feature-card__icon {
  background: rgba(153, 202, 61, 0.1);
}
.feature-card:nth-child(3) .feature-card__icon {
  background: rgba(188, 167, 208, 0.22);
}
.feature-card__title {
  font-family: "Fredoka One", cursive;
  font-size: 1.3125rem;
  color: #1a0f3c;
  margin-bottom: 0.625rem;
}
.feature-card__text {
  color: #7a6fa0;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.stats {
  background: #4d3191;
  padding-block: 3rem;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(188, 167, 208, 0.12) 28%, transparent 28.5%);
  background-size: 48px 48px;
  pointer-events: none;
}
.stats__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stats__item {
  padding: 1rem;
}
.stats__number {
  font-family: "Fredoka One", cursive;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #09bed3;
  display: block;
  line-height: 1;
  margin-bottom: 0.375rem;
}
.stats__label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  font-weight: 600;
}

.cta {
  padding-block: 6rem;
  background: linear-gradient(135deg, #1a0f3c 0%, #4d3191 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(9, 190, 211, 0.07) 28%, transparent 28.5%);
  background-size: 48px 48px;
  pointer-events: none;
}
.cta__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.cta__title {
  font-family: "Fredoka One", cursive;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  color: #ffffff;
  line-height: 1.1;
}
.cta__title span {
  color: #09bed3;
}
.cta__subtitle {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.0625rem;
  font-weight: 600;
  max-width: 460px;
}
.cta__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer {
  background: #1a0f3c;
  padding-block: 2.5rem;
  border-top: 1px solid rgba(188, 167, 208, 0.12);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.footer__logo img {
  height: 34px;
  width: auto;
}
.footer__copy {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.875rem;
}
.footer__links {
  display: flex;
  gap: 1.5rem;
}
.footer__link {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.25s ease;
}
.footer__link:hover, .footer__link:focus-visible {
  color: #09bed3;
}

@media (max-width: 960px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .header__inner {
    height: 64px;
  }
  .header__subscribe {
    display: none;
  }
  .nav {
    flex: initial;
    margin-left: auto;
  }
  .nav__list {
    display: none;
  }
  .nav__toggle {
    display: flex;
  }
  .nav.is-open {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(26, 15, 60, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(188, 167, 208, 0.2);
    padding: 0.5rem 1.5rem 1.5rem;
  }
  .nav.is-open .nav__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .nav.is-open .nav__link {
    display: block;
    padding: 0.875rem 0;
    font-size: 1.0625rem;
    border-bottom: 1px solid rgba(188, 167, 208, 0.1);
    width: 100%;
  }
  .nav.is-open .nav__link::after {
    display: none;
  }
  .nav.is-open .nav__link:last-child {
    border-bottom: none;
  }
}
@media (max-width: 600px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
  .stats__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .stats__grid__item + .stats__item {
    border-top: 1px solid rgba(188, 167, 208, 0.15);
  }
  .hero {
    padding-block: 4rem 3.5rem;
  }
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/*# sourceMappingURL=styles.css.map */
