@font-face {
  font-family: 'TT Hoves';
  src: url('/landing/assets/fonts/TTHoves-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TT Hoves';
  src: url('/landing/assets/fonts/TTHoves-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TT Hoves';
  src: url('/landing/assets/fonts/TTHoves-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;

  --screen: #0e1319;
  --accent: #8566ff;
  --accent-deep: #6c5ce7;
  --text-primary: #f5f5f7;
  --text-secondary: #9ca3af;
  --glass-fill: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.2);
  --container: 1120px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'TT Hoves', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: var(--text-primary);
  background: var(--screen);
  overflow-x: clip;
}

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

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

p {
  margin: 0;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  --glow-x-1: -4%;
  --glow-y-1: 18%;
  --glow-x-2: 2%;
  --glow-y-2: 22%;
  --glow-opacity: 1;
  --glow-scale: 1;
  --glow-origin-x: 0%;
  --glow-origin-y: 50%;
}

.page-glow::before {
  content: '';
  position: absolute;
  inset: -12%;
  opacity: var(--glow-opacity);
  transform: scale(var(--glow-scale));
  transform-origin: var(--glow-origin-x) var(--glow-origin-y);
  background:
    radial-gradient(
      ellipse 88% 72% at var(--glow-x-1) var(--glow-y-1),
      rgba(133, 102, 255, 0.52) 0%,
      rgba(133, 102, 255, 0.22) 34%,
      transparent 68%
    ),
    radial-gradient(
      ellipse 48% 40% at var(--glow-x-2) var(--glow-y-2),
      rgba(108, 92, 231, 0.38) 0%,
      transparent 62%
    );
  will-change: transform, opacity;
}

.site-header {
  position: relative;
  z-index: 10;
  padding: 20px 0;
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.site-nav__link {
  font-size: 15px;
  line-height: 1.2;
  color: rgba(245, 245, 247, 0.72);
  transition: color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link--active {
  color: var(--text-primary);
}

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

.site-nav__dropdown {
  position: relative;
}

.site-nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.site-nav__chevron {
  font-size: 11px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.site-nav__dropdown.is-open .site-nav__chevron {
  transform: rotate(180deg);
}

.site-nav__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 40;
  min-width: 188px;
  padding: 8px;
  border-radius: 14px;
  background: rgba(22, 28, 36, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(-50%, 6px, 0);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.site-nav__dropdown.is-open .site-nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(-50%, 0, 0);
  pointer-events: auto;
}

.site-nav__menu-link {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.3;
  color: rgba(245, 245, 247, 0.82);
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav__menu-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 400;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

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

.btn--accent {
  color: #fff;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent));
  box-shadow: 0 10px 28px rgba(133, 102, 255, 0.28);
}

.btn--muted {
  color: rgba(245, 245, 247, 0.88);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.btn--muted:hover {
  background: rgba(255, 255, 255, 0.11);
}

.btn--sm {
  min-width: 118px;
  height: 42px;
  padding: 0 22px;
  font-size: 15px;
}

.site-header__cta {
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.site-header__cta--hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  pointer-events: none;
}

.landing-floating-actions {
  position: fixed;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 9px;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 14px, 0);
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease,
    box-shadow 0.28s ease;
}

.landing-floating-actions.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.landing-floating-actions .btn {
  min-width: 132px;
  height: 46px;
  padding: 0 24px;
  font-size: 15px;
}

.landing-floating-actions .landing-floating-cta {
  box-shadow: 0 12px 32px rgba(133, 102, 255, 0.34);
}

.landing-floating-actions .landing-floating-login {
  min-width: 104px;
}

@media (min-width: 769px) {
  .landing-floating-actions {
    right: 28px;
    bottom: 28px;
  }
}

@media (max-width: 768px) {
  .landing-floating-actions {
    left: 50%;
    right: auto;
    bottom: max(20px, env(safe-area-inset-bottom, 0px));
    transform: translate3d(-50%, 14px, 0);
  }

  .landing-floating-actions.is-visible {
    transform: translate3d(-50%, 0, 0);
  }

  .landing-floating-actions--with-login {
    width: min(calc(100% - 32px), 390px);
  }

  .landing-floating-actions--with-login .btn {
    flex: 1;
    min-width: 0;
    padding-inline: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header__cta,
  .landing-floating-actions {
    transition: none;
  }

  .landing-floating-actions {
    transform: none;
  }

  .landing-floating-actions.is-visible {
    transform: none;
  }

  @media (max-width: 768px) {
    .landing-floating-actions,
    .landing-floating-actions.is-visible {
      transform: translateX(-50%);
    }
  }
}

.hero {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}

.hero__copy {
  text-align: center;
  padding-top: 28px;
}

.hero__title {
  margin: 0;
  max-width: 820px;
  margin-inline: auto;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  margin: 18px auto 0;
  max-width: 620px;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.45;
  color: var(--text-primary);
}

.hero-stage {
  position: relative;
  margin-top: 44px;
  min-height: 620px;
  overflow: visible;
}

.hero-stage__cards {
  position: absolute;
  left: 50%;
  top: 0;
  width: min(1320px, calc(100vw - 24px));
  height: 100%;
  transform: translateX(-50%);
  pointer-events: none;
}

.task-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 248px;
  max-width: 300px;
  padding: 12px 14px;
  border-radius: 18px;
  background: var(--glass-fill);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  animation: card-float 7s ease-in-out infinite;
}

.task-card--tl {
  top: 8%;
  left: 6%;
  animation-delay: 0s;
}

.task-card--bl {
  bottom: 30%;
  left: -4%;
  animation-delay: -2.2s;
}

.task-card--tr {
  top: 10%;
  right: 3%;
  animation-delay: -1.1s;
}

.task-card--br {
  bottom: 26%;
  right: -2%;
  animation-delay: -3.4s;
}

.task-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.task-card__body {
  flex: 1;
  min-width: 0;
}

.task-card__title {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.task-card__status {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.2;
  color: var(--text-secondary);
}

.task-card__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.task-card__status--active .task-card__dot {
  background: var(--accent);
  box-shadow: 0 0 10px rgba(133, 102, 255, 0.65);
}

.task-card__status--done .task-card__dot {
  background: rgba(156, 163, 175, 0.85);
}

.task-card__chevron {
  flex-shrink: 0;
  color: rgba(245, 245, 247, 0.42);
}

.hero-mockup {
  position: relative;
  z-index: 2;
  width: min(367px, 78vw);
  margin: 0 auto;
}

.hero-mockup__frame {
  position: relative;
  max-height: 520px;
  overflow: hidden;
}

.hero-mockup__device {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.hero-mockup__screen {
  position: absolute;
  left: 7.2%;
  right: 7.2%;
  top: 14%;
  bottom: 34%;
  display: flex;
  align-items: flex-end;
  padding: 0 10px 12px;
  pointer-events: none;
  z-index: 1;
}

.hero-chat {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-chat__bubble {
  max-width: 82%;
  padding: 9px 13px;
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-chat__bubble.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-chat__bubble--user {
  align-self: flex-end;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  border-bottom-right-radius: 6px;
}

.hero-chat__bubble--concierge {
  align-self: flex-start;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-left-radius: 6px;
}

.hero-mockup__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52%;
  background: linear-gradient(
    to bottom,
    rgba(14, 19, 25, 0) 0%,
    rgba(14, 19, 25, 0.55) 42%,
    var(--screen) 88%
  );
  pointer-events: none;
}

.store-buttons {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% + 40px);
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.store-btn:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.store-btn__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain;
}

.store-btn--apple {
  color: #111;
  background: #fff;
}

.store-btn--play {
  color: var(--text-primary);
  background: var(--glass-fill);
  border-color: var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.store-btn__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.store-btn__label {
  font-size: 10px;
  opacity: 0.72;
}

.store-btn__name {
  font-size: 14px;
  font-weight: 400;
}

@keyframes card-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1080px) {
  .site-header__inner {
    grid-template-columns: auto 1fr;
    gap: 16px;
  }

  .site-nav {
    display: none;
  }

  .site-header__actions {
    justify-self: end;
  }

  .task-card--tl {
    left: 5%;
  }

  .task-card--tr {
    right: 0;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .site-header__inner {
    gap: 10px;
  }

  .site-header__actions {
    gap: 6px;
  }

  .site-header__actions .btn--sm {
    min-width: 0;
    height: 40px;
    font-size: 14px;
  }

  .hero-stage__cards {
    display: none;
  }

  .hero-mockup__frame {
    max-height: 450px;
  }

  .hero-mockup__screen {
    bottom: 26%;
  }

  .store-buttons {
    bottom: 10px;
  }
}

@media (max-width: 760px) {
  .hero__copy {
    padding-top: 28px;
  }

  .hero-stage {
    margin-top: 28px;
    min-height: 540px;
  }

  .task-card {
    min-width: 210px;
    padding: 10px 12px;
  }

  .task-card--tl {
    top: 2%;
    left: 2%;
  }

  .task-card--tr {
    top: 4%;
    right: -4%;
  }

  .task-card--bl {
    bottom: 34%;
    left: -10%;
  }

  .task-card--br {
    bottom: 30%;
    right: -8%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .task-card {
    animation: none;
  }

  .hero-chat__bubble {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .services-marquee__track {
    animation: none;
  }
}

/* --- Services --- */

.services {
  position: relative;
  z-index: 1;
  padding: 88px 0 96px;
}

.services__header {
  text-align: center;
}

.services__title {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.services__title-line {
  display: block;
}

.services__strike {
  text-decoration: line-through;
  text-decoration-color: rgba(245, 245, 247, 0.55);
  text-decoration-thickness: 2px;
}

.services__accent {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.services__subtitle {
  margin: 18px auto 0;
  max-width: 560px;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.5;
  color: var(--text-secondary);
}

.services-marquee {
  margin-top: 44px;
  overflow: hidden;
  width: 100%;
}

.services-marquee__track {
  display: flex;
  width: max-content;
  animation: services-marquee 42s linear infinite;
}

.services-marquee__group {
  display: flex;
  gap: 16px;
  padding-right: 16px;
}

.service-card {
  flex: 0 0 260px;
  width: 260px;
  min-height: 196px;
  padding: 22px 20px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 12px;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
}

.service-card__icon i {
  font-size: 18px;
  line-height: 1;
}

.service-card__title {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 400;
}

.service-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.services-grid {
  display: none;
}

@keyframes services-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .services {
    padding: 0 0 56px;
  }

  .services__subtitle {
    margin-top: 14px;
  }

  .services-marquee {
    display: none;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
  }

  .services-grid .service-card {
    width: auto;
    flex: initial;
    min-height: 184px;
    padding: 16px 15px 18px;
  }

  .services-grid .service-card__title {
    font-size: 15px;
  }

  .services-grid .service-card__text {
    font-size: 13px;
    line-height: 1.45;
  }
}

/* --- Audience slider --- */

.audience {
  position: relative;
  z-index: 1;
  padding: 88px 0 96px;
}

.audience__header {
  text-align: center;
  margin-bottom: 52px;
}

.audience__title {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.audience__title-line {
  display: block;
}

.audience__subtitle {
  margin: 18px auto 0;
  max-width: 640px;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.5;
  color: var(--text-secondary);
}

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

.audience-mockup {
  justify-self: center;
  width: min(367px, 100%);
}

.audience-mockup__frame {
  position: relative;
  max-height: 580px;
  overflow: hidden;
}

.audience-mockup__device {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  vertical-align: top;
  pointer-events: none;
}

.audience-mockup__screen {
  position: absolute;
  z-index: 1;
  left: 4.5%;
  right: 4.5%;
  top: 0;
  bottom: 0;
  overflow: hidden;
  border-radius: 44px;
}

.audience-mockup__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.audience-mockup__image.is-visible {
  opacity: 1;
}

.audience-mockup__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.15) 35%,
    rgba(0, 0, 0, 0.55) 72%,
    rgba(0, 0, 0, 0.82) 100%
  );
  pointer-events: none;
}

.audience-mockup__content {
  position: absolute;
  z-index: 2;
  left: 4.5%;
  right: 4.5%;
  top: 15%;
  bottom: 5.5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 18px;
  text-align: center;
  pointer-events: none;
}

.audience-mockup__logo {
  width: 92px;
  height: auto;
}

.audience-mockup__tagline {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
}

.audience-mockup__caption {
  margin: 70% 0 0;
  padding: 0 8px;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.25;
  font-weight: 300;
  color: #fff;
}

.audience-mockup__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 40%;
  background: linear-gradient(
    to bottom,
    rgba(14, 19, 25, 0) 0%,
    rgba(14, 19, 25, 0.5) 40%,
    var(--screen) 86%
  );
  pointer-events: none;
}

.audience-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
}

.audience-panel__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.15;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.audience-panel__text {
  margin: 16px 0 0;
  max-width: 420px;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.45;
  color: var(--text-secondary);
}

.audience-nav {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}

.audience-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  background: var(--glass-fill);
  color: rgba(245, 245, 247, 0.72);
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.audience-nav__btn:hover:not(:disabled) {
  transform: translateY(-1px);
}

.audience-nav__btn--primary {
  background: #fff;
  color: #111;
  border-color: transparent;
}

.audience-nav__btn:disabled {
  opacity: 0.38;
  cursor: default;
}

@media (max-width: 960px) {
  .audience__body {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .audience-panel {
    min-height: 0;
    text-align: center;
    align-items: center;
  }

  .audience-panel__text {
    max-width: none;
  }

  .audience-nav {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .audience {
    padding: 48px 0 56px;
  }

  .audience__header {
    margin-bottom: 32px;
  }

  .audience-mockup__frame {
    max-height: 460px;
  }

  .audience-mockup__caption {
    margin: 40% 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .audience-mockup__image {
    transition: none;
  }
}

/* --- Flow (Apple-style scenarios) --- */

.flow {
  position: relative;
  z-index: 1;
  padding: 88px 0 96px;
  overflow: visible;
}

.flow__header {
  margin-bottom: 28px;
  text-align: left;
}

.flow__title {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.flow__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 40px;
  align-items: end;
  padding: 32px 40px 0;
  overflow: visible;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  --flow-card-surface: #161c24;
}

.flow__steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: center;
  width: 100%;
  max-width: 360px;
  padding-bottom: 32px;
}

.flow-step {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, border-color 0.25s ease, border-radius 0.25s ease;
}

.flow-step.is-active {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.flow-step__trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 18px;
  border: 0;
  background: transparent;
  color: var(--text-primary);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.flow-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 12px;
  color: rgba(245, 245, 247, 0.9);
  background: rgba(255, 255, 255, 0.1);
}

.flow-step.is-active .flow-step__icon i {
  transform: rotate(45deg);
}

.flow-step__icon i {
  transition: transform 0.25s ease;
}

.flow-step__title {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
}

.flow-step__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.flow-step.is-active .flow-step__panel {
  grid-template-rows: 1fr;
}

.flow-step__panel-inner {
  overflow: hidden;
  min-height: 0;
}

.flow-step__panel p {
  margin: 0;
  padding: 0 18px 16px 58px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.flow-mockup {
  justify-self: center;
  width: min(367px, 100%);
  margin-top: -80px;
  margin-bottom: 0;
  transform: translateX(-28px);
}

.flow-mockup__frame {
  position: relative;
  max-height: 520px;
  overflow: hidden;
}

.flow-mockup__device {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.flow-mockup__screen {
  position: absolute;
  z-index: 1;
  left: 7.2%;
  right: 7.2%;
  top: 30%;
  bottom: 34%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 12px 10px;
  pointer-events: none;
  overflow: hidden;
}

.flow-chat {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
}

.flow-chat__bubble {
  max-width: 82%;
  padding: 9px 13px;
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.flow-chat__bubble.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.flow-chat__bubble--user {
  align-self: flex-end;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  border-bottom-right-radius: 6px;
}

.flow-chat__bubble--concierge {
  align-self: flex-start;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-left-radius: 6px;
}

.flow-chat__bubble--typing {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 44px;
  min-height: 38px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom-left-radius: 6px;
  box-sizing: border-box;
}

.flow-chat__bubble--typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(245, 245, 247, 0.75);
  animation: flow-typing 1.1s ease-in-out infinite;
}

.flow-chat__bubble--typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.flow-chat__bubble--typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes flow-typing {
  0%,
  80%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.flow-mockup__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52%;
  background: linear-gradient(
    to bottom,
    rgba(14, 19, 25, 0) 0%,
    rgba(14, 19, 25, 0.55) 42%,
    var(--flow-card-surface) 88%
  );
  pointer-events: none;
}

@media (max-width: 960px) {
  .flow__card {
    grid-template-columns: 1fr;
    padding: 28px 24px 0;
    gap: 28px;
  }

  .flow__steps {
    max-width: none;
    padding-bottom: 28px;
  }

  .flow-mockup {
    order: -1;
    margin-top: -36px;
    margin-bottom: 0;
    transform: none;
  }
}

@media (max-width: 768px) {
  .flow {
    padding: 48px 0 56px;
  }

  .flow__header {
    text-align: center;
  }

  .flow-mockup__frame {
    max-height: 320px;
  }

  .flow-mockup__screen {
    top: 35%;
    bottom: 10%;
  }

  .flow-step__panel p {
    padding-left: 18px;
  }
}

/* --- Compare --- */

.compare {
  position: relative;
  z-index: 1;
  padding: 88px 0 96px;
}

.compare__header {
  text-align: center;
}

.compare__title {
  margin: 0;
  max-width: 720px;
  margin-inline: auto;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.compare__title-line {
  display: block;
}

.compare__accent {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.compare__subtitle {
  margin: 18px auto 0;
  max-width: 620px;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.5;
  color: var(--text-secondary);
}

.compare__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.compare-card {
  padding: 34px 34px 30px;
  border-radius: 24px;
}

.compare-card--marketplace {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-card--marketplace .compare-list__item {
  color: var(--text-secondary);
}

.compare-card--hiddle {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    155deg,
    rgba(108, 92, 231, 0.72) 0%,
    rgba(133, 102, 255, 0.52) 46%,
    rgba(62, 48, 128, 0.88) 100%
  );
  border: 1px solid rgba(196, 178, 255, 0.38);
  box-shadow:
    0 22px 56px rgba(133, 102, 255, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.compare-card--hiddle::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 90% 60% at 12% 0%,
      rgba(255, 255, 255, 0.16) 0%,
      transparent 58%
    ),
    radial-gradient(
      ellipse 70% 55% at 100% 100%,
      rgba(108, 92, 231, 0.35) 0%,
      transparent 62%
    );
  pointer-events: none;
}

.compare-card--hiddle::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 19, 25, 0.14);
  pointer-events: none;
}

.compare-card__label {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 auto 34px;
  text-align: center;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--text-secondary);
}

.compare-card__logo {
  position: relative;
  z-index: 1;
  display: block;
  width: 101px;
  height: 27px;
  margin: 0 auto 34px;
}

.compare-list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 15px;
  line-height: 1.4;
  color: var(--text-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-list__item:first-child {
  border-top: 0;
}

.compare-list__item:last-child {
  padding-bottom: 0;
}

.compare-list__item i {
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1;
}

.compare-card--marketplace .compare-list__item i {
  color: rgba(245, 245, 247, 0.42);
}

.compare-card--hiddle .compare-list__item {
  color: #fff;
  border-top-color: rgba(255, 255, 255, 0.18);
}

.compare-card--hiddle .compare-list__item i {
  color: #fff;
}

.compare__footer {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.compare__cta {
  min-width: 200px;
  height: 48px;
  padding: 0 32px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .compare {
    padding: 48px 0 56px;
  }

  .compare__subtitle {
    margin-top: 14px;
  }

  .compare__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 10px;
    margin-top: 28px;
    align-items: stretch;
  }

  .compare-card--marketplace {
    padding: 8px 16px 18px;
    background: transparent;
    border: none;
    border-radius: 0;
  }

  .compare-card--hiddle {
    padding: 22px 16px 18px;
    border-radius: 20px;
  }

  .compare-card__label {
    margin: 0 0 18px;
    text-align: left;
  }

  .compare-card__logo {
    margin: 0 0 18px;
  }

  .compare-card--marketplace .compare-list__item {
    justify-content: flex-start;
    padding: 14px 0;
    min-height: 52px;
    align-items: flex-start;
    border-top: 0;
    font-size: 14px;
  }

  .compare-card--hiddle .compare-list__item {
    justify-content: flex-start;
    padding: 14px 0;
    min-height: 52px;
    align-items: flex-start;
    font-size: 14px;
  }

  .compare-list__item i {
    display: none;
  }

  .compare__footer {
    margin-top: 28px;
  }
}

/* --- Advantages slider --- */

.advantages {
  position: relative;
  z-index: 1;
  padding: 88px 0 96px;
}

.advantages__header {
  text-align: center;
}

.advantages__title {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.advantages__subtitle {
  margin: 18px auto 0;
  max-width: 640px;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.5;
  color: var(--text-secondary);
}

.advantages-stage {
  position: relative;
  width: 100%;
  margin-top: 44px;
}

.advantages-slider__viewport {
  width: 100%;
  overflow: hidden;
}

.advantages-slider__track {
  display: flex;
  gap: 16px;
  padding-left: max(24px, calc((100vw - var(--container)) / 2));
  padding-right: 24px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.advantage-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 360px;
  width: 360px;
  min-height: 448px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.advantage-card__visual {
  display: flex;
  flex: 0 0 268px;
  align-items: stretch;
  justify-content: center;
  height: 268px;
  padding: 18px 20px;
}

.advantage-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 20px 24px;
}

.advantage-card__title {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 400;
}

.advantage-card__text {
  flex: 1;
  margin: 0;
  min-height: 63px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.advantages-nav__btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  background: var(--glass-fill);
  color: rgba(245, 245, 247, 0.72);
  font-size: 16px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.advantages-nav__btn[data-advantages-prev] {
  left: max(16px, calc((100vw - var(--container)) / 2 - 68px));
}

.advantages-nav__btn[data-advantages-next] {
  right: max(16px, calc((100vw - var(--container)) / 2 - 68px));
}

.advantages-nav__btn:hover:not(:disabled) {
  transform: translateY(calc(-50% - 1px));
}

.advantages-nav__btn--primary {
  background: #fff;
  color: #111;
  border-color: transparent;
}

.advantages-nav__btn:disabled {
  opacity: 0.38;
  cursor: default;
}

.advantage-mock {
  width: 100%;
  max-width: 300px;
  height: 100%;
  min-height: 0;
}

.advantage-mock--panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 14px;
  border-radius: 16px;
  background: rgba(14, 19, 25, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.advantage-mock__badge,
.advantage-mock__status-chip,
.advantage-mock__taskchat-status {
  width: fit-content;
  max-width: 100%;
}

.advantage-mock__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  color: #fff;
  background: rgba(133, 102, 255, 0.42);
  border: 1px solid rgba(196, 178, 255, 0.35);
}

.advantage-mock__task-title {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 400;
}

.advantage-mock__meta {
  margin: 6px 0 0;
  font-size: 11px;
  line-height: 1.35;
  color: var(--text-secondary);
}

.advantage-mock__performer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.advantage-mock__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.advantage-mock--trust .advantage-mock__avatar {
  width: 40px;
  height: 40px;
}

.advantage-mock__performer-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.advantage-mock__performer-name {
  font-size: 13px;
  line-height: 1.2;
}

.advantage-mock__performer-meta {
  font-size: 10px;
  line-height: 1.2;
  color: var(--text-secondary);
}

.advantage-mock__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  line-height: 1;
  color: var(--text-secondary);
}

.advantage-mock__rating i {
  font-size: 10px;
  color: #f5c84c;
}

.advantage-mock__memory-heading,
.advantage-mock__memory-list,
.advantage-mock__progress,
.advantage-mock__taskchat-header,
.advantage-mock__taskchat-thread,
.advantage-mock__context-thread,
.advantage-mock__segment,
.advantage-mock__repeat-list,
.advantage-mock__trust-card,
.advantage-mock__trust-list,
.advantage-mock__performer,
.advantage-mock__balance,
.advantage-mock__token-task,
.advantage-mock__token-breakdown,
.advantage-mock__saved {
  width: 100%;
}

.advantage-mock__memory-heading {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.2;
  color: var(--text-secondary);
}

.advantage-mock__memory-list {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}

.advantage-mock__memory-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.advantage-mock__memory-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.advantage-mock__memory-item.is-highlight {
  padding: 8px 10px;
  margin-top: auto;
  border-top: 0;
  border-radius: 12px;
  background: rgba(133, 102, 255, 0.12);
  border: 1px solid rgba(133, 102, 255, 0.24);
}

.advantage-mock__memory-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 9px;
  flex-shrink: 0;
  font-size: 11px;
  color: var(--accent);
  background: rgba(133, 102, 255, 0.16);
}

.advantage-mock__memory-body {
  min-width: 0;
}

.advantage-mock__memory-label {
  margin: 0;
  font-size: 10px;
  line-height: 1.2;
  color: var(--text-secondary);
}

.advantage-mock__memory-value {
  margin: 3px 0 0;
  font-size: 11px;
  line-height: 1.35;
}

.advantage-mock__status-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  line-height: 1;
  color: #fff;
  background: rgba(133, 102, 255, 0.38);
  border: 1px solid rgba(196, 178, 255, 0.3);
}

.advantage-mock__progress {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  margin: 12px 0 0;
  padding: 0 0 0 4px;
  list-style: none;
}

.advantage-mock__progress-step {
  position: relative;
  display: flex;
  flex: 1;
  align-items: flex-start;
  gap: 12px;
  padding: 0;
  min-height: 0;
}

.advantage-mock__progress-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 16px;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.advantage-mock__progress-step.is-done:not(:last-child)::before {
  background: rgba(133, 102, 255, 0.45);
}

.advantage-mock__progress-marker {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(156, 163, 175, 0.55);
  background: rgba(14, 19, 25, 0.9);
}

.advantage-mock__progress-step.is-done .advantage-mock__progress-marker {
  border-color: var(--accent);
  background: var(--accent);
}

.advantage-mock__progress-step.is-current .advantage-mock__progress-marker {
  border-color: var(--accent);
  background: rgba(14, 19, 25, 0.9);
  box-shadow: 0 0 0 3px rgba(133, 102, 255, 0.22);
}

.advantage-mock__progress-label {
  font-size: 12px;
  line-height: 1.3;
  color: var(--text-secondary);
}

.advantage-mock__progress-step.is-current .advantage-mock__progress-label,
.advantage-mock__progress-step.is-done .advantage-mock__progress-label {
  color: var(--text-primary);
}

.advantage-mock__taskchat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.advantage-mock__taskchat-meta {
  flex: 1;
  min-width: 0;
}

.advantage-mock__taskchat-name {
  margin: 0;
  font-size: 13px;
  line-height: 1.2;
}

.advantage-mock__taskchat-task {
  margin: 2px 0 0;
  font-size: 10px;
  line-height: 1.2;
  color: var(--text-secondary);
}

.advantage-mock__taskchat-status {
  flex-shrink: 0;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 9px;
  line-height: 1;
  color: #fff;
  background: rgba(133, 102, 255, 0.34);
}

.advantage-mock__taskchat-thread {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.advantage-mock__context-thread {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.advantage-mock__chat-bubble {
  max-width: 88%;
  padding: 9px 12px;
  border-radius: 14px;
  font-size: 11px;
  line-height: 1.35;
}

.advantage-mock__chat-bubble--user {
  align-self: flex-end;
  color: #fff;
  background: rgba(133, 102, 255, 0.42);
  border: 1px solid rgba(196, 178, 255, 0.28);
  border-bottom-right-radius: 4px;
}

.advantage-mock__chat-bubble--concierge,
.advantage-mock__chat-bubble--performer {
  align-self: flex-start;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom-left-radius: 4px;
}

.advantage-mock__attachment {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.advantage-mock__attachment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  font-size: 11px;
  color: var(--accent);
  background: rgba(133, 102, 255, 0.16);
}

.advantage-mock__attachment-text {
  font-size: 10px;
  line-height: 1.2;
  color: var(--text-secondary);
}

.advantage-mock__saved {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0;
}

.advantage-mock__saved-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  max-width: 100%;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 10px;
  line-height: 1;
  color: var(--text-primary);
  background: rgba(133, 102, 255, 0.18);
  border: 1px solid rgba(133, 102, 255, 0.28);
}

.advantage-mock__saved-chip i {
  font-size: 9px;
  color: var(--accent);
}

.advantage-mock__segment {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 14px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.advantage-mock__segment span {
  padding: 6px 0;
  border-radius: 999px;
  font-size: 9px;
  line-height: 1;
  text-align: center;
  color: var(--text-secondary);
}

.advantage-mock__segment .is-active {
  color: #fff;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent));
}

.advantage-mock--repeat,
.advantage-mock--trust {
  justify-content: flex-start;
}

.advantage-mock--context {
  justify-content: center;
}

.advantage-mock__repeat-title {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.3;
}

.advantage-mock__repeat-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.advantage-mock__repeat-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.35;
  color: var(--text-secondary);
}

.advantage-mock__repeat-list li:first-child {
  margin-top: 0;
}

.advantage-mock__repeat-list i {
  width: 14px;
  font-size: 11px;
  color: var(--accent);
  text-align: center;
}

.advantage-mock--rating {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.advantage-mock__rating-title {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
}

.advantage-mock__rating-subtitle {
  margin: 8px 0 0;
  font-size: 11px;
  line-height: 1.35;
  color: var(--text-secondary);
}

.advantage-mock__stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}

.advantage-mock__stars i {
  font-size: 14px;
  color: rgba(156, 163, 175, 0.45);
}

.advantage-mock__stars i.is-active {
  color: #f5c84c;
}

.advantage-mock__rating-note {
  margin: 12px 0 0;
  font-size: 10px;
  line-height: 1.35;
  color: var(--text-secondary);
}

.advantage-mock__trust-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.advantage-mock__trust-body {
  min-width: 0;
}

.advantage-mock__trust-name {
  margin: 0;
  font-size: 13px;
  line-height: 1.25;
}

.advantage-mock__trust-meta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 4px 0 0;
  font-size: 10px;
  line-height: 1.2;
  color: var(--accent);
}

.advantage-mock__trust-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.advantage-mock__trust-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.35;
  color: var(--text-secondary);
}

.advantage-mock__trust-list li:first-child {
  margin-top: 0;
}

.advantage-mock__trust-list i {
  font-size: 10px;
  color: var(--accent);
}

.advantage-mock--tokens {
  justify-content: space-between;
}

.advantage-mock__token-breakdown {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  margin: 14px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  list-style: none;
}

.advantage-mock__balance {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.advantage-mock__balance-plan {
  margin: 0;
  font-size: 11px;
  line-height: 1.2;
  color: var(--text-secondary);
}

.advantage-mock__balance-value {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.2;
  color: var(--text-primary);
}

.advantage-mock__balance-value span {
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
}

.advantage-mock__token-task {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.advantage-mock__token-task-title {
  margin: 0;
  font-size: 12px;
  line-height: 1.3;
}

.advantage-mock__token-task-cost {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  font-size: 11px;
  line-height: 1;
  color: var(--accent);
  white-space: nowrap;
}

.advantage-mock__token-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  line-height: 1.35;
  color: var(--text-secondary);
}

.advantage-mock__token-row span:last-child {
  color: var(--text-primary);
  white-space: nowrap;
}

.advantage-mock__token-row--discount span:last-child {
  color: #8fd4a8;
}

.advantage-mock__token-row--total {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: var(--text-primary);
}

.advantage-mock__token-row--total span:last-child {
  font-size: 15px;
  color: var(--accent);
}

.advantage-mock__token-note {
  margin: 12px 0 0;
  font-size: 10px;
  line-height: 1.35;
  color: var(--text-secondary);
}

@media (max-width: 960px) {
  .advantage-card {
    flex-basis: 340px;
    width: 340px;
    min-height: 428px;
  }
}

@media (max-width: 768px) {
  .advantages {
    padding: 0 0 56px;
  }

  .advantages__subtitle {
    margin-top: 14px;
  }

  .advantages-stage {
    margin-top: 28px;
  }

  .advantages-nav__btn {
    display: none;
  }

  .advantages-slider__viewport {
    overflow: visible;
    width: 100%;
  }

  .advantages-slider__track {
    display: flex;
    gap: 12px;
    width: 100%;
    padding: 0 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 16px;
    scrollbar-width: none;
    transform: none !important;
    transition: none;
  }

  .advantages-slider__track::-webkit-scrollbar {
    display: none;
  }

  .advantage-card {
    flex: 0 0 calc(100% - 32px);
    width: calc(100% - 32px);
    max-width: 320px;
    min-height: 408px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .advantage-card__visual {
    height: 220px;
    padding: 14px 12px;
  }

  .advantage-card__body {
    padding: 18px 16px 20px;
  }

  .advantage-card__title {
    font-size: 16px;
  }

  .advantage-card__text {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .advantages-slider__track {
    transition: none;
  }
}

/* --- Service quality --- */

.quality {
  position: relative;
  z-index: 1;
  padding: 88px 0 96px;
}

.quality__title {
  margin: 0;
  text-align: center;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.quality-stage {
  margin-top: 44px;
}

.quality-visual {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.quality-visual__image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  vertical-align: top;
}

.quality-chat {
  position: absolute;
  top: 10%;
  left: 4.5%;
  right: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  pointer-events: none;
}

.quality-chat__bubble {
  width: fit-content;
  max-width: 100%;
  padding: 11px 15px;
  border-radius: 18px;
  font-size: clamp(14px, 1.45vw, 16px);
  line-height: 1.4;
}

.quality-chat__bubble--user {
  align-self: flex-end;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-right-radius: 6px;
}

.quality-chat__bubble--support {
  align-self: flex-start;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  border-bottom-left-radius: 6px;
  box-shadow: 0 10px 24px rgba(133, 102, 255, 0.28);
}

.quality-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: start;
  margin-top: 36px;
}

.quality__text {
  margin: 0;
  max-width: 720px;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.55;
  color: var(--text-secondary);
}

.quality-metric {
  min-width: 180px;
}

.quality-metric__value {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.quality-metric__label {
  margin: 10px 0 0;
  max-width: 180px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-secondary);
}

@media (max-width: 960px) {
  .quality-chat {
    right: 42%;
  }
}

@media (max-width: 768px) {
  .quality {
    padding: 48px 0 56px;
  }

  .quality-stage {
    margin-top: 28px;
  }

  .quality-visual {
    border-radius: 20px;
  }

  .quality-visual__image {
    aspect-ratio: 4 / 3;
    min-height: 280px;
  }

  .quality-chat {
    top: 8%;
    left: 5%;
    right: 34%;
    gap: 8px;
  }

  .quality-chat__bubble {
    padding: 9px 13px;
    font-size: 14px;
  }

  .quality-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
  }

  .quality-metric {
    min-width: 0;
  }

  .quality-metric__label {
    max-width: none;
  }
}

/* --- Final CTA --- */

.cta-start {
  position: relative;
  z-index: 1;
  padding: 88px 0 96px;
  overflow: visible;
}

.cta-start__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 40px;
  align-items: end;
  padding: 32px 40px 0 48px;
  border-radius: 28px;
  overflow: visible;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  --cta-card-surface: #161c24;
}

.cta-start__copy {
  position: relative;
  z-index: 1;
  align-self: center;
  padding-bottom: 32px;
}

.cta-start__title {
  margin: 0;
  max-width: 520px;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.cta-start__text {
  margin: 18px 0 0;
  max-width: 500px;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.55;
  color: var(--text-secondary);
}

.cta-start__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.cta-start__mockup {
  justify-self: center;
  width: min(320px, 100%);
  margin-top: -72px;
  margin-bottom: 0;
  transform: translateX(-24px);
}

.cta-start__frame {
  position: relative;
  max-height: 460px;
  overflow: hidden;
}

.cta-start__screen {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.cta-start__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  background: linear-gradient(
    to bottom,
    rgba(14, 19, 25, 0) 0%,
    rgba(14, 19, 25, 0.42) 58%,
    var(--cta-card-surface) 100%
  );
  pointer-events: none;
}

@media (max-width: 960px) {
  .cta-start__card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 24px 0;
  }

  .cta-start__copy {
    padding-bottom: 28px;
  }

  .cta-start__mockup {
    order: -1;
    margin-top: -36px;
    transform: none;
  }

  .cta-start__frame {
    max-height: 420px;
  }
}

@media (max-width: 768px) {
  .cta-start {
    padding: 48px 0 56px;
  }

  .cta-start__card {
    border-radius: 22px;
  }

  .cta-start__text {
    margin-top: 14px;
  }

  .cta-start__stores {
    flex-direction: column;
    margin-top: 24px;
  }

  .cta-start__stores .store-btn {
    width: 100%;
    justify-content: center;
  }

  .cta-start__frame {
    max-height: 380px;
  }
}

/* --- Pricing --- */

.pricing {
  position: relative;
  z-index: 1;
  padding: 88px 0 96px;
}

.pricing__header {
  text-align: center;
}

.pricing__title {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.pricing__title-line {
  display: block;
}

.pricing__subtitle {
  margin: 18px auto 0;
  max-width: 720px;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.55;
  color: var(--text-secondary);
}

.pricing-stage {
  width: min(calc(100% - 48px), var(--container));
  margin: 44px auto 0;
}

.pricing-slider__viewport {
  width: 100%;
}

.pricing-slider__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 520px;
  padding: 32px 24px 38px;
  border-radius: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-card__label {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.pricing-card__text {
  margin: 14px 0 0;
  min-height: 78px;
  font-size: clamp(14px, 1.35vw, 16px);
  line-height: 1.5;
  color: rgba(245, 245, 247, 0.82);
}

.pricing-card__art {
  display: block;
  width: auto;
  margin-top: auto;
  object-fit: contain;
}

.pricing-card--personal .pricing-card__art {
  height: 156px;
}

.pricing-card--comfort .pricing-card__art {
  height: 188px;
}

.pricing-card--elite {
  opacity: 0.5;
}

.pricing-card--elite .pricing-card__art {
  height: 220px;
}

.pricing-card__tokens {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 20px 0 0;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  border: 1px solid rgba(196, 178, 255, 0.35);
  box-shadow: 0 8px 20px rgba(133, 102, 255, 0.22);
}

.pricing-card__price {
  margin: 10px 0 0;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.02em;
}

@media (max-width: 900px) {
  .pricing-stage {
    width: 100%;
    margin-top: 28px;
  }

  .pricing-slider__viewport {
    overflow: visible;
    width: 100%;
  }

  .pricing-slider__track {
    display: flex;
    gap: 12px;
    width: 100%;
    padding: 0 16px 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 16px;
    scrollbar-width: none;
  }

  .pricing-slider__track::-webkit-scrollbar {
    display: none;
  }

  .pricing-card {
    flex: 0 0 calc(100% - 32px);
    max-width: 300px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 520px;
    padding-bottom: 34px;
  }
}

@media (max-width: 768px) {
  .pricing {
    padding: 48px 0 56px;
  }

  .pricing__subtitle {
    margin-top: 14px;
  }

  .pricing-card {
    flex: 0 0 calc(100% - 32px);
    max-width: 280px;
    min-height: 520px;
    padding: 28px 20px 32px;
  }

  .pricing-card__text {
    min-height: 0;
    font-size: 14px;
  }

  .pricing-card--personal .pricing-card__art {
    height: 140px;
  }

  .pricing-card--comfort .pricing-card__art {
    height: 168px;
  }

  .pricing-card--elite .pricing-card__art {
    height: 196px;
  }
}

/* --- Memory --- */

.memory {
  position: relative;
  z-index: 1;
  padding: 88px 0 96px;
}

.memory__header {
  text-align: center;
}

.memory__title {
  margin: 0;
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.memory__title-line {
  display: block;
}

.memory__subtitle {
  margin: 18px auto 0;
  max-width: 680px;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.5;
  color: var(--text-secondary);
}

.memory-stage {
  position: relative;
  margin-top: 44px;
  min-height: 640px;
  overflow: visible;
}

.memory-stage__cards {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  width: min(1320px, calc(100vw - 24px));
  height: 100%;
  transform: translateX(-50%);
  pointer-events: none;
}

.memory-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 248px;
  max-width: 300px;
  padding: 12px 14px;
  border-radius: 18px;
  background: var(--glass-fill);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  animation: card-float 7s ease-in-out infinite;
}

.memory-card--performer {
  top: 48%;
  left: calc(50% - 448px);
  animation-delay: 0s;
}

.memory-card--task {
  top: 60%;
  left: calc(50% - 388px);
  animation-delay: -2.4s;
}

.memory-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.memory-card__body {
  flex: 1;
  min-width: 0;
}

.memory-card__title {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
}

.memory-card__meta {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.2;
  color: var(--text-secondary);
}

.memory-card__status {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.2;
  color: var(--text-secondary);
}

.memory-card__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(156, 163, 175, 0.85);
}

.memory-addresses {
  position: absolute;
  top: 40%;
  left: calc(50% + 248px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(310px, 42vw);
  pointer-events: auto;
}

.memory-addresses__hint {
  position: absolute;
  top: -46px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  font-weight: 400;
  color: var(--text-primary);
  white-space: nowrap;
  background: rgba(133, 102, 255, 0.16);
  border: 1px solid rgba(133, 102, 255, 0.34);
  box-shadow: 0 10px 28px rgba(133, 102, 255, 0.18);
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  pointer-events: none;
}

.memory-addresses__hint i {
  font-size: 14px;
  color: var(--accent);
  transform: rotate(180deg);
}

.memory-addresses__hint.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  animation: memory-hint-pulse 2.2s ease-in-out infinite;
}

.memory-address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--glass-fill);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  opacity: 0;
  transform: translateX(22px);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.2s ease;
}

.memory-address--selected {
  border-color: var(--accent);
}

.memory-addresses--interactive [data-memory-address] {
  animation: memory-address-glow 2.4s ease-in-out infinite;
}

.memory-addresses--interactive [data-memory-address]:nth-of-type(2) {
  animation-delay: -1.1s;
}

.memory-addresses.is-visible [data-memory-address]:nth-of-type(1) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.05s;
}

.memory-addresses.is-visible [data-memory-address]:nth-of-type(2) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.22s;
}

@keyframes memory-hint-pulse {
  0%,
  100% {
    box-shadow: 0 10px 28px rgba(133, 102, 255, 0.18);
  }

  50% {
    box-shadow:
      0 12px 32px rgba(133, 102, 255, 0.3),
      0 0 0 4px rgba(133, 102, 255, 0.1);
  }
}

@keyframes memory-address-glow {
  0%,
  100% {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  }

  50% {
    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.22),
      0 0 0 2px rgba(133, 102, 255, 0.34);
  }
}

.memory-address__body {
  flex: 1;
  min-width: 0;
}

.memory-address__title {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
}

.memory-address__text {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-secondary);
}

.memory-address__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.24);
  flex-shrink: 0;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.memory-address--selected .memory-address__mark {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  box-shadow: 0 0 14px rgba(133, 102, 255, 0.45);
}

.memory-address__mark i {
  font-size: 11px;
  line-height: 1;
}

.memory-mockup {
  position: relative;
  z-index: 2;
  width: min(367px, 78vw);
  margin: 0 auto;
}

.memory-mockup__frame {
  position: relative;
  max-height: 520px;
  overflow: hidden;
}

.memory-mockup__device {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.memory-mockup__screen {
  position: absolute;
  left: 7.2%;
  right: 7.2%;
  top: 14%;
  bottom: 34%;
  display: flex;
  align-items: flex-end;
  padding: 0 10px 12px;
  pointer-events: none;
  z-index: 1;
}

.memory-chat {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.memory-chat__bubble {
  max-width: 82%;
  padding: 9px 13px;
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.memory-chat__bubble.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.memory-chat__bubble--user {
  align-self: flex-end;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  border-bottom-right-radius: 6px;
}

.memory-chat__bubble--concierge {
  align-self: flex-start;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-left-radius: 6px;
}

.memory-mockup__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52%;
  background: linear-gradient(
    to bottom,
    rgba(14, 19, 25, 0) 0%,
    rgba(14, 19, 25, 0.55) 42%,
    var(--screen) 88%
  );
  pointer-events: none;
}

@media (max-width: 1080px) {
  .memory-card--performer {
    left: calc(50% - 400px);
  }

  .memory-card--task {
    left: calc(50% - 348px);
  }

  .memory-addresses {
    top: 38%;
    left: calc(50% + 210px);
    width: min(280px, 40vw);
  }
}

@media (max-width: 768px) {
  .memory {
    padding: 48px 0 56px;
  }

  .memory__subtitle {
    margin-top: 14px;
  }

  .memory-stage {
    margin-top: 28px;
    min-height: 620px;
    padding-bottom: 72px;
  }

  .memory-stage__cards {
    z-index: 3;
    width: 100%;
    left: 0;
    transform: none;
  }

  .memory-card {
    display: none;
  }

  .memory-mockup__screen {
    bottom: 35%;
  }

  .memory-addresses {
    top: auto;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 300px);
    z-index: 2;
    pointer-events: auto;
  }

  .memory-stage .store-buttons {
    bottom: -80px;
  }

  .memory-address {
    padding: 12px 14px;
  }
}

/* --- FAQ --- */

.faq {
  position: relative;
  z-index: 1;
  padding: 88px 0 96px;
}

.faq__title {
  margin: 0;
  text-align: center;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.faq-list {
  margin-top: 44px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  list-style: none;
  cursor: pointer;
}

.faq-item__summary::-webkit-details-marker {
  display: none;
}

.faq-item__question {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.35;
  font-weight: 400;
  text-align: left;
}

.faq-item__chevron {
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1;
  color: rgba(245, 245, 247, 0.55);
  transition: transform 0.25s ease, color 0.25s ease;
}

.faq-item[open] .faq-item__chevron {
  transform: rotate(180deg);
  color: var(--text-primary);
}

.faq-item__answer {
  padding: 0 0 22px;
}

.faq-item__answer p {
  margin: 0;
  max-width: 920px;
  font-size: clamp(15px, 1.5vw, 16px);
  line-height: 1.55;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .faq {
    padding: 48px 0 56px;
  }

  .faq-list {
    margin-top: 28px;
  }

  .faq-item__summary {
    padding: 18px 0;
  }

  .faq-item__answer {
    padding-bottom: 18px;
  }
}

/* --- Footer --- */

.site-footer {
  position: relative;
  z-index: 1;
  padding: 72px 0 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(160px, 1fr) minmax(140px, 0.9fr) minmax(180px, 1.1fr);
  gap: 32px 40px;
  align-items: start;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__logo {
  display: inline-flex;
}

.site-footer__tagline {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-secondary);
}

.site-footer__stores {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
}

.site-footer__stores .store-btn {
  width: auto;
}

.site-footer__heading {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.2;
  color: rgba(245, 245, 247, 0.45);
}

.site-footer__email {
  display: inline-block;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.2;
  font-weight: 400;
  color: var(--text-primary);
  transition: color 0.2s ease;
}

.site-footer__email:hover {
  color: var(--accent);
}

.site-footer__legal {
  margin: auto 0 0;
  padding-top: 28px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(245, 245, 247, 0.42);
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__link {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(245, 245, 247, 0.82);
  transition: color 0.2s ease;
}

.site-footer__link:hover {
  color: var(--text-primary);
}

@media (max-width: 1024px) {
  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 28px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__legal {
    padding-top: 20px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 48px 0 36px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__stores {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .site-footer__col {
    min-height: 0;
  }

  .site-footer__legal {
    margin-top: 0;
    padding-top: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .memory-card {
    animation: none;
  }

  .memory-addresses__hint,
  .memory-addresses--interactive [data-memory-address] {
    animation: none;
  }

  .memory-address {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .memory-chat__bubble {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .flow-chat__bubble {
    transition: none;
  }

  .flow-chat__bubble--typing span {
    animation: none;
    opacity: 0.8;
  }

  .flow-step,
  .flow-step__panel,
  .flow-step__icon i {
    transition: none;
  }

  .faq-item__chevron {
    transition: none;
  }
}

/* --- Legal pages --- */

.legal-page {
  position: relative;
  z-index: 1;
  padding: 40px 0 88px;
}

.legal-doc {
  max-width: 800px;
  margin-inline: auto;
}

.legal-doc h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.2vw, 36px);
  line-height: 1.15;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.legal-doc .revision {
  margin: 0 0 32px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-secondary);
}

.legal-doc .section {
  margin: 20px 0 8px;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--text-primary);
}

.legal-doc .section:first-of-type {
  margin-top: 0;
}

.legal-doc .paragraph {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 245, 247, 0.82);
}

.legal-doc .bullet {
  margin: 0 0 8px;
  padding-left: 1.25rem;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 245, 247, 0.82);
}

.legal-doc .bullet::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.legal-doc .spacer {
  height: 14px;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 28px 0 56px;
  }

  .legal-doc .revision {
    margin-bottom: 24px;
  }

  .legal-doc .section {
    margin-top: 16px;
    font-size: 14px;
  }

  .legal-doc .paragraph,
  .legal-doc .bullet {
    font-size: 14px;
  }
}
