@font-face {
  font-family: 'Museo Sans Cyrl';
  src: url('../assets/fonts/museosanscyrl-900.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
html {
  scroll-padding-top: 110px;
}
.section-label {
  color: #1DACD6;
  opacity: 0.78;
}
.hero-brand {
  font-family: 'Museo Sans Cyrl', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
}
:root {
  --section-space: 88px;
  --block-space: 32px;
  --content-space: 20px;
}

.section-space {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.block-space {
  margin-bottom: var(--block-space);
}

.content-space {
  margin-bottom: var(--content-space);
}
.group-space {
  margin-bottom: 40px;
}
  #pricingTrack {
  position: relative;
}
.catalog-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.18);
  transition: all 0.35s ease;
  flex-shrink: 0;
}

.catalog-dot.is-active {
  width: 28px;
  background: rgba(255,255,255,0.9);
}
.drag-scroll,
.drag-scroll * {
  -webkit-user-select: none;
  user-select: none;
}

.drag-scroll {
  cursor: grab;
}

.drag-scroll.is-dragging {
  cursor: grabbing;
}
#catalogTrack {
  scroll-behavior: smooth;
}
.catalog-card {
  min-width: 340px;
  max-width: 340px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(18px);
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.catalog-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.catalog-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.catalog-card:hover .catalog-card-image {
  transform: scale(1.03);
}

.catalog-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(5,8,22,0.04),
      rgba(5,8,22,0.16) 30%,
      rgba(4,7,18,0.76) 100%
    );
}

.catalog-card-tag {
  position: absolute;
  left: 20px;
  top: 20px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(6px);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.72);
}

.catalog-card-content {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 20px;
}

.catalog-card-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: white;
}

.catalog-card-text {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.68);
}
.catalog-dot {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transition:
    width 0.35s ease,
    opacity 0.35s ease,
    background 0.35s ease;
}

.catalog-dot:hover {
  opacity: 0.9;
}
.pricingCard {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(300px, calc(100vw - 72px));
  height: 420px;
  transform: translate(-50%, -50%);
}

.subscription-plan-card {
  --plan-accent: #FDDD00;
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.15);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)),
    rgba(20,26,33,0.17);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.subscription-plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--plan-accent) 24%, transparent), transparent 54%),
    linear-gradient(180deg, rgba(7,10,15,0.60), rgba(10,13,18,0.92));
  opacity: 0.72;
}

.subscription-plan-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}

.subscription-plan-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.20;
  filter: saturate(0.8) brightness(0.65);
}

.subscription-plan-glow {
  position: absolute;
  inset: -24%;
  background: radial-gradient(circle at 50% 12%, var(--plan-accent), transparent 52%);
  opacity: 0.13;
  filter: blur(22px);
}

.subscription-plan-badge,
.subscription-plan-action {
  border: 1px solid rgba(255,255,255,0.15);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)),
    rgba(20,26,33,0.17);
}

.subscription-plan-content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 20px;
}

.subscription-plan-badge {
  width: max-content;
  min-height: 24px;
  margin-bottom: 16px;
  border-radius: 12px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
}

.subscription-plan-title {
  color: #F4F7FB;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.18;
}

.subscription-plan-description {
  margin-top: 12px;
  color: #D5DEEA;
  font-size: 13px;
  line-height: 1.55;
}

.subscription-plan-spacer {
  flex-grow: 1;
}

.subscription-plan-price {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.subscription-plan-subprice {
  margin-top: 4px;
  color: #C9D3DF;
  font-size: 11px;
}

.subscription-plan-action {
  width: max-content;
  height: 34px;
  margin-top: 16px;
  border-radius: 12px;
  padding: 0 16px;
  color: #F4F7FB;
  font-size: 11px;
  font-weight: 700;
  transition: background 0.25s ease, color 0.25s ease;
}

.subscription-plan-action:hover {
  background: linear-gradient(90deg, rgba(255,255,255,0.12), color-mix(in srgb, var(--plan-accent) 14%, rgba(255,255,255,0.08)));
  color: var(--plan-accent);
}

.subscription-plan-focus {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  border: 2px solid rgba(234,242,255,0);
  pointer-events: none;
  transition: border-color 0.25s ease;
}

.pricingCard.is-active .subscription-plan-focus {
  border-color: rgba(234,242,255,0.95);
}

.pricing-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.20);
  transition: width 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

  #prevSlide,
#nextSlide {
  opacity: 0.6;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

#prevSlide:hover,
#nextSlide:hover {
  opacity: 1;
}

    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .fade-up.show {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes glowFloat {

      0%,
      100% {
        transform: translate(-50%, -50%) scale(1);
      }

      50% {
        transform: translate(-50%, -48%) scale(1.05);
      }
    }
 

    .delay-statement {
      transition-delay: 600ms;
    }

    /* скрытие скролла */
    .no-scrollbar::-webkit-scrollbar {
      display: none;
    }

    .no-scrollbar {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    html {
      scroll-behavior: smooth;
    }
 

    .fade-delay-1 {
      transition-delay: 0ms;
    }

    .fade-delay-2 {
      transition-delay: 120ms;
    }

    .fade-delay-3 {
      transition-delay: 240ms;
    }

    .fade-delay-4 {
      transition-delay: 360ms;
    }

    .fade-delay-5 {
      transition-delay: 480ms;
    }

    .fade-delay-6 {
      transition-delay: 600ms;
    }
 

.scene-card.active div:first-child {
  border-color: rgba(255,255,255,0.6);
  box-shadow: 0 0 20px rgba(56,189,248,0.4);
}