@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;500;700&family=Poppins:wght@300;400;500&display=swap');

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

:root {
  --color-bg: #080716;
  --color-pink: #ff0099;
  --color-card-bg: #311030;
  --color-text-gray: #b0b0b0;
  --color-text-white-70: rgba(255, 255, 255, 0.7);
  --font-lato: 'Lato', sans-serif;
  --font-poppins: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

@keyframes vntFadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes vntFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes vntPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@keyframes vntSpinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--fade {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-lato);
  background-color: var(--color-bg);
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

.header {
  background-color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 60px;
  position: relative;
  z-index: 50;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.header__logo:hover {
  transform: scale(1.04);
}

.header__logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.header__logo:hover .header__logo-img {
  transform: rotate(15deg);
}

.header__logo-text {
  font-family: var(--font-lato);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.1;
  text-transform: capitalize;
  color: #fff;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__nav-link {
  font-family: var(--font-lato);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
  transition: color 0.3s;
}

.header__nav-link:hover {
  color: var(--color-pink);
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 35px;
  height: 16px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hero {
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
  height: 614px;
}

.hero__bg-shapes {
  position: absolute;
  top: 53px;
  pointer-events: none;
}

.hero__bg-shapes--left {
  left: -273px;
  width: 485px;
  height: 584px;
}

.hero__bg-shapes--right {
  right: -273px;
  width: 485px;
  height: 584px;
  transform: scaleX(-1);
}

.hero__bg-shape {
  position: absolute;
  inset: 0;
}

.hero__blob {
  position: absolute;
  top: 0;
  height: 614px;
  pointer-events: none;
  z-index: 0;
}

.hero__blob--left {
  left: 0;
  width: 253px;
}

.hero__blob--right {
  right: 0;
  width: 249px;
}

.hero__picture {
  position: absolute;
  right: 0;
  top: 97px;
  width: 540px;
  height: 415px;
  display: block;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__breadcrumb {
  position: absolute;
  left: 60px;
  top: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
}

.hero__breadcrumb-text {
  font-family: var(--font-lato);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: #fff;
}

.hero__breadcrumb-separator {
  width: 12.5px;
  height: 12px;
}

.hero__main {
  position: absolute;
  left: 60px;
  top: 144px;
  width: 1080px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero__title-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.hero__title {
  font-family: var(--font-lato);
  font-weight: 400;
  font-size: 60px;
  line-height: 1;
  text-transform: capitalize;
  color: #fff;
  width: 500px;
}

.hero__title-accent {
  font-weight: 700;
  color: var(--color-pink);
}

.hero__cards-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.hero__card {
  background-color: var(--color-card-bg);
  border-radius: 20px;
  padding: 28px 10px;
  width: 340px;
  filter: drop-shadow(18.333px 33.333px 16.667px rgba(0, 0, 0, 0.05));
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(255, 0, 153, 0.18);
}

.hero__card.reveal:nth-of-type(2) { transition-delay: 0.15s; }

.hero__card-text {
  font-family: var(--font-lato);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-text-gray);
  width: 320px;
}

.hero__cta {
  display: flex;
  align-items: center;
}

.hero__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 12px;
  padding: 14px 10px;
  width: 190px;
  font-family: var(--font-lato);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-pink);
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}

.hero__cta-btn:hover {
  background-color: var(--color-pink);
  color: #fff;
}

.hero__cta-arrow {
  width: 53px;
  height: 53px;
}

.mood {
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
  height: 744px;
}

.mood__container {
  position: absolute;
  left: 387px;
  top: 50%;
  transform: translateY(-50%);
  width: 777px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.mood__text-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.mood__title {
  font-family: var(--font-lato);
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  color: var(--color-pink);
}

.mood__description {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-text-gray);
}

.mood__description p + p {
  margin-top: 20.8px;
}

.mood__stats {
  display: flex;
  gap: 20px;
  width: 100%;
}

.mood__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mood__stat-dot {
  width: 18px;
  height: 18px;
}

.mood__stat-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mood__stat-value {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  color: #fff;
}

.mood__stat-label {
  font-family: var(--font-poppins);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-text-white-70);
}

.mood__character-wrapper {
  position: absolute;
  left: -230px;
  top: 50%;
  transform: translateY(-50%);
  width: 565px;
  height: 584px;
}

.mood__character {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mood__gradient-overlay {
  position: absolute;
  left: 0;
  top: 80px;
  width: 158px;
  height: 584px;
  object-fit: cover;
}

.cards {
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 80px 60px;
  overflow: hidden;
  position: relative;
}

.cards__bg-shapes {
  position: absolute;
  left: 267px;
  top: 27px;
  width: 601px;
  height: 524px;
  pointer-events: none;
}

.cards__bg-shape {
  width: 462px;
  height: 550px;
  transform: rotate(-83.11deg);
}

.cards__title {
  font-family: var(--font-lato);
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  color: var(--color-pink);
  text-align: center;
  position: relative;
  z-index: 1;
}

.cards__grid {
  display: flex;
  gap: 25px;
  position: relative;
  z-index: 1;
}

.cards__item {
  display: flex;
  flex-direction: column;
  width: 340px;
}

.cards__item-image {
  height: 280px;
  border-radius: 21.579px;
  object-fit: contain;
  margin-bottom: -28px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.cards__item-body {
  background-color: var(--color-card-bg);
  border-radius: 20px;
  padding: 28px 10px;
  filter: drop-shadow(18.333px 33.333px 16.667px rgba(0, 0, 0, 0.05));
  flex: 1;
}

.cards__item-text {
  font-family: var(--font-lato);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-text-gray);
  width: 320px;
}

.info-section {
  background-color: var(--color-bg);
  display: flex;
  gap: 40px;
  align-items: stretch;
  padding: 80px 60px;
  overflow: hidden;
}

.info-section--reverse {
  flex-direction: row-reverse;
}

.info-section__image-wrapper {
  flex: 1;
  min-width: 0;
  position: relative;
}

.info-section__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-section__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-section__title {
  font-family: var(--font-lato);
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  color: var(--color-pink);
}

.info-section__text {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-text-gray);
}

.info-section__text p + p {
  margin-top: 20.8px;
}

.footer {
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}

.footer__gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 401px;
  border-radius: 80px 80px 0 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.15) 100%), linear-gradient(239.345deg, #ff0099 16.349%, #4b002d 77.561%);
}

.footer__brand {
  font-family: var(--font-lato);
  font-weight: 500;
  font-size: 170px;
  line-height: 1;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer__content {
  position: relative;
  z-index: 1;
  width: 1105px;
  display: flex;
  flex-direction: column;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 739px;
}

.footer__links {
  display: flex;
  flex-direction: column;
}

.footer__link {
  font-family: var(--font-lato);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  display: block;
  padding: 2px 0;
  transition: color 0.3s;
}

.footer__link:hover {
  color: var(--color-pink);
}

.footer__contact {
  font-family: var(--font-lato);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}

.footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.footer__copyright {
  font-family: var(--font-lato);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: var(--color-text-white-70);
}

.footer__socials {
  display: flex;
  gap: 5px;
  align-items: center;
}

.footer__social-icon {
  width: 43px;
  height: 43px;
  display: block;
  transition: opacity 0.3s;
}

.footer__social-icon:hover {
  opacity: 0.8;
}

.header__nav--open {
  display: flex;
}

.header__burger--active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger--active span:nth-child(2) {
  opacity: 0;
}

.header__burger--active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .header {
    padding: 12px 20px;
    position: relative;
  }

  .header__logo-text {
    font-size: 26px;
  }

  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-bg);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    z-index: 100;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header__nav--open {
    display: flex;
  }

  .header__burger {
    display: flex;
  }

  .hero {
    height: auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .hero__bg-shapes--left {
    left: auto;
    right: -150px;
    top: 14px;
    width: 408px;
    height: 492px;
    transform: rotate(180deg);
  }

  .hero__bg-shapes--right {
    display: none;
  }

  .hero__blob {
    height: 100%;
    opacity: 0.6;
  }

  .hero__blob--left {
    width: 140px;
  }

  .hero__blob--right {
    width: 140px;
  }

  .hero__breadcrumb {
    position: relative;
    left: auto;
    top: auto;
    order: 0;
  }

  .hero__picture {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 300px;
    order: 1;
  }

  .hero__image {
    object-fit: cover;
  }

  .hero__main {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    gap: 14px;
    order: 2;
  }

  .hero__title {
    font-size: 40px;
    width: 100%;
    text-align: center;
  }

  .hero__title-group {
    gap: 14px;
  }

  .hero__cards-row {
    flex-direction: column;
    gap: 14px;
  }

  .hero__card {
    width: 100%;
    padding: 10px;
  }

  .hero__card-text {
    width: 100%;
  }

  .hero__cta {
    justify-content: center;
  }

  .mood {
    height: auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .mood__character-wrapper {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 240px;
    height: 248px;
  }

  .mood__gradient-overlay {
    display: none;
  }

  .mood__container {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
  }

  .mood__title {
    font-size: 32px;
  }

  .mood__stats {
    flex-direction: column;
  }

  .cards {
    padding: 40px 20px;
    gap: 20px;
  }

  .cards__title {
    font-size: 32px;
    width: 100%;
  }

  .cards__grid {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
  }

  .cards__item {
    width: 340px;
    max-width: 100%;
  }

  .cards__item-text {
    width: 100%;
  }

  .info-section {
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
  }

  .info-section--reverse {
    flex-direction: column;
  }

  .info-section__image-wrapper {
    width: 100%;
    flex: none;
  }

  .info-section__image {
    position: relative;
    height: auto;
    aspect-ratio: auto;
  }

  .info-section__title {
    font-size: 32px;
  }

  .footer {
    gap: 20px;
  }

  .footer__gradient {
    border-radius: 40px 40px 0 0;
  }

  .footer__brand {
    font-size: 60px;
    width: 100%;
    padding: 0 20px;
  }

  .footer__content {
    width: 100%;
    padding: 0 20px;
  }

  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }

  .footer__bottom {
    align-items: flex-end;
  }

  .footer__copyright {
    font-size: 14px;
  }
}

.cookies-banner {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  width: min(900px, calc(100% - 40px));
  z-index: 1000;
}

.cookies-banner[hidden] {
  display: none !important;
}

.cookies-banner__card {
  background-color: #0e0b2a;
  border-radius: 24px;
  padding: 40px 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cookies-banner__title {
  font-family: var(--font-lato);
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  color: var(--color-pink);
  text-align: center;
  margin: 0;
}

.cookies-banner__text {
  font-family: var(--font-lato);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-text-white-70);
  text-align: center;
  max-width: 720px;
  margin: 0;
}

.cookies-banner__actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

.cookies-banner__btn {
  font-family: var(--font-lato);
  font-weight: 500;
  font-size: 16px;
  border: none;
  border-radius: 999px;
  padding: 14px 32px;
  min-width: 200px;
  cursor: pointer;
  color: var(--color-pink);
  transition: opacity 0.3s, transform 0.3s;
}

.cookies-banner__btn:hover {
  opacity: 0.85;
}

.cookies-banner__btn--accept {
  background-color: #fff;
}

.cookies-banner__btn--settings {
  background-color: #8a8a92;
}

@media (max-width: 768px) {
  .cookies-banner {
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .cookies-banner__card {
    padding: 24px 20px;
    border-radius: 20px;
    gap: 18px;
  }

  .cookies-banner__title {
    font-size: 32px;
  }

  .cookies-banner__text {
    font-size: 14px;
  }

  .cookies-banner__actions {
    gap: 12px;
    width: 100%;
  }

  .cookies-banner__btn {
    padding: 12px 16px;
    min-width: 0;
    flex: 1;
    font-size: 14px;
  }
}
