:root {
  --bg: #07111f;
  --bg-elevated: #0d1b2e;
  --ink: #f4f7fb;
  --muted: rgba(244, 247, 251, 0.72);
  --orange: #ff7a1a;
  --orange-soft: #ff9a4d;
  --cyan: #7ec8e8;
  --line: rgba(244, 247, 251, 0.12);
  --radius: 4px;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.55;
  background:
    radial-gradient(1200px 700px at 85% 10%, rgba(255, 122, 26, 0.18), transparent 55%),
    radial-gradient(900px 600px at 10% 80%, rgba(126, 200, 232, 0.1), transparent 50%),
    linear-gradient(165deg, #050b14 0%, var(--bg) 45%, #0a1628 100%);
  overflow-x: hidden;
}

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

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

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(180deg, rgba(5, 11, 20, 0.72), transparent);
  backdrop-filter: blur(8px);
}

.topbar.is-open {
  background: rgba(5, 11, 20, 0.96);
  backdrop-filter: blur(14px);
}

.topbar__brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
  justify-self: start;
}

.topbar__nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.5rem 1.25rem 1.35rem;
  background: rgba(5, 11, 20, 0.96);
  border-bottom: 1px solid var(--line);
  transform: translateY(-0.5rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s var(--ease),
    transform 0.28s var(--ease),
    visibility 0.28s;
}

.topbar.is-open .topbar__nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.topbar__nav a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  transition: color 0.25s var(--ease);
}

.topbar__nav a:last-child {
  border-bottom: none;
}

.topbar__nav a:hover {
  color: var(--ink);
}

.topbar__nav-cta {
  color: var(--orange-soft) !important;
  margin-top: 0.35rem;
}

.topbar__cta {
  display: none;
  justify-self: end;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange-soft);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}

.topbar__cta:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.topbar__burger {
  display: grid;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  place-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  justify-self: end;
}

.topbar__burger span {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
  transform-origin: center;
}

.topbar.is-open .topbar__burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.topbar.is-open .topbar__burger span:nth-child(2) {
  opacity: 0;
}

.topbar.is-open .topbar__burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 0;
  isolation: isolate;
  scroll-margin-top: 0;
}

.hero.scheme {
  padding: 0;
  border-top: 0;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #050b14;
}

.hero__media img,
.hero__media video,
.hero__still {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 42%;
}

.hero__still {
  display: none;
}

.hero__lqip {
  transform: scale(1.12);
  filter: blur(18px);
}

.hero__video,
.hero__photo {
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}

.hero.is-loaded .hero__video,
.hero.is-loaded .hero__photo {
  opacity: 0.58;
}

.hero.is-loaded .hero__lqip {
  opacity: 0;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      rgba(5, 11, 20, 0.62) 0%,
      rgba(5, 11, 20, 0.7) 36%,
      rgba(5, 11, 20, 0.86) 100%
    ),
    radial-gradient(
      ellipse 80% 70% at 68% 48%,
      rgba(5, 11, 20, 0.55) 0%,
      rgba(5, 11, 20, 0.28) 55%,
      rgba(5, 11, 20, 0.72) 100%
    );
}

.hero__stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 100svh;
  margin: 0;
  border: 0;
  background: transparent;
}

.hero__content {
  position: relative;
  z-index: 6;
  pointer-events: auto;
  width: min(640px, 100%);
  padding: 3.25rem 1.5rem 2.25rem;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(5, 11, 20, 0.18) 38%,
    rgba(5, 11, 20, 0.82) 100%
  );
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.bolt {
  width: 0.55rem;
  height: 0.9rem;
  background: var(--orange);
  clip-path: polygon(50% 0%, 100% 40%, 62% 40%, 80% 100%, 0% 55%, 40% 55%);
}

.hero__brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 9vw, 5.4rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero__brand-line {
  display: block;
  overflow: hidden;
}

.hero__brand-line span {
  display: inline-block;
  will-change: transform, opacity;
}

.hero__brand-line--accent,
.hero__brand-line--accent span {
  color: var(--orange);
  -webkit-text-fill-color: var(--orange);
  background: none;
}

.hero__lead {
  margin: 1.15rem 0 0;
  max-width: 28ch;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.8vw, 1.6rem);
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.hero__actions {
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.45rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition:
    transform 0.35s var(--ease),
    background 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.btn--primary {
  background: linear-gradient(120deg, var(--orange) 0%, #ff933d 100%);
  color: #140a02;
  box-shadow: 0 12px 40px rgba(255, 122, 26, 0.28);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(255, 122, 26, 0.4);
}

.btn--lg {
  padding: 1.1rem 1.7rem;
  font-size: 1.02rem;
}

.section {
  padding: 6.5rem 1.5rem;
  position: relative;
  scroll-margin-top: 5rem;
}

.section__inner {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.section__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  font-weight: 750;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.accent {
  color: var(--orange-soft);
}

.section__lead {
  margin: 1.25rem 0 0;
  max-width: 42ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.scheme {
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid var(--line);
}

.section.scheme {
  padding-left: 0;
  padding-right: 0;
  padding-top: 4rem;
  padding-bottom: 0;
}

.scheme__head {
  margin-bottom: 1.75rem;
  padding-inline: 1.5rem;
}

.scheme__actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.scheme__cta {
  padding: 0.85rem 1.2rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.scheme__open {
  pointer-events: auto;
  position: absolute;
  left: 50%;
  top: 4.75rem;
  z-index: 6;
  translate: -50% 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.15rem;
  border: 1px solid rgba(244, 247, 251, 0.28);
  background: rgba(5, 11, 20, 0.72);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition:
    background 0.35s var(--ease),
    color 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.scheme__open:hover {
  background: var(--orange);
  color: #140a02;
  border-color: var(--orange);
}

.scheme__open[hidden],
.scheme__stage[hidden],
.scheme__fallback[hidden] {
  display: none;
}

.scheme__float {
  pointer-events: auto;
  position: absolute;
  left: 50%;
  bottom: 1.15rem;
  z-index: 6;
  translate: -50% 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  border-radius: var(--radius);
  background: linear-gradient(120deg, var(--orange) 0%, #ff933d 100%);
  color: #140a02;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 40px rgba(255, 122, 26, 0.38);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.scheme__float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(255, 122, 26, 0.48);
}

.scheme__stage {
  position: relative;
  width: 100%;
  margin: 0;
  height: min(92svh, 1400px);
  min-height: 720px;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #050b14;
  pointer-events: none;
}

.hero__stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 100svh;
  margin: 0;
  border: 0;
  overflow: hidden;
  pointer-events: none;
  background: transparent;
}

.scheme__mount,
.scheme__overlay-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.scheme__mount canvas,
.scheme__overlay-stage canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.scheme__labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.scheme-label {
  white-space: nowrap;
  text-align: center;
  color: var(--ink);
  text-shadow: 0 2px 16px rgba(5, 11, 20, 0.85);
}

.scheme-label strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.scheme-label span {
  display: block;
  margin-top: 0.22rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}

.scheme-label--out span {
  color: var(--orange-soft);
}

.scheme-label--ghost {
  opacity: 0.55;
}

.scheme-label--ghost span {
  color: var(--muted);
}

.scheme-label--core {
  z-index: 1;
}

.scheme-label--core strong {
  font-size: 1.02rem;
  color: var(--orange);
}

.scheme-label--core span {
  margin-top: 0.12rem;
  font-size: 0.62rem;
  color: rgba(244, 247, 251, 0.72);
}

.scheme-label--axis {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 0.35rem;
}

.scheme-label.is-occluded {
  opacity: 0 !important;
  visibility: hidden;
}

.scheme__fallback {
  width: min(1100px, calc(100% - 3rem));
  margin: 1.5rem auto 0;
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--line);
  background: rgba(7, 17, 31, 0.55);
}

.hero.scheme.is-fallback {
  min-height: 100svh;
  padding: 0;
  align-items: end;
}

.hero.scheme.is-fallback .hero__stage {
  display: none;
}

.hero.scheme.is-fallback .hero__content {
  z-index: 6;
}

.scheme.is-fallback .scheme__fallback {
  display: grid;
}

.scheme__col p {
  margin: 0;
  color: var(--muted);
}

.scheme__col-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}

.scheme__col--core .scheme__col-kicker {
  color: var(--orange);
}

.scheme__core-name {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.scheme__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
}

.scheme__soon {
  color: var(--cyan);
  opacity: 0.7;
}

.scheme__overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  flex-direction: column;
  background: #050b14;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

.scheme__overlay[hidden] {
  display: none;
}

.scheme__overlay-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.25rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scheme__overlay-title {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.scheme__hint--touch {
  display: none;
}

.scheme__overlay-bot {
  flex-shrink: 0;
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  background: linear-gradient(120deg, var(--orange) 0%, #ff933d 100%);
  color: #140a02;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scheme__overlay-bot:hover {
  filter: brightness(1.06);
}

.scheme__close {
  flex-shrink: 0;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(244, 247, 251, 0.28);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.scheme__close:hover {
  background: var(--orange);
  color: #140a02;
  border-color: var(--orange);
}

.scheme__overlay-stage {
  flex: 1;
  min-height: 0;
  touch-action: none;
  cursor: grab;
}

.scheme__overlay-stage:active {
  cursor: grabbing;
}

body.scheme-open {
  overflow: hidden;
}

.for {
  border-top: 1px solid var(--line);
}

.how {
  border-top: 1px solid var(--line);
}

.axis {
  border-top: 1px solid var(--line);
}

.axis__grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.25rem;
}

.axis__card {
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--line);
  background: rgba(7, 17, 31, 0.55);
}

.axis__card--paid {
  border-color: rgba(255, 122, 26, 0.45);
  background:
    linear-gradient(145deg, rgba(255, 122, 26, 0.12), transparent 50%),
    rgba(7, 17, 31, 0.7);
}

.axis__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.axis__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.axis__text {
  margin: 0;
  max-width: 38ch;
  color: var(--muted);
}

.plans {
  border-top: 1px solid var(--line);
}

.plans__grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.25rem;
}

.plan {
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid var(--line);
  background: rgba(7, 17, 31, 0.55);
}

.plan--featured {
  border-color: var(--orange);
  border-width: 2px;
  background:
    linear-gradient(160deg, rgba(255, 122, 26, 0.14), transparent 42%),
    rgba(7, 17, 31, 0.78);
}

.plan--later {
  opacity: 0.88;
}

.plan__badge {
  margin: 0 0 0.85rem;
  width: fit-content;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius);
  background: var(--orange);
  color: #140a02;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plan__name {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.plan--featured .plan__name {
  color: var(--orange-soft);
}

.plan__price {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 2.8rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1;
}

.plan__per {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.plan__note {
  margin: 1rem 0 1.15rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.plan__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
}

.plan__list li {
  position: relative;
  padding-left: 1.15rem;
}

.plan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--orange);
}

.plan__soon {
  margin: 1.15rem 0 0;
  color: var(--cyan);
  font-size: 0.88rem;
  line-height: 1.45;
}

.plan__cta {
  margin-top: 1.5rem;
  align-self: stretch;
  width: 100%;
  box-shadow: none;
}

.plan .btn--primary:hover {
  transform: none;
  box-shadow: none;
  filter: brightness(1.06);
}

.steps {
  list-style: none;
  margin: 3.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 2rem;
}

.step {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.step__num {
  display: block;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--orange);
}

.step__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.step__text {
  margin: 0;
  max-width: 38ch;
  color: var(--muted);
}

.demo {
  border-top: 1px solid var(--line);
}

.demo__track {
  margin-top: 3.25rem;
  display: grid;
  gap: 2.75rem;
}

.demo__shot {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.demo__frame {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #0a1422;
  box-shadow:
    0 0 0 1px rgba(255, 122, 26, 0.08),
    0 28px 60px rgba(0, 0, 0, 0.35);
  cursor: zoom-in;
  color: inherit;
  font: inherit;
  text-align: left;
  transition:
    border-color 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    transform 0.28s var(--ease);
}

.demo__frame:hover,
.demo__frame:focus-visible {
  border-color: rgba(255, 122, 26, 0.45);
  box-shadow:
    0 0 0 1px rgba(255, 122, 26, 0.2),
    0 32px 68px rgba(0, 0, 0, 0.42);
  transform: translateY(-2px);
  outline: none;
}

.demo__frame::after {
  content: "увеличить";
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 1;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius);
  border: 1px solid rgba(244, 247, 251, 0.16);
  background: rgba(5, 11, 20, 0.78);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.28s var(--ease),
    transform 0.28s var(--ease);
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.demo__frame:hover::after,
.demo__frame:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.demo__frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
}

.demo__frame--empty {
  min-height: min(62vw, 420px);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  background:
    linear-gradient(145deg, rgba(255, 122, 26, 0.08), transparent 50%),
    #0a1422;
}

.demo__shot figcaption {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  max-width: 40ch;
}

.demo__num {
  flex: none;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--orange);
}

.demo__caption {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.4;
}

.for {
  background:
    linear-gradient(180deg, transparent, rgba(13, 27, 46, 0.65) 20%, rgba(13, 27, 46, 0.85));
}

.for__grid {
  display: grid;
  gap: 2.5rem;
}

.for__list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.for__list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink);
}

.for__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--orange);
}

.for__panel {
  padding: 2rem 1.75rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 122, 26, 0.12), transparent 45%),
    rgba(7, 17, 31, 0.7);
}

.for__quote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.for__meta {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cta {
  padding-bottom: 7rem;
}

.cta__inner {
  text-align: left;
  padding: 3rem 0 0;
  border-top: 1px solid var(--line);
}

.cta__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 750;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.cta__text {
  margin: 1.1rem 0 1.75rem;
  max-width: 36ch;
  color: var(--muted);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.cta__channel {
  font-weight: 600;
  color: var(--cyan);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.cta__channel:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem;
}

.footer__inner {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer__brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.footer a:hover {
  color: var(--orange-soft);
}

.cursor-letter {
  position: fixed;
  pointer-events: none;
  z-index: 100;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--orange);
  opacity: 1;
  animation: letter-fly 1.4s var(--ease) forwards;
  text-shadow:
    0 0 12px rgba(255, 122, 26, 0.7),
    0 0 24px rgba(255, 122, 26, 0.4);
  user-select: none;
}

@keyframes letter-fly {
  0% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--dx), var(--dy)) rotate(var(--rot)) scale(0.3);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-letter {
    display: none;
  }
}

.to-top {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 35;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 17, 31, 0.88);
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.28s var(--ease),
    transform 0.28s var(--ease),
    visibility 0.28s,
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease);
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.to-top:hover {
  color: #140a02;
  background: var(--orange);
  border-color: var(--orange);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 16, 0.88);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
}

.lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(92vh, 1100px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  animation: lightbox-in 0.32s var(--ease);
}

@keyframes lightbox-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.lightbox__close {
  align-self: flex-end;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 17, 31, 0.92);
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease);
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
  color: #140a02;
  background: var(--orange);
  border-color: var(--orange);
  outline: none;
}

.lightbox__stage {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
}

.lightbox__figure {
  margin: 0;
  display: grid;
  gap: 0.85rem;
  min-width: 0;
  width: 100%;
}

.lightbox__img {
  width: auto;
  max-width: 100%;
  max-height: min(78vh, 920px);
  margin-inline: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #0a1422;
  box-shadow:
    0 0 0 1px rgba(255, 122, 26, 0.08),
    0 28px 70px rgba(0, 0, 0, 0.45);
  object-fit: contain;
}

.lightbox__caption {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
}

.lightbox__num {
  flex: none;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--orange);
}

.lightbox__text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 17, 31, 0.92);
  color: var(--ink);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease);
}

.lightbox__nav:hover,
.lightbox__nav:focus-visible {
  color: #140a02;
  background: var(--orange);
  border-color: var(--orange);
  outline: none;
}

.lightbox__nav--prev {
  left: 0.35rem;
}

.lightbox__nav--next {
  right: 0.35rem;
}

.lightbox__dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
}

.lightbox__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(244, 247, 251, 0.28);
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.lightbox__dot[aria-selected="true"] {
  background: var(--orange);
  transform: scale(1.2);
}

.lightbox__dot:focus-visible {
  outline: 2px solid var(--orange-soft);
  outline-offset: 3px;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .scheme__stage {
    height: 88svh;
    min-height: 560px;
  }

  .hero__stage {
    height: 100%;
    min-height: 100svh;
  }

  .hero .scheme__open {
    top: 4.25rem;
  }

  .scheme__hint--desk {
    display: none;
  }

  .scheme__hint--touch {
    display: inline;
  }

  .scheme__overlay-bar {
    padding: 0.85rem 1rem;
    font-size: 0.68rem;
  }

  .scheme__close,
  .scheme__overlay-bot,
  .scheme__float {
    min-height: 44px;
  }

  .scheme-label strong {
    font-size: 0.92rem;
  }

  .scheme-label span {
    font-size: 0.64rem;
  }

  .scheme-label--core strong {
    font-size: 0.88rem;
  }

  .lightbox {
    padding: 0.65rem;
  }

  .lightbox__img {
    max-height: min(68vh, 760px);
  }

  .lightbox__nav {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.4rem;
  }

  .demo__frame::after {
    opacity: 1;
    transform: none;
  }
}

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

  .demo__frame,
  .demo__frame::after {
    transition: none;
  }
}

[data-reveal],
[data-split] {
  visibility: hidden;
}

.js-ready [data-reveal],
.js-ready [data-split] {
  visibility: visible;
}

@media (min-width: 768px) {
  .topbar {
    grid-template-columns: auto 1fr auto;
    padding: 1.25rem 2.5rem;
  }

  .topbar.is-open {
    background: linear-gradient(180deg, rgba(5, 11, 20, 0.72), transparent);
  }

  .topbar__burger {
    display: none;
  }

  .topbar__nav {
    position: static;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 0;
    background: transparent;
    border: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .topbar__nav a {
    display: inline;
    padding: 0;
    font-size: 0.88rem;
    border: 0;
  }

  .topbar__nav-cta {
    display: none !important;
  }

  .topbar__cta {
    display: inline;
  }

  body.menu-open {
    overflow: auto;
  }

  .hero.scheme {
    padding: 0;
    align-items: end;
  }

  .hero.scheme .hero__content {
    padding: 4.25rem 2.5rem 2.75rem;
  }

  .hero {
    padding: 7rem 2.5rem 4rem;
    align-items: center;
  }

  .hero__media img,
  .hero__media video {
    object-position: 50% 50%;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .step {
    padding-top: 1.75rem;
  }

  .demo__track {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
  }

  .demo__frame--empty {
    min-height: 380px;
  }

  .scheme__fallback {
    width: min(1100px, calc(100% - 5rem));
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .scheme__head {
    padding-inline: 2.5rem;
  }

  .for__grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 4rem;
  }

  .axis__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .section {
    padding: 8rem 2.5rem;
  }
}

@media (min-width: 1100px) {
  .hero.scheme .hero__content {
    width: min(560px, 42%);
  }

  .hero__media img,
  .hero__media video {
    object-position: 50% 50%;
  }

  .plans__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: stretch;
  }

  .plan {
    height: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn--primary:hover {
    transform: none;
  }

  .hero__lqip,
  .hero__loader {
    animation: none;
  }

  .hero__video {
    display: none;
  }

  .hero__still {
    display: block;
  }

  .hero__photo {
    opacity: 0.58;
  }

  .hero__loader {
    opacity: 0;
  }

  [data-reveal],
  [data-split] {
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
