@charset "UTF-8";
/* Main styles */
@font-face {
  font-family: "Bebas";
  src: url("../assets/fonts/Bebas.woff2") format("woff2");
  font-weight: regular;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans-variable.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  background: linear-gradient(135deg, #262766 0%, #000000 50%, #262766 100%);
  color: #FFFFFF;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

@keyframes heading-glow {
  0%, 100% {
    text-shadow: 0 0 6px rgba(180, 184, 251, 0.2);
  }
  50% {
    text-shadow: 0 0 14px rgba(148, 151, 249, 0.35), 0 0 28px rgba(180, 184, 251, 0.2);
  }
}
@keyframes button-gradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Bebas", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}

p, span, a, li, button, input, textarea, select, option {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

.container {
  width: min(1220px, 100% - 2rem);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(38, 39, 102, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 0;
  border-radius: 0 0 12px 12px;
  border-bottom: 1px solid rgba(210, 212, 255, 0.15);
}

.header__nav {
  display: flex;
  justify-content: center;
}

.header__list {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.header__link {
  color: #D2D4FF;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease;
}
.header__link:hover {
  color: #FFFFFF;
}

/* Main */
main {
  padding-top: 4.5rem;
}

/* Joining section */
.joining {
  padding: 4rem 0;
  scroll-margin-top: 4.5rem;
}

.joining__container {
  text-align: center;
}

.joining__title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #B4B8FB;
  margin-bottom: 2rem;
  text-align: left;
  animation: heading-glow 3s ease-in-out infinite;
}

.joining__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: rgba(38, 39, 102, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(210, 212, 255, 0.2);
}

.joining__text {
  color: #D2D4FF;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.7;
}

/* Prices section */
.prices {
  padding: 2rem 0 4rem;
  scroll-margin-top: 4.5rem;
}

.prices__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.prices__title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #B4B8FB;
  text-align: left;
  margin-bottom: 0;
  animation: heading-glow 3s ease-in-out infinite;
}

/* Carousel */
.carousel {
  position: relative;
  width: 100%;
  padding: 0 1rem;
}

.carousel__viewport {
  overflow: hidden;
  border-radius: 20px;
}

.carousel__track {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s ease-in-out;
  width: 600%;
}

.carousel__slide {
  flex: 0 0 calc((100% - 5rem) / 6);
  min-width: calc((100% - 5rem) / 6);
}

.carousel__nav {
  display: flex;
  gap: 0.5rem;
}

.carousel__btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background-color: #4B4DAD;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
  line-height: 1;
}
.carousel__btn:hover:not(:disabled) {
  background-color: #5659C3;
}
.carousel__btn:active:not(:disabled) {
  transform: scale(0.95);
}
.carousel__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Card */
.card {
  background: rgba(38, 39, 102, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(210, 212, 255, 0.2);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  background: rgba(38, 39, 102, 0.5);
  border-color: rgba(180, 184, 251, 0.5);
  box-shadow: 0 0 24px rgba(148, 151, 249, 0.15);
}

.card__title {
  font-size: 1.75rem;
  color: #B4B8FB;
  margin-bottom: 1rem;
}

.card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card__desc {
  color: #D2D4FF;
  font-size: 0.95rem;
  line-height: 1.5;
}

.card__subtitle {
  color: #B4B8FB;
  font-size: 0.9rem;
  font-weight: 600;
}

.card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.card__item {
  color: #D2D4FF;
  font-size: 0.9rem;
  line-height: 1.4;
  padding-left: 1.25rem;
  position: relative;
}
.card__item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #7477E3;
}

.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(210, 212, 255, 0.2);
}

.card__price {
  font-size: 1.25rem;
  font-weight: 600;
  color: #B4B8FB;
}

.card__btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #5659C3 0%, #7477E3 50%, #5659C3 100%);
  background-size: 200% 100%;
  color: #FFFFFF;
  font-size: 0.95rem;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
  animation: button-gradient 4s ease-in-out infinite;
}
.card__btn:hover {
  filter: brightness(1.1);
}
.card__btn:active {
  transform: scale(0.98);
}

/* Responsive */
@media (min-width: 640px) {
  .carousel__track {
    width: 300%;
  }
  .carousel__slide {
    flex: 0 0 calc((100% - 5rem) / 6);
    min-width: calc((100% - 5rem) / 6);
  }
}
@media (min-width: 900px) {
  .carousel__track {
    width: 200%;
  }
  .carousel__slide {
    flex: 0 0 calc((100% - 5rem) / 6);
    min-width: calc((100% - 5rem) / 6);
  }
}
/* Footer */
.footer {
  margin-top: 4rem;
  padding: 3rem 0 2rem;
  background: rgba(38, 39, 102, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(210, 212, 255, 0.15);
  border-radius: 20px 20px 0 0;
}

.footer__container {
  max-width: 1100px;
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem 3rem;
  align-items: start;
  margin-bottom: 2rem;
}

.footer__title {
  font-size: 1.5rem;
  color: #B4B8FB;
  margin-bottom: 0.75rem;
}

.footer__tagline {
  color: #D2D4FF;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  color: #D2D4FF;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.footer__link:hover {
  color: #FFFFFF;
}

.footer__contact {
  text-align: right;
}

.footer__text {
  color: #B4B8FB;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.footer__email {
  color: #D2D4FF;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.footer__email:hover {
  color: #FFFFFF;
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(210, 212, 255, 0.1);
}

.footer__copyright {
  color: rgba(210, 212, 255, 0.7);
  font-size: 0.8rem;
  text-align: center;
  margin: 0;
}

@media (max-width: 639px) {
  .header__list {
    gap: 1.25rem;
  }
  .joining {
    padding: 3rem 0;
  }
  .joining__content {
    padding: 1.5rem;
  }
  .card {
    padding: 1.5rem;
  }
  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__tagline {
    max-width: none;
  }
  .footer__links {
    align-items: center;
  }
  .footer__contact {
    text-align: center;
  }
}

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