:root {
  /* ===============================
     PRIMARY
  ============================== */
  --primary-50: #fbf5ff;
  --primary-100: #f4e7ff;
  --primary-200: #ebd4ff;
  --primary-300: #dcb2ff;
  --primary-400: #c781ff;
  --primary-500: #b251fb;
  --primary-600: #9821ee;
  --primary-700: #881dd3;
  --primary-800: #731dac;
  --primary-900: #5e198a;
  --primary-950: #410467;
  /* ===============================
     NEUTRAL
  ============================== */
  --neutral-50: #f9f9fa;
  --neutral-100: #f4f4f6;
  --neutral-200: #ebecf0;
  --neutral-300: #dddfe4;
  --neutral-400: #c3c6cc;
  --neutral-500: #afb3bb;
  --neutral-600: #8c929c;
  --neutral-700: #5b616d;
  --neutral-800: #414651;
  --neutral-900: #222732;
  --neutral-950: #0a0c11;
}

:root {
  --page-bg: var(--neutral-100);
  --panel: #ffffff;
  --brand: var(--primary-900);
  --accent: var(--primary-500);
  --muted: var(--neutral-600);
}

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

html,
body {
  width: 100%;
  height: 100%;
  overflow: auto;
  background: #fff;
  font-family: "Inter", sans-serif;
  color: #110945;
}

body.nav-locked {
  overflow: hidden;
  touch-action: none;
}

.nav-bar {
  display: flex;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 56px;
  padding: 12px 24px;
  justify-content: space-between;
  align-items: center;
  z-index: 4;
  background-color: #fbf5ff;
}
.nav-bar__logo {
  width: 120px;
  height: 40px;
}
.nav-bar__center {
  display: flex;
  justify-content: center;
  flex: 1;
}
.nav-bar__menu {
  display: flex;
  gap: 24px;
}
.nav-bar__item--mobile-only {
  display: none;
}
.nav-bar__link {
  cursor: pointer;
  color: var(--neutral-800);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.14px;
  text-decoration: none;
}
.nav-bar__link:hover {
  color: var(--primary-600);
}
.nav-bar__actions {
  display: flex;
  gap: 12px;
}
.nav-bar__button {
  display: flex;
  height: 40px;
  padding: 0 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 1000px;
  cursor: pointer;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.14px;
}
.nav-bar__button--sign-in {
  background: var(--neutral-100);
  color: var(--neutral-900);
  text-decoration: none;
}
.nav-bar__button--register {
  background: var(--neutral-950);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .nav-bar__center {
    justify-content: end;
  }
  .nav-bar__menu {
    display: flex;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 16px;
    z-index: 3;
    padding: 24px;
    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease;
  }
  .nav-bar__menu.is-open {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-bar__item--mobile-only {
    display: block;
  }
  .nav-bar__actions {
    display: none;
  }
  .nav-bar__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  .nav-bar__toggle span {
    width: 24px;
    height: 2px;
    background: var(--neutral-900);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .nav-bar__toggle.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-bar__toggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .nav-bar__toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .nav-overlay {
    position: fixed;
    top: calc(56px + var(--nav-menu-height, 0px));
    left: 0;
    right: 0;
    height: calc(100vh - 56px - var(--nav-menu-height, 0px));
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 5;
  }
  .nav-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
  }
}
.cta-stack {
  position: relative;
  margin: 20px;
  border-radius: 32px;
  background: #fafafa;
  border: 1px solid #eee;
  padding-top: clamp(220px, 22vw, 320px);
  overflow: hidden;
}
@media (max-width: 768px) {
  .cta-stack {
    width: calc(100% - 32px);
    margin: 16px auto;
    padding-top: 0;
    overflow: visible;
  }
}

.how-it-works {
  padding: 0;
  background: transparent;
  border: 0;
  margin: 0;
  border-radius: 0;
  position: relative;
}
.how-it-works__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
  position: relative;
}
@media (max-width: 1200px) {
  .how-it-works__container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }
}
@media (max-width: 1200px) {
  .how-it-works__left {
    text-align: center;
  }
}
.how-it-works__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}
.how-it-works__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 1200px) {
  .how-it-works__icon {
    margin: 0 auto 16px;
    width: 64px;
    height: 64px;
  }
}
.how-it-works__title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  margin: 0 0 12px;
  color: #2d1f3f;
}
@media (max-width: 1200px) {
  .how-it-works__title {
    line-height: 36px;
  }
}
.how-it-works__subtitle {
  font-size: 16px;
  color: #7a6f8a;
  margin: 0;
}
@media (max-width: 1200px) {
  .how-it-works__subtitle {
    font-size: 14px;
  }
}
.how-it-works__right {
  background: var(--neutral-200);
  border-radius: 24px;
  padding: clamp(18px, 2vw, 40px) clamp(18px, 2.4vw, 48px) 140px clamp(18px, 2.4vw, 48px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transform: rotate(2deg);
  transform-origin: center;
  position: absolute;
  right: clamp(120px, 8vw, 180px);
  top: 40px;
  width: clamp(360px, 52vw, 500px);
}
.how-it-works__right .steps {
  list-style: none;
  padding: 0;
  margin: 0;
  transform: rotate(-2deg);
  transform-origin: center;
}
.how-it-works__right .steps .step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.how-it-works__right .steps .step:not(:last-child) {
  margin-bottom: 18px;
}
.how-it-works__right .steps .step img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: block;
}
.how-it-works__right .steps .step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #4a3f5f;
}
@media (max-width: 1200px) {
  .how-it-works__right {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    transform: none;
  }
  .how-it-works__right .steps {
    transform: none;
  }
  .how-it-works__right .steps .step p {
    font-size: 13px;
  }
}
@media (max-width: 1200px) {
  .how-it-works__right {
    padding: clamp(18px, 2vw, 40px) clamp(18px, 2.4vw, 48px);
  }
}

.how-it-works--overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: clamp(18px, 2.5vw, 40px);
  pointer-events: none;
}
.how-it-works--overlay .how-it-works__left,
.how-it-works--overlay .how-it-works__right {
  pointer-events: auto;
}
@media (max-width: 1200px) {
  .how-it-works--overlay {
    position: relative;
    top: 0;
    padding: 24px 0 16px;
  }
}

.footer {
  position: relative;
  z-index: 1;
  padding: clamp(180px, 18vw, 240px) 0 32px;
}
@media (max-width: 1200px) {
  .footer {
    padding: 16px 0 0;
  }
}
.footer__bg-secondary {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: clamp(24px, 3vw, 44px);
}
.footer__bg-secondary img {
  width: clamp(520px, 70vw, 920px);
  height: auto;
  object-fit: cover;
  border-radius: 32px;
  transform: rotate(2.7deg) scale(1.02);
  transform-origin: center;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.12));
  display: block;
}
@media (max-width: 1200px) {
  .footer__bg-secondary {
    position: relative;
    inset: auto;
    padding-top: 0;
    margin: 12px 20px 18px;
  }
  .footer__bg-secondary img {
    width: 100%;
    max-width: 100%;
    transform: none;
    border-radius: 20px;
  }
}
.footer__tutorial {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: max-content;
}
@media (min-width: 375px) {
  .footer__tutorial {
    top: clamp(110px, 10vw, 170px);
  }
}
@media (min-width: 768px) {
  .footer__tutorial {
    top: 28%;
  }
}
@media (min-width: 1024px) {
  .footer__tutorial {
    top: clamp(110px, 10vw, 170px);
  }
}
.footer__tutorial-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 10px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer__tutorial-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}
.footer__tutorial-thumb {
  position: relative;
  overflow: hidden;
  width: 56px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(34, 27, 37, 0.24);
}
.footer__tutorial-thumb img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.footer__tutorial-thumb img:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  pointer-events: none;
}
.footer__tutorial-text {
  font-size: 14px;
  color: var(--neutral-900);
  white-space: nowrap;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.14px;
}
.footer__bg {
  position: relative;
  z-index: 1;
  width: calc(100% - 48px);
  max-width: 1260px;
  margin: 0 auto;
  border-radius: 40px;
  overflow: hidden;
  background-image: url("/src/assets/new/images/footer-folder.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: clamp(96px, 10vw, 140px) 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  box-sizing: border-box;
}
.footer__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: grid;
  place-items: center;
  gap: 22px;
  width: min(720px, 100%);
  margin: 0;
}
.footer__title {
  margin: 0;
  color: #fff;
  font-weight: 800;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.15;
  max-width: 820px;
  word-break: break-word;
}
.footer__form {
  display: flex;
  justify-content: center;
  gap: 12px;
  width: min(680px, 100%);
  flex-wrap: wrap;
}
.footer__input {
  flex: 1 1 280px;
  width: 100%;
  min-width: 0;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
  outline: none;
  box-sizing: border-box;
}
.footer__input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}
.footer__button {
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  background: #fff;
  color: var(--primary-600);
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}
.footer__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.footer__socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer__social {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease;
}
.footer__social img {
  display: block;
  max-width: 100%;
  height: auto;
}
.footer__social:hover {
  transform: translateY(-2px);
}
.footer__separator {
  width: min(720px, 70%);
  height: 1px;
  background: rgba(69, 46, 81, 0.22);
  margin-top: 12px;
}
.footer__brand {
  display: flex;
  justify-content: center;
}
.footer__brand img {
  height: clamp(70px, 12vw, 200px);
  width: auto;
  display: block;
  max-width: 100%;
}
@media (max-width: 1200px) {
  .footer__bg {
    width: calc(100% - 32px);
    margin: 0 auto 20px;
    border-radius: 24px;
    background-image: none;
    background: linear-gradient(180deg, #c9a7ff 0%, #b892ff 45%, #a98bff 100%);
    padding: 44px 14px 22px;
    gap: 18px;
  }
  .footer__content {
    width: 100%;
    gap: 16px;
  }
  .footer__title {
    font-size: 26px;
    line-height: 1.18;
    padding: 0 6px;
  }
  .footer__form {
    width: 100%;
    gap: 12px;
  }
  .footer__input {
    width: 100%;
    min-width: 0;
    text-align: center;
  }
  .footer__button {
    width: 100%;
  }
  .footer__socials {
    gap: 14px;
  }
  .footer__social {
    width: 64px;
    height: 64px;
  }
  .footer__separator {
    width: 86%;
    margin-top: 10px;
  }
  .footer__brand img {
    height: 80px;
  }
}

@media (max-width: 1100px) {
  .footer__title {
    max-width: 760px;
  }
}
.tutorial-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 22px 10px 10px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tutorial-button:hover {
  transform: translateY(-2px);
}
.tutorial-button__thumb {
  position: relative;
  width: 55px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}
.tutorial-button__thumb img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tutorial-button__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  pointer-events: none;
}
.tutorial-button__text {
  white-space: nowrap;
}
.tutorial-button--light {
  background: rgba(255, 255, 255, 0.9);
  color: var(--neutral-900);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.tutorial-button--light:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}
.tutorial-button--dark {
  background: rgba(17, 17, 17, 0.8);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.tutorial-button--dark:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.video-modal.is-open {
  display: block;
}
.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
}
.video-modal__content {
  position: relative;
  z-index: 2;
  width: min(1200px, 92vw);
  margin: 5vh auto 0;
  background: #f2f2f2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.video-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  z-index: 3;
}
.video-modal__close:hover {
  background: rgba(0, 0, 0, 0.8);
}
.video-modal__player {
  position: relative;
  background: #000;
}
.video-modal__player video {
  width: 100%;
  height: auto;
  max-height: 70vh;
  display: block;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

@media (max-width: 768px) {
  .video-modal__content {
    margin-top: 8vh;
  }
  .video-modal__player video {
    max-height: 55vh;
  }
}
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  margin-bottom: 40px;
}
.hero--video {
  background: #000;
}
.hero__bg-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero__bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(180deg);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(192, 132, 252, 0.65) 60%, rgba(124, 58, 237, 0.6) 100%);
}
.hero__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
  max-width: 1440px;
  width: 100%;
  padding: 120px 24px 80px;
  text-align: center;
}
.hero__icon {
  position: relative;
  z-index: 1;
}
.hero__icon img {
  width: 76.829px;
  height: 63px;
  margin-bottom: 24px;
}
.hero__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-950);
  margin-bottom: 16px;
}
.hero__description {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 14px;
  color: var(--primary-900);
}
.hero__file-manager {
  width: 550px;
  padding: 10px;
  fill: rgba(255, 255, 255, 0.01);
  stroke-width: 1px;
  stroke: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(120px);
  border: 1px solid var(--primary-300);
  border-radius: 30px;
}
.hero__search {
  display: flex;
  max-width: 520px;
  margin: 0 auto 0;
  padding: 8px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.hero__search-input {
  flex: 1;
  border: none;
  padding: 12px 16px;
  outline: none;
}
.hero__search-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--primary-500);
  color: #fff;
  cursor: pointer;
}
.hero__cards {
  display: flex;
  justify-content: center;
  gap: 4px;
}
.hero__card {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero__card-icon {
  width: 24px;
  height: 24px;
  z-index: 2;
}
.hero__card-text {
  font-size: 14px;
  font-weight: 500;
  z-index: 2;
}
.hero__card--new-folder {
  background-image: url("/src/assets/new/images/hero-new-folder.png");
}
.hero__card--folder {
  background-image: url("/src/assets/new/images/hero-folder.png");
}
.hero__tutorial {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 2%;
  left: 2%;
}
.hero__tutorial-button {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 22px 10px 10px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero__tutorial-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}
.hero__tutorial-thumb {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  width: 55px;
  height: 40px;
  border-radius: 1000px;
  border: 1px solid rgba(34, 27, 37, 0.24);
}
.hero__tutorial-thumb img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__tutorial-thumb .hero__card-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  pointer-events: none;
}
.hero__tutorial-text {
  font-size: 14px;
  color: var(--neutral-900);
  white-space: nowrap;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.14px;
}

@media (max-width: 768px) {
  .hero__container {
    padding: 96px 16px 120px;
  }
  .hero__search {
    max-width: 300px;
    width: 100%;
    margin-bottom: 16px;
  }
  .hero__file-manager {
    width: 100%;
    max-width: 340px;
    padding: 12px;
  }
  .hero__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 12px;
  }
  .hero__card {
    width: 100%;
    height: 110px;
  }
  .hero__tutorial {
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
  }
}
.showcase {
  padding: 120px 0;
  background: #fff;
  overflow: hidden;
}
.showcase__card {
  position: absolute;
  width: 133px;
  height: 96px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.showcase__card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.showcase__card-icon {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.showcase__card--music {
  top: -12%;
  left: 50%;
  transform: translateX(-50%);
}
.showcase__card--image {
  top: 24%;
  right: 24%;
  transform: rotate(20deg);
}
.showcase__container {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.showcase__content {
  width: 100%;
  margin: 0 auto;
}
.showcase__title {
  color: #301c3b;
  text-align: center;
  font-size: 56px;
  font-weight: 800;
  line-height: 64px;
}
.showcase__desc {
  color: #523265;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.16px;
  margin-top: 20px;
}
.showcase__mockup {
  position: relative;
  z-index: 2;
  margin-top: 120px;
}
.showcase__mockup video {
  width: 920px;
  height: 614px;
}
.showcase__float {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}
.showcase__float--keyboard {
  top: 10%;
  left: 0;
}
.showcase__float--dog {
  top: 40%;
  left: -30%;
}
.showcase__float--vinyl {
  bottom: -10%;
  left: 0;
}
.showcase__float--circle {
  top: 50%;
  right: -10%;
}
.showcase__float--girls {
  top: -6%;
  right: -10%;
}
.showcase__float--logo {
  top: 34%;
  left: 20%;
}

@media (max-width: 768px) {
  .showcase {
    padding: 80px 0;
  }
  .showcase__container {
    padding: 0 16px;
  }
  .showcase__title {
    font-size: 32px;
    line-height: 40px;
  }
  .showcase__desc {
    font-size: 14px;
    line-height: 22px;
  }
  .showcase__card {
    transform: scale(0.7);
  }
  .showcase__card--music {
    top: -18%;
    left: 32%;
  }
  .showcase__card--image {
    top: 38%;
    right: 16%;
  }
  .showcase__float {
    transform: scale(0.6);
  }
  .showcase__float--keyboard, .showcase__float--girls, .showcase__float--dog {
    display: none;
  }
  .showcase__float--vinyl {
    bottom: -20%;
  }
  .showcase__float--circle {
    right: -30%;
  }
  .showcase__float--logo {
    left: 10%;
    top: 50%;
  }
  .showcase__mockup {
    margin-top: 64px;
  }
  .showcase__mockup video {
    width: 100%;
    max-width: 360px;
    height: auto;
  }
}
.features {
  padding: 10px 0;
  background: #fff;
}
.features__wrapper {
  display: grid;
  gap: 32px;
  padding: 40px 20px;
  justify-content: center;
}
.features__wrapper--top {
  grid-template-columns: 1fr;
}
.features__wrapper--bottom {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .features__wrapper--bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature {
  background: #fafafa;
  border: 1px solid #eaeaea;
  border-radius: 40px;
  overflow: hidden;
  padding: 40px;
  display: grid;
  gap: 48px;
  align-items: center;
}
.feature__container {
  max-width: 2000px;
}
.feature__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.feature__icon {
  width: 120px;
  height: 120px;
}
.feature__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.feature__title {
  max-width: 660px;
  font-size: 56px;
  font-weight: 800;
  line-height: 64px;
  color: #301c3b;
}
.feature__desc {
  font-size: 16px;
  color: #523265;
  max-width: 420px;
}
.feature__item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: #6b5c7a;
}
.feature__item img {
  width: 24px;
  height: 24px;
}
.feature__btn {
  width: fit-content;
  padding: 12px 20px;
  border-radius: 24px;
  border: none;
  background: #392046;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
}
.feature__btn:hover {
  opacity: 0.9;
}
.feature__media {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
  overflow: hidden;
  border-radius: 24px;
}
.feature__video {
  width: 100%;
  height: 100%;
}
.feature--split {
  grid-template-columns: 1fr 1fr;
}
.feature--split .feature__content {
  padding: 60px;
  padding-left: 100px;
}
.feature--reverse .feature__content {
  padding-left: 60px;
  padding-right: 100px;
}
.feature--reverse .feature__content {
  order: 2;
}
.feature--reverse .feature__media {
  order: 1;
}
.feature--stack {
  grid-template-columns: 1fr;
  gap: 32px;
}
.feature--stack .feature__content {
  padding: 40px;
  padding-bottom: 0;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.feature--stack .feature__title {
  width: 100%;
  max-width: 660px;
  font-size: 46px;
  line-height: 54px;
}
.feature--stack .feature__desc {
  font-size: 14px;
  max-width: 360px;
}

@media (max-width: 480px) {
  .feature__rive {
    height: 300px;
  }
}
@media (max-width: 1024px) {
  .features__wrapper {
    padding: 24px 16px;
    gap: 24px;
  }
  .features__wrapper--bottom {
    grid-template-columns: 1fr;
  }
  .feature {
    padding: 24px;
    border-radius: 24px;
    gap: 24px;
  }
  .feature__content {
    padding: 0 !important;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .feature__title {
    width: 100%;
    font-size: 28px;
    line-height: 36px;
  }
  .feature__desc {
    font-size: 14px;
    max-width: 320px;
  }
  .feature__item {
    justify-content: center;
    text-align: left;
  }
  .feature__btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  .feature--split {
    grid-template-columns: 1fr;
  }
  .feature--reverse .feature__content,
  .feature--reverse .feature__media {
    order: initial;
  }
  .feature--stack .feature__title {
    font-size: 26px;
    line-height: 34px;
  }
}

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