﻿/* hs-home-starter ? ????????? ?????? ? ??????? ? home.html
.hs-home-starter {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(72px, 9vh, 120px) 0;
  background:
    radial-gradient(circle at top left, rgba(107, 48, 255, 0.12), transparent 32%),
    #05050b;
  overflow: hidden;
}

.hs-home-starter__shell {
  width: 100%;
}

.hs-home-starter__inner {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.hs-home-starter__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 3vw, 36px);
  align-items: end;
}

.hs-home-starter__left,
.hs-home-starter__right {
  position: relative;
}

.hs-home-starter__heading {
  margin: 0 0 clamp(16px, 2vh, 24px);
  font-size: clamp(26px, 2.5vw, 48px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #6e38ff;
  text-shadow:
    0 4px 0 rgba(33, 13, 92, 0.9),
    0 0 22px rgba(116, 72, 255, 0.2);
}

.hs-home-starter__card,
.hs-home-starter__chip,
.hs-home-starter__card-body {
  text-decoration: none;
}

.hs-home-starter__card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  color: #10101a;
  border-radius: 28px;
  background: #f8f8fb;
  padding: clamp(22px, 3vw, 34px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.hs-home-starter__card:not(.hs-home-starter__card--accent):not(.hs-home-starter__card--cut) {
  padding: clamp(16px, 2.2vw, 24px);
  gap: 8px;
}

.hs-home-starter__card--primary:hover,
.hs-home-starter__card--primary:focus-visible,
.hs-home-starter__card--accent:hover,
.hs-home-starter__card--accent:focus-visible {
  transform: translateY(-4px);
  box-shadow:
    0 28px 46px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(130, 88, 255, 0.16);
}

.hs-home-starter__card--cut:hover,
.hs-home-starter__card--cut:focus-within {
  transform: translateY(-4px);
  box-shadow:
    0 28px 46px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(130, 88, 255, 0.16);
}

.hs-home-starter__card--primary:focus-visible,
.hs-home-starter__card--accent:focus-visible,
.hs-home-starter__card-body:focus-visible,
.hs-home-starter__chip:focus-visible {
  outline: 2px solid #8c63ff;
  outline-offset: 4px;
}

.hs-home-starter__card--primary {
  min-height: clamp(150px, 20vh, 220px);
}

.hs-home-starter__bottom-row {
  position: relative;
  margin-top: clamp(18px, 2vh, 24px);
  padding-bottom: 0;
}

.hs-home-starter__card--cut {
  position: relative;
  min-height: clamp(140px, 17vh, 200px);
  padding: 0;
  padding-bottom: clamp(88px, 8vw, 108px);
  overflow: hidden;
}

.hs-home-starter__card--cut::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 56%;
  height: 44%;
  background: #05050b;
  clip-path: polygon(0 100%, 12% 0, 100% 0, 100% 100%);
  pointer-events: none;
}

.hs-home-starter__card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
  min-height: 0;
  padding: clamp(16px, 2.2vw, 24px);
  padding-bottom: clamp(18px, 2vw, 22px);
  color: inherit;
}

.hs-home-starter__chip {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 4;
  width: clamp(188px, 19vw, 252px);
  min-height: clamp(52px, 4.6vw, 62px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 0 17px 0 0;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(90deg, #6a36ff 0%, #7740ff 100%);
  box-shadow:
    0 18px 34px rgba(87, 40, 216, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.hs-home-starter__label {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(16, 16, 26, 0.58);
}

.hs-home-starter__title {
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.04;
}

.hs-home-starter__copy {
  max-width: 34ch;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(16, 16, 26, 0.72);
}

.hs-home-starter__right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-top: clamp(96px, 12vw, 148px);
  overflow: visible;
}

.hs-home-starter__figure {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  width: min(84%, 350px);
  transform: translate(-46%, -54%);
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.32));
}

.hs-home-starter__card--accent {
  position: relative;
  z-index: 2;
  width: min(100%, 320px);
  min-height: clamp(340px, 48vh, 470px);
  justify-content: flex-end;
  padding-top: clamp(116px, 13vw, 148px);
  background: linear-gradient(180deg, #5d27f5 0%, #7944ff 100%);
  color: #fff;
}

.hs-home-starter__label--light,
.hs-home-starter__copy--light {
  color: rgba(255, 255, 255, 0.82);
}

.hs-home-starter__title--light {
  color: #fff;
}
*/

/* ???????: hero ? 3D + ????? ? ????????? ????? */
.hs-home-hero-split {
  position: relative;
  overflow: hidden;
  align-items: center;
  min-height: calc(100vh - 122px);
  padding: clamp(32px, 6vh, 72px) 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 18%, rgba(98, 54, 255, 0.2) 0%, transparent 55%),
    linear-gradient(180deg, rgba(7, 7, 12, 1) 0%, rgba(5, 5, 8, 1) 100%);
}

.hs-home-hero-split__aurora {
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(circle at 20% 30%, rgba(98, 54, 255, 0.32) 0%, transparent 42%),
    radial-gradient(circle at 80% 60%, rgba(34, 197, 94, 0.1) 0%, transparent 40%);
  filter: blur(40px);
  opacity: 0.85;
  animation: hs-home-aurora-drift 18s ease-in-out infinite;
  pointer-events: none;
}

.hs-home-hero-split__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 88% 72% at 50% 45%, #000 25%, transparent 78%);
  opacity: 0.45;
  pointer-events: none;
}

.hs-home-hero-split__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.hs-home-hero-split__copy {
  min-width: 0;
}

.hs-home-hero-split__copy .hs-home-hero-shot__title {
  margin-bottom: clamp(8px, 1.2vh, 14px);
}

.hs-home-hero-split__lead {
  margin: 0 0 clamp(14px, 2vh, 20px);
  max-width: 44ch;
  font-size: clamp(15px, 1.12vw, 17px);
  line-height: 1.6;
  color: rgba(225, 230, 255, 0.8);
}

.hs-home-hero-highlights {
  margin: 0 0 clamp(18px, 2.4vh, 24px);
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px 12px;
  max-width: 46ch;
}

.hs-home-hero-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(210, 218, 255, 0.88);
}

.hs-home-hero-highlights__ico {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  color: rgba(98, 54, 255, 0.95);
  stroke-width: 2.1px;
}

.hs-home-hero-split__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hs-home-hero-split__visual {
  position: relative;
  width: 100%;
  max-width: min(100%, 520px);
  justify-self: end;
}

.hs-home-hero-split__model-shell {
  position: relative;
}

.hs-home-hero-split__viewport.hs-hero-3d-viewport {
  position: relative;
  width: 100%;
}

.hs-hero-3d {
  width: 100%;
  min-height: min(50vh, 540px);
  max-height: min(70vh, 620px);
  height: auto;
  aspect-ratio: 1 / 1.04;
  position: relative;
  overflow: hidden;
  border-radius: clamp(16px, 2.4vw, 28px);
  border: 1px solid rgba(139, 125, 255, 0.52);
  background:
    radial-gradient(ellipse 88% 82% at 68% 16%, rgba(122, 92, 255, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 72% 70% at 12% 88%, rgba(98, 54, 255, 0.18) 0%, transparent 50%),
    linear-gradient(168deg, rgba(12, 10, 26, 0.97) 0%, rgba(5, 5, 12, 1) 100%);
  box-shadow: inset 27px 0 48.2px 18px #000;
}

@media (max-width: 980px) {
  .hs-home-hero-split__inner {
    grid-template-columns: 1fr;
  }

  .hs-home-hero-split__visual {
    max-width: min(420px, 100%);
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .hs-home-hero-split {
    min-height: 0;
    padding: 18px 0 28px;
  }

  .hs-hero-3d {
    min-height: min(40vh, 360px);
    max-height: min(52vh, 440px);
  }

  .hs-home-hero-split__visual {
    max-width: min(400px, 100%);
  }
}

.hs-home-hero-shot__title {
  --hs-title-ink: rgba(255, 255, 255, 0.9);
  margin: 0;
  display: grid;
  gap: 6px;
  width: 100%;
  justify-items: start;
  text-align: left;
  color: var(--hs-title-ink);
  text-transform: uppercase;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.32),
    0 10px 34px rgba(0, 0, 0, 0.34);
}

.hs-home-hero-shot__title-main {
  display: block;
  font-family: "Rubik Scribble", "Inter", sans-serif;
  font-size: clamp(52px, 4.6vw, 84px);
  line-height: 0.92;
  letter-spacing: 0.03em;
}

.hs-home-hero-shot__title-sub {
  display: block;
  justify-self: end;
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 0;
  text-align: right;
  font-family: "Rubik Wet Paint", "Inter", sans-serif;
  font-size: clamp(30px, 2.4vw, 44px);
  line-height: 0.92;
  letter-spacing: 0.08em;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  -webkit-text-stroke-width: clamp(1px, 0.055em, 2.5px);
  -webkit-text-stroke-color: var(--hs-title-ink);
  paint-order: stroke fill;
}

.hs-hero-3d canvas {
  display: block;
  position: relative;
  z-index: 0;
  width: 100% !important;
  height: 100% !important;
}

.hs-hero-3d--error {
  min-height: 120px;
  background: rgba(255, 80, 80, 0.06);
}

.hs-hero-3d--loading::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 58% 62% at 50% 42%, rgba(122, 78, 255, 0.22) 0%, transparent 68%),
    linear-gradient(110deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.1) 42%, rgba(255, 255, 255, 0.03) 84%);
  background-size: 100% 100%, 220% 100%;
  animation: hs-hero-3d-shimmer 1.35s ease-in-out infinite;
}

.hs-hero-3d--loading canvas {
  opacity: 0;
}

.hs-hero-3d:not(.hs-hero-3d--loading) canvas {
  opacity: 1;
  transition: opacity 0.35s ease;
}

@keyframes hs-hero-3d-shimmer {
  0% {
    background-position: 0 0, -120% 0;
  }
  100% {
    background-position: 0 0, 120% 0;
  }
}

/* hs-home-starter ? ???????????? (??. ???? ????)
@media (max-width: 980px) {
  .hs-home-starter {
    min-height: 0;
  }

  .hs-home-starter__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hs-home-starter__right {
    justify-content: flex-start;
    padding-top: clamp(110px, 16vw, 150px);
  }
}

@media (max-width: 640px) {
  .hs-home-starter {
    padding: 56px 0 72px;
  }

  .hs-home-starter__chip {
    left: 0;
    bottom: 0;
    width: min(100%, 240px);
    min-width: 0;
  }

  .hs-home-starter__card--cut {
    padding-bottom: 92px;
  }

  .hs-home-starter__card--cut::after {
    width: 62%;
    height: 48%;
    clip-path: polygon(0 100%, 16% 0, 100% 0, 100% 100%);
  }

  .hs-home-starter__right {
    justify-content: center;
  }

  .hs-home-starter__figure {
    transform: translate(-46%, -48%);
  }
}
*/

/* ========== ??????? ??????? (hs-home-page) ========== */

/* ???????: overflow-x visible ?????? ?? desktop (sticky path); ?? ??????? ? clip */
html.hs-html--home,
body.hs-body--home {
  overflow-x: visible;
  background-color: #050508;
}

.hs-body--home .hs-main {
  padding-bottom: 0;
  overflow-x: visible;
  background-color: #050508;
}

@media (max-width: 1060px) {
  html.hs-html--home,
  body.hs-body--home,
  .hs-body--home .hs-main,
  .hs-home-page {
    overflow-x: clip;
  }
}

.hs-home-page {
  position: relative;
  overflow-x: clip;
  /* ?????? ??????? ??? ????? ???????? ??????? (??? ????? ??????? ????? ???????) */
  --hs-home-section-bg: #050508;
  background-color: var(--hs-home-section-bg);
  --hs-home-font-display: "Russo One", "Arial Black", sans-serif;
  --hs-home-font-body: "Outfit", "Segoe UI", sans-serif;
  --hs-home-font-mono: "JetBrains Mono", ui-monospace, monospace;
  font-family: var(--hs-home-font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Mobile hero collage — full-bleed art under copy (desktop keeps 3D). */
.hs-home-hero-mobile-art {
  display: none;
}

.hs-home-hero-model-only {
  position: relative;
  isolation: isolate;
  min-height: clamp(430px, 68vh, 660px);
  padding: 0;
  overflow: hidden;
  background: var(--hs-home-section-bg);
}

.hs-home-hero-model-only::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  opacity: 0.52;
  pointer-events: none;
}

.hs-home-hero-model-only__inner {
  width: min(1840px, calc(100% - 80px));
  min-height: inherit;
  position: relative;
  z-index: 1;
  padding: 0;
}

.hs-home-hero-model-only__copy,
.hs-home-hero-fallback__copy {
  color: var(--hs-hero-ink);
}

.hs-home-hero-model-only__stack,
.hs-home-hero-fallback__stack {
  --hs-hero-ink: #f6f6f8;
  --hs-hero-muted: rgba(198, 194, 220, 0.82);
  --hs-hero-accent: #c4b5ff;
  --hs-hero-accent-glow: rgba(122, 78, 255, 0.42);
  --hs-hero-border: rgba(125, 80, 255, 0.78);
  --hs-hero-font-display: var(--hs-home-font-display);
  --hs-hero-font-ui: var(--hs-home-font-body);
  --hs-hero-space-title-sub: 0.7rem;
  --hs-hero-space-sub-cta: clamp(4.75rem, 8vh, 7.5rem);
  color: var(--hs-hero-ink);
}

.hs-home-hero-model-only__stack {
  position: absolute;
  left: clamp(120px, 16vw, 280px);
  top: clamp(58px, 10vh, 92px);
  z-index: 4;
  width: min(58%, 860px);
  display: grid;
  gap: 0;
  justify-items: start;
}

.hs-home-hero-model-only__lead {
  display: grid;
  gap: 0;
  justify-items: start;
  width: 100%;
}

.hs-home-hero-model-only__copy {
  position: relative;
  left: auto;
  top: auto;
  z-index: auto;
  width: 100%;
  display: grid;
  gap: 0;
  justify-items: start;
}

.hs-home-hero-model-only__title {
  margin: 0;
  display: inline-grid;
  width: max-content;
  max-width: 100%;
  gap: 0;
  font-family: var(--hs-hero-font-display);
  font-size: clamp(42px, 4.85vw, 86px);
  line-height: 0.88;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.08),
    0 18px 46px rgba(0, 0, 0, 0.52);
}

.hs-home-hero-model-only__title > span {
  display: block;
  width: 100%;
  white-space: nowrap;
  text-align: justify;
  text-align-last: justify;
}

.hs-home-hero-statement {
  text-transform: none;
  display: inline-grid;
  width: max-content;
  max-width: 100%;
  gap: 0;
  font-size: clamp(36px, 4.2vw, 68px);
  line-height: 0.88;
  letter-spacing: 0.01em;
  font-weight: 400;
}

.hs-home-hero-statement > span {
  display: block;
  width: 100%;
  white-space: nowrap;
  text-align: justify;
  text-align-last: justify;
}

.hs-home-hero-statement__accent,
.hs-home-hero-pro {
  font-style: normal;
  color: var(--hs-hero-accent);
  text-shadow:
    0 0 28px var(--hs-hero-accent-glow),
    0 2px 0 rgba(255, 255, 255, 0.06);
}

.hs-home-hero-fallback__statement {
  margin: 0;
  max-width: min(100%, 28ch);
  color: var(--hs-hero-ink);
  font-family: var(--hs-hero-font-display);
  font-weight: 400;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.08),
    0 18px 46px rgba(0, 0, 0, 0.52);
}

.hs-home-hero-model-only__subtitle,
.hs-home-hero-fallback__subtitle {
  width: max-content;
  max-width: 100%;
  margin: var(--hs-hero-space-title-sub) 0 0;
  padding: 0;
  font-family: var(--hs-hero-font-ui);
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--hs-hero-muted);
  white-space: normal;
}

.hs-home-hero-pro {
  font-family: var(--hs-hero-font-display);
  font-weight: 400;
  letter-spacing: 0.04em;
  font-size: 0.95em;
}

.hs-home-hero-model-only__caption {
  width: min(100%, 620px);
  margin: var(--hs-hero-space-title-sub) 0 0;
  font-family: var(--hs-hero-font-ui);
  font-size: clamp(13px, 1.05vw, 17px);
  line-height: 1.28;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--hs-hero-muted);
  text-wrap: balance;
}

.hs-home-hero-model-only__actions,
.hs-home-hero-fallback__actions {
  width: max-content;
  max-width: 100%;
  margin: var(--hs-hero-space-sub-cta, 5rem) 0 0;
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.6rem;
  justify-content: start;
}

.hs-home-hero-model-only__btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 44px;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0 0.95rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: var(--hs-hero-font-ui);
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.015em;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
  color: var(--hs-hero-ink);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.hs-home-hero-model-only__btn::before {
  content: none;
}

.hs-home-hero-model-only__btn:hover,
.hs-home-hero-model-only__btn:focus-visible {
  transform: translateY(-1px);
}

.hs-home-hero-model-only__btn:active {
  transform: translateY(0);
}

.hs-home-hero-model-only__btn:focus-visible {
  outline: 2px solid var(--hs-hero-accent);
  outline-offset: 3px;
}

.hs-home-hero-model-only__btn--primary {
  --hs-btn-vfill-rest: 0;
  --hs-btn-vfill-hover: 0;
  color: #0b0b10;
  background: #f3f0ff;
  border-color: #f3f0ff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.hs-home-hero-model-only__btn--primary:hover,
.hs-home-hero-model-only__btn--primary:focus-visible {
  color: #0b0b10;
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 14px 34px rgba(122, 78, 255, 0.28);
}

.hs-home-hero-model-only__btn--ghost {
  --hs-btn-vfill-rest: 0;
  --hs-btn-vfill-hover: 0;
  color: #f6f6f8;
  background: transparent;
  border-color: rgba(243, 240, 255, 0.38);
  box-shadow: none;
}

.hs-home-hero-model-only__btn--ghost:hover,
.hs-home-hero-model-only__btn--ghost:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(243, 240, 255, 0.72);
  box-shadow: none;
}

.hs-home-hero-model-only__viewport {
  position: absolute;
  left: auto;
  right: -3%;
  bottom: 0;
  z-index: 2;
  width: min(70%, 1240px);
  height: 100%;
  transform: none;
}

.hs-home-hero-model-only__model.hs-hero-3d {
  position: relative;
  width: 100%;
  min-height: 100%;
  height: 100%;
  max-height: none;
  max-width: 100%;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.hs-home-hero-model-only__model.hs-hero-3d::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(18px, 4vh, 42px);
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 8, 0) 0%,
    rgba(5, 5, 8, 0.75) 72%,
    #050508 100%
  );
}

.hs-home-hero-model-only__model.hs-hero-3d::before {
  content: none;
}

.hs-home-hero-model-only__model.hs-hero-3d.hs-hero-3d--loading::before {
  content: "";
}

.hs-home-hero-model-only__model.hs-hero-3d canvas {
  transform: translateY(14%);
}

/* Hero ? 3D: ??????? ? ????? ??????, ??? 3D-?????? ?? ????????? */
@media (max-width: 980px) {
  .hs-home-page > .hs-screen.hs-screen--hero {
    --hs-home-hero-h: calc(100svh - 72px - env(safe-area-inset-top, 0px));
    --hs-home-hero-h: calc(100dvh - 72px - env(safe-area-inset-top, 0px));
    box-sizing: border-box;
    min-height: var(--hs-home-hero-h);
    height: var(--hs-home-hero-h);
    max-height: var(--hs-home-hero-h);
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
  }

  .hs-home-hero-mobile-art {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .hs-home-hero-mobile-art img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
  }

  .hs-home-hero-mobile-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        180deg,
        rgba(6, 5, 12, 0.42) 0%,
        rgba(6, 5, 12, 0.12) 32%,
        rgba(6, 5, 12, 0.08) 52%,
        rgba(6, 5, 12, 0.35) 78%,
        rgba(6, 5, 12, 0.78) 100%
      );
    pointer-events: none;
  }

  .hs-home-hero-model-only {
    min-height: var(--hs-home-hero-h);
    padding-bottom: 0;
    background: #06050c;
  }

  .hs-home-hero-model-only::before {
    opacity: 0.12;
    mask-image: none;
    z-index: 1;
  }

  .hs-home-hero-model-only__inner {
    width: min(100%, calc(100% - 24px));
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
    gap: 0;
    min-height: 100%;
    z-index: 2;
    padding:
      clamp(28px, 5.5vh, 48px)
      0
      clamp(36px, 6.5vh, 56px);
  }

  .hs-home-hero-model-only__stack,
  .hs-home-hero-fallback__stack {
    position: relative;
    left: auto;
    top: auto;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    gap: clamp(16px, 3vh, 28px);
  }

  .hs-home-hero-model-only__lead,
  .hs-home-hero-fallback__lead {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: max-content;
    max-width: 100%;
    margin-top: clamp(36px, 7vh, 64px);
  }

  .hs-home-hero-model-only__copy,
  .hs-home-hero-fallback__copy {
    position: relative;
    left: auto;
    top: auto;
    order: 1;
    width: max-content;
    max-width: 100%;
    flex: 0 0 auto;
    display: grid;
    gap: 0;
    justify-items: center;
    --hs-hero-space-title-sub: 0;
    --hs-hero-space-sub-cta: 0;
    margin-top: 0;
    padding: clamp(10px, 1.8vh, 14px) clamp(14px, 3.5vw, 18px);
    text-align: center;
    text-shadow: none;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
      linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.04) 42%,
        rgba(12, 10, 24, 0.28) 100%
      ),
      rgba(10, 8, 22, 0.42);
    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
  }

  .hs-home-hero-model-only__title,
  .hs-home-hero-fallback__statement {
    order: 2;
    margin-top: clamp(12px, 2vh, 18px);
  }

  .hs-home-hero-fallback__lead > .hs-home-kicker {
    order: 0;
    margin-bottom: 10px;
  }

  .hs-home-hero-model-only__title {
    font-size: clamp(34px, 10.5vw, 52px);
  }

  .hs-home-hero-model-only__title.hs-home-hero-statement {
    font-size: clamp(30px, 8.4vw, 46px);
    line-height: 0.88;
    text-align: center;
  }

  .hs-home-hero-model-only__subtitle,
  .hs-home-hero-fallback__subtitle {
    width: max-content;
    max-width: 100%;
    margin-top: 0;
    font-size: clamp(11px, 2.7vw, 13px);
    text-align: center;
    white-space: nowrap;
  }

  .hs-home-hero-model-only__title > span {
    white-space: nowrap;
  }

  .hs-home-hero-fallback__statement {
    max-width: none;
    text-align: center;
  }

  .hs-home-hero-model-only__caption {
    width: 100%;
    max-width: none;
    font-size: clamp(14px, 3.8vw, 16px);
    line-height: 1.45;
  }

  .hs-home-hero-model-only__actions,
  .hs-home-hero-fallback__actions {
    position: relative;
    z-index: 3;
    display: grid;
    width: max-content;
    max-width: 100%;
    margin-top: auto;
    margin-bottom: clamp(28px, 5.5vh, 48px);
    grid-template-columns: auto auto;
    gap: 0.55rem;
    justify-content: center;
  }

  .hs-home-hero-model-only__btn {
    width: auto;
    min-height: 44px;
    font-size: 13px;
  }

  .hs-home-hero-model-only__viewport {
    display: none;
  }
}

@media (max-width: 560px) {
  .hs-home-page > .hs-screen.hs-screen--hero {
    --hs-home-hero-h: calc(100svh - 64px - env(safe-area-inset-top, 0px));
    --hs-home-hero-h: calc(100dvh - 64px - env(safe-area-inset-top, 0px));
  }

  .hs-home-hero-model-only__subtitle,
  .hs-home-hero-fallback__subtitle {
    white-space: nowrap;
    width: max-content;
    max-width: 100%;
    font-size: clamp(10px, 2.5vw, 12px);
  }
}

@media (max-width: 420px) {
  .hs-home-hero-model-only__inner {
    width: min(100%, calc(100% - 16px));
  }

  .hs-home-hero-model-only__title {
    font-size: clamp(30px, 9.5vw, 40px);
    letter-spacing: -0.04em;
  }

}

.hs-home-kicker {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(
    90deg,
    rgba(186, 176, 255, 0.95) 0%,
    rgba(98, 54, 255, 1) 40%,
    rgba(34, 197, 94, 0.85) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hs-home-kicker-shimmer 7s ease-in-out infinite;
}

@keyframes hs-home-kicker-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hs-home-hero-fallback {
  position: relative;
  overflow: hidden;
  align-items: center;
  background: var(--hs-home-section-bg);
}

.hs-home-hero-fallback__aurora {
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(circle at 20% 30%, rgba(98, 54, 255, 0.35) 0%, transparent 42%),
    radial-gradient(circle at 80% 60%, rgba(34, 197, 94, 0.12) 0%, transparent 40%);
  filter: blur(40px);
  opacity: 0.85;
  animation: hs-home-aurora-drift 18s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hs-home-aurora-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(2%, -3%, 0) scale(1.04); }
}

.hs-home-hero-fallback__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 75%);
  opacity: 0.5;
  pointer-events: none;
}

.hs-home-hero-fallback__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.hs-home-hero-fallback__title {
  margin: 0 0 clamp(12px, 2vh, 20px);
}

.hs-home-hero-fallback__lead {
  margin: 0 0 clamp(20px, 3vh, 32px);
  max-width: 40ch;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
  color: rgba(225, 230, 255, 0.76);
}

.hs-home-hero-fallback__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hs-home-hero-fallback__visual {
  position: relative;
  min-height: min(52vh, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hs-home-hero-fallback__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0);
  animation: hs-home-float 6s ease-in-out infinite;
}

.hs-home-hero-fallback__orb--a {
  width: min(72%, 280px);
  aspect-ratio: 1;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.2), rgba(98, 54, 255, 0.45) 42%, transparent 70%);
  box-shadow:
    0 0 80px rgba(98, 54, 255, 0.35),
    inset 0 0 60px rgba(255, 255, 255, 0.06);
  animation-delay: 0s;
}

.hs-home-hero-fallback__orb--b {
  width: min(48%, 180px);
  aspect-ratio: 1;
  right: 8%;
  top: 12%;
  background: radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.35), transparent 65%);
  box-shadow: 0 0 50px rgba(34, 197, 94, 0.22);
  animation-delay: -2s;
  animation-duration: 7s;
}

.hs-home-hero-fallback__orb--c {
  width: min(36%, 120px);
  aspect-ratio: 1;
  left: 14%;
  bottom: 18%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.12), rgba(98, 54, 255, 0.2) 60%, transparent 72%);
  animation-delay: -3.5s;
  animation-duration: 8s;
}

@keyframes hs-home-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -14px, 0) scale(1.03); }
}

.hs-home-hero-fallback__ring {
  position: absolute;
  width: min(88%, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(98, 54, 255, 0.15),
    inset 0 0 40px rgba(98, 54, 255, 0.08);
  animation: hs-home-ring-pulse 5s ease-in-out infinite;
}

@keyframes hs-home-ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.06); opacity: 1; }
}

@media (max-width: 980px) {
  .hs-home-hero-fallback {
    background: #06050c;
  }

  .hs-home-hero-fallback__aurora,
  .hs-home-hero-fallback__grid-bg,
  .hs-home-hero-fallback__visual {
    display: none;
  }

  .hs-home-hero-fallback__inner {
    position: relative;
    z-index: 2;
    grid-template-columns: minmax(0, 1fr);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
    min-height: 0;
    width: 100%;
    gap: 0;
    padding:
      clamp(28px, 5.5vh, 48px)
      0
      clamp(36px, 6.5vh, 56px);
  }

  .hs-home-hero-fallback__copy {
    text-shadow: none;
  }
}

@media (max-width: 720px) {
  .hs-home-hero-fallback {
    padding: 0;
  }

  .hs-home-hero-fallback__lead {
    max-width: none;
    font-size: 15px;
  }

  .hs-home-hero-fallback__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hs-home-hero-fallback__actions .hs-btn {
    width: 100%;
    justify-content: center;
  }

  .hs-home-hero-shot__title-main {
    font-size: clamp(40px, 14vw, 56px);
  }

  .hs-home-hero-shot__title-sub {
    font-size: clamp(24px, 8vw, 34px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hs-home-page .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hs-home-kicker,
  .hs-home-hero-fallback__aurora,
  .hs-home-hero-split__aurora,
  .hs-home-hero-fallback__orb,
  .hs-home-hero-fallback__ring,
  .hs-hero-3d--loading::before {
    animation: none !important;
  }

  .hs-home-marquee__viewport {
    animation: none;
  }
}

.hs-home-marquee {
  position: relative;
  padding: clamp(10px, 1.6vw, 16px) 0;
  overflow: hidden;
  background: var(--hs-home-section-bg);
}

.hs-home-marquee--volume {
  border-top: 1px solid rgba(126, 92, 255, 0.35);
  border-bottom: 1px solid rgba(80, 60, 140, 0.45);
}

.hs-home-marquee__slot {
  margin: 0;
  padding: clamp(6px, 1vw, 10px) 0;
}

.hs-home-marquee__viewport {
  display: flex;
  width: max-content;
  white-space: nowrap;
  contain: layout style paint;
  will-change: transform;
  animation: hs-home-marquee-run 18s linear infinite;
}

.hs-home-marquee__track {
  display: inline-flex;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  margin: 0;
  padding-right: clamp(28px, 4vw, 56px);
  font-size: clamp(12px, 1.4vw, 16px);
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(220, 210, 255, 0.94);
  text-shadow: 0 2px 1px rgba(0, 0, 0, 0.55);
}

.hs-home-marquee__track span {
  display: inline-block;
}

.hs-home-marquee__track--clone {
  padding-right: 0;
}

@keyframes hs-home-marquee-run {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ?????????? ??????? ? editorial stream */
.hs-home-metrics {
  position: relative;
  padding: clamp(56px, 9vh, 100px) 0 clamp(64px, 10vh, 112px);
  background: var(--hs-home-section-bg);
  overflow: hidden;
}

.hs-home-metrics__head {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(36px, 5.5vw, 56px);
}

.hs-home-metrics__kicker {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(155, 125, 255, 0.82);
}

.hs-home-metrics__headline {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: end;
}

.hs-home-metrics__title {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: #f6f3ff;
}

.hs-home-metrics__lead {
  margin: 0;
  max-width: 42ch;
  justify-self: end;
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.65;
  text-align: right;
  color: rgba(196, 200, 222, 0.72);
}

.hs-home-metrics__board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hs-home-metrics__cell {
  --metric-accent: #9b7dff;
  --metric-glow: rgba(155, 125, 255, 0.28);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-width: 0;
  padding: clamp(28px, 3.8vw, 40px) clamp(16px, 2.2vw, 28px) clamp(26px, 3.4vw, 36px);
  isolation: isolate;
}

.hs-home-metrics__cell + .hs-home-metrics__cell {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.hs-home-metrics__cell::before {
  content: none;
}

.hs-home-metrics__cell--maps,
.hs-home-metrics__cell--elo {
  --metric-accent: #6ee7a8;
  --metric-glow: rgba(110, 231, 168, 0.26);
}

.hs-home-metrics__cell--programs {
  --metric-accent: #5fd4ff;
  --metric-glow: rgba(95, 212, 255, 0.28);
}

.hs-home-metrics__cell--lessons {
  --metric-accent: #ff9f6b;
  --metric-glow: rgba(255, 159, 107, 0.3);
}

.hs-home-metrics__cell--coaches,
.hs-home-metrics__cell--grenade {
  --metric-accent: #b89bff;
  --metric-glow: rgba(184, 155, 255, 0.32);
}

.hs-home-metrics__ordinal {
  margin-bottom: clamp(18px, 2.4vw, 28px);
  font-family: var(--hs-home-font-mono, "JetBrains Mono", ui-monospace, monospace);
  font-size: clamp(11px, 1vw, 12px);
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.22);
  transition: color 0.32s ease;
}

.hs-home-metrics__cell:hover .hs-home-metrics__ordinal {
  color: color-mix(in srgb, var(--metric-accent) 70%, rgba(255, 255, 255, 0.35));
}

.hs-home-metrics__value {
  display: block;
  margin: 0 0 0.08em;
  font-family: var(--hs-home-font-mono, "JetBrains Mono", ui-monospace, monospace);
  font-size: clamp(3.4rem, 8.2vw, 6.2rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.08em;
  font-variant-numeric: tabular-nums;
  color: transparent;
  -webkit-text-stroke: 1.6px color-mix(in srgb, var(--metric-accent) 82%, #fff);
  text-shadow: 0 0 42px var(--metric-glow);
  transition:
    color 0.38s ease,
    -webkit-text-stroke-color 0.38s ease,
    text-shadow 0.38s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.hs-home-metrics__cell:hover .hs-home-metrics__value {
  color: var(--metric-accent);
  -webkit-text-stroke-color: transparent;
  text-shadow: 0 0 56px var(--metric-glow);
  transform: translateY(-3px);
}

.hs-home-metrics__unit {
  margin: 0 0 clamp(16px, 2vw, 22px);
  font-size: clamp(0.95rem, 1.35vw, 1.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: rgba(240, 237, 255, 0.94);
}

.hs-home-metrics__rule {
  display: block;
  width: 2.4rem;
  height: 2px;
  margin-bottom: clamp(14px, 1.8vw, 18px);
  border-radius: 999px;
  background: var(--metric-accent);
  box-shadow: 0 0 14px var(--metric-glow);
  transform: scaleX(0.45);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hs-home-metrics__cell:hover .hs-home-metrics__rule {
  transform: scaleX(1);
}

.hs-home-metrics__desc {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.55;
  color: rgba(178, 184, 210, 0.68);
  transition: color 0.32s ease;
}

.hs-home-metrics__cell:hover .hs-home-metrics__desc {
  color: rgba(210, 214, 232, 0.9);
}

@media (max-width: 960px) {
  .hs-home-metrics__board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hs-home-metrics__cell:nth-child(2n + 1) {
    border-left: none;
  }

  .hs-home-metrics__cell:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hs-home-metrics__value {
    font-size: clamp(3.2rem, 12vw, 4.8rem);
  }
}

@media (max-width: 860px) {
  .hs-home-metrics__headline {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }

  .hs-home-metrics__lead {
    max-width: none;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .hs-home-metrics {
    padding: 44px 0 56px;
  }

  .hs-home-metrics__board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hs-home-metrics__cell {
    align-items: center;
    text-align: center;
    padding: 20px 12px 22px;
  }

  .hs-home-metrics__cell + .hs-home-metrics__cell {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hs-home-metrics__cell:nth-child(2n + 1) {
    border-left: none;
  }

  .hs-home-metrics__cell:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hs-home-metrics__rule {
    margin-left: auto;
    margin-right: auto;
    transform-origin: center;
  }

  .hs-home-metrics__value {
    font-size: clamp(2.4rem, 14vw, 3.2rem);
  }

  .hs-home-metrics__unit {
    font-size: 0.95rem;
  }

  .hs-home-metrics__desc {
    max-width: none;
    font-size: 13px;
  }

  .hs-home-metrics__ordinal {
    margin-bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hs-home-metrics__value,
  .hs-home-metrics__cell:hover .hs-home-metrics__value,
  .hs-home-metrics__rule,
  .hs-home-metrics__cell:hover .hs-home-metrics__rule {
    transition: none;
    transform: none;
  }

  .hs-home-metrics__cell:hover .hs-home-metrics__value {
    color: var(--metric-accent);
    -webkit-text-stroke-color: transparent;
  }

  .hs-home-metrics__cell:hover .hs-home-metrics__rule {
    transform: scaleX(1);
  }
}

/* ?????-?????? ??? hero: ??????? ????????? ???????? (???????? ??????)
.hs-home-below-hero.hs-home-depth-section {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(16px, 2.4vh, 30px) 0;
  background: var(--hs-home-section-bg);
}

.hs-home-depth-section {
  position: relative;
  overflow: hidden;
}

.hs-home-depth-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 3.2vw, 30px);
}

.hs-home-tab-stage {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hs-home-tab-stage > .hs-home-video-showcase__frame {
  position: relative;
  z-index: 1;
}

.hs-home-video-showcase__head {
  max-width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hs-home-video-showcase__kicker {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(177, 160, 255, 0.88);
}

.hs-home-video-showcase__title {
  margin: 0;
  font-size: clamp(1.55rem, 5.2vh, 3.25rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: #f7f4ff;
  text-wrap: balance;
}

.hs-home-video-showcase__frame {
  display: grid;
  grid-template-columns: minmax(200px, 0.34fr) minmax(0, 1fr);
  min-height: clamp(330px, 57vh, 520px);
  border-radius: clamp(14px, 2vw, 22px);
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    rgba(4, 4, 10, 0.78);
  background-size: 54px 54px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.07),
    0 22px 60px rgba(0, 0, 0, 0.34);
}

.hs-home-format-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(12px, 2vh, 18px);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}

.hs-home-format-nav__btn {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px 12px;
  width: 100%;
  padding: clamp(12px, 1.6vh, 16px);
  border: 1px solid transparent;
  border-radius: 14px;
  --hs-btn-vfill-bg: rgba(255, 255, 255, 0.08);
  --hs-btn-vfill-rest: 0;
  --hs-btn-vfill-hover: 1;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.hs-home-format-nav__btn:hover {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.1);
}

.hs-home-format-nav__btn.is-active {
  --hs-btn-vfill-bg: rgba(126, 98, 255, 0.22);
  --hs-btn-vfill-rest: 1;
  --hs-btn-vfill-hover: 0;
  background: transparent;
  border-color: rgba(186, 170, 255, 0.28);
  box-shadow:
    inset 3px 0 0 #9b7cff,
    0 8px 24px rgba(0, 0, 0, 0.2);
}

.hs-home-format-nav__btn.is-active:hover {
  background: transparent;
  border-color: rgba(186, 170, 255, 0.45);
  box-shadow: inset 3px 0 0 #9b7cff;
}

.hs-home-format-nav__btn:focus-visible {
  outline: 2px solid rgba(210, 198, 255, 0.9);
  outline-offset: 2px;
}

.hs-home-format-nav__num {
  font-family: var(--hs-home-font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(177, 160, 255, 0.72);
}

.hs-home-format-nav__btn.is-active .hs-home-format-nav__num {
  color: rgba(230, 222, 255, 0.95);
}

.hs-home-format-nav__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.hs-home-format-nav__name {
  font-family: var(--hs-home-font-display);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  font-weight: 700;
  line-height: 1.15;
  color: #f5f2ff;
}

.hs-home-format-nav__hint {
  font-size: clamp(11px, 0.95vw, 12px);
  font-weight: 400;
  line-height: 1.4;
  color: rgba(190, 196, 220, 0.72);
}

.hs-home-format-nav__duration {
  font-family: var(--hs-home-font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(200, 195, 225, 0.65);
  white-space: nowrap;
}

.hs-home-format-nav__btn.is-active .hs-home-format-nav__duration {
  color: rgba(230, 225, 255, 0.88);
}

.hs-home-format-stage {
  position: relative;
  min-width: 0;
  min-height: inherit;
}

.hs-home-format-panel {
  position: absolute;
  inset: 0;
  margin: 0;
  min-height: 0;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.32s ease,
    transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.hs-home-format-panel.is-active {
  opacity: 1;
  transform: translateY(0);
}

.hs-home-tab-video {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
  background: #050508;
}

.hs-home-tab-story {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: clamp(14px, 2.4vh, 22px) clamp(16px, 2.8vw, 28px);
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 30%, rgba(105, 78, 255, 0.18), transparent 34%),
    linear-gradient(146deg, rgba(9, 9, 18, 0.98) 0%, rgba(5, 5, 10, 0.98) 100%);
}

.hs-home-tab-story::before {
  content: "";
  position: absolute;
  inset: clamp(14px, 2.4vw, 26px);
  border-radius: clamp(14px, 2vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, #000 18%, transparent 78%);
  pointer-events: none;
}

.hs-home-tab-story__viewport {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 0;
  height: 100%;
  border-radius: clamp(20px, 3vw, 34px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(105, 72, 255, 0.24), transparent 38%),
    linear-gradient(145deg, rgba(35, 31, 58, 0.86), rgba(11, 10, 22, 0.94));
  border: 1px solid rgba(222, 214, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 26px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}

.hs-home-tab-story__viewport::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: clamp(16px, 2.2vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

.hs-home-tab-story__placeholder {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  width: 100%;
  height: 100%;
  min-height: 0;
  text-align: center;
  padding: clamp(26px, 5vw, 52px);
  background:
    radial-gradient(circle at 50% 42%, rgba(116, 84, 255, 0.25), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 72%);
  color: rgba(236, 232, 255, 0.92);
}

.hs-home-tab-story__play {
  width: clamp(70px, 8vw, 98px);
  height: clamp(70px, 8vw, 98px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(145deg, #8f6cff, #5a2cff);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow:
    0 18px 46px rgba(80, 44, 210, 0.45),
    0 0 0 12px rgba(119, 84, 255, 0.12);
}

.hs-home-tab-story__play-icon {
  display: block;
  width: clamp(28px, 3.4vw, 34px);
  height: clamp(28px, 3.4vw, 34px);
  margin: 0;
  fill: currentColor;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .hs-home-tab-story__viewport {
    background: rgba(14, 12, 28, 0.92);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hs-home-tab-story__placeholder {
    background: rgba(36, 32, 62, 0.88);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

}

@media (max-width: 780px) {
  .hs-home-video-showcase__frame {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hs-home-format-nav {
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px;
    gap: 10px;
    scrollbar-width: none;
  }

  .hs-home-format-nav::-webkit-scrollbar {
    display: none;
  }

  .hs-home-format-nav__btn {
    flex: 0 0 minmax(220px, 78vw);
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .hs-home-format-panel {
    position: relative;
    opacity: 1;
    transform: none;
  }

  .hs-home-tab-story {
    min-height: 0;
    padding: clamp(14px, 4vw, 22px);
  }

  .hs-home-tab-story__viewport {
    min-height: clamp(260px, 64vw, 420px);
  }
}
*/

/* ????? ??????? ? ?????????? ?????? ?????? ?????? ? ?????????? */
.hs-home-package-start {
  position: relative;
  z-index: 0;
  padding: clamp(24px, 4vh, 44px) 0 clamp(40px, 8vh, 72px);
  background: var(--hs-home-section-bg);
  overflow: visible;
}

.hs-home-package-start__container {
  position: relative;
}

.hs-home-package-start__stack {
  position: relative;
  overflow: hidden;
  border-radius: clamp(40px, 7vw, 64px);
}

.hs-home-package-start__stack::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 18%, rgba(137, 103, 255, 0.58), transparent 30%),
    radial-gradient(circle at 84% 78%, rgba(48, 211, 255, 0.16), transparent 28%),
    linear-gradient(152deg, #171126 0%, #23145e 45%, #120c2c 100%);
  border: 1px solid rgba(204, 190, 255, 0.16);
  box-shadow:
    0 30px 72px rgba(10, 6, 36, 0.58),
    0 1px 0 rgba(255, 255, 255, 0.16) inset;
  pointer-events: none;
}

.hs-home-package-start__stack::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 1;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 100%);
  opacity: 0.48;
  pointer-events: none;
}

.hs-home-package-start__panel {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  border-radius: 0;
  padding:
    clamp(20px, 3.2vh, 32px)
    clamp(18px, 3vw, 36px)
    clamp(22px, 3.8vh, 40px);
  min-height: clamp(220px, 26vh, 340px);
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.hs-home-package-start__eyebrow {
  position: relative;
  z-index: 3;
  margin: 0 0 12px;
  text-align: center;
  font-size: var(--hs-font-sm);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(207, 229, 255, 0.92);
  line-height: 1.45;
}

.hs-home-package-start__layout {
  flex: 1 1 auto;
  display: block;
  position: relative;
  z-index: 2;
  margin-top: clamp(10px, 1.8vh, 18px);
  min-height: 0;
}

.hs-home-package-start__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  min-width: 0;
  min-height: clamp(100px, 14vh, 200px);
  margin: 0;
  position: relative;
  z-index: 2;
}

.hs-home-package-start__agent {
  position: absolute;
  left: clamp(-56px, -6vw, -24px);
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin: 0;
  width: clamp(220px, 30vw, 420px);
  max-width: 35%;
  height: 100%;
  pointer-events: none;
}

.hs-home-package-start__agent-img {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: clamp(250px, 37vh, 430px);
  height: auto;
  object-fit: contain;
  object-position: bottom left;
  transform: translateX(-10%);
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.4));
}

.hs-home-package-start__stats {
  position: relative;
  z-index: 2;
  counter-reset: hsPackageStat;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: min(100%, 920px);
  display: flex;
  align-items: stretch;
  gap: clamp(8px, 1.2vw, 12px);
}

.hs-home-package-start__stat {
  margin: 0;
  padding: 0;
  min-height: clamp(188px, 19vw, 240px);
  flex: 1.18 1 104px;
  min-width: clamp(86px, 8.4vw, 112px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: clamp(18px, 2vw, 24px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.045) 100%),
    rgba(12, 10, 30, 0.42);
  backdrop-filter: blur(32px) saturate(1.45);
  -webkit-backdrop-filter: blur(32px) saturate(1.45);
  border: 1px solid rgba(214, 204, 255, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16) inset,
    0 18px 38px rgba(5, 4, 18, 0.24);
  transition:
    flex 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    min-width 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.32s ease,
    border-color 0.42s ease,
    background 0.42s ease,
    box-shadow 0.42s ease;
}

.hs-home-package-start__stat.is-active {
  flex: 3.15 1 300px;
  min-width: min(100%, 280px);
  background:
    radial-gradient(circle at 76% 24%, rgba(115, 226, 255, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(121, 92, 255, 0.32) 0%, rgba(255, 255, 255, 0.075) 100%),
    rgba(16, 12, 40, 0.46);
  backdrop-filter: blur(40px) saturate(1.5);
  -webkit-backdrop-filter: blur(40px) saturate(1.5);
  border-color: rgba(220, 211, 255, 0.36);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 24px 54px rgba(6, 5, 22, 0.4);
}

.hs-home-package-start__stat-toggle {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: clamp(10px, 1.4vw, 14px);
  padding: clamp(14px, 2vw, 18px);
  border: 0;
  border-radius: inherit;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
}

.hs-home-package-start__stat:not(.is-active) .hs-home-package-start__stat-toggle {
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding-inline: 10px;
  padding-bottom: clamp(22px, 2.8vw, 34px);
}

.hs-home-package-start__stat-toggle:focus-visible {
  outline: 2px solid rgba(238, 233, 255, 0.9);
  outline-offset: -5px;
}

.hs-home-package-start__stat::before {
  counter-increment: hsPackageStat;
  content: "0" counter(hsPackageStat);
  position: absolute;
  top: clamp(12px, 1.6vw, 18px);
  left: clamp(12px, 1.6vw, 18px);
  z-index: 2;
  min-width: 38px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(112, 86, 255, 0.2);
  border: 1px solid rgba(207, 194, 255, 0.22);
  color: rgba(229, 223, 255, 0.88);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: var(--hs-font-2xs);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
}

.hs-home-package-start__stat::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(107, 83, 255, 0.32), transparent 2px) 0 0 / 100% 100% no-repeat,
    radial-gradient(circle at 100% 100%, rgba(67, 214, 255, 0.16) 0%, transparent 42%);
  opacity: 0.78;
  pointer-events: none;
}

.hs-home-package-start__stat-toggle {
  position: relative;
  z-index: 1;
}

.hs-home-package-start__stat:not(.is-active):hover {
  transform: translateY(-3px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.07) 100%),
    rgba(28, 21, 68, 0.5);
  backdrop-filter: blur(36px) saturate(1.5);
  -webkit-backdrop-filter: blur(36px) saturate(1.5);
  border-color: rgba(214, 204, 255, 0.36);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 24px 48px rgba(5, 4, 18, 0.34);
}

.hs-home-package-start__stat.is-active:hover {
  transform: translateY(-3px);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .hs-home-package-start__stat {
    background: rgba(32, 24, 72, 0.72);
  }
}

.hs-home-package-start__stat-title {
  position: relative;
  display: block;
  margin: 0;
  max-width: 100%;
  font-size: clamp(0.94rem, 1.25vw, 1.1rem);
  font-weight: 900;
  line-height: 1.12;
  color: #f8f6ff;
  transition:
    max-width 0.48s cubic-bezier(0.16, 1, 0.3, 1),
    font-size 0.48s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.24s ease;
}

.hs-home-package-start__stat:not(.is-active) .hs-home-package-start__stat-title {
  color: transparent;
}

.hs-home-package-start__stat:not(.is-active) .hs-home-package-start__stat-title::after {
  content: attr(data-short-title);
  color: #f8f6ff;
  display: block;
  max-width: 100%;
  font-size: clamp(0.88rem, 1.18vw, 1.04rem);
  line-height: 1.05;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

.hs-home-package-start__stat.is-active .hs-home-package-start__stat-title {
  max-width: 16ch;
  font-size: clamp(1.2rem, 2vw, 1.72rem);
  color: #f8f6ff;
  overflow: visible;
  white-space: normal;
  text-wrap: balance;
}

.hs-home-package-start__stat.is-active .hs-home-package-start__stat-title::after {
  content: none;
}

.hs-home-package-start__stat-label {
  margin: 0;
  max-width: 34ch;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: clamp(0.78rem, 1vw, 0.86rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1.5;
  color: rgba(230, 226, 246, 0.78);
  transform: translateY(12px);
  transition:
    opacity 0.38s ease,
    transform 0.48s cubic-bezier(0.16, 1, 0.3, 1),
    max-height 0.58s cubic-bezier(0.16, 1, 0.3, 1);
}

.hs-home-package-start__stat.is-active .hs-home-package-start__stat-label {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.14s;
}

.hs-home-package-start__cta-wrap {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  margin: clamp(14px, 2.4vh, 26px) 0 0;
  padding: 0 min(20px, 4vw);
  text-align: center;
}

.hs-home-package-start__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 clamp(32px, 5vw, 56px);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(227, 233, 255, 0.96) 100%);
  color: #21115f;
  font-weight: 800;
  font-size: clamp(13px, 1.05vw, 15px);
  letter-spacing: 0.06em;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(150, 121, 255, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.hs-home-package-start__pill:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.28),
    0 1px 0 rgba(255, 255, 255, 1) inset;
}

.hs-home-package-start__pill:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .hs-home-package-start {
    padding-left: 0;
    padding-right: 0;
  }

  .hs-home-package-start__stack {
    display: flex;
    flex-direction: column;
    border-radius: clamp(24px, 6vw, 40px);
    overflow: visible;
  }

  .hs-home-package-start__panel {
    order: 1;
    min-height: 0;
    padding-bottom: clamp(24px, 6vh, 40px);
  }

  .hs-home-package-start__layout {
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 2vw, 14px);
  }

  .hs-home-package-start__main {
    align-self: stretch;
    min-height: 0;
  }

  .hs-home-package-start__agent {
    order: 2;
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    height: auto;
    justify-content: center;
    margin-top: clamp(4px, 1.5vw, 12px);
  }

  .hs-home-package-start__stats {
    width: 100%;
    max-width: min(560px, 100%);
    margin-inline: auto;
    flex-direction: column;
  }

  .hs-home-package-start__stat,
  .hs-home-package-start__stat.is-active {
    flex: 0 0 auto;
    min-width: 0;
    min-height: auto;
    overflow: visible;
  }

  .hs-home-package-start__stat-toggle {
    min-height: 0;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    padding:
      44px
      clamp(14px, 4vw, 18px)
      clamp(14px, 3.5vw, 18px);
    overflow: visible;
    text-align: left;
  }

  .hs-home-package-start__stat:not(.is-active) .hs-home-package-start__stat-toggle {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    padding-inline: clamp(14px, 4vw, 18px);
    padding-bottom: clamp(14px, 3.5vw, 18px);
  }

  .hs-home-package-start__stat-label,
  .hs-home-package-start__stat.is-active .hs-home-package-start__stat-label {
    max-width: none;
    max-height: none;
    overflow: visible;
    transform: none;
    opacity: 1;
  }

  .hs-home-package-start__stat:not(.is-active) .hs-home-package-start__stat-label {
    display: none;
  }

  .hs-home-package-start__stat:not(.is-active) .hs-home-package-start__stat-title,
  .hs-home-package-start__stat.is-active .hs-home-package-start__stat-title {
    max-width: none;
    font-size: clamp(1rem, 4.2vw, 1.2rem);
    color: #f8f6ff;
    overflow: visible;
    white-space: normal;
    text-wrap: pretty;
  }

  .hs-home-package-start__stat.is-active .hs-home-package-start__stat-title {
    font-size: clamp(1.08rem, 4.6vw, 1.32rem);
  }

  .hs-home-package-start__stat:not(.is-active) .hs-home-package-start__stat-title::after {
    content: none;
  }

  .hs-home-package-start__agent-img {
    width: clamp(200px, 52vw, 280px);
    max-height: clamp(240px, 62vw, 360px);
    object-position: bottom center;
    transform: none;
  }

  .hs-home-package-start__pill {
    width: 100%;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hs-home-package-start__pill {
    transition: none;
  }

  .hs-home-package-start__pill:hover {
    transform: none;
  }
}

/* ---------- ???. ?????? ???????? ---------- */

.hs-home-section-head {
  text-align: center;
  max-width: min(640px, 100%);
  margin: 0 auto clamp(28px, 4vw, 40px);
}

.hs-home-section-head__kicker {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(160, 130, 255, 0.9);
}

.hs-home-section-head__title {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: #f2f0ff;
  text-shadow: 0 3px 22px rgba(72, 40, 160, 0.35);
}

.hs-home-section-head__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(170, 178, 204, 0.88);
}

/* --- T / CT duel: тренажёр + лекторий --- */
.hs-home-duel {
  --duel-t: #ff9a4a;
  --duel-ct: #5ce1ff;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(560px, 86vh, 820px);
  overflow: visible;
  background: var(--hs-home-section-bg);
}

/* Полусферы подсветки: от внешнего края к центру */
.hs-home-duel::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -8% 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: transparent;
}

.hs-home-duel:has(.hs-home-duel__half--t:hover)::before,
.hs-home-duel:has(.hs-home-duel__half--t:focus-visible)::before {
  opacity: 1;
  background: radial-gradient(
    ellipse 95% 130% at 0% 50%,
    rgba(255, 140, 60, 0.42) 0%,
    rgba(255, 120, 50, 0.18) 32%,
    rgba(255, 100, 40, 0.06) 52%,
    transparent 68%
  );
}

.hs-home-duel:has(.hs-home-duel__half--ct:hover)::before,
.hs-home-duel:has(.hs-home-duel__half--ct:focus-visible)::before {
  opacity: 1;
  background: radial-gradient(
    ellipse 95% 130% at 100% 50%,
    rgba(70, 210, 255, 0.42) 0%,
    rgba(40, 190, 255, 0.18) 32%,
    rgba(40, 170, 255, 0.06) 52%,
    transparent 68%
  );
}

.hs-home-duel__half {
  position: relative;
  z-index: 1;
  display: block;
  min-height: inherit;
  height: 100%;
  text-decoration: none;
  color: inherit;
  overflow: visible;
  outline: none;
  cursor: pointer;
  background: transparent;
}

.hs-home-duel__half--t {
  grid-column: 1;
  grid-row: 1;
}

.hs-home-duel__half--ct {
  grid-column: 2;
  grid-row: 1;
}
.hs-home-duel__figure {
  position: absolute;
  bottom: 0;
  z-index: 1;
  display: block;
  width: auto;
  height: min(78%, 680px);
  max-width: min(88%, 520px);
  object-fit: contain;
  object-position: bottom center;
  filter: grayscale(1) contrast(1.05);
  transform: translateY(2%) scale(1);
  opacity: 0.78;
  pointer-events: none;
  user-select: none;
  /* Жёсткий срез: режем до мягкого alpha-хвоста в PNG */
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 76%,
    transparent 82%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 76%,
    transparent 82%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition:
    filter 0.45s ease,
    transform 0.45s ease,
    opacity 0.45s ease;
}

.hs-home-duel__half--t .hs-home-duel__figure {
  left: clamp(8px, 2vw, 40px);
  object-position: bottom left;
}

.hs-home-duel__half--ct .hs-home-duel__figure {
  right: clamp(8px, 2vw, 40px);
  object-position: bottom right;
}

.hs-home-duel__reveal {
  position: absolute;
  top: 34%;
  bottom: auto;
  z-index: 2;
  max-width: min(320px, 46%);
  padding: 0 12px;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.hs-home-duel__half--t .hs-home-duel__reveal {
  right: clamp(12px, 2.2vw, 28px);
  left: auto;
  text-align: right;
}

.hs-home-duel__half--ct .hs-home-duel__reveal {
  left: clamp(12px, 2.2vw, 28px);
  right: auto;
  text-align: left;
}

.hs-home-duel__side-kicker {
  margin: 0 0 8px;
  font-family: var(--hs-home-font-mono, "Outfit", sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(220, 225, 240, 0.62);
}

.hs-home-duel__side-title {
  margin: 0 0 10px;
  font-family: var(--hs-home-font-display, "Russo One", sans-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #f7f4ff;
}

.hs-home-duel__side-text {
  margin: 0 0 14px;
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.45;
  color: rgba(210, 215, 230, 0.84);
}

.hs-home-duel__side-cta {
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
}

.hs-home-duel__half--t .hs-home-duel__side-cta {
  color: var(--duel-t);
}

.hs-home-duel__half--ct .hs-home-duel__side-cta {
  color: var(--duel-ct);
}

.hs-home-duel__half:hover .hs-home-duel__figure,
.hs-home-duel__half:focus-visible .hs-home-duel__figure {
  filter: none;
  opacity: 1;
  transform: translateY(0) scale(1.03);
}


.hs-home-duel__half:hover .hs-home-duel__reveal,
.hs-home-duel__half:focus-visible .hs-home-duel__reveal {
  opacity: 1;
  transform: translateY(0);
}

.hs-home-duel__center {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: clamp(16px, 3vh, 36px) 16px clamp(28px, 5vh, 52px);
  pointer-events: none;
}

.hs-home-duel__lead,
.hs-home-duel__ask,
.hs-home-duel__hint {
  pointer-events: none;
}

.hs-home-duel__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  pointer-events: auto;
}

.hs-home-duel__lead {
  margin: 0;
  max-width: 34ch;
  font-size: clamp(15px, 1.45vw, 18px);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(230, 232, 242, 0.88);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}

.hs-home-duel__lead--mobile {
  display: none;
}

.hs-home-duel__faceoff {
  display: none;
}

.hs-home-duel__brand {
  font-style: normal;
  font-weight: 700;
  color: #ff4d6d;
}

.hs-home-duel__accent {
  color: #fff;
  font-weight: 600;
}

.hs-home-duel__ask {
  margin: clamp(18px, 3vh, 28px) 0 clamp(16px, 2.4vh, 22px);
  font-family: var(--hs-home-font-display, "Russo One", sans-serif);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
}

.hs-home-duel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.hs-home-duel__btn--t {
  border: 1px solid rgba(255, 154, 74, 0.55);
  background: rgba(180, 60, 28, 0.72);
  color: #fff7f0;
}

.hs-home-duel__btn--t:hover {
  background: rgba(210, 78, 36, 0.9);
  transform: translateY(-1px);
}

.hs-home-duel__btn--ct {
  border: 1px solid rgba(235, 240, 255, 0.42);
  background: transparent;
  color: #f2f5ff;
}

.hs-home-duel__btn--ct:hover {
  border-color: rgba(92, 225, 255, 0.7);
  color: #fff;
  transform: translateY(-1px);
}

.hs-home-duel__btn-arrow {
  font-size: 14px;
  opacity: 0.85;
}

.hs-home-duel__hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: clamp(22px, 3.5vh, 34px) 0 0;
  font-size: 12px;
  color: rgba(170, 180, 205, 0.62);
}

.hs-home-duel__hint-icon {
  width: 14px;
  height: 22px;
  border: 1.5px solid rgba(180, 190, 215, 0.55);
  border-radius: 8px;
  position: relative;
}

.hs-home-duel__hint-icon::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  width: 2px;
  height: 5px;
  border-radius: 1px;
  background: rgba(180, 190, 215, 0.7);
  transform: translateX(-50%);
  animation: hs-duel-scroll 1.4s ease-in-out infinite;
}

@keyframes hs-duel-scroll {
  0%,
  100% {
    opacity: 0.35;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(5px);
  }
}

@media (max-width: 980px) {
  .hs-home-duel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    padding: 8px 0 28px;
    overflow: hidden;
    background: var(--hs-home-section-bg);
  }

  .hs-home-duel::before {
    display: none;
  }

  .hs-home-duel__half {
    display: none;
  }

  .hs-home-duel__faceoff {
    display: block;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
  }

  .hs-home-duel__faceoff-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(42vh, 340px);
    object-fit: cover;
    object-position: center 28%;
    filter: grayscale(0.35) contrast(1.06);
    -webkit-mask-image: linear-gradient(
      to bottom,
      #000 0%,
      #000 76%,
      transparent 82%
    );
    mask-image: linear-gradient(
      to bottom,
      #000 0%,
      #000 76%,
      transparent 82%
    );
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .hs-home-duel__center {
    position: relative;
    inset: auto;
    order: unset;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 18px 18px 0;
    pointer-events: auto;
  }

  .hs-home-duel__lead--desktop,
  .hs-home-duel__ask,
  .hs-home-duel__hint {
    display: none;
  }

  .hs-home-duel__lead--mobile {
    display: block;
    max-width: none;
    margin: 0;
    font-size: clamp(15px, 4.1vw, 17px);
    line-height: 1.55;
    font-weight: 400;
    color: rgba(236, 238, 245, 0.92);
    text-align: center;
    text-shadow: none;
  }

  .hs-home-duel__actions {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    margin-top: 22px;
  }

  .hs-home-duel__btn {
    flex: none;
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 10px;
    border: 1.5px solid rgba(255, 255, 255, 0.72);
    background: transparent;
    color: #f5f5f7;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
  }

  .hs-home-duel__btn--t,
  .hs-home-duel__btn--ct {
    border-color: rgba(255, 255, 255, 0.72);
    background: transparent;
    color: #f5f5f7;
  }

  .hs-home-duel__btn--t:hover,
  .hs-home-duel__btn--ct:hover,
  .hs-home-duel__btn--t:focus-visible,
  .hs-home-duel__btn--ct:focus-visible {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    transform: none;
  }

  .hs-home-duel__btn-arrow {
    display: none;
  }
}

@media (max-width: 560px) {
  .hs-home-duel {
    padding: 4px 0 24px;
  }

  .hs-home-duel__faceoff-img {
    max-height: min(38vh, 280px);
  }

  .hs-home-duel__center {
    padding: 16px 16px 0;
  }

  .hs-home-duel__lead--mobile {
    font-size: 15px;
  }

  .hs-home-duel__actions {
    margin-top: 18px;
    gap: 10px;
  }

  .hs-home-duel__btn {
    min-height: 48px;
    font-size: 14px;
  }
}

@media (hover: none) and (min-width: 981px) {
  .hs-home-duel__figure {
    filter: none;
    opacity: 1;
  }

  .hs-home-duel__reveal {
    opacity: 1;
    transform: none;
  }

  .hs-home-duel__hint {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hs-home-duel__figure,
  .hs-home-duel__reveal,
  .hs-home-duel__btn,
  .hs-home-duel__hint-icon::after {
    transition: none;
    animation: none;
  }
}

.hs-home-product__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 clamp(28px, 4vw, 40px);
  border-radius: 999px;
  border: 1px solid rgba(235, 232, 255, 0.42);
  --hs-btn-vfill-bg: rgba(255, 255, 255, 0.12);
  --hs-btn-vfill-rest: 0;
  --hs-btn-vfill-hover: 1;
  background: transparent;
  color: #f4f2ff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    border-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.hs-home-product__cta-btn:hover {
  border-color: rgba(210, 198, 255, 0.72);
  background: transparent;
  color: #fff;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
}

.hs-home-product__cta-btn:focus-visible {
  outline: 2px solid rgba(210, 198, 255, 0.9);
  outline-offset: 3px;
}

/* --- ???????? /register/why-steam/ --- */
.hs-home-steam-trust__url {
  margin-top: clamp(16px, 2.5vh, 22px);
  padding: clamp(14px, 2vw, 18px) clamp(16px, 2.5vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: clamp(12px, 1.6vw, 18px);
  background: rgba(6, 6, 12, 0.35);
  text-align: center;
}

.hs-home-steam-trust__url-kicker {
  display: block;
  margin-bottom: 8px;
  font-family: var(--hs-home-font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(145, 155, 185, 0.72);
}

.hs-home-steam-trust__url code {
  display: block;
  font-family: var(--hs-home-font-mono);
  font-size: clamp(11px, 1vw, 13px);
  line-height: 1.5;
  color: rgba(186, 192, 218, 0.95);
  word-break: break-all;
}

.hs-home-steam-trust-page {
  padding: clamp(96px, 12vh, 120px) 0 clamp(56px, 8vh, 88px);
  background: var(--hs-home-section-bg);
}

.hs-home-steam-trust-page .hs-home-steam-trust__url {
  max-width: min(720px, 100%);
  margin-inline: auto;
}

.hs-home-steam-trust-page .hs-home-faq__list {
  max-width: min(720px, 100%);
  margin: clamp(24px, 3vh, 32px) auto 0;
}

.hs-home-steam-trust-page__back {
  margin: clamp(24px, 3vh, 32px) 0 0;
  text-align: center;
}

/* FAQ + соцсети на главной */
.hs-home-connect {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  min-height: 100dvh;
  padding: clamp(48px, 8vh, 96px) 0;
  background: var(--hs-home-section-bg);
}

.hs-home-connect > .container {
  width: min(1240px, calc(100% - 32px));
}

.hs-home-connect__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.95fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  width: 100%;
}

.hs-home-connect__faq {
  min-width: 0;
}

.hs-home-connect__social {
  min-width: 0;
}

.hs-home-connect .hs-home-faq__head {
  max-width: none;
  margin: 0 0 22px;
  text-align: left;
}

.hs-home-connect .hs-home-faq__kicker {
  margin: 0 0 8px;
  font-size: 13px;
}

.hs-home-connect .hs-home-faq__title {
  font-size: clamp(28px, 3.4vw, 40px);
}

.hs-home-connect .hs-home-faq__list {
  gap: 14px;
}

.hs-home-connect .hs-home-faq__item {
  border-radius: 18px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 10px 24px rgba(0, 0, 0, 0.3);
}

.hs-home-connect .hs-home-faq__item[open] {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 14px 32px rgba(0, 0, 0, 0.34);
}

.hs-home-connect .hs-home-faq__q {
  padding: 20px 52px 20px 22px;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.4;
}

.hs-home-connect .hs-home-faq__q::after {
  right: 20px;
  width: 10px;
  height: 10px;
}

.hs-home-connect .hs-home-faq__a {
  padding: 0 22px 20px;
}

.hs-home-connect .hs-home-faq__a p {
  padding-top: 14px;
  font-size: 15.5px;
  line-height: 1.65;
}

.hs-home-faq__kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(170, 150, 255, 0.85);
}

.hs-home-faq__title {
  margin: 0;
  font-family: var(--hs-home-font-body, "Outfit", sans-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: rgba(236, 234, 255, 0.96);
}

/* FAQ accordion (также /register/why-steam/) */
.hs-home-faq__list {
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hs-home-faq__item {
  border-radius: clamp(18px, 2.2vw, 22px);
  background: linear-gradient(165deg, rgba(22, 20, 38, 0.94) 0%, rgba(10, 10, 18, 0.97) 100%);
  border: 1px solid rgba(120, 98, 210, 0.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 14px 32px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.hs-home-faq__item[open] {
  border-color: rgba(150, 125, 255, 0.3);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.07) inset,
    0 20px 44px rgba(0, 0, 0, 0.4);
}

.hs-home-faq__q {
  list-style: none;
  cursor: pointer;
  padding: clamp(16px, 2.2vw, 20px) clamp(44px, 5vw, 52px) clamp(16px, 2.2vw, 20px) clamp(18px, 2.4vw, 22px);
  font-family: var(--hs-home-font-body, "Outfit", sans-serif);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: rgba(236, 234, 255, 0.96);
  position: relative;
}

.hs-home-faq__q::-webkit-details-marker {
  display: none;
}

.hs-home-faq__q::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(160, 140, 230, 0.85);
  border-bottom: 2px solid rgba(160, 140, 230, 0.85);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}

.hs-home-faq__item[open] .hs-home-faq__q::after {
  transform: translateY(-25%) rotate(225deg);
}

.hs-home-faq__a {
  padding: 0 clamp(18px, 2.4vw, 22px) clamp(16px, 2.2vw, 20px);
  border-top: 1px solid rgba(100, 90, 140, 0.2);
}

.hs-home-faq__a p {
  margin: 0;
  padding-top: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(186, 192, 218, 0.9);
}

.hs-home-faq__a a {
  color: rgba(180, 155, 255, 0.98);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hs-home-faq__a a:hover {
  color: #e8e0ff;
}

.hs-home-faq__a strong {
  color: #fff;
  font-weight: 700;
}

.hs-home-faq__q:focus-visible {
  outline: 2px solid rgba(198, 170, 255, 0.85);
  outline-offset: -2px;
}

.hs-home-social__shell {
  position: relative;
  width: min(560px, 100%);
  margin: 0 auto;
}

.hs-home-social__visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-bottom: -48px;
  pointer-events: none;
}

.hs-home-social__visual::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 58%;
  width: clamp(220px, 42vw, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(98, 68, 210, 0.5) 0%,
    rgba(48, 36, 110, 0.22) 48%,
    transparent 72%
  );
  filter: blur(30px);
  transform: translate(-50%, -50%) scale(0.94);
  animation: hsHomeSocialGlow 3s ease-in-out infinite;
}

.hs-home-social__figure {
  position: relative;
  z-index: 1;
  display: block;
  width: min(360px, 66%);
  height: auto;
  animation: hsHomeSocialFloat 4.4s ease-in-out infinite;
}

@keyframes hsHomeSocialGlow {
  0%,
  100% {
    opacity: 0.68;
    transform: translate(-50%, -50%) scale(0.94);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes hsHomeSocialFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hs-home-social__panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(140, 120, 220, 0.28);
  background:
    radial-gradient(circle at 18% 20%, rgba(98, 54, 255, 0.22), transparent 42%),
    radial-gradient(circle at 86% 78%, rgba(220, 70, 160, 0.14), transparent 44%),
    linear-gradient(160deg, rgba(22, 18, 42, 0.96) 0%, rgba(8, 8, 16, 0.98) 100%);
}

.hs-home-social__cell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  min-height: 118px;
  padding: 28px 20px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  transition: background 0.22s ease, filter 0.22s ease;
}

.hs-home-social__cell:nth-child(2n) {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hs-home-social__cell:nth-child(n + 3) {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hs-home-social__cell:hover,
.hs-home-social__cell:focus-visible {
  outline: none;
}

.hs-home-social__cell--discord {
  background: rgba(88, 101, 242, 0.28);
}

.hs-home-social__cell--discord:hover,
.hs-home-social__cell--discord:focus-visible {
  background: #5865f2;
}

.hs-home-social__cell--tiktok {
  background: rgba(255, 255, 255, 0.04);
}

.hs-home-social__cell--tiktok:hover,
.hs-home-social__cell--tiktok:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.hs-home-social__cell--instagram {
  background: rgba(193, 53, 132, 0.22);
}

.hs-home-social__cell--instagram:hover,
.hs-home-social__cell--instagram:focus-visible {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 100%);
}

.hs-home-social__cell--telegram {
  background: rgba(42, 171, 238, 0.2);
}

.hs-home-social__cell--telegram:hover,
.hs-home-social__cell--telegram:focus-visible {
  background: #2aabee;
}

.hs-home-social__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.hs-home-social__icon img {
  display: block;
  max-width: 28px;
  max-height: 24px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.hs-home-social__cell--telegram .hs-home-social__icon img {
  max-width: 22px;
  max-height: 20px;
}

.hs-home-social__cell--discord .hs-home-social__icon img {
  max-width: 30px;
  max-height: 22px;
}

.hs-home-social__name {
  font-family: var(--hs-home-font-body, "Outfit", sans-serif);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #fff;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .hs-home-connect > .container {
    width: min(100%, calc(100% - 24px));
  }

  .hs-home-connect__layout {
    grid-template-columns: 1fr;
    gap: clamp(32px, 6vh, 48px);
  }

  .hs-home-connect .hs-home-faq__head {
    text-align: center;
  }

  .hs-home-social__shell {
    width: min(560px, 100%);
  }
}

@media (max-width: 720px) {
  .hs-home-social__visual {
    margin-bottom: -32px;
  }

  .hs-home-social__figure {
    width: min(260px, 60%);
  }

  .hs-home-social__visual::before {
    width: clamp(200px, 62vw, 300px);
  }

  .hs-home-social__panel {
    border-radius: 16px;
  }

  .hs-home-social__cell {
    min-height: 88px;
    padding: 18px 12px;
    gap: 10px;
  }

  .hs-home-social__name {
    font-size: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hs-home-faq__q::after {
    transition: none;
  }

  .hs-home-social__visual::before,
  .hs-home-social__figure {
    animation: none;
  }

  .hs-home-social__cell {
    transition: none;
  }
}

/* ========== ??????????? ??????? ========== */

.hs-home-page .hs-home-hero-model-only__title {
  font-family: var(--hs-home-font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hs-home-page .hs-home-hero-model-only__subtitle,
.hs-home-page .hs-home-hero-fallback__subtitle,
.hs-home-page .hs-home-hero-model-only__caption,
.hs-home-page .hs-home-hero-model-only__btn {
  font-family: var(--hs-home-font-body);
}

.hs-home-page .hs-home-hero-model-only__caption {
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.45;
}

.hs-home-page .hs-home-hero-model-only__btn {
  font-weight: 600;
  letter-spacing: 0.015em;
}

.hs-home-page .hs-home-marquee__track {
  font-family: var(--hs-home-font-mono);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.hs-home-page .hs-home-metrics__kicker,
.hs-home-page .hs-home-package-start__eyebrow,
.hs-home-page .hs-home-section-head__kicker {
  font-family: var(--hs-home-font-mono);
  font-weight: 600;
  letter-spacing: 0.14em;
}

.hs-home-page .hs-home-metrics__title,
.hs-home-page .hs-home-section-head__title,
.hs-home-page .hs-home-duel__ask,
.hs-home-page .hs-home-duel__side-title {
  font-family: var(--hs-home-font-display);
  font-weight: 700;
}

.hs-home-page .hs-home-metrics__value {
  font-weight: 700;
  letter-spacing: -0.06em;
}

.hs-home-page .hs-home-metrics__unit {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hs-home-page .hs-home-metrics__lead,
.hs-home-page .hs-home-metrics__desc,
.hs-home-page .hs-home-section-head__lead,
.hs-home-page .hs-home-hero-fallback__lead {
  font-weight: 400;
  line-height: 1.6;
}

.hs-home-page .hs-home-product__cta-btn {
  font-weight: 600;
}

/* .hs-home-page .hs-home-format-nav__btn,
.hs-home-page .hs-home-format-nav__name {
  font-weight: 600;
  letter-spacing: 0.01em;
} */

.hs-home-page .hs-home-package-start__stat::before {
  font-weight: 700;
}

.hs-home-page .hs-home-package-start__stat-title,
.hs-home-page .hs-home-package-start__stat.is-active .hs-home-package-start__stat-title {
  font-family: var(--hs-home-font-display);
  font-weight: 700;
}

.hs-home-page .hs-home-package-start__stat-label,
.hs-home-page .hs-home-package-start__stat.is-active .hs-home-package-start__stat-label {
  font-weight: 400;
  line-height: 1.5;
}

.hs-home-page .hs-home-package-start__pill {
  font-weight: 700;
  letter-spacing: 0.04em;
}


.hs-home-page .hs-home-faq__q {
  font-family: var(--hs-home-font-body);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.hs-home-page .hs-home-faq__a p {
  font-weight: 400;
}

.hs-home-page .hs-home-social__name {
  font-weight: 700;
}

.hs-home-page .hs-btn {
  font-weight: 600;
  letter-spacing: 0.02em;
}


/* ========== Командные тренировки ========== */
.hs-home-group {
  position: relative;
  isolation: isolate;
  padding: clamp(64px, 10vh, 120px) 0 clamp(72px, 11vh, 128px);
  background: var(--hs-home-section-bg);
  overflow: hidden;
}

.hs-home-group__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hs-home-group__bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.55;
  filter: saturate(0.85) brightness(0.7);
}

.hs-home-group__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 8, 0.35) 0%, rgba(5, 5, 8, 0.55) 50%, rgba(5, 5, 8, 0.88) 100%),
    radial-gradient(ellipse 55% 50% at 78% 45%, rgba(95, 52, 249, 0.18), transparent 62%);
}

.hs-home-group__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(36px, 5vw, 56px);
}

.hs-home-group__stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.95fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: end;
}

.hs-home-group__copy {
  display: grid;
  gap: 16px;
  align-content: end;
  padding-bottom: clamp(8px, 1.5vw, 20px);
}

.hs-home-group__kicker {
  margin: 0;
  font-family: var(--hs-home-font-mono, "JetBrains Mono", ui-monospace, monospace);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(160, 130, 255, 0.92);
}

.hs-home-group__title {
  margin: 0;
  font-family: var(--hs-home-font-display, "Russo One", sans-serif);
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.01em;
  color: #f6f6f8;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.hs-home-group__accent {
  font-style: normal;
  color: #c4b5ff;
  text-shadow:
    0 0 32px rgba(122, 78, 255, 0.4),
    0 2px 0 rgba(255, 255, 255, 0.05);
}

.hs-home-group__lead {
  margin: 0;
  max-width: 38ch;
  font-family: var(--hs-home-font-body, "Outfit", sans-serif);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.55;
  font-weight: 500;
  color: rgba(198, 194, 220, 0.84);
}

.hs-home-group__specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 8px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hs-home-group__spec {
  display: grid;
  gap: 6px;
  padding: 14px 12px 16px;
  min-width: 0;
}

.hs-home-group__spec + .hs-home-group__spec {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.hs-home-group__spec dt {
  margin: 0;
  font-family: var(--hs-home-font-mono, "JetBrains Mono", ui-monospace, monospace);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(160, 130, 255, 0.78);
}

.hs-home-group__spec dd {
  margin: 0;
  font-family: var(--hs-home-font-display, "Russo One", sans-serif);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.1;
  color: #f2f0ff;
}

.hs-home-group__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin-top: 4px;
}

.hs-home-group__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.2rem;
  border-radius: 4px;
  border: 1px solid #f3f0ff;
  background: #f3f0ff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  font-family: var(--hs-home-font-body, "Outfit", sans-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.015em;
  text-decoration: none;
  color: #0b0b10;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.hs-home-group__cta:hover,
.hs-home-group__cta:focus-visible {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 14px 34px rgba(122, 78, 255, 0.28);
  transform: translateY(-1px);
  color: #0b0b10;
}

.hs-home-group__cta:focus-visible {
  outline: 2px solid #c4b5ff;
  outline-offset: 3px;
}

.hs-home-group__more {
  font-family: var(--hs-home-font-body, "Outfit", sans-serif);
  font-size: 13px;
  font-weight: 600;
  color: rgba(196, 181, 255, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 181, 255, 0.35);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.hs-home-group__more:hover,
.hs-home-group__more:focus-visible {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.55);
}

.hs-home-group__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: clamp(300px, 42vw, 480px);
  pointer-events: none;
}

.hs-home-group__ghost {
  position: absolute;
  left: 50%;
  top: 42%;
  z-index: 0;
  transform: translate(-50%, -50%);
  font-family: var(--hs-home-font-display, "Russo One", sans-serif);
  font-size: clamp(160px, 22vw, 280px);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(176, 156, 255, 0.14);
  user-select: none;
}

.hs-home-group__figure {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 560px);
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  filter:
    drop-shadow(0 22px 36px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 28px rgba(122, 78, 255, 0.18));
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.82) 72%,
    rgba(0, 0, 0, 0.35) 86%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.82) 72%,
    rgba(0, 0, 0, 0.35) 86%,
    transparent 100%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media (max-width: 900px) {
  .hs-home-group {
    padding: 32px 0 52px;
  }

  .hs-home-group__bg-img {
    object-position: center 22%;
    opacity: 0.42;
  }

  .hs-home-group__bg::after {
    background:
      radial-gradient(ellipse 90% 48% at 50% 12%, rgba(95, 52, 249, 0.28), transparent 70%),
      linear-gradient(180deg, rgba(5, 5, 8, 0.12) 0%, rgba(5, 5, 8, 0.55) 42%, rgba(5, 5, 8, 0.96) 78%);
  }

  .hs-home-group__inner {
    gap: 0;
  }

  .hs-home-group__stage {
    grid-template-columns: 1fr;
    gap: 4px;
    align-items: stretch;
    justify-items: center;
  }

  .hs-home-group__visual {
    order: -1;
    min-height: 0;
    width: min(100%, 440px);
    margin: 0 auto -6px;
  }

  .hs-home-group__figure {
    width: 100%;
    max-width: none;
    filter:
      drop-shadow(0 18px 32px rgba(0, 0, 0, 0.5))
      drop-shadow(0 0 36px rgba(122, 78, 255, 0.22));
  }

  .hs-home-group__ghost {
    display: none;
  }

  .hs-home-group__copy {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    gap: 12px;
    justify-items: center;
    align-content: start;
    text-align: center;
    padding-bottom: 0;
  }

  .hs-home-group__kicker {
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .hs-home-group__title {
    font-size: clamp(2.35rem, 9.5vw, 3.1rem);
    line-height: 0.92;
  }

  .hs-home-group__lead {
    max-width: 34ch;
    margin-inline: auto;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(198, 194, 220, 0.8);
  }

  .hs-home-group__specs {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 10px;
    border-radius: 12px;
    background: rgba(10, 10, 16, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
  }

  .hs-home-group__spec {
    justify-items: center;
    text-align: center;
    gap: 8px;
    padding: 16px 10px 18px;
  }

  .hs-home-group__spec + .hs-home-group__spec {
    border-left: none;
  }

  .hs-home-group__spec:nth-child(2n) {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hs-home-group__spec:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hs-home-group__spec dt {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .hs-home-group__spec dd {
    font-size: clamp(1.05rem, 4.2vw, 1.2rem);
  }

  .hs-home-group__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: 14px;
  }

  .hs-home-group__cta {
    width: 100%;
    min-height: 52px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow:
      0 12px 28px rgba(0, 0, 0, 0.4),
      0 0 0 1px rgba(255, 255, 255, 0.06);
  }

  .hs-home-group__more {
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
    font-size: 13px;
  }
}

@media (max-width: 560px) {
  .hs-home-group {
    padding: 24px 0 44px;
  }

  .hs-home-group__visual {
    width: min(108%, 380px);
    margin-bottom: -10px;
  }

  .hs-home-group__copy {
    max-width: none;
    gap: 11px;
  }

  .hs-home-group__kicker {
    font-size: 10px;
  }

  .hs-home-group__title {
    font-size: clamp(2.2rem, 11.5vw, 2.85rem);
  }

  .hs-home-group__lead {
    font-size: 14px;
    max-width: 32ch;
  }

  .hs-home-group__specs {
    margin-top: 8px;
    border-radius: 10px;
  }

  .hs-home-group__spec {
    padding: 14px 8px 16px;
    gap: 6px;
  }

  .hs-home-group__spec dd {
    font-size: clamp(0.98rem, 4.6vw, 1.12rem);
  }

  .hs-home-group__actions {
    margin-top: 12px;
    gap: 12px;
  }

  .hs-home-group__cta {
    min-height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hs-home-group__cta {
    transition: none;
  }

  .hs-home-group__cta:hover,
  .hs-home-group__cta:focus-visible {
    transform: none;
  }
}

/* Mobile: каждая контентная секция = один экран (100vh) */
@media (max-width: 980px) {
  .hs-home-page > .hs-home-group,
  .hs-home-page > .hs-home-metrics,
  .hs-home-page > .hs-home-duel,
  .hs-home-page > .hs-home-connect,
  .hs-home-page > .hs-home-conversion-final {
    box-sizing: border-box;
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hs-home-page > .hs-home-group,
  .hs-home-page > .hs-home-metrics,
  .hs-home-page > .hs-home-connect,
  .hs-home-page > .hs-home-conversion-final {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hs-home-page > .hs-home-group > .container,
  .hs-home-page > .hs-home-metrics > .container,
  .hs-home-page > .hs-home-connect > .container,
  .hs-home-page > .hs-home-conversion-final > .container {
    width: 100%;
  }

  .hs-home-page > .hs-home-duel {
    align-content: center;
  }
}
