:root {
  --bg: #e7e0f5;
  --bg-soft: #f4effc;
  --text: #5c528f;
  --text-soft: #5c528e;
  --purple: #6b3fd1;
  --purple-dark: #5c528f;
  --purple-light: #a483d8;
  --accent: #d97757;
  --white: #ffffff;
  --border: rgba(74, 42, 147, 0.1);
  --shadow: 0 18px 40px rgba(74, 42, 147, 0.11);
}

@font-face {
  font-family: "AktivGrotesk Black";
  src: url(../fonts/AktivGrotesk-Black.otf) format("opentype");
}

@font-face {
  font-family: "AktivGrotesk Bold";
  src: url(../fonts/AktivGrotesk-Bold.otf) format("opentype");
}

@font-face {
  font-family: "AktivGrotesk Medium";
  src: url(../fonts/AktivGrotesk-Medium.otf) format("opentype");
}

@font-face {
  font-family: "AktivGrotesk Thin";
  src: url(../fonts/AktivGrotesk-Thin.otf) format("opentype");
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "AktivGrotesk Medium", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.container {
  max-width: 60rem;
  margin: 0 auto;
  padding: 0 20px;
}

.page {
  padding-bottom: 96px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(231, 224, 245, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.brand__icon {
  width: auto;
  height: 3rem;
  border-radius: 8px;
  display: grid;
  place-items: center;
  /* background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white);
  font-family: "AktivGrotesk Black", Arial, sans-serif;
  box-shadow: 0 4px 12px rgba(107, 63, 209, 0.35); */
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white);
  padding: 9px 16px;
  box-shadow: 0 6px 16px rgba(107, 63, 209, 0.32);
}

.btn--hero {
  display: block;
  margin: 26px auto 0;
  max-width: 380px;
  padding: 17px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(107, 63, 209, 0.36);
}

.btn--secondary {
  background: var(--white);
  color: var(--purple-dark);
  padding: 17px 24px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 999px;
  background: #d6c6f1;
  color: var(--purple-dark);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.01em;
  box-shadow: inset 0 0 0 1px rgba(74, 42, 147, 0.08);
}

.pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(217, 119, 87, 0.18);
}

.section {
  padding: 56px 0 8px;
}

.hero {
  padding-top: 44px;
  text-align: center;
}

.hero__title {
  font-family: "AktivGrotesk Black", Arial, sans-serif;
  font-size: clamp(32px, 5vw, 42px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 22px 0 0;
  color: var(--text);
}

.hero__title span {
  color: #a483d8;
}

.hero__copy {
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--text-soft);
  font-weight: 500;
  margin: 18px auto 0;
  max-width: 440px;
}

.hero__stats {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "AktivGrotesk thin", Arial, sans-serif;
  margin-top: 18px;
  background: var(--white);
  border-radius: 999px;
  padding: 9px 16px;
  box-shadow: 0 6px 20px rgba(74, 42, 147, 0.08);
}

.hero__stats strong {
  font-family: "AktviGrotesk Black", Arial, sans-serif;
  color: var(--accent);
  font-size: 15px;
}

.hero__media {
  position: relative;
  margin: 28px auto 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(74, 42, 147, 0.22);
  aspect-ratio: 16 / 10;
  background: #2a1e52;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 12, 45, 0.35), transparent 55%);
}

.hero__play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero__play::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid var(--purple);
  margin-left: 5px;
}

.hero__note {
  font-size: 12.5px;
  color: #8579a8;
  font-weight: 600;
  margin-top: 12px;
}

.panel {
  background: var(--white);
  border-radius: 22px;
  padding: 24px 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(74, 42, 147, 0.06);
}

.panel--dark {
  background: linear-gradient(160deg, var(--purple-dark), var(--purple));
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 22px 50px rgba(58, 34, 118, 0.28);
}

.panel--soft {
  background: var(--bg-soft);
  border: 1px solid rgba(74, 42, 147, 0.07);
}

.section-title {
  font-family: "AktivGrotesk Black", Arial, sans-serif;
  font-size: clamp(24px, 4.6vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
  text-align: center;
}

.section-title--light {
  color: var(--white);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7d6faa;
}

.section-label--light {
  color: #c7b2f2;
}

.section-label__bar {
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.layout-stack {
  display: flex;
  gap: 24px;
  margin-top: 30px;
}

.check-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-list__icon {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  margin-top: 1px;
}

.check-list__icon--light {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.check-list__icon--dark {
  background: #ece7f5;
  color: #a08fc4;
}

.check-list__text {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-soft);
  font-weight: 500;
}

.panel--dark .check-list__text {
  color: #f0eafb;
}

.card-fan {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  margin-top: 34px;
  height: 190px;
}

.card-fan__item {
  width: 96px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  background: #ede7f9;
  animation: floatCard 5s ease-in-out infinite;
}

.card-fan__item:nth-child(1) {
  --r: -18deg;
  margin-right: -34px;
  transform: rotate(-18deg) translateY(14px);
}
.card-fan__item:nth-child(2) {
  --r: -9deg;
  margin-right: -34px;
  transform: rotate(-9deg) translateY(4px);
  animation-delay: 0.4s;
}
.card-fan__item:nth-child(3) {
  width: 100px;
  z-index: 3;
  transform: translateY(-6px);
  animation-delay: 0.8s;
}
.card-fan__item:nth-child(4) {
  --r: 9deg;
  margin-left: -34px;
  transform: rotate(9deg) translateY(4px);
  animation-delay: 1.2s;
}
.card-fan__item:nth-child(5) {
  --r: 18deg;
  margin-left: -34px;
  transform: rotate(18deg) translateY(14px);
  background: var(--purple);
  animation-delay: 1.6s;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotate(var(--r));
  }
  50% {
    transform: translateY(-8px) rotate(var(--r));
  }
}

.roadmap {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 30px;
}

.roadmap__item {
  display: flex;
  flex-direction: column;

  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 22px;
  padding: 24px 22px;
  box-shadow: 0 10px 30px rgba(74, 42, 147, 0.07);
  border: 1px solid rgba(74, 42, 147, 0.05);
}

.roadmap__step {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white);
  font-family: "AktivGrotesk Black", Arial, sans-serif;
  font-size: 20px;
  box-shadow: 0 8px 18px rgba(107, 63, 209, 0.3);
}
.roadmap__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin: 2px 0 0;
  letter-spacing: -0.01em;
}
.roadmap__text {
  font-size: 14.5px;
  line-height: 1.58;
  color: var(--text-soft);
  font-weight: 500;
  margin: 8px 0 0;
}

.included-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.included-item {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--white);
  padding: 15px 16px;
  border-radius: 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
}
.included-item__icon {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: #e6dbfa;
  color: var(--purple);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 26px;
}
.testimonial {
  background: var(--white);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(74, 42, 147, 0.07);
}
.testimonial__stars {
  color: #e8b84b;
  font-size: 15px;
  letter-spacing: 2px;
}
.testimonial__quote {
  font-size: 15px;
  line-height: 1.6;
  color: #4a3f6b;
  font-weight: 500;
  margin: 12px 0 0;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.testimonial__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-light), var(--purple));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
}
.testimonial__name {
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
}
.testimonial__role {
  font-size: 12.5px;
  color: #8579a8;
  font-weight: 600;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
}
.faq__item {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(74, 42, 147, 0.06);
  overflow: hidden;
}
.faq__button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: "AktivGrotesk Medium", Arial, sans-serif;
}

.faq__question {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}
.faq__icon {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ede6fa;
  color: var(--purple);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
  transition: transform 0.2s ease;
}
.faq__answer {
  padding: 0 20px 20px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-soft);
  font-weight: 500;
  display: none;
}
.faq__item.open .faq__answer {
  display: block;
}
.faq__item.open .faq__icon {
  transform: rotate(45deg);
}

.cta {
  background: linear-gradient(160deg, var(--purple-dark), var(--purple));
  border-radius: 28px;
  padding: 40px 26px;
  text-align: center;
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 26px 60px rgba(58, 34, 118, 0.32);
  position: relative;
  overflow: hidden;
}
.cta::before,
.cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(158, 111, 236, 0.45),
    transparent 70%
  );
}
.cta::before {
  bottom: -50px;
  left: -40px;
  width: 180px;
  height: 180px;
}
.cta::after {
  top: -40px;
  right: -30px;
  width: 160px;
  height: 160px;
}
.cta__content {
  position: relative;
  z-index: 1;
}
.cta__image {
  width: 130px;
  height: 130px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.15);
}
.cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 24px;
  background: rgba(217, 119, 87, 0.18);
  color: #f0b49b;
  border: 1px solid rgba(217, 119, 87, 0.4);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.cta__tag span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.cta__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.cta__price-old {
  font-size: 15px;
  color: #c7b2f2;
  text-decoration: line-through;
  font-weight: 600;
}
.cta__price-new {
  font-family: "AktivGrotesk Black", Arial, sans-serif;
  font-size: 42px;
  color: var(--white);
}
.cta__note {
  font-size: 12.5px;
  color: #c7b2f2;
  font-weight: 600;
  margin-top: 14px;
}

.buy-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(74, 42, 147, 0.1);
  box-shadow: 0 -8px 30px rgba(74, 42, 147, 0.1);
}
.buy-bar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  max-width: 640px;
  margin: 0 auto;
}
.buy-bar__copy {
  flex: 1;
  min-width: 0;
}
.buy-bar__label {
  font-size: 12px;
  color: #8579a8;
  font-weight: 600;
}
.buy-bar__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.buy-bar__price strong {
  font-family: "AktivGrotesk Black", Arial, sans-serif;
  font-size: 20px;
  color: var(--text);
}
.buy-bar__price span {
  font-size: 12px;
  color: #a08fc4;
  text-decoration: line-through;
  font-weight: 600;
}

@media (max-width: 560px) {
  .topbar__inner {
    padding: 12px 20px;
  }
  .buy-bar__inner {
    padding: 12px 20px;
  }
  .hero__stats {
    flex-wrap: wrap;
    justify-content: center;
  }
  .roadmap__item {
    flex-direction: column;
  }
}
