:root {
  --primary: #4b4de4;
  --primary-deep: #4341d6;
  --primary-dark: #3435b8;
  --ink: #17163d;
  --body: #4b4a68;
  --black: #060609;
  --dusk: #45479f;
  --dusk-dim: #3b3d8f;
  --dusk-line: #2e2f7a;
  --lav-bg: #edecfb;
  --lav-line: #e2e1f5;
  --footer-bg: #14124f;
  --footer-text: #c9caee;
  --slate: #7fa0b8;
  --white: #ffffff;
  --mint-a: #dcf3e4;
  --sun-a: #f7e6a2;
  --lav-a: #e6e4fa;
  --ff-display: "Comfortaa", "Trebuchet MS", sans-serif;
  --ff-body: "Roboto", "Segoe UI", Arial, sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-card: 0 18px 44px rgba(23, 22, 61, 0.1);
  --shadow-soft: 0 10px 28px rgba(75, 77, 228, 0.16);
  --ease: cubic-bezier(0.33, 1, 0.68, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.22;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}

.center {
  text-align: center;
}

.eyebrow {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow--blue {
  color: var(--primary);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.85);
}

.h2 {
  font-size: clamp(28px, 4.4vw, 42px);
  color: var(--ink);
}

.h2-light {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4.4vw, 42px);
  color: var(--white);
}

.h2-dark {
  font-size: clamp(28px, 4.6vw, 44px);
  background: linear-gradient(100deg, #6466f5 0%, #3e40b4 55%, #33348f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.p-dark {
  color: var(--dusk-dim);
  max-width: 640px;
}

.section-dark {
  background-color: var(--black);
  color: var(--dusk);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 15px 26px;
  border-radius: 6px;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.btn__arrow {
  width: 24px;
  height: 10px;
  flex: none;
  transition: transform 0.3s var(--ease);
}

.btn:hover .btn__arrow {
  transform: translateX(5px);
}

.btn--solid {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn--solid:hover {
  background: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(75, 77, 228, 0.28);
}

.btn--line-light {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
  background: transparent;
}

.btn--line-light:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.btn--line-ink {
  border-color: rgba(75, 77, 228, 0.5);
  color: var(--ink);
  background: transparent;
}

.btn--line-ink:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn--line-dim {
  border-color: rgba(90, 92, 240, 0.55);
  color: #6d6ff2;
  background: transparent;
}

.btn--line-dim:hover {
  background: rgba(90, 92, 240, 0.12);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 13px 22px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(248, 248, 253, 0.92);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 30px rgba(23, 22, 61, 0.08);
}

.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
}

.logo__mark {
  width: 34px;
  height: 34px;
  flex: none;
}

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

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

.nav__list li {
  display: flex;
  align-items: center;
}

.nav__list li + li::before {
  content: "|";
  color: #d6d5ef;
  margin: 0 16px;
  font-size: 12px;
}

.nav__link {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 0;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav__link:hover::after,
.nav__link--active::after {
  transform: scaleX(1);
}

.nav__link--active {
  color: var(--primary);
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 26px;
}

.header__mail {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.header__mail:hover {
  color: var(--primary-dark);
}

.burger {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--lav-line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.burger span {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}

.burger span:first-child {
  top: 17px;
}

.burger span:last-child {
  top: 25px;
}

.burger--open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.burger--open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfbff 0%, #f3f2fc 55%, #e6e4f8 100%);
  padding: 56px 0 90px;
}

.hero__blob {
  position: absolute;
  top: -240px;
  left: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 77, 228, 0.14), rgba(75, 77, 228, 0));
  animation: drift 14s ease-in-out infinite alternate;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(60px, 40px, 0);
  }
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.hero__title {
  font-size: clamp(32px, 5vw, 50px);
  color: var(--ink);
  max-width: 520px;
}

.hero__lead {
  margin-top: 26px;
  max-width: 480px;
  font-size: 14.5px;
  color: var(--body);
}

.hero__tag {
  margin-top: 34px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 23px);
  color: var(--primary);
}

.hero__actions {
  margin-top: 54px;
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.play {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--ink);
}

.play__ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(23, 22, 61, 0.4);
  border-radius: 50%;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.play__ring svg {
  width: 12px;
  height: 14px;
  margin-left: 2px;
}

.play:hover .play__ring {
  transform: scale(1.08);
  border-color: var(--primary);
  color: var(--primary);
}

.play__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stage {
  position: relative;
  min-height: 640px;
}

.stage__circle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-42%);
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: linear-gradient(160deg, #4d49e6, #3f3ecf);
  animation: drift 16s ease-in-out infinite alternate-reverse;
}

.user-card {
  position: absolute;
  top: 78px;
  left: 0;
  width: 300px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), opacity 0.5s var(--ease);
}

.user-card:hover {
  transform: translateY(-4px);
}

.user-card__avatar {
  flex: none;
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: #d9d8fb;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.user-card__avatar svg {
  width: 30px;
  height: 30px;
}

.user-card__name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--primary-dark);
}

.user-card__meta {
  margin-top: 4px;
  font-size: 12.5px;
  color: #8b8aa6;
  line-height: 1.5;
}

.user-card__actions {
  margin-top: 12px;
  display: flex;
  gap: 18px;
}

.user-card__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: #6b6a88;
}

.user-card__action svg {
  width: 13px;
  height: 13px;
  color: var(--primary);
}

.stage__img {
  position: absolute;
  right: 24px;
  bottom: 46px;
  width: 380px;
  height: 396px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 26px 54px rgba(23, 22, 61, 0.22);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.stage__next {
  position: absolute;
  right: 44px;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}

.stage__next .btn__arrow {
  color: var(--primary);
}

.stage__next:hover .btn__arrow {
  transform: translateX(5px);
}

.journey {
  position: relative;
  padding: 110px 0 130px;
  background-image: radial-gradient(600px 380px at 88% 4%, rgba(60, 62, 190, 0.2), transparent 70%), radial-gradient(1.4px 1.4px at 82% 10%, rgba(120, 122, 255, 0.5), transparent 100%), radial-gradient(1.4px 1.4px at 90% 22%, rgba(120, 122, 255, 0.4), transparent 100%), radial-gradient(1.4px 1.4px at 72% 6%, rgba(120, 122, 255, 0.35), transparent 100%), radial-gradient(1.4px 1.4px at 96% 14%, rgba(120, 122, 255, 0.45), transparent 100%);
  background-repeat: no-repeat;
}

.journey__head {
  max-width: 700px;
}

.journey__head .p-dark {
  margin-top: 22px;
}

.journey__grid {
  margin-top: 84px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.journey__list {
  display: grid;
  gap: 56px;
  max-width: 380px;
}

.j-item {
  position: relative;
}

.j-item__head {
  display: flex;
  align-items: center;
  gap: 24px;
}

.j-item__icon {
  flex: none;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: linear-gradient(150deg, #4548e0, #3536b6);
  color: #cdcdff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px rgba(60, 62, 200, 0.35);
}

.j-item__icon svg {
  width: 28px;
  height: 28px;
}

.j-item__title {
  font-size: 21px;
  color: #5658d8;
}

.j-item__text {
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--dusk-dim);
}

.j-item__text + .j-item__text {
  margin-top: 14px;
}

.j-item__connector {
  display: none;
  position: absolute;
  top: 33px;
  left: calc(100% + 40px);
  width: 220px;
  color: var(--primary);
}

.journey__art {
  position: relative;
  min-height: 340px;
}

.journey__paper {
  position: absolute;
  inset: 0 12% 6% 0;
  background: var(--white);
  border-radius: 6px;
}

.journey__slab {
  position: absolute;
  inset: 3% 0 0 48%;
  background: var(--primary);
  border-radius: 6px;
}

.journey__art img {
  position: absolute;
  inset: 9% 7% 12% 6.5%;
  width: 86.5%;
  height: 79%;
  object-fit: cover;
  border-radius: 4px;
}

.formats {
  background: var(--white);
  padding: 120px 0 130px;
}

.formats .h2 {
  margin-top: 14px;
}

.formats__grid {
  margin-top: 66px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.f-card {
  position: relative;
  border-radius: 10px;
  border: 1px solid var(--lav-line);
  padding: 30px 28px 34px;
  background: var(--white);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), opacity 0.5s var(--ease);
}

.f-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.f-card--active {
  border-color: rgba(75, 77, 228, 0.55);
  box-shadow: 0 16px 36px rgba(75, 77, 228, 0.12);
}

.f-card--lav {
  background: linear-gradient(140deg, var(--lav-a) 0%, #ffffff 78%);
  border-color: #dddbf4;
}

.f-card--mint {
  background: linear-gradient(140deg, var(--mint-a) 0%, #ffffff 78%);
  border-color: #d5ecdd;
}

.f-card--sun {
  background: linear-gradient(140deg, var(--sun-a) 0%, #fffef4 78%);
  border-color: #efe0a4;
}

.f-card__head {
  display: flex;
  align-items: center;
  gap: 18px;
}

.f-card__icon {
  flex: none;
  width: 46px;
  height: 46px;
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.f-card__icon svg {
  width: 40px;
  height: 40px;
}

.f-card__title {
  font-size: 19px;
  color: var(--ink);
}

.f-card__text {
  margin-top: 18px;
  font-size: 13px;
  color: #4f4e70;
  max-width: 260px;
}

.f-card--active .f-card__text {
  margin-left: 64px;
  margin-top: 14px;
}

.f-card__tab {
  position: absolute;
  left: -1px;
  bottom: -14px;
  width: 58px;
  height: 58px;
  border-radius: 8px 8px 8px 0;
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.f-card__tab svg {
  width: 15px;
  height: 15px;
}

.panel {
  margin-top: 96px;
  background: var(--primary);
  border-radius: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  overflow: visible;
}

.panel__body {
  padding: 56px 40px 60px;
  color: var(--white);
}

.panel__title {
  font-size: clamp(26px, 3vw, 33px);
  max-width: 300px;
}

.panel__text {
  margin-top: 26px;
  font-size: 13.5px;
  color: #e4e4ff;
  max-width: 320px;
}

.panel__feature {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.panel__feature-icon {
  flex: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.panel__feature-icon svg {
  width: 26px;
  height: 26px;
}

.panel__feature-text {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.4;
}

.panel .btn--line-light {
  margin-top: 44px;
}

.panel__media {
  position: relative;
  min-height: 320px;
  padding: 18px 0;
}

.panel__media img {
  width: 92%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 4px;
}

.play-badge {
  position: absolute;
  top: 50%;
  left: 42%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(23, 22, 61, 0.3);
}

.play-badge svg {
  width: 16px;
  height: 18px;
  margin-left: 3px;
}

.play-badge--sm {
  width: 62px;
  height: 62px;
}

.play-badge--sm svg {
  width: 12px;
  height: 14px;
}

.panel__paper {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-44%);
  width: 150px;
  height: 78%;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 20px 48px rgba(23, 22, 61, 0.28);
  display: none;
}

.how {
  padding: 130px 0 140px;
}

.how__lead {
  margin: 20px auto 0;
}

.how .h2-dark {
  margin-top: 14px;
}

.how__cta {
  margin-top: 44px;
  text-align: center;
}

.how__grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.plan-card {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 36px 32px 40px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), opacity 0.5s var(--ease);
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(60, 62, 200, 0.28);
}

.plan-card__label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.plan-card__num {
  margin-top: 46px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.plan-card__pre {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.plan-card__text {
  margin-top: 22px;
  min-height: 88px;
  font-size: 13px;
  color: var(--body);
}

.plan-card .btn {
  margin-top: 26px;
}

.plan-card--ghost {
  background: rgba(9, 9, 22, 0.5);
  border-color: rgba(90, 92, 240, 0.6);
}

.plan-card--ghost:hover {
  box-shadow: 0 24px 52px rgba(60, 62, 200, 0.2);
}

.plan-card--ghost .plan-card__label,
.plan-card--ghost .plan-card__pre {
  color: #6d6ff2;
}

.plan-card--ghost .plan-card__num {
  color: #5254cc;
}

.plan-card--ghost .plan-card__text {
  color: var(--dusk-dim);
}

.reviews {
  padding: 60px 0 150px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.reviews__intro .h2-dark {
  max-width: 480px;
}

.pager {
  margin-top: 56px;
  display: flex;
  gap: 24px;
}

.pager__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--dusk-line);
  color: #5658d8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.pager__btn svg {
  width: 24px;
  height: 10px;
}

.pager__btn--active {
  border-color: #5658d8;
}

.pager--light .pager__btn {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.reviews__more {
  margin-top: 64px;
}

.reviews__cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.rev-video {
  border-radius: 10px;
  overflow: hidden;
  background: var(--primary-deep);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), opacity 0.5s var(--ease);
}

.rev-video:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(60, 62, 200, 0.3);
}

.rev-video__media {
  position: relative;
  overflow: hidden;
}

.rev-video__media img {
  width: 100%;
  height: 216px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.rev-video:hover .rev-video__media img {
  transform: scale(1.05);
}

.rev-video__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 22, 61, 0) 40%, rgba(23, 22, 61, 0.5) 100%);
}

.rev-video__play {
  position: absolute;
  left: 20px;
  bottom: 22px;
  z-index: 1;
  color: var(--white);
}

.rev-video__play svg {
  width: 24px;
  height: 28px;
}

.rev-video__who {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  text-align: right;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  line-height: 1.3;
}

.rev-video__who span {
  display: block;
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 12px;
  color: #e2e2f8;
}

.rev-video__quote {
  padding: 18px 22px 22px;
  font-size: 13px;
  color: #eaeaff;
}

.rev-person {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 28px 32px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), opacity 0.5s var(--ease);
}

.rev-person:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(60, 62, 200, 0.25);
}

.rev-person__head {
  display: flex;
  align-items: center;
  gap: 18px;
}

.rev-person__avatar {
  flex: none;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--slate);
}

.rev-person__who {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 21px;
  color: #4b4de4;
  line-height: 1.25;
}

.rev-person__who span {
  display: block;
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 12.5px;
  color: #6b6a88;
}

.rev-person__text {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.75;
  color: #3f3ec0;
}

.tools {
  position: relative;
  background: var(--primary);
  padding: 110px 0 0;
}

.tools__head {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.tools__lead {
  font-size: 13.5px;
  color: #e6e6ff;
  max-width: 420px;
}

.tools__all {
  margin-top: 40px;
}

.tools__grid {
  margin-top: 60px;
  margin-bottom: -230px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  position: relative;
  z-index: 2;
}

.tool-card {
  background: linear-gradient(180deg, #ffffff 0%, #f4f3fd 100%);
  border-radius: 10px;
  padding: 18px 18px 40px;
  text-align: center;
  box-shadow: 0 24px 54px rgba(10, 10, 30, 0.28);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), opacity 0.5s var(--ease);
}

.tool-card:hover {
  transform: translateY(-8px);
}

.tool-card__media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.tool-card__media img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.tool-card:hover .tool-card__media img {
  transform: scale(1.05);
}

.tool-card__media .play-badge {
  left: 50%;
}

.tool-card__title {
  margin-top: 34px;
  font-size: 24px;
  color: var(--ink);
}

.tool-card__text {
  margin: 16px auto 0;
  max-width: 340px;
  font-size: 13px;
  color: var(--body);
}

.tool-card .btn {
  margin-top: 28px;
}

.news {
  padding: 320px 0 130px;
}

.news__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.news__head .h2-dark {
  margin-top: 10px;
}

.news__head .pager {
  margin-top: 0;
}

.news__grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 60px;
}

.news-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.news-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}

.news-item__date {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: #4547b0;
}

.news-item__title {
  margin-top: 16px;
  font-size: 22px;
  line-height: 1.4;
  color: #5658d8;
}

.news-item__text {
  margin-top: 18px;
  font-size: 13px;
  color: var(--dusk-dim);
}

.news-item__more {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5658d8;
}

.news-item__more:hover .btn__arrow {
  transform: translateX(5px);
}

.cta {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  padding: 90px 0 100px;
}

.cta__shape {
  position: absolute;
  color: rgba(255, 255, 255, 0.22);
}

.cta__shape--left {
  left: 14%;
  bottom: -24px;
  width: 120px;
}

.cta__shape--right {
  right: 12%;
  top: 54px;
  width: 74px;
}

.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
}

.cta__text {
  margin: 22px auto 0;
  max-width: 640px;
  font-size: 13.5px;
  color: #e6e6ff;
}

.cta__form {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 22px;
  flex-wrap: wrap;
}

.cta__input {
  width: min(380px, 100%);
  padding: 15px 20px;
  border: none;
  border-radius: 6px;
  background: #f6f6fd;
  font-family: var(--ff-body);
  font-size: 13.5px;
  color: var(--ink);
}

.cta__input::placeholder {
  color: #8f8ea8;
}

.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 100px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
}

.footer__about {
  margin-top: 26px;
  max-width: 300px;
  font-size: 13.5px;
  color: #b9bae5;
}

.footer__social {
  margin-top: 28px;
  display: flex;
  gap: 14px;
}

.footer__soc {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 202, 238, 0.45);
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #dcdcf6;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.footer__soc svg {
  width: 19px;
  height: 19px;
}

.footer__soc:hover {
  transform: translateY(-3px);
  border-color: #8a8cf5;
  color: var(--white);
}

.footer__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 20px;
  color: #8a8cf5;
}

.footer__col ul {
  margin-top: 26px;
  display: grid;
  gap: 15px;
  font-size: 14px;
}

.footer__col a {
  position: relative;
  transition: color 0.25s var(--ease);
}

.footer__col a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.footer__col a:hover {
  color: var(--white);
}

.footer__col a:hover::after {
  transform: scaleX(1);
}

.footer__bottom {
  margin-top: 76px;
  border-top: 1px solid rgba(201, 202, 238, 0.25);
  padding: 26px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--ff-display);
  font-size: 13px;
}

.footer__bottom-links {
  display: flex;
  gap: 34px;
}

.footer__bottom-links a:hover {
  color: var(--white);
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 100;
  background: transparent;
}

.progress__bar {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #4b4de4, #8a8cf5);
  transform: scaleX(0);
  transform-origin: left;
}

.legal {
  background: linear-gradient(180deg, #fbfbff 0%, #f2f1fb 320px, #ffffff 700px);
  padding: 70px 0 120px;
}

.legal__container {
  max-width: 880px;
}

.legal__title {
  margin-top: 14px;
  font-size: clamp(32px, 4.6vw, 46px);
  color: var(--ink);
}

.legal__updated {
  margin-top: 16px;
  font-size: 13px;
  color: #8b8aa6;
}

.toc {
  margin-top: 48px;
  background: var(--white);
  border: 1px solid var(--lav-line);
  border-radius: var(--radius-lg);
  padding: 30px 34px 34px;
  box-shadow: 0 14px 34px rgba(23, 22, 61, 0.06);
}

.toc__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}

.toc__list {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  counter-reset: toc;
}

.toc__list li {
  counter-increment: toc;
  font-size: 14px;
}

.toc__list a {
  display: inline-flex;
  gap: 10px;
  color: var(--body);
  transition: color 0.25s var(--ease);
}

.toc__list a::before {
  content: counter(toc, decimal-leading-zero);
  font-weight: 600;
  color: var(--primary);
}

.toc__list a:hover {
  color: var(--primary);
}

.legal__body {
  margin-top: 30px;
}

.legal__section {
  padding: 36px 0 6px;
  scroll-margin-top: 110px;
}

.legal__section + .legal__section {
  border-top: 1px solid var(--lav-line);
  margin-top: 30px;
}

.legal__section h2 {
  font-size: 23px;
  color: var(--ink);
}

.legal__section p {
  margin-top: 18px;
  font-size: 15px;
  color: var(--body);
}

.legal__section ul {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  padding-left: 22px;
  list-style: disc;
  font-size: 15px;
  color: var(--body);
}

.legal__section a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal__section strong {
  color: var(--ink);
  font-weight: 600;
}

.js .rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  transition-delay: var(--d, 0s);
}

.js .rv--in {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .container {
    padding: 0 32px;
  }
  .formats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .how__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .reviews__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .toc__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .news-item {
    grid-template-columns: 300px minmax(0, 1fr);
  }
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 40px;
  }
  .journey__grid {
    grid-template-columns: 380px minmax(0, 1fr);
  }
  .journey__art {
    min-height: 480px;
  }
  .tools__head {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) auto;
  }
  .tools__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer__grid {
    grid-template-columns: 1.3fr repeat(4, minmax(0, 1fr));
    gap: 32px;
  }
  .panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  }
  .panel__body {
    padding: 70px 20px 70px 60px;
  }
  .panel__media {
    min-height: 480px;
  }
  .panel__paper {
    display: block;
  }
  .reviews__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  }
}

@media (min-width: 1100px) {
  .formats__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .how__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .news__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .j-item:nth-child(2) .j-item__connector {
    display: block;
  }
}

@media (max-width: 1099px) {
  .nav__list li + li::before {
    margin: 0 10px;
  }
}

@media (max-width: 959px) {
  .nav {
    position: fixed;
    inset: 80px 0 auto 0;
    z-index: 55;
    background: var(--white);
    box-shadow: 0 24px 48px rgba(23, 22, 61, 0.14);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), visibility 0.3s;
  }
  .nav--open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    padding: 18px 24px 26px;
    gap: 4px;
  }
  .nav__list li + li::before {
    display: none;
  }
  .nav__link {
    display: block;
    padding: 12px 4px;
    font-size: 13px;
  }
  .header__cta .btn {
    display: none;
  }
  .header__mail {
    display: none;
  }
  .burger {
    display: inline-flex;
  }
  .stage {
    min-height: 0;
    display: grid;
    gap: 22px;
    justify-items: center;
    padding-top: 30px;
  }
  .stage__circle {
    display: none;
  }
  .user-card,
  .stage__img {
    position: static;
    width: min(340px, 100%);
  }
  .stage__img {
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .stage__next {
    position: static;
    margin-top: 6px;
  }
  .journey__art img {
    inset: 9% 7% 12% 6.5%;
    height: 79%;
  }
  .tools__grid {
    margin-bottom: -140px;
  }
  .news {
    padding-top: 230px;
  }
}

@media (max-width: 639px) {
  .hero {
    padding: 40px 0 70px;
  }
  .hero__actions {
    gap: 22px;
  }
  .journey {
    padding: 80px 0 90px;
  }
  .formats {
    padding: 84px 0 96px;
  }
  .panel {
    margin-top: 70px;
  }
  .panel__media img {
    width: 100%;
  }
  .play-badge {
    left: 50%;
  }
  .how {
    padding: 90px 0 100px;
  }
  .reviews {
    padding-bottom: 100px;
  }
  .tools {
    padding-top: 84px;
  }
  .news {
    padding-bottom: 90px;
  }
  .cta {
    padding: 70px 0 80px;
  }
  .cta__shape--left {
    left: -30px;
  }
  .cta__shape--right {
    right: -16px;
  }
  .footer {
    padding-top: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .rv {
    opacity: 1;
    transform: none;
  }
}
