﻿@font-face {
  font-family: "VelaSans";
  src: url("https://maybesmart.ru/assets/fonts/VelaSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "VelaSans";
  src: url("https://maybesmart.ru/assets/fonts/VelaSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "VelaSans";
  src: url("https://maybesmart.ru/assets/fonts/VelaSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #181822;
  --surface: #15171c;
  --surface-2: #21242e;
  --text: #eef0f6;
  --muted: #c8c8d2;
  --muted-2: #9898a2;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #7f6bff;
  --accent-2: #5548aa;
  --accent-soft: #a99aff;
  --ok: #67d8a2;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  --radius: 20px;
  --radius-sm: 14px;
  --container: 1600px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(127, 107, 255, 0.16) 0%, rgba(127, 107, 255, 0) 50%),
    radial-gradient(900px 500px at 100% 0%, rgba(84, 72, 170, 0.18) 0%, rgba(84, 72, 170, 0) 52%),
    var(--bg);
  color: var(--text);
  font-family: "VelaSans", "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

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

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

.container {
  width: var(--container);
  max-width: 85%;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(24, 24, 34, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 20px rgba(127, 107, 255, 0.8);
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #eef0f6;
  background: transparent;
  border-radius: 999px;
  min-height: 42px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  user-select: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.3);
  color: #eef0f6;
}

.btn:active {
  transform: translateY(0);
  opacity: 0.92;
}

.btn:focus,
.btn:focus-visible {
  color: #eef0f6;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

.btn.primary {
  background: #ffffff;
  color: #0b0c0f;
  border-color: transparent;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
}

.btn.primary:hover,
.btn.primary:focus,
.btn.primary:focus-visible {
  color: #0b0c0f;
  background: #ffffff;
}

.btn.hero-primary {
  background: linear-gradient(90deg, #7f6bff 0%, #5548aa 100%);
  color: #ffffff;
  border: 0;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 500;
  padding: 17px 38px;
  box-shadow: none;
}

.btn.hero-primary:hover,
.btn.hero-primary:focus,
.btn.hero-primary:focus-visible {
  color: #ffffff;
  background: linear-gradient(90deg, #7f6bff 0%, #5548aa 100%);
}

.section {
  padding: 44px 0;
}

#partners,
#contacts {
  padding-top: 24px;
}

.hero {
  position: relative;
  --hero-edge-reserve: 120px;
  padding-top: 0;
  padding-bottom: var(--hero-edge-reserve);
}

.hero-stage {
  position: relative;
  display: grid;
  min-height: 700px;
  width: 100%;
  overflow: hidden;
  background: #111118;
  border-bottom-left-radius: 34px;
  border-bottom-right-radius: 34px;
}

.hero-stage > * {
  grid-area: 1 / 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  min-height: 700px;
  padding-top: 86px;
  padding-bottom: 150px;
}

.hero-content .hero-card {
  max-width: 760px;
  flex: 0 1 760px;
}

.hero-feature-wrap {
  position: absolute;
  right: auto;
  left: calc(100% + ((100vw - 100%) / 2));
  top: 50%;
  --tour-peek: 82px;
  --tour-hover-gap: 92px;
  --tour-shift-y: 6%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: min(304px, calc(100vw - 48px));
  min-height: 0;
  padding: 0;
  transition: transform 0.32s ease;
}

.hero-card {
  background: none;
  border: 0;
  border-radius: 0;
  padding: 18px 0 0;
  box-shadow: none;
  position: relative;
  overflow: visible;
  width: min(826px, calc(100% - 360px));
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 16px;
  backdrop-filter: none;
}

.hero-card::before {
  display: none;
}

.hero-kicker,
.hero-actions,
.hero-card h1,
.hero-sub {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: none;
  color: #dfe6f5;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kicker-line {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.75));
}

.hero-feature {
  appearance: none;
  width: 100%;
  min-height: 156px;
  padding: 14px 12px 14px 14px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.32);
  border-radius: 28px 0 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
  margin: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transform: none;
  animation: hero-feature-jitter 1.9s ease-in-out infinite;
  will-change: transform;
}

.hero-feature:hover,
.hero-feature:focus-visible,
.hero-feature:focus-within,
.hero-feature-wrap:hover .hero-feature,
.hero-feature-wrap:focus-within .hero-feature {
  animation: none;
  transform: none;
  border-color: rgba(255, 255, 255, 0.24);
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
}

@media (hover: hover) and (pointer: fine) {
  .hero-feature-wrap {
    transform: translate(calc(-1 * var(--tour-peek)), var(--tour-shift-y));
  }

  .hero-feature-wrap:hover,
  .hero-feature-wrap:focus-within {
    transform: translate(calc(-100% + var(--tour-hover-gap)), var(--tour-shift-y));
  }
}

.hero-feature-copy {
  width: auto;
  flex: 0 0 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-feature-title {
  color: #ffffff;
  font-size: 16px;
  font-family: "VelaSans", "Segoe UI", sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: rotate(90deg);
  transform-origin: center;
  position: relative;
  left: -8px;
}

.hero-feature-media {
  width: auto;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
  margin-left: 0;
}

.hero-feature-thumb {
  width: 64px;
  height: 64px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at 35% 35%, rgba(154, 187, 255, 0.34), rgba(25, 33, 50, 0.98));
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-feature-play {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-feature-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #ffffff;
  transform: translate(-35%, -50%);
}

.hero-feature-play::after {
  content: none;
}

.tour-modal {
  --bs-modal-bg: transparent;
  --bs-modal-border-width: 0;
  --bs-modal-box-shadow: none;
}

.tour-modal.show {
  background: rgba(7, 9, 14, 0.58);
  backdrop-filter: blur(10px);
}

.tour-modal-dialog {
  width: fit-content;
  max-width: calc(100vw - 32px);
  margin: 24px auto;
}

.tour-modal-content {
  position: relative;
  width: fit-content;
  max-width: 100%;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(198, 187, 255, 0.2);
  background:
    radial-gradient(circle at top left, rgba(154, 140, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(20, 22, 31, 0.98), rgba(12, 14, 20, 0.99));
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tour-modal-head {
  display: flex;
  align-items: center;
  min-height: 30px;
  padding-right: 64px;
}

.tour-modal-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(239, 234, 255, 0.8);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tour-modal-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #07090d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.tour-modal-video {
  display: block;
  width: auto;
  max-width: min(calc(100vw - 96px), 860px);
  height: auto;
  max-height: calc(100vh - 190px);
  background: #07090d;
}

.tour-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.tour-modal-close:hover,
.tour-modal-close:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  transform: rotate(90deg);
  opacity: 0.96;
  outline: none;
}

@media (max-width: 780px) {
  .tour-modal-dialog {
    max-width: calc(100vw - 20px);
    margin: 10px auto;
  }

  .tour-modal-content {
    padding: 16px;
    border-radius: 24px;
  }

  .tour-modal-head {
    padding-right: 50px;
  }

  .tour-modal-frame {
    margin-top: 14px;
    border-radius: 18px;
  }

  .tour-modal-video {
    max-width: calc(100vw - 52px);
    max-height: calc(100vh - 140px);
  }

  .tour-modal-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }
}

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

@keyframes hero-feature-jitter {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  18% {
    transform: translate3d(-2px, 0, 0) rotate(-1.6deg) scale(1.01);
  }

  36% {
    transform: translate3d(2px, 0, 0) rotate(1.6deg) scale(1.015);
  }

  54% {
    transform: translate3d(-1px, 1px, 0) rotate(-1.2deg) scale(1.01);
  }

  72% {
    transform: translate3d(1px, -1px, 0) rotate(1.2deg) scale(1.012);
  }

  86% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.hero-card::after {
  display: none;
}

.hero-slider--bg {
  position: relative;
  inset: auto;
  width: 100%;
  min-height: 700px;
  z-index: 1;
  border: 0;
  border-radius: 0 0 34px 34px;
  box-shadow: none;
  background:
    linear-gradient(180deg, rgba(12, 12, 18, 0.08), rgba(12, 12, 18, 0.18)),
    url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1800&q=80") center center / cover no-repeat;
}

.hero-slider--bg .slides,
.hero-slider--bg .slide {
  height: 100%;
}

.hero-slider--bg .slides {
  min-height: 700px;
}

.hero-bg-slide {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-bg-slide-1 {
  background-image: url("https://maybesmart.ru/assets/images/kv4.jpg");
}

.hero-bg-slide-2 {
  background-image: url("https://maybesmart.ru/assets/images/kv3.jpg");
}

.hero-bg-slide-3 {
  background-image: url("https://maybesmart.ru/assets/images/kv2.jpg");
}

.hero-bg-slide-4 {
  background-image: url("https://maybesmart.ru/assets/images/kv1.jpg");
}

.hero-overlay {
  position: relative;
  inset: auto;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7, 11, 21, 0.84) 0%, rgba(7, 11, 21, 0.44) 42%, rgba(7, 11, 21, 0.3) 100%),
    linear-gradient(180deg, rgba(6, 10, 18, 0.12), rgba(6, 10, 18, 0.58));
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.2px;
}

h1 {
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1.16;
  margin-bottom: 18px;
  max-width: 760px;
  font-weight: 600;
  color: #eef0f6;
}

.hero-sub {
  margin: 0;
  color: var(--muted);
  font-size: 24px;
  line-height: 28px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 0;
}

.hero-actions .btn {
  min-width: 0;
  width: auto;
  flex: 0 0 auto;
  padding: 17px 90px;
  border-radius: 16px;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
}

.hero-system-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hero-system-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #dfe6f5;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.house-graph-promo {
  --house-graph-bg-top: var(--accent);
  --house-graph-bg-mid: var(--accent-2);
  --house-graph-bg-bot: var(--surface);
  --house-graph-line: rgba(198, 187, 255, 0.72);
  --house-graph-line-soft: rgba(169, 154, 255, 0.34);
  --house-graph-line-bright: rgba(255, 255, 255, 0.94);
  --house-graph-node: #c6bbff;
  --house-graph-node-bright: #ffffff;
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  width: min(372px, calc(100% - 96px));

  margin-left: auto;
  margin-right: 0;
  margin-top: 0;
  right: 200px;
  top: -8px;
  padding: 18px 18px 16px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(198, 187, 255, 0.22);
  background: transparent;
  box-shadow:
    0 40px 110px rgba(31, 22, 74, 0.58),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: var(--text);
  text-decoration: none;
  isolation: isolate;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.house-graph-promo:hover,
.house-graph-promo:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(198, 187, 255, 0.38);
  box-shadow:
    0 46px 120px rgba(31, 22, 74, 0.64),
    0 0 32px rgba(127, 107, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.house-graph-promo::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  background: url("https://maybesmart.ru/assets/images/kvartira/images/kolco.gif") center center / cover no-repeat;
  opacity: 0.82;
  transform: scale(1.02);
  z-index: 0;
  pointer-events: none;
}

.house-graph-promo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(12, 14, 22, 0.16) 0%, rgba(12, 14, 22, 0.38) 46%, rgba(12, 14, 22, 0.76) 100%),
    radial-gradient(circle at 16% 16%, rgba(169, 154, 255, 0.22), rgba(169, 154, 255, 0) 24%),
    radial-gradient(circle at 78% 18%, rgba(198, 187, 255, 0.14), rgba(198, 187, 255, 0) 18%),
    linear-gradient(180deg, rgba(127, 107, 255, 0.82) 0%, rgba(85, 72, 170, 0.84) 48%, rgba(21, 23, 28, 0.92) 100%);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: 34% 136%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  background-position: -34% 50%, 0 0, 0 0, 0 0, 0 0;
  animation: house-graph-promo-sheen 6.8s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.house-graph-promo > * {
  position: relative;
  z-index: 2;
}

.house-graph-promo .promo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.house-graph-promo .promo-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(241, 247, 255, 0.88);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.house-graph-promo .promo-label {
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 225, 255, 0.68);
}

.house-graph-promo .promo-title {
  font-size: clamp(28px, 3.2vw, 34px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.house-graph-promo .promo-subtitle {
  margin-top: 8px;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(232, 225, 255, 0.74);
}

.house-graph-promo .graph-stage {
  position: relative;
  margin-top: 8px;
  contain: layout paint;
}

.house-graph-promo .graph-svg {
  display: block;
  width: 100%;
  height: auto;
}

.house-graph-promo .shell-fill {
  fill: rgba(19, 19, 28, 0.34);
}

.house-graph-promo .shell-outline,
.house-graph-promo .chimney-outline,
.house-graph-promo .roof-guide {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.house-graph-promo .shell-outline {
  stroke: rgba(214, 204, 255, 0.84);
  stroke-width: 1.7;
}

.house-graph-promo .roof-guide {
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 2.35;
}

.house-graph-promo .chimney-outline {
  stroke: rgba(198, 187, 255, 0.76);
  stroke-width: 1.55;
}

.house-graph-promo .mesh-base,
.house-graph-promo .mesh-signal,
.house-graph-promo .mesh-nodes,
.house-graph-promo .mesh-ambient {
  transform-origin: 50% 50%;
}

.house-graph-promo .mesh-line {
  stroke: var(--house-graph-line-soft);
  stroke-width: 1.2;
  stroke-linecap: round;
  opacity: 0.52;
}

.house-graph-promo .mesh-line-strong {
  stroke: var(--house-graph-line);
  stroke-width: 1.45;
}

.house-graph-promo .mesh-line-backbone {
  stroke: rgba(255, 255, 255, 0.84);
  stroke-width: 1.95;
  opacity: 0.78;
}

.house-graph-promo .signal-line {
  stroke: var(--house-graph-line-bright);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 10 24;
  stroke-dashoffset: 0;
  opacity: 0.76;
}

.house-graph-promo .signal-line-animated {
  animation: house-graph-signal-flow 7.2s linear infinite;
}

.house-graph-promo .signal-line-hot {
  stroke: rgba(255, 255, 255, 1);
  stroke-width: 2.6;
  stroke-dasharray: 14 22;
  animation: house-graph-signal-flow 5.1s linear infinite;
  opacity: 0.9;
}

.house-graph-promo .graph-node {
  fill: var(--house-graph-node);
  opacity: 0.84;
}

.house-graph-promo .graph-node-major {
  fill: var(--house-graph-node-bright);
}

.house-graph-promo .ambient-node {
  fill: rgba(198, 187, 255, 0.82);
  opacity: 0.56;
}

.house-graph-promo .ambient-link {
  stroke: rgba(169, 154, 255, 0.34);
  stroke-width: 1.05;
  stroke-linecap: round;
  stroke-dasharray: 8 10;
  opacity: 0.42;
}

.house-graph-promo .opening-fill {
  fill: rgba(19, 19, 28, 0.92);
  stroke: none;
}

.house-graph-promo .opening-frame {
  fill: none;
  stroke: rgba(198, 187, 255, 0.82);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.house-graph-promo .motion-particle {
  fill: #f8f5ff;
  opacity: 0.92;
}

.house-graph-promo .motion-particle-soft {
  fill: var(--accent-soft);
}

.house-graph-promo .motion-particle-hot {
  fill: #ffffff;
}

.house-graph-promo .promo-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.house-graph-promo .promo-bottom strong {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 500;
  color: rgba(232, 225, 255, 0.74);
}

.house-graph-promo .house-graph-countdown {
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
  color: #ffffff;
  text-shadow: 0 0 18px rgba(127, 107, 255, 0.28);
  white-space: nowrap;
}

.house-graph-promo .promo-tagline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  line-height: 1.25;
  color: rgba(239, 234, 255, 0.86);
  text-align: center;
}

.promo-timer {
  --timer-react-x: 0deg;
  --timer-react-y: 0deg;
  --timer-shift-x: 50%;
  --timer-shift-y: 50%;
  --timer-energy: 0;
  --timer-blob-radius: 50% 50% 48% 52% / 49% 51% 49% 51%;
  position: relative;
  z-index: 4;
  align-self: flex-start;
  width: 316px;
  aspect-ratio: 0.84;
  margin-left: auto;
  margin-right: 0;
  margin-top: 0;
  right: 88px;
  top: -26px;
  color: #efeaff;
  background:
    radial-gradient(circle at calc(var(--timer-shift-x) + 4%) calc(var(--timer-shift-y) - 10%), rgba(214, 206, 255, calc(0.26 + var(--timer-energy) * 0.2)), rgba(214, 206, 255, 0) 30%),
    radial-gradient(circle at 28% 24%, rgba(169, 154, 255, 0.38), rgba(169, 154, 255, 0) 32%),
    radial-gradient(circle at 68% 70%, rgba(85, 72, 170, 0.34), rgba(85, 72, 170, 0) 38%),
    linear-gradient(135deg, rgba(154, 140, 255, 0.96) 0%, rgba(127, 107, 255, 0.97) 34%, rgba(108, 91, 231, 0.98) 58%, rgba(85, 72, 170, 0.99) 100%);
  border: 1px solid rgba(198, 186, 255, 0.34);
  border-radius: var(--timer-blob-radius);
  backdrop-filter: blur(8px);
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.36),
    0 0 44px rgba(127, 107, 255, calc(0.22 + var(--timer-energy) * 0.18)),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 -26px 48px rgba(47, 35, 111, 0.34);
  transform: perspective(900px) rotateX(var(--timer-react-y)) rotateY(var(--timer-react-x)) scale(calc(1 + var(--timer-energy) * 0.035));
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-position 0.22s ease;
  animation: timer-orbit 4.6s ease-in-out infinite, timer-blob-morph 6.2s cubic-bezier(0.58, 0.08, 0.32, 0.98) infinite;
}

.promo-timer::before {
  content: "";
  position: absolute;
  inset: 19px 22px 18px 18px;
  width: auto;
  height: auto;
  border-radius: 49% 51% 53% 47% / 47% 53% 47% 53%;
  border: 1px solid rgba(233, 228, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  opacity: 0.88;
  pointer-events: none;
  animation: timer-blob-inner 5.4s cubic-bezier(0.61, 0.04, 0.35, 1) infinite;
}

.promo-timer::after {
  content: "";
  position: absolute;
  inset: -16px -12px -18px -14px;
  width: auto;
  height: auto;
  border-radius: 50% 50% 54% 46% / 46% 54% 46% 54%;
  border: 1px solid rgba(181, 165, 255, calc(0.32 + var(--timer-energy) * 0.16));
  background: transparent;
  box-shadow:
    0 0 0 1px rgba(208, 197, 255, 0.12),
    0 0 26px rgba(127, 107, 255, calc(0.22 + var(--timer-energy) * 0.18)),
    0 0 58px rgba(85, 72, 170, calc(0.14 + var(--timer-energy) * 0.12));
  opacity: calc(0.52 + var(--timer-energy) * 0.26);
  animation: timer-ring-spin 7.5s linear infinite, timer-blob-halo 6.8s cubic-bezier(0.56, 0.05, 0.34, 1) infinite;
  pointer-events: none;
}

.promo-timer-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.promo-timer-shell {
  position: absolute;
  inset: 10px 12px 18px 8px;
  z-index: 1;
  border-radius: 51% 49% 55% 45% / 46% 54% 46% 54%;
  border: 1px solid rgba(234, 228, 255, 0.16);
  opacity: 0.6;
  pointer-events: none;
  animation: timer-shell-drift 7.1s cubic-bezier(0.55, 0.06, 0.36, 1) infinite;
}

.promo-timer-liquid {
  position: absolute;
  z-index: 0;
  display: block;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: blur(10px);
}

.promo-timer-liquid-a {
  top: 12%;
  left: 6%;
  width: 58%;
  height: 42%;
  border-radius: 50% 50% 42% 58% / 36% 44% 56% 64%;
  background: radial-gradient(circle at 38% 32%, rgba(255, 255, 255, 0.34), rgba(201, 190, 255, 0.24) 34%, rgba(201, 190, 255, 0) 72%);
  animation: timer-liquid-a 8.6s cubic-bezier(0.57, 0.07, 0.34, 0.99) infinite;
}

.promo-timer-liquid-b {
  right: 4%;
  bottom: 10%;
  width: 52%;
  height: 44%;
  border-radius: 42% 58% 56% 44% / 48% 35% 65% 52%;
  background: radial-gradient(circle at 52% 42%, rgba(127, 107, 255, 0.34), rgba(127, 107, 255, 0.18) 36%, rgba(127, 107, 255, 0) 74%);
  animation: timer-liquid-b 7.4s cubic-bezier(0.62, 0.05, 0.33, 1) infinite;
}

.promo-timer:hover {
  --timer-energy: 1;
}

.promo-timer-label,
.promo-timer-note,
.promo-timer b,
.promo-timer-chip,
.promo-timer-clock span {
  position: relative;
  z-index: 1;
}

.promo-timer-chip {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: none;
  color: rgba(228, 236, 255, 0.7);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.promo-timer-label {
  max-width: 160px;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: 0;
  color: rgba(248, 251, 255, 0.94);
}

.promo-timer-clock {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  width: auto;
  padding: 0;
  border-radius: 0;
  background: none;
  border: 0;
}

.promo-timer-clock span {
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(224, 234, 255, 0.66);
}

.promo-timer b {
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-shadow: 0 0 18px rgba(125, 217, 255, 0.34);
}

.promo-timer-note {
  max-width: 170px;
  font-size: 12px;
  line-height: 1.42;
  color: rgba(229, 236, 255, 0.76);
}

@keyframes timer-orbit {
  0%,
  100% {
    box-shadow:
      0 26px 80px rgba(0, 0, 0, 0.36),
      0 0 44px rgba(127, 107, 255, 0.2),
      inset 0 0 0 1px rgba(255, 255, 255, 0.05),
      inset 0 -26px 48px rgba(47, 35, 111, 0.34);
  }

  50% {
    box-shadow:
      0 30px 90px rgba(0, 0, 0, 0.4),
      0 0 56px rgba(127, 107, 255, 0.3),
      inset 0 0 0 1px rgba(255, 255, 255, 0.06),
      inset 0 -28px 58px rgba(58, 43, 134, 0.42);
  }
}

@keyframes timer-blob-morph {
  0%,
  100% {
    border-radius: 50% 50% 48% 52% / 49% 51% 49% 51%;
  }

  18% {
    border-radius: 46% 54% 50% 50% / 45% 55% 47% 53%;
  }

  37% {
    border-radius: 52% 48% 54% 46% / 53% 47% 55% 45%;
  }

  58% {
    border-radius: 55% 45% 46% 54% / 50% 50% 56% 44%;
  }

  79% {
    border-radius: 47% 53% 55% 45% / 57% 43% 45% 55%;
  }
}

@keyframes timer-blob-inner {
  0% {
    inset: 19px 22px 18px 18px;
    border-radius: 49% 51% 53% 47% / 47% 53% 47% 53%;
  }

  35% {
    inset: 17px 25px 20px 17px;
    border-radius: 54% 46% 50% 50% / 43% 57% 45% 55%;
  }

  62% {
    inset: 21px 19px 16px 21px;
    border-radius: 46% 54% 56% 44% / 55% 45% 53% 47%;
  }

  100% {
    inset: 18px 20px 21px 19px;
    border-radius: 52% 48% 46% 54% / 49% 51% 43% 57%;
  }
}

@keyframes timer-blob-halo {
  0% {
    inset: -16px -12px -18px -14px;
    border-radius: 50% 50% 54% 46% / 46% 54% 46% 54%;
  }

  30% {
    inset: -18px -8px -14px -15px;
    border-radius: 45% 55% 49% 51% / 43% 57% 44% 56%;
  }

  67% {
    inset: -12px -15px -20px -10px;
    border-radius: 54% 46% 56% 44% / 55% 45% 57% 43%;
  }

  100% {
    inset: -14px -13px -16px -12px;
    border-radius: 47% 53% 45% 55% / 50% 50% 42% 58%;
  }
}

@keyframes timer-shell-drift {
  0%,
  100% {
    inset: 10px 12px 18px 8px;
    border-radius: 51% 49% 55% 45% / 46% 54% 46% 54%;
    opacity: 0.58;
  }

  50% {
    inset: 12px 9px 15px 11px;
    border-radius: 46% 54% 49% 51% / 55% 45% 54% 46%;
    opacity: 0.72;
  }
}

@keyframes timer-liquid-a {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    border-radius: 50% 50% 42% 58% / 36% 44% 56% 64%;
    opacity: 0.72;
  }

  35% {
    transform: translate3d(12px, -10px, 0) scale(1.12);
    border-radius: 58% 42% 53% 47% / 32% 51% 49% 68%;
    opacity: 0.88;
  }

  70% {
    transform: translate3d(-6px, 10px, 0) scale(0.96);
    border-radius: 43% 57% 60% 40% / 46% 35% 65% 54%;
    opacity: 0.64;
  }
}

@keyframes timer-liquid-b {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    border-radius: 42% 58% 56% 44% / 48% 35% 65% 52%;
    opacity: 0.62;
  }

  40% {
    transform: translate3d(-10px, -8px, 0) scale(1.08);
    border-radius: 54% 46% 45% 55% / 36% 48% 52% 64%;
    opacity: 0.8;
  }

  78% {
    transform: translate3d(8px, 10px, 0) scale(0.92);
    border-radius: 37% 63% 59% 41% / 52% 32% 68% 48%;
    opacity: 0.58;
  }
}

@keyframes timer-ring-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

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

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

@keyframes house-graph-mesh-breathe {
  0%,
  100% {
    opacity: 0.36;
  }

  50% {
    opacity: 0.96;
  }
}

@keyframes house-graph-node-pulse {
  0%,
  100% {
    opacity: 0.68;
    transform: scale(1);
  }

  45% {
    opacity: 1;
    transform: scale(1.22);
  }

  65% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

@keyframes house-graph-ambient-blink {
  0%,
  100% {
    opacity: 0.28;
  }

  50% {
    opacity: 1;
  }
}

@keyframes house-graph-signal-flow {
  from {
    stroke-dashoffset: 120;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes house-graph-backbone-pulse {
  0%,
  100% {
    opacity: 0.66;
  }

  50% {
    opacity: 1;
  }
}

@keyframes house-graph-particle-breathe {
  0%,
  100% {
    opacity: 0.74;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes house-graph-promo-sheen {
  from {
    background-position: -34% 50%, 0 0, 0 0, 0 0, 0 0;
  }

  to {
    background-position: 134% 50%, 0 0, 0 0, 0 0, 0 0;
  }
}

.hero-edge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--hero-edge-reserve);
  z-index: 10;
  margin: 0;
  transform: translateY(50%);
}

.hero-edge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 286px));
  justify-content: center;
  gap: 10px;
  align-items: stretch;
}

.hero-edge-card {
  min-height: 126px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(145, 201, 255, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(15, 18, 29, 0.88), rgba(10, 16, 28, 0.96)),
    radial-gradient(circle at top left, rgba(116, 220, 255, 0.14), transparent 38%);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-edge-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1.05;
  color: #f2f7ff;
}

.hero-edge-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.hero-slider {
  background: #101018;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  min-height: 540px;
}

.slides {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: rgba(17, 17, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 14px;
  color: #eef0f6;
}

.hero-dots,
.project-dots,
.review-dots,
.function-dots {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
  z-index: 4;
}

.hero-dots {
  display: none;
}

.hero-slider--bg .slide-caption {
  display: none;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.dot.active {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
}

.consult-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: flex;
  justify-content: flex-end;
  width: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
}

.consult-widget.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s;
}

.consult-widget-panel {
  border: 1px solid rgba(198, 187, 255, 0.18);
  background: linear-gradient(180deg, rgba(25, 27, 36, 0.96), rgba(15, 17, 24, 0.98));
  box-shadow: 0 24px 56px rgba(10, 12, 20, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

.consult-widget-trigger {
  position: relative;
  display: inline-flex;
  justify-content: flex-end;
  width: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  overflow: visible;
}

.consult-widget-trigger::before {
  content: none;
}

.consult-widget-trigger::after {
  content: none;
}

.consult-widget-trigger:hover,
.consult-widget-trigger:focus-visible,
.consult-widget.is-open .consult-widget-trigger {
  transform: none;
  box-shadow: none;
}

.consult-widget-trigger:focus-visible {
  outline: none;
}

.consult-widget-kicker,
.consult-widget-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(239, 234, 255, 0.8);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.consult-widget-title {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 52px;
  margin-top: 0;
  justify-content: center;
  padding: 17px 30px;
  border-radius: 16px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  transition: transform 0.15s ease, opacity 0.2s ease, background 0.2s ease;
}

.consult-widget-title::after {
  content: none;
}

.consult-widget-trigger:hover .consult-widget-title,
.consult-widget-trigger:focus-visible .consult-widget-title,
.consult-widget.is-open .consult-widget-title {
  transform: translateY(-1px);
  opacity: 0.96;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
}

.consult-widget-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: min(368px, calc(100vw - 40px));
  max-width: calc(100vw - 40px);
  padding: 18px;
  border-radius: 28px;
  transform-origin: bottom right;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.consult-widget.is-open .consult-widget-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.consult-widget-panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.consult-widget-panel-copy strong {
  display: block;
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.02;
  color: #ffffff;
}

.consult-widget-panel-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.consult-widget-close {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.consult-widget-close:hover,
.consult-widget-close:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  transform: rotate(90deg);
  outline: none;
}

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

.consult-widget-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, opacity 0.18s ease;
}

.consult-widget-link-secondary {
  border-color: rgba(198, 187, 255, 0.16);
}

.consult-widget-link:hover,
.consult-widget-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(198, 187, 255, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  outline: none;
}

.consult-widget-link-icon {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.consult-widget-link-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.consult-widget-link-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.consult-widget-link-copy strong {
  font-size: 15px;
  line-height: 1;
}

.consult-widget-link-copy span {
  color: rgba(227, 225, 238, 0.72);
  font-size: 12px;
  line-height: 1.3;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  background-color: var(--surface);
  box-shadow: var(--shadow);
}

.section-head {
  margin-bottom: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  flex-wrap: wrap;
}

.section-head .subtext {
  margin: 0;
  color: var(--muted);
  max-width: 700px;
}

.functions {
  position: relative;
}

.function-view {
  --function-slide-width: min(1260px, calc(100% + 140px));
  --function-preview-overlap: 360px;
  min-height: 600px;
  padding: 0 0 64px;
  overflow: visible;
  position: relative;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.f-item {
  position: absolute;
  top: 50%;
  left: 0;
  width: 228px;
  height: 386px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: #b7c7de;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 24px 44px rgba(8, 12, 20, 0.34);
  transform: translate(120px, -50%) scale(0.92);
  transition: transform 0.4s ease, opacity 0.32s ease, box-shadow 0.32s ease, filter 0.32s ease;
}

.function-view .slides {
  width: var(--function-slide-width);
  min-height: 780px;
  margin: 0 0;
  border-radius: 28px;
  overflow: visible;
  box-shadow: 0 24px 58px rgba(8, 12, 20, 0.44);
}

.function-slide {
  overflow: hidden;
  border-radius: 28px;
}

.function-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 20, 11, 0.72) 0%, rgba(31, 20, 11, 0.52) 33%, rgba(31, 20, 11, 0.14) 70%, rgba(31, 20, 11, 0) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.34));
}

.function-slide img {
  filter: saturate(1.04) contrast(1.02);
}

.function-slide-copy {
  position: absolute;
  top: 50%;
  left: clamp(46px, 6vw, 74px);
  z-index: 2;
  display: grid;
  gap: 14px;
  width: min(360px, 38%);
  max-width: 360px;
  transform: translateY(-50%);
}

.function-slide-kicker {
  color: rgba(255, 245, 234, 0.88);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.function-slide-copy h3 {
  font-size: clamp(38px, 4vw, 52px);
  line-height: 0.94;
  font-weight: 700;
  color: #fff4ea;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.function-slide-copy p {
  margin: 0;
  color: rgba(255, 243, 231, 0.82);
  font-size: 17px;
  line-height: 1.45;
}

.function-slide-btn {
  min-height: 44px;
  width: fit-content;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.9);
  border-color: transparent;
  color: #1b2334;
  border-radius: 12px;
  font-weight: 600;
}

.function-slide-btn:hover,
.function-slide-btn:focus,
.function-slide-btn:focus-visible {
  color: #1b2334;
  background: #ffffff;
}

.functions-previews {
  position: absolute;
  top: 50%;
  left: calc(50% + (var(--function-slide-width) / 2) - var(--function-preview-overlap));
  z-index: 4;
  width: 748px;
  height: 424px;
  transform: translateY(-50%);
  pointer-events: none;
}

.f-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.f-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 18, 0.02) 0%, rgba(8, 10, 18, 0.16) 52%, rgba(8, 10, 18, 0.54) 100%);
}

.f-item span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  z-index: 1;
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  text-align: left;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.32);
}

.f-item.active {
  opacity: 0;
}

.f-item.preview-pos-1,
.f-item.preview-pos-2,
.f-item.preview-pos-3 {
  opacity: 1;
  pointer-events: auto;
}

.f-item.preview-pos-1 {
  left: 0;
  z-index: 3;
  transform: translateY(-50%) rotate(-0.8deg);
}

.f-item.preview-pos-2 {
  left: 256px;
  z-index: 4;
  transform: translateY(-50%) rotate(0.8deg);
}

.f-item.preview-pos-3 {
  left: 512px;
  z-index: 5;
  transform: translateY(-50%) rotate(0deg);
}

.f-item.preview-pos-1:hover,
.f-item.preview-pos-2:hover,
.f-item.preview-pos-3:hover,
.f-item.preview-pos-1:focus-visible,
.f-item.preview-pos-2:focus-visible,
.f-item.preview-pos-3:focus-visible {
  box-shadow: 0 30px 54px rgba(8, 12, 20, 0.44);
  filter: brightness(1.05);
}

.function-controls {
  position: absolute;
  left: 50%;
  bottom: 80px;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 10px;
  width: max-content;
  transform: translateX(-50%);
}

.function-nav {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background-color: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: transform 0.15s ease, background-color 0.2s ease;
}

.function-nav img {
  width: 48px;
  height: 48px;
  position: absolute;
  transition: opacity 0.2s ease;
  transform: none;
}

.function-prev .arrow-default {
  opacity: 1;
}

.function-prev .arrow-hover {
  opacity: 0;
  transform: rotate(180deg) !important;
}

.function-next .arrow-default {
  opacity: 1;
  transform: rotate(180deg) !important;
}

.function-next .arrow-hover {
  opacity: 0;
  transform: rotate(0deg) !important;
}

.function-nav:hover {
  transform: translateY(-2px);
}

.function-nav:active {
  transform: translateY(0);
}

.function-nav:active .arrow-default {
  opacity: 0;
}

.function-nav:active .arrow-hover {
  opacity: 1;
}

.function-nav:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(127, 107, 255, 0.4);
}

.controls-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(560px, 1.28fr);
  gap: 20px;
  padding: 28px;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(520px 240px at 0% 0%, rgba(127, 107, 255, 0.18), rgba(127, 107, 255, 0) 56%),
    radial-gradient(480px 280px at 100% 100%, rgba(103, 216, 162, 0.12), rgba(103, 216, 162, 0) 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.controls-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  min-width: 0;
}

.controls-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(239, 240, 246, 0.78);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.controls-copy h3 {
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 0.96;
  color: #f6f7fb;
}

.controls-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 440px;
}

.controls-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.controls-note {
  margin-top: 6px;
}

.controls-visuals {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

.control-device {
  position: relative;
  flex: 1 1 0;
  max-width: 264px;
  min-width: 0;
  padding: 12px;
  border-radius: 36px;
  background: linear-gradient(180deg, #191d26 0%, #10131b 100%);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.control-device-primary {
  transform: none;
  max-width: 232px;
  padding: 8px;
  border-radius: 28px;
}

.control-device-secondary {
  transform: none;
}

.control-device-tablet {
  max-width: 568px;
  flex-basis: 568px;
}

.control-device-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 8px 12px;
  color: rgba(239, 240, 246, 0.72);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.control-device-screen {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #0f1219;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.control-device-screen-tablet {
  display: flex;
}

.control-device-media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(127, 107, 255, 0.18), rgba(127, 107, 255, 0) 56%),
    linear-gradient(180deg, #141925 0%, #0d1018 100%);
}

.control-device-media-phone {
  display: grid;
  place-items: center;
  padding: 10px 8px 0;
}

.control-device-media-tablet {
  display: grid;
  flex: 1 1 auto;
  place-items: center;
  padding: 4px;
  background: #090d14;
}

.control-device-media-tablet .control-device-video {
  width: 100%;
  height: 100%;
  transform: none;
  transform-origin: center center;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.control-device-image,
.control-device-video {
  display: block;
  width: 100%;
  height: 100%;
}

.control-device-image {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  filter: drop-shadow(0 26px 28px rgba(0, 0, 0, 0.28));
}

.control-device-media-phone .control-device-image {
  max-width: 100%;
  height: 100%;
}

.control-device-image-shelly {
  transition: opacity 0.28s ease;
}

.control-device-image-shelly.is-fading {
  opacity: 0.12;
}

.control-device-video {
  object-fit: cover;
}

.control-app-slides,
.control-app-slide {
  height: 100%;
}

.control-app-slide {
  padding: 14px;
}

.control-app-ui {
  height: 100%;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  color: #ffffff;
}

.control-app-ui-warm {
  background: linear-gradient(180deg, #3a2e62 0%, #171c2a 100%);
}

.control-app-ui-night {
  background: linear-gradient(180deg, #182434 0%, #10141d 100%);
}

.control-app-ui-day {
  background: linear-gradient(180deg, #31465e 0%, #151a26 100%);
}

.control-app-ui-cool {
  background: linear-gradient(180deg, #1b4460 0%, #111826 100%);
}

.control-app-ui-lime {
  background: linear-gradient(180deg, #355244 0%, #141a22 100%);
}

.control-app-ui-violet {
  background: linear-gradient(180deg, #432f63 0%, #171724 100%);
}

.control-app-bar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.control-app-hero {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.control-app-hero strong {
  font-size: 24px;
  line-height: 1;
}

.control-app-hero span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.control-app-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.control-widget,
.control-list-row,
.control-rule-card {
  padding: 14px;
  border-radius: 16px;
  background: rgba(8, 10, 18, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.control-widget-wide {
  grid-column: 1 / -1;
}

.control-widget b,
.control-list-row b,
.control-rule-card b {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.control-widget span,
.control-list-row span,
.control-rule-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.4;
}

.control-app-list,
.control-rule-stack,
.control-meter-stack {
  display: grid;
  gap: 10px;
}

.control-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.control-list-row b,
.control-list-row span {
  margin: 0;
}

.control-scene-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.control-scene-pill {
  display: grid;
  place-items: center;
  min-height: 88px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 16px;
  font-weight: 600;
}

.control-meter {
  display: grid;
  gap: 8px;
}

.control-meter span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.control-meter i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(127, 107, 255, 0.88));
}

.note {
  margin-top: 16px;
  border: 1px solid rgba(127, 107, 255, 0.36);
  background: rgba(127, 107, 255, 0.08);
  border-radius: 14px;
  padding: 12px 14px;
  color: #e3ddff;
  font-size: 14px;
}

.equipment {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 18px;
}

.equipment .card {
  padding: 20px;
}

.equipment ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #d0d7e7;
  line-height: 1.6;
}

.brand-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.badge {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: #d7def0;
  background: rgba(255, 255, 255, 0.03);
}

.about-copy {
  display: grid;
  gap: 14px;
}

.about-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 520px) minmax(320px, 1fr);
  gap: clamp(32px, 4vw, 84px);
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(127, 107, 255, 0.22), rgba(127, 107, 255, 0) 28%),
    radial-gradient(circle at 78% 18%, rgba(84, 72, 170, 0.18), rgba(84, 72, 170, 0) 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
}

.about-showcase::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.about-visual {
  position: relative;
  min-height: 420px;
}

.about-orbit {
  position: absolute;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 28px;
  border-radius: 50%;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.about-orbit strong {
  display: block;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.about-orbit span {
  display: block;
  max-width: 200px;
  font-size: 15px;
  line-height: 1.45;
}

.about-orbit-primary {
  left: 0;
  top: 74px;
  width: 287px;
  height: 287px;
  background: radial-gradient(circle at 32% 28%, rgba(169, 154, 255, 0.92), rgba(127, 107, 255, 0.98) 62%, rgba(84, 72, 170, 1) 100%);
  color: #f8f7ff;
  border-color: rgba(194, 184, 255, 0.28);
}

.about-orbit-primary span {
  color: rgba(244, 242, 255, 0.88);
}

.about-orbit-secondary {
  left: 228px;
  top: 0;
  width: 214px;
  height: 214px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  color: #eef0f6;
}

.about-orbit-secondary span,
.about-orbit-tertiary span {
  color: #d5d8e6;
}

.about-orbit-tertiary {
  left: 248px;
  top: 254px;
  width: 172px;
  height: 172px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  color: #eef0f6;
}

.about-panel {
  display: grid;
  gap: 28px;
  align-content: center;
}

.about-panel h2 {
  margin: 0;
  color: #eef0f6;
}

.about-copy p {
  margin: 0;
  max-width: 640px;
  color: var(--muted);
  line-height: 1.7;
}

.about-cta {
  width: fit-content;
  min-height: 50px;
  padding: 0 28px;
}

.about-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.about-item {
  padding: 18px;
  text-align: center;
}

.about-item b {
  display: block;
  color: #d8f2ff;
  font-size: 28px;
  margin-bottom: 6px;
}

.about-item span {
  color: var(--muted);
  font-size: 14px;
}

.projects {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.project-track,
.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 12px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 12px;
}

.project-track::-webkit-scrollbar,
.review-track::-webkit-scrollbar {
  display: none;
}

.project-card {
  min-height: 390px;
  scroll-snap-align: start;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #111620;
}

.project-media {
  position: relative;
  flex: 0 0 auto;
  height: 190px;
  overflow: hidden;
  background: #0f141d;
}

.project-card img,
.project-card video {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.project-poster,
.project-video {
  transition: opacity 0.28s ease, transform 0.35s ease;
}

.project-poster {
  position: relative;
  z-index: 1;
}

.project-video {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.project-card.is-playing .project-poster {
  opacity: 0;
}

.project-card.is-playing .project-video {
  opacity: 1;
}

.project-body {
  padding: 14px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.project-body h3 {
  color: #ffffff;
}

.project-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  color: #c8d0e0;
  font-size: 13px;
}

.project-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
  margin-top: auto;
}

.project-download-btn {
  min-height: 48px;
  min-width: 210px;
  padding: 0 28px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  box-shadow: none;
}

.project-download-btn:hover,
.project-download-btn:focus-visible {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #ffffff;
}

.review-wrap {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.review-card {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  scroll-snap-align: start;
}

.review-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #d2d9ea;
}

.stars {
  color: #ffd76d;
}

.review-card p {
  margin: 0;
  color: #c3ccde;
  line-height: 1.55;
  font-size: 14px;
}

#reviews.review-section {
  width: 100%;
}

#reviews .review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

#reviews .review-left {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#reviews .review-left h2 {
  color: #ffffff;
}

#reviews .review-left .subtext {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

#reviews .btn-review-leave {
  min-height: 52px;
  padding: 0 34px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(90deg, #7f6bff 0%, #5548aa 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

#reviews .btn-review-leave:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

#reviews .review-bot {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

#reviews .review-content {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  min-width: 0;
}

#reviews .review-rating-card {
  flex: 0 0 250px;
  width: 250px;
  min-height: 272px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(127, 107, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

#reviews .review-rating-wrapp,
#reviews .review-rating-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#reviews .review-rating-wrapp {
  gap: 22px;
}

#reviews .review-rating-info {
  gap: 16px;
}

#reviews .review-rating-title {
  font-size: 16px;
  line-height: 1.2;
  color: #ffffff;
}

#reviews .review-rating-count {
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

#reviews .rating-value {
  font-size: 34px;
  line-height: 1;
  color: var(--accent-soft);
}

#reviews .rating-max {
  font-size: 28px;
  line-height: 1;
  color: #ffffff;
  display: none;
}

#reviews .review-rating-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

#reviews .review-details-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.2;
  transition: opacity 0.2s ease;
}

#reviews .review-details-btn:hover {
  opacity: 0.8;
}

#reviews .review-carousel {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: stretch;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

#reviews .review-carousel::-webkit-scrollbar {
  display: none;
}

#reviews .review-item {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 300px;
  min-height: 272px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.24);
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}

#reviews .review-item-wrapp {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#reviews .review-item-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

#reviews .review-avatar {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.08);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#reviews .review-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#reviews .review-name {
  font-size: 20px;
  line-height: 1.2;
  color: #ffffff;
}

#reviews .review-object {
  font-size: 15px;
  line-height: 1.35;
  color: var(--muted);
}

#reviews .review-text {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.45;
}

#reviews .review-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

#reviews .review-nav-btn {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: transform 0.15s ease;
}

#reviews .review-nav-btn img {
  position: absolute;
  width: 48px;
  height: 48px;
  transition: opacity 0.2s ease;
}

#reviews .review-nav-btn .arrow-default {
  opacity: 1;
}

#reviews .review-nav-btn .arrow-hover {
  opacity: 0;
}

#reviews #rev-prev .arrow-hover {
  transform: rotate(180deg);
}

#reviews #rev-next .arrow-default {
  transform: rotate(180deg);
}

#reviews .review-nav-btn:hover {
  transform: translateY(-2px);
}

#reviews .review-nav-btn:active .arrow-default {
  opacity: 0;
}

#reviews .review-nav-btn:active .arrow-hover {
  opacity: 1;
}

@media (max-width: 1120px) {
  #reviews .review-content {
    flex-direction: column;
  }

  #reviews .review-rating-card {
    width: 100%;
    flex-basis: auto;
    min-height: 220px;
  }

  #reviews .review-item {
    flex-basis: calc((100% - 20px) / 2);
    min-width: 320px;
  }
}

@media (max-width: 780px) {
  #reviews .review-left .subtext {
    font-size: 15px;
  }

  #reviews .btn-review-leave {
    width: 100%;
    padding: 0 18px;
  }

  #reviews .review-content {
    gap: 14px;
  }

  #reviews .review-carousel {
    gap: 14px;
  }

  #reviews .review-item {
    flex-basis: 84%;
    min-width: 84%;
    min-height: 240px;
    padding: 22px;
  }

  #reviews .review-controls {
    justify-content: center;
  }
}

.partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.partner {
  min-height: 128px;
  display: grid;
  place-content: center;
  place-items: center;
  padding: 12px;
  text-align: center;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.partner img {
  width: 100%;
  max-width: 280px;
  /*max-height: 84px;*/
  object-fit: contain;
}

.lead-form {
  display: grid;
  gap: 12px;
  max-width: 680px;
}

.field {
  display: grid;
  gap: 6px;
}

.field span {
  color: #c7d0e2;
  font-size: 13px;
}

input,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0f131c;
  color: #eef2fb;
  padding: 12px;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(127, 107, 255, 0.46);
  border-color: rgba(127, 107, 255, 0.7);
}

.submit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.form-note {
  color: var(--muted);
  font-size: 12px;
}

.success {
  display: none;
  margin-top: 16px;
  border: 1px solid rgba(103, 216, 162, 0.52);
  background: rgba(103, 216, 162, 0.09);
  border-radius: 14px;
  padding: 14px;
}

.success h3 {
  margin-bottom: 8px;
  font-size: 20px;
  color: #c6f6dd;
}

.success a {
  text-decoration: underline;
}

.footer {
  border-top: 1px solid var(--line);
  margin-top: 32px;
  padding: 22px 0 32px;
  color: #aab4c7;
  font-size: 14px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}

@media (max-width: 1120px) {
  .container {
    width: 100%;
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
  }

  .functions,
  .equipment {
    grid-template-columns: 1fr;
  }

  .function-view {
    min-height: 760px;
    padding: 18px;
    background: none;
    box-shadow: none;
  }

  .function-view .slides {
    width: 100%;
    min-height: 500px;
  }

  .function-slide-copy {
    left: 28px;
    max-width: 300px;
  }

  .functions-previews {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 90px;
    width: auto;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    transform: none;
    pointer-events: auto;
  }

  .functions-previews .f-item {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: 136px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    border-radius: 22px;
  }

  .functions-previews .f-item.active,
  .functions-previews .f-item.preview-pos-1,
  .functions-previews .f-item.preview-pos-2,
  .functions-previews .f-item.preview-pos-3 {
    opacity: 1;
  }

  .functions-previews .f-item.active {
    outline: 2px solid rgba(255, 255, 255, 0.84);
    outline-offset: 2px;
  }

  .functions-previews .f-item span {
    font-size: 16px;
  }

  .function-controls {
    left: 50%;
    bottom: 24px;
    width: max-content;
    transform: translateX(-50%);
  }

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

  .about-showcase {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-visual {
    width: min(100%, 460px);
    margin: 0 auto;
  }

  .controls-showcase {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .controls-visuals {
    justify-content: flex-start;
  }

  .control-device {
    max-width: 224px;
  }

  .control-device-tablet {
    max-width: 484px;
    flex-basis: auto;
  }

  .control-device-screen {
    min-height: 344px;
  }

  .control-device-screen-tablet {
    min-height: 344px;
  }

  .hero-content {
    min-height: 700px;
    align-items: flex-start;
    gap: 24px;
  }

  .hero-card {
    width: min(100%, 720px);
  }

  .hero-feature-wrap {
    right: auto;
    left: calc(100% + ((100vw - 100%) / 2));
    top: auto;
    bottom: 56px;
    --tour-shift-y: 0%;
  }

  .hero-slider--bg,
  .hero-slider--bg .slides {
    min-height: 700px;
  }

  .hero-feature {
    width: 100%;
    transform: none;
  }

  .house-graph-promo {
    width: min(332px, calc(100% - 72px));
    right: 36px;
    top: 0;
    padding: 16px 16px 14px;
  }

  .house-graph-promo .promo-subtitle {
    max-width: 286px;
    font-size: 13px;
  }

  .house-graph-promo .house-graph-countdown {
    font-size: 26px;
  }

  .promo-timer {
    width: 248px;
    right: 48px;
    --timer-blob-radius: 50% 50% 47% 53% / 48% 52% 48% 52%;
  }

  .promo-timer-content {
    padding: 28px 22px;
  }

  .promo-timer-liquid-a {
    width: 60%;
    height: 40%;
  }

  .promo-timer-liquid-b {
    width: 50%;
    height: 42%;
  }

  .promo-timer b {
    font-size: 36px;
  }

  .hero-edge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  h1 {
    font-size: clamp(35px, 4vw, 48px);
  }

  #functions {
    margin-top: 140px;
  }

  #controls {
    margin-top: 55px;
  }

  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .nav {
    min-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 0;
    --hero-edge-reserve: 84px;
    padding-bottom: var(--hero-edge-reserve);
  }

  .hero-card {
    width: 100%;
    padding: 0;
    border-radius: 0;
  }

  .hero-stage,
  .hero-content,
  .hero-feature-wrap {
    min-height: 680px;
  }

  .hero-slider--bg,
  .hero-slider--bg .slides {
    min-height: 680px;
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 88px;
    padding-bottom: 340px;
  }

  .hero-content .hero-card {
    max-width: 100%;
  }

  .hero-feature-wrap {
    left: 14px;
    right: 14px;
    bottom: 96px;
    top: auto;
    width: auto;
    min-height: 0;
    transform: none;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.58);
  }

  .function-view {
    min-height: 760px;
    padding: 14px;
    border-radius: 28px;
    background: none;
    box-shadow: none;
  }

  .function-view .slides {
    width: 100%;
    min-height: 420px;
    border-radius: 22px;
  }
  .function-slide-copy {
    left: 22px;
    right: 22px;
    max-width: 260px;
  }

  .function-slide-kicker {
    font-size: 12px;
  }

  .function-slide-copy h3 {
    font-size: 34px;
  }

  .function-slide-copy p {
    font-size: 15px;
  }

  .function-slide-btn {
    min-height: 42px;
    min-width: 188px;
    padding: 0 24px;
    font-size: 14px;
    white-space: nowrap;
  }

  .functions-previews {
    left: 14px;
    right: 14px;
    bottom: -8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .functions-previews .f-item {
    height: 112px;
    border-radius: 18px;
  }

  .functions-previews .f-item span {
    left: 12px;
    right: 12px;
    bottom: 12px;
    font-size: 14px;
  }

  .function-controls {
    left: 50%;
    bottom: -80px;
    width: max-content;
    transform: translateX(-50%);
  }

  .hero-kicker {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .hero-sub {
    font-size: 17px;
    line-height: 24px;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .hero-system-badges {
    gap: 8px;
  }

  .hero-system-badge {
    min-height: 36px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero-actions .btn {
    width: auto;
    justify-content: center;
    font-size: 17px;
    padding: 15px 22px;
  }

  .hero-feature {
    width: 100%;
    min-height: auto;
    padding: 16px 18px;
    gap: 14px;
    flex-direction: row;
    align-items: center;
    border-radius: 22px;
    transform: none;
  }

  .hero-feature-copy,
  .hero-feature-media {
    width: auto;
  }

  .hero-feature-copy {
    justify-content: flex-start;
  }

  .hero-feature-title {
    transform: none;
    letter-spacing: 0.08em;
    left: 0;
  }

  .hero-feature-thumb {
    height: 72px;
    width: 72px;
    border-radius: 50%;
  }

  .house-graph-promo {
    align-self: flex-end;
    right: 0;
    top: 0;
    width: min(360px, 100%);
    max-width: 100%;
    margin-bottom: 24px;
    padding: 16px 16px 14px;
  }

  .house-graph-promo .promo-tagline {
    max-width: 140px;
  }

  .promo-timer {
    align-self: flex-end;
    margin-left: 0;
    margin-right: 0;
    right: 0;
    width: 214px;
    max-width: 100%;
    gap: 10px;
    --timer-blob-radius: 50% 50% 48% 52% / 49% 51% 47% 53%;
  }

  .promo-timer-content {
    padding: 24px 18px;
  }

  .promo-timer::before {
    inset: 14px 16px 16px 14px;
  }

  .promo-timer::after {
    inset: -10px -8px -12px -10px;
  }

  .promo-timer-shell {
    inset: 9px 11px 14px 8px;
  }

  .promo-timer-liquid {
    filter: blur(8px);
  }

  .promo-timer-chip,
  .promo-timer-clock span {
    font-size: 10px;
  }

  .promo-timer-label {
    max-width: 100%;
    font-size: 14px;
  }

  .promo-timer b {
    font-size: 28px;
  }

  .promo-timer-note {
    max-width: 128px;
    font-size: 12px;
  }

  .hero-edge {
    transform: translateY(50%);
  }

  .hero-edge-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-edge-card {
    min-height: 0;
    padding: 16px;
  }

  .about-showcase {
    padding: 24px;
  }

  .about-visual {
    width: min(100%, 360px);
    min-height: 344px;
  }

  .about-orbit {
    padding: 22px;
  }

  .about-orbit span {
    font-size: 13px;
  }

  .about-orbit-primary {
    width: 244px;
    height: 244px;
    top: 60px;
  }

  .about-orbit-secondary {
    left: 184px;
    width: 164px;
    height: 164px;
  }

  .about-orbit-tertiary {
    left: 202px;
    top: 214px;
    width: 126px;
    height: 126px;
  }

  .controls-showcase,

  .about-orbit-tertiary strong {
    font-size: clamp(24px, 2.4vw, 40px);
  }
  .about-grid,
  .partners {
    grid-template-columns: 1fr;
  }

  .controls-showcase {
    padding: 18px;
    gap: 18px;
  }

  .controls-copy h3 {
    font-size: 30px;
  }

  .controls-copy p {
    font-size: 15px;
  }

  .controls-visuals {
    flex-direction: column;
    gap: 16px;
  }

  .control-device,
  .control-device-primary,
  .control-device-secondary {
    width: 100%;
    max-width: none;
    transform: none;
  }

  .control-device-tablet {
    flex-basis: auto;
  }

  .control-device-screen {
    min-height: 280px;
  }

  .control-device-screen-tablet {
    min-height: 280px;
  }

  .control-app-hero strong {
    font-size: 22px;
  }

  .consult-widget {
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
  }

  .consult-widget-title {
    width: auto;
    justify-content: center;
    min-height: 48px;
    padding: 15px 22px;
    font-size: 17px;
  }

  .consult-widget-panel {
    bottom: calc(100% + 10px);
    width: 100%;
    max-width: none;
  }

  .consult-widget-actions {
    grid-template-columns: 1fr;
  }
}

header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(18px);
  background: rgba(18, 18, 27, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wrap {
  width: min(1600px, calc(100% - 80px));
  margin: 0 auto;
}

header > .wrap {
  position: relative;
}

header .nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

header .brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

header .logo {
  width: 176px;
  height: auto;
}

header nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

header nav a {
  color: rgba(238, 240, 246, 0.72);
  font-size: 15px;
  line-height: 1.2;
  transition: color 0.2s ease;
}

header nav a:hover,
header nav a:focus-visible {
  color: #ffffff;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-left: auto;
}

.socials,
.mnav-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.icon-link .icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.phone a {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
}

.region {
  color: rgba(238, 240, 246, 0.6);
  font-size: 13px;
  white-space: nowrap;
}

.burger {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  position: relative;
}

.burger i,
.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 14px;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.burger i {
  top: 23px;
}

.burger::before {
  top: 16px;
}

.burger::after {
  top: 30px;
}

.burger.active i {
  opacity: 0;
}

.burger.active::before {
  top: 23px;
  transform: rotate(45deg);
}

.burger.active::after {
  top: 23px;
  transform: rotate(-45deg);
}

.mnav {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 95;
  display: block;
  padding-bottom: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

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

.mnav-content {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: 26px;
  background: rgba(20, 20, 31, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.mnav-content > a {
  font-size: 18px;
  font-weight: 500;
}

.mnav-meta {
  display: grid;
  gap: 14px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mnav-phone a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 599px) {
  header > .wrap {
    width: calc(100% - 24px);
  }

  header .nav {
    min-height: 72px;
    justify-content: flex-start;
    gap: 12px;
  }

  header nav {
    display: none;
  }

  .burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
  }

  header .brand {
    flex: 0 1 auto;
    min-width: 0;
  }

  header .logo {
    width: 132px;
  }

  .nav-right {
    margin-left: auto;
    gap: 8px;
    flex: 0 0 auto;
  }

  .phone,
  .region {
    display: none;
  }

  .socials {
    gap: 8px;
  }

  .icon-link {
    width: 40px;
    height: 40px;
  }

  .icon-link .icon {
    width: 18px;
    height: 18px;
  }

  .mnav {
    top: calc(100% + 6px);
  }

  .mnav-content {
    padding: 18px;
    border-radius: 22px;
  }

  .mnav-socials {
    display: none;
  }

  .mnav-meta {
    gap: 0;
    padding-top: 0;
    border-top: 0;
  }

  .hero-stage,
  .hero-content {
    min-height: 620px;
  }

  .hero-content {
    gap: 20px;
    padding-bottom: 180px;
  }

  .hero-content .hero-card {
    min-height: auto;
    flex-basis: auto;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
  }

  .hero-system-badges {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  .hero-system-badge {
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .house-graph-promo {
    align-self: center;
    margin-bottom: 12px;
  }

  .hero-feature-wrap {
    display: none;
  }
}

.btn.hero-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #eef0f6;
}

.btn.hero-outline:hover,
.btn.hero-outline:focus-visible {
  color: #eef0f6;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.contact {
  padding-top: 104px;
}

.contact .top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.contact .subtext {
  max-width: 420px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(238, 240, 246, 0.68);
}

.contact .data {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.contact .wrapp-left,
.contact .bot2 {
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.contact .wrapp-left {
  padding: 32px;
}

.contact .bot2 {
  padding: 24px;
}

.contact .headline2 {
  margin: 0;
  font-size: 34px;
  font-weight: 500;
}

.contact .top2 {
  margin-bottom: 24px;
}

.contact .top3 {
  display: grid;
  gap: 14px;
}

.contact .wrapp,
.contact .wrapp2 {
  display: grid;
  grid-template-columns: 1fr;
}

.contact .input,
.contact .textarea {
  border-radius: 22px;
  background: rgba(11, 12, 18, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact .data3 {
  padding: 16px 18px 18px;
}

.contact .label,
.contact .label-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.contact .label2,
.contact .label7,
.contact .div {
  font-size: 13px;
  color: rgba(238, 240, 246, 0.56);
}

.contact input,
.contact textarea {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.5;
  outline: none;
}

.contact input::placeholder,
.contact textarea::placeholder {
  color: rgba(238, 240, 246, 0.42);
}

.contact textarea {
  min-height: 132px;
  resize: vertical;
}

.contact .bot {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact .wrapp5,
.contact .wrapp6 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact .checkbox-input {
  padding-top: 2px;
}

.contact .checkbox-input input {
  width: 18px;
  height: 18px;
  accent-color: #7f6bff;
}

.contact .title,
.contact .infomaybesmartru {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(238, 240, 246, 0.82);
}

.contact .privacy-policy-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact .component-2 {
  margin-top: 24px;
  min-height: 58px;
  padding: 0 30px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(90deg, #7f6bff 0%, #5548aa 100%);
  color: #ffffff;
  font: inherit;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
}

.contact .component-2:hover,
.contact .component-2:focus-visible {
  opacity: 0.94;
}

.contact .success {
  margin-top: 18px;
}

.contact-info-list {
  display: grid;
  gap: 16px;
  height: 100%;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-info-item-large {
  align-content: start;
}

.contact-info-title {
  margin-bottom: 6px;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(238, 240, 246, 0.48);
}

.contact-info-text,
.contact-info-text a,
.contact-info-note,
.contact-info-schedule {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
}

.contact-info-schedule {
  display: grid;
  gap: 8px;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.contact-info-note {
  margin-top: 14px;
  color: rgba(238, 240, 246, 0.6);
  font-size: 14px;
}

@media (max-width: 780px) {
  .contact .data {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: start;
  }

  .contact .wrapp-left,
  .contact .bot2 {
    width: min(100%, 980px);
  }

  .contact .wrapp-left {
    width: min(100%, 780px);
  }

  .contact .top2 {
    text-align: center;
  }

  .contact .component-2 {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-info-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-info-item-large {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .contact .wrapp-left,
  .contact .bot2 {
    width: 100%;
  }

  .contact-info-list {
    grid-template-columns: 1fr;
  }

  .contact-info-item-large {
    grid-column: auto;
  }
}

footer {
  width: 100%;
  position: relative;
  background-color: #1b1638;
  padding: 0;
}

footer .footer {
  width: 1600px;
  max-width: 85%;
  margin: 0 auto;
  position: relative;
  min-height: 469px;
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.footer-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  line-height: 12px;
  color: #c8c8d2;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
}

.footer-columns {
  position: absolute;
  top: 79px;
  right: 0;
  display: flex;
  align-items: flex-start;
  gap: 121px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: max-content;
  max-width: 100%;
  flex: 0 0 auto;
  min-width: 0;
}

.footer-col:nth-child(1) {
  width: auto;
}

.footer-col:nth-child(2) {
  width: auto;
}

.footer-col-wide {
  width: auto;
}

.footer-title {
  align-self: stretch;
  position: relative;
  line-height: 24px;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  margin: 0;
}

.footer-links {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-link {
  align-self: stretch;
  position: relative;
  line-height: 20px;
  font-size: 16px;
  color: #c8c8d2;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover,
.footer-link:focus-visible,
.footer-contact-text a:hover,
.footer-contact-text a:focus-visible {
  color: #ffffff;
}

.footer-contact {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-contact-list {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0;
}

.footer-contact-item {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-contact-text,
.footer-contact-text a {
  flex: 1;
  position: relative;
  line-height: 20px;
  font-size: 16px;
  color: #c8c8d2;
  font-weight: 400;
  text-decoration: none;
}

.footer-start {
  position: absolute;
  top: 32px;
  left: 0;
  width: 385px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 56px;
}

.footer-start-content {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.footer-start-top {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-logo {
  width: 130px;
  max-height: 100%;
  object-fit: cover;
}

.footer-start-text {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-start-subtitle {
  align-self: stretch;
  position: relative;
  font-size: 14px;
  line-height: 16px;
  color: #c8c8d2;
  font-weight: 700;
}

.footer-buttons {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.footer-btn {
  width: 100%;
  height: 56px;
  padding: 20px 64px;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(127, 107, 255, 0.6), rgba(85, 72, 170, 0.6));
  box-shadow: 30px 0 70px rgba(127, 107, 255, 0.5) inset, 0 0 20px rgba(127, 107, 255, 0.5) inset;
  color: #ffffff !important;
  border-radius: 16px !important;
  border-color: transparent !important;
  font-size: 20px !important;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease;
  white-space: nowrap;
}

.footer-btn:hover,
.footer-btn:focus-visible {
  color: #ffffff !important;
  background: linear-gradient(90deg, #7f6bff 0%, #5548aa 100%) !important;
  transform: translateY(-1px) !important;
}

.footer-btn:active {
  transform: translateY(0) !important;
}

.footer-start-bottom {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.footer-start-bottom .footer-contact-text {
  line-height: 20px;
}

@media (max-width: 520px) {
  .hero-system-badges {
    width: 100%;
    justify-content: center;
  }

  .hero-system-badge {
    width: auto;
    flex: 0 0 auto;
  }

  .about-showcase {
    padding: 20px;
    gap: 24px;
  }

  .about-visual {
    width: min(100%, 292px);
    min-height: 286px;
  }

  .about-orbit {
    padding: 18px;
  }

  .about-orbit strong {
    font-size: 30px;
  }

  .about-orbit span {
    font-size: 12px;
    max-width: 150px;
  }

  .about-orbit-primary {
    width: 204px;
    height: 204px;
    top: 52px;
  }

  .about-orbit-secondary {
    left: 150px;
    width: 138px;
    height: 138px;
  }

  .about-orbit-tertiary {
    left: 164px;
    top: 186px;
    width: 108px;
    height: 108px;
  }

  .about-cta {
    width: 100%;
  }

  .house-graph-promo {
    width: 100%;
    right: 0;
    padding: 16px 14px 14px;
  }

  .house-graph-promo .promo-subtitle {
    max-width: none;
  }

  .house-graph-promo .promo-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .house-graph-promo .promo-tagline {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 1120px) {
  .footer {
    width: 944px;
    max-width: calc(100% - 80px);
    margin: 0 auto;
    min-height: auto;
    display: grid;
    grid-template-columns: 385px minmax(0, 1fr);
    grid-template-areas:
      "start cols"
      "caption caption";
    gap: 40px;
    padding: 32px 0;
    overflow: hidden;
  }

  .footer-start {
    position: static !important;
    width: auto;
    grid-area: start;
    margin: 0;
  }

  .footer-columns {
    position: static !important;
    grid-area: cols;
    margin: 0;
    min-width: 0;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 24px !important;
    align-items: start;
    justify-self: stretch;
    max-width: 100% !important;
  }

  .footer-col,
  .footer-col:nth-child(1),
  .footer-col:nth-child(2),
  .footer-col-wide {
    width: auto !important;
    min-width: 0;
  }

  .footer-caption {
    position: static !important;
    transform: none !important;
    grid-area: caption;
    justify-self: center;
    margin-top: 20px;
    text-align: center;
    left: auto;
    bottom: auto;
  }
}

@media (max-width: 767px) {
  .footer {
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .footer-start,
  .footer-columns,
  .footer-caption {
    position: static !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
  }

  .footer-start {
    order: 1;
    width: 100% !important;
    margin: 0 0 24px 0 !important;
  }

  .footer-columns {
    order: 2;
    width: 100% !important;
    margin: 0 0 20px 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 20px !important;
    align-items: start;
    max-width: 100% !important;
  }

  .footer-col,
  .footer-col:nth-child(1),
  .footer-col:nth-child(2),
  .footer-col-wide {
    width: auto !important;
    min-width: 0;
  }

  .footer-caption {
    order: 3;
    width: 100% !important;
    text-align: center !important;
    margin: 0 !important;
  }

  .footer {
    overflow-x: hidden !important;
  }

  .footer-link,
  .footer-contact-text {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (max-width: 520px) {
  .footer-columns {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .footer-btn {
    padding: 18px 20px;
    font-size: 16px !important;
  }

  .footer-logo {
    width: 118px;
  }
}

body.promo-page {
  min-height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
}

body.promo-page main {
  min-height: 100%;
}

body.promo-page header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  backdrop-filter: none;
  background: transparent;
  border-bottom: 0;
}

body.promo-page .wrap {
  width: min(1600px, calc(100% - 48px));
}

body.promo-page .nav {
  min-height: clamp(72px, 9svh, 86px);
}

body.promo-page .hero {
  --hero-edge-reserve: 0;
  min-height: 100svh;
  margin-bottom: 0;
}

body.promo-page .hero > .container-fluid {
  min-height: 100%;
}

body.promo-page .promo-hero-stage {
  min-height: 100%;
  height: auto;
  background: #142135;
  isolation: isolate;
}

body.promo-page .promo-hero-backdrop {
  position: relative;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 46%, rgba(127, 107, 255, 0.26) 0%, rgba(127, 107, 255, 0.1) 30%, rgba(10, 12, 18, 0) 56%),
    radial-gradient(circle at 18% 18%, rgba(82, 160, 255, 0.24) 0%, rgba(82, 160, 255, 0) 44%),
    radial-gradient(circle at 82% 16%, rgba(169, 154, 255, 0.3) 0%, rgba(169, 154, 255, 0) 38%),
    linear-gradient(180deg, rgba(20, 26, 40, 0.98), rgba(11, 14, 22, 0.98));
}

body.promo-page .promo-hero-backdrop::before,
body.promo-page .promo-hero-backdrop::after {
  content: "";
  position: absolute;
}

body.promo-page .promo-hero-backdrop::before {
  inset: 12% 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 107, 255, 0.28), rgba(127, 107, 255, 0) 74%);
  filter: blur(90px);
}

body.promo-page .promo-hero-backdrop::after {
  inset: 24% 28%;
  border-radius: 50%;
  border: 1px solid rgba(198, 187, 255, 0.08);
  box-shadow: 0 0 0 44px rgba(255, 255, 255, 0.015), 0 0 0 112px rgba(255, 255, 255, 0.01);
}

body.promo-page .hero-overlay {
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.08), rgba(8, 12, 18, 0.48));
}

body.promo-page .hero-content {
  min-height: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: clamp(96px, 12svh, 120px);
  padding-bottom: clamp(20px, 4svh, 40px);
}

body.promo-page .promo-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 500px) minmax(390px, 1fr);
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  width: min(100%, 1280px);
}

body.promo-page .promo-copy-panel {
  position: relative;
  z-index: 4;
  width: min(100%, 500px);
  text-align: center;
  padding: clamp(24px, 3svh, 34px) clamp(20px, 2.4vw, 34px);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(20, 22, 31, 0.8), rgba(11, 13, 20, 0.9));
  border: 1px solid rgba(198, 187, 255, 0.16);
  box-shadow: 0 28px 72px rgba(7, 10, 18, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

body.promo-page .promo-orbit-stage {
  position: relative;
  width: min(100%, 720px);
  aspect-ratio: 1;
  min-height: 0;
  justify-self: start;
  --orbit-radius: clamp(144px, min(16vw, 22svh), 228px);
}

body.promo-page .promo-orbit-stage::before,
body.promo-page .promo-orbit-stage::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

body.promo-page .promo-orbit-stage::before {
  width: min(100%, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(198, 187, 255, 0.18);
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.02), inset 0 0 42px rgba(169, 154, 255, 0.05);
  animation: promo-orbit-pulse 8s ease-in-out infinite;
}

body.promo-page .promo-orbit-stage::after {
  width: min(100%, 486px);
  aspect-ratio: 1;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  opacity: 0.7;
}

body.promo-page .promo-orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 6px;
  width: clamp(112px, 10vw, 146px);
  aspect-ratio: 1;
  padding: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, rgba(127, 107, 255, 0.26), rgba(20, 22, 31, 0.92) 72%);
  border: 1px solid rgba(198, 187, 255, 0.18);
  box-shadow: 0 22px 44px rgba(7, 10, 18, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%);
  text-align: center;
}

body.promo-page .promo-orbit-core strong {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1;
  color: #ffffff;
}

body.promo-page .promo-orbit-core span {
  color: rgba(238, 240, 246, 0.72);
  font-size: clamp(10px, 0.72vw, 12px);
  line-height: 1.25;
}

body.promo-page .promo-orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(120px, 10vw, 156px);
  z-index: 3;
  transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateY(calc(var(--orbit-radius) * -1)) rotate(calc(var(--orbit-angle) * -1));
  animation: promo-orbit-float 6.8s ease-in-out infinite;
  animation-delay: var(--float-delay);
}

body.promo-page .promo-orbit-item-1 {
  --orbit-angle: 0deg;
  --float-delay: -0.4s;
  width: clamp(132px, 11vw, 170px);
}

body.promo-page .promo-orbit-item-2 {
  --orbit-angle: 60deg;
  --float-delay: -1.1s;
}

body.promo-page .promo-orbit-item-3 {
  --orbit-angle: 120deg;
  --float-delay: -0.7s;
}

body.promo-page .promo-orbit-item-4 {
  --orbit-angle: 180deg;
  --float-delay: -1.8s;
}

body.promo-page .promo-orbit-item-5 {
  --orbit-angle: 240deg;
  --float-delay: -1.3s;
}

body.promo-page .promo-orbit-item-6 {
  --orbit-angle: 300deg;
  --float-delay: -2.1s;
}

body.promo-page .promo-orbit-card {
  position: relative;
  overflow: hidden;
  min-height: clamp(118px, 15svh, 156px);
  padding: clamp(12px, 1.5vw, 16px) clamp(12px, 1.5vw, 16px) clamp(14px, 1.8vw, 18px);
  display: grid;
  justify-items: center;
  gap: clamp(8px, 1vw, 12px);
  border-radius: clamp(20px, 2vw, 28px);
  background: linear-gradient(180deg, rgba(27, 30, 42, 0.95), rgba(16, 18, 27, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 50px rgba(8, 10, 16, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.promo-page .promo-orbit-media {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  max-width: 100%;
}

body.promo-page .promo-orbit-card:hover,
body.promo-page .promo-orbit-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(198, 187, 255, 0.3);
  box-shadow: 0 28px 56px rgba(8, 10, 16, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

body.promo-page .promo-orbit-card:focus-visible {
  outline: none;
  border-color: rgba(238, 240, 246, 0.36);
}

body.promo-page .promo-orbit-item-1 .promo-orbit-card {
  background: linear-gradient(180deg, rgba(39, 43, 58, 0.98), rgba(18, 21, 33, 0.98));
  border-color: rgba(198, 187, 255, 0.22);
  box-shadow: 0 30px 64px rgba(8, 10, 16, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.promo-page .promo-orbit-count {
  position: absolute;
  right: -6px;
  bottom: -4px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(22px, 2.2svh, 26px);
  padding: 0 clamp(7px, 0.6vw, 10px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px rgba(7, 10, 18, 0.3);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: clamp(10px, 0.72vw, 12px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

body.promo-page .promo-orbit-card img {
  width: 100%;
  max-width: clamp(68px, 5.6vw, 92px);
  height: clamp(60px, 9svh, 84px);
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.24));
}

body.promo-page .promo-orbit-item-1 .promo-orbit-card img {
  max-width: clamp(76px, 6.2vw, 102px);
  height: clamp(66px, 10svh, 90px);
}

body.promo-page .promo-orbit-card > span {
  color: #eef0f6;
  font-size: clamp(11px, 0.8vw, 13px);
  line-height: 1.35;
  text-align: center;
}

body.promo-page .promo-orbit-info {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 3;
  margin: 0;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 13, 22, 0.94);
  color: rgba(238, 240, 246, 0.9);
  font-size: clamp(10px, 0.72vw, 12px);
  line-height: 1.36;
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

body.promo-page .promo-orbit-card:hover .promo-orbit-info,
body.promo-page .promo-orbit-card:focus-within .promo-orbit-info,
body.promo-page .promo-orbit-card.is-open .promo-orbit-info {
  opacity: 1;
  transform: translateY(0);
}

body.promo-page .promo-orbit-card:hover .promo-orbit-count,
body.promo-page .promo-orbit-card:focus-within .promo-orbit-count,
body.promo-page .promo-orbit-card.is-open .promo-orbit-count {
  opacity: 0;
  transform: translateY(4px) scale(0.92);
}

body.promo-page .promo-hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(30px, 4svh, 34px);
  padding: 0 16px;
  margin-bottom: clamp(12px, 2svh, 18px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(239, 234, 255, 0.82);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.promo-page .promo-copy-panel h1 {
  max-width: 10ch;
  margin-bottom: clamp(10px, 1.8svh, 16px);
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(36px, min(3.5vw, 5.2svh), 56px);
  line-height: 1.06;
  text-align: center;
}

body.promo-page .promo-hero-sub {
  margin: 0 auto;
  max-width: 38ch;
  color: var(--muted);
  font-size: clamp(14px, min(1.1vw, 2.4svh), 17px);
  line-height: 1.5;
  text-align: center;
}

body.promo-page .promo-coverage {
  display: grid;
  gap: 6px;
  width: min(100%, 420px);
  margin: 18px auto 0;
  padding: 12px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

body.promo-page .promo-coverage strong {
  color: rgba(239, 234, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

body.promo-page .promo-coverage span {
  color: #ffffff;
  font-size: clamp(14px, 0.98vw, 16px);
  line-height: 1.35;
}

body.promo-page .promo-kit-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

body.promo-page .promo-kit-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(238, 240, 246, 0.86);
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

body.promo-page .promo-hero-actions {
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  margin-top: clamp(18px, 2.4svh, 24px);
}

body.promo-page .promo-hero-actions .btn {
  flex: 0 1 auto;
  min-width: clamp(172px, 14vw, 204px);
  padding: clamp(13px, 1.5svh, 15px) clamp(20px, 2vw, 28px);
  font-size: clamp(15px, 1vw, 17px);
}

body.promo-page .promo-mobile-story,
body.promo-page .promo-mobile-rail-head {
  display: none;
}

body.promo-page .promo-orbit-items {
  display: contents;
}

body.promo-page .promo-mobile-story-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body.promo-page .promo-mobile-story-track::-webkit-scrollbar {
  display: none;
}

body.promo-page .promo-mobile-story-slide {
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 176px;
  padding: 18px 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(31, 36, 52, 0.92), rgba(18, 22, 34, 0.96));
  box-shadow: 0 18px 42px rgba(7, 10, 18, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  scroll-snap-align: start;
}

body.promo-page .promo-mobile-story-slide-cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(48, 54, 84, 0.94), rgba(23, 26, 41, 0.98));
}

body.promo-page .promo-mobile-story-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(239, 234, 255, 0.78);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.promo-page .promo-mobile-story-slide strong {
  display: block;
  margin-top: 12px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.1;
}

body.promo-page .promo-mobile-story-slide p {
  margin: 12px 0 0;
  color: rgba(238, 240, 246, 0.76);
  font-size: 13px;
  line-height: 1.45;
}

body.promo-page .promo-mobile-story-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

body.promo-page .promo-mobile-story-stats span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 11px;
  line-height: 1;
}

body.promo-page .promo-mobile-story-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

body.promo-page .promo-mobile-story-actions .btn {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  font-size: 14px;
}

body.promo-page .promo-mobile-story-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
  margin-top: 12px;
}

body.promo-page .promo-mobile-story-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 0;
}

body.promo-page .promo-mobile-story-hint {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(238, 240, 246, 0.78);
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  user-select: none;
}

body.promo-page .promo-mobile-story-hint-arrow {
  display: inline-block;
  color: rgba(209, 200, 255, 0.98);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  animation: promo-mobile-story-hint-arrow 1.2s ease-in-out infinite;
}

body.promo-page .promo-mobile-story-nav.is-last-slide .promo-mobile-story-hint {
  gap: 0;
}

body.promo-page .promo-mobile-story-nav.is-last-slide .promo-mobile-story-hint-arrow {
  display: none;
}

@keyframes promo-mobile-story-hint-arrow {
  0%,
  100% {
    opacity: 0.5;
    transform: translateX(0);
  }

  55% {
    opacity: 1;
    transform: translateX(7px);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.promo-page .promo-mobile-story-hint-arrow {
    animation: none;
  }
}

body.promo-page .promo-mobile-story-dot {
  appearance: none;
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.18);
  transition: transform 0.2s ease, background 0.2s ease;
}

body.promo-page .promo-mobile-story-dot.active {
  background: #ffffff;
  transform: scale(1.18);
}

body.promo-page .hero-edge-card strong {
  font-size: 28px;
}

body.promo-page .promo-footer {
  margin-top: 0;
  padding: 36px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 12, 18, 0.44);
}

body.promo-page .promo-footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

body.promo-page .promo-footer-copy {
  display: grid;
  gap: 10px;
  max-width: 560px;
}

body.promo-page .promo-footer-note {
  color: rgba(238, 240, 246, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

body.promo-page .promo-footer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 16px;
}

body.promo-page .promo-footer-actions .footer-btn {
  min-width: 186px;
}

body.promo-page .promo-footer-policy {
  color: rgba(238, 240, 246, 0.72);
  font-size: 14px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

body.promo-page .promo-footer-policy:hover,
body.promo-page .promo-footer-policy:focus-visible {
  color: #ffffff;
  opacity: 0.96;
}

@keyframes promo-orbit-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.84;
  }

  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}

@keyframes promo-orbit-float {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateY(calc(var(--orbit-radius) * -1)) rotate(calc(var(--orbit-angle) * -1));
  }

  50% {
    transform: translate(-50%, calc(-50% - 10px)) rotate(var(--orbit-angle)) translateY(calc(var(--orbit-radius) * -1)) rotate(calc(var(--orbit-angle) * -1));
  }
}

@media (max-width: 1120px) {
  body.promo-page .hero {
    margin-bottom: 0;
  }

  body.promo-page .promo-hero-stage,
  body.promo-page .hero-content {
    min-height: 100%;
    height: 100%;
  }

  body.promo-page .hero-content {
    padding-bottom: 28px;
  }

  body.promo-page .promo-hero-layout {
    grid-template-columns: minmax(320px, 440px) minmax(340px, 1fr);
    gap: 18px;
  }

  body.promo-page .promo-copy-panel {
    width: min(100%, 440px);
    padding: 22px 20px;
  }

  body.promo-page .promo-copy-panel h1 {
    font-size: clamp(32px, 3.4vw, 46px);
  }

  body.promo-page .promo-kit-pill {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  body.promo-page .promo-coverage {
    width: min(100%, 400px);
    margin-top: 16px;
  }

  body.promo-page .promo-orbit-stage {
    width: min(100%, 600px);
    --orbit-radius: clamp(134px, min(18vw, 18svh), 192px);
  }

  body.promo-page .promo-orbit-stage::before {
    width: min(100%, 540px);
  }

  body.promo-page .promo-orbit-stage::after {
    width: min(100%, 420px);
  }

  body.promo-page .promo-orbit-core {
    width: 120px;
  }
}

@media (max-height: 760px) {
  body.promo-page {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.promo-page .hero-content {
    padding-top: 84px;
    padding-bottom: 16px;
  }

  body.promo-page .promo-hero-layout {
    gap: 18px;
  }

  body.promo-page .promo-copy-panel {
    padding: 18px 18px 20px;
  }

  body.promo-page .promo-copy-panel h1 {
    font-size: clamp(30px, min(3vw, 4.6svh), 42px);
  }

  body.promo-page .promo-orbit-stage {
    width: min(100%, 560px);
    --orbit-radius: clamp(120px, min(16vw, 16svh), 182px);
  }

  body.promo-page .promo-orbit-core {
    width: 104px;
    padding: 14px;
  }

  body.promo-page .promo-hero-sub {
    font-size: 14px;
    line-height: 1.45;
  }

  body.promo-page .promo-coverage {
    margin-top: 14px;
    padding: 10px 14px;
  }

  body.promo-page .promo-coverage span {
    font-size: 14px;
  }

  body.promo-page .promo-kit-summary {
    margin-top: 16px;
    gap: 8px;
  }

  body.promo-page .promo-kit-pill {
    min-height: 32px;
    font-size: 12px;
  }

  body.promo-page .promo-hero-actions {
    margin-top: 18px;
  }

  body.promo-page .promo-orbit-item {
    width: clamp(100px, 9vw, 136px);
  }

  body.promo-page .promo-orbit-card {
    min-height: clamp(96px, 12svh, 132px);
  }

  body.promo-page .promo-orbit-card img {
    max-width: 72px;
    height: 64px;
  }
}

@media (max-width: 860px) {
  body.promo-page .wrap {
    width: calc(100% - 32px);
  }

  body.promo-page .nav {
    min-height: 76px;
    gap: 20px;
  }

  body.promo-page .hero {
    --hero-edge-reserve: 0;
    margin-bottom: 0;
  }

  body.promo-page .promo-hero-stage,
  body.promo-page .hero-content {
    min-height: 100%;
    height: 100%;
  }

  body.promo-page .hero-content {
    padding-top: 92px;
    padding-bottom: 20px;
  }

  body.promo-page .promo-hero-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(100%, 680px);
  }

  body.promo-page .promo-copy-panel {
    width: min(100%, 640px);
    justify-self: center;
    padding: 20px 18px;
    text-align: center;
  }

  body.promo-page .promo-copy-panel h1,
  body.promo-page .promo-hero-sub {
    text-align: center;
  }

  body.promo-page .promo-coverage {
    width: min(100%, 460px);
  }

  body.promo-page .promo-kit-summary,
  body.promo-page .promo-hero-actions {
    justify-content: center;
  }

  body.promo-page .promo-hero-actions {
    gap: 10px;
  }

  body.promo-page .promo-orbit-stage {
    width: min(100%, 500px);
    min-height: 0;
    justify-self: center;
    --orbit-radius: clamp(118px, min(20vw, 18svh), 176px);
  }

  body.promo-page .promo-orbit-stage::before {
    width: min(100%, 450px);
  }

  body.promo-page .promo-orbit-stage::after {
    width: min(100%, 350px);
  }

  body.promo-page .promo-orbit-core {
    width: 102px;
    padding: 14px;
  }

  body.promo-page .promo-hero-sub {
    font-size: 15px;
  }

  body.promo-page .promo-hero-actions .btn {
    min-width: 152px;
    padding: 13px 18px;
    font-size: 15px;
  }

  body.promo-page .promo-orbit-item {
    width: clamp(92px, 15vw, 124px);
  }

  body.promo-page .promo-orbit-card {
    min-height: clamp(92px, 12svh, 126px);
    padding: 12px 10px 14px;
    border-radius: 20px;
  }

  body.promo-page .promo-orbit-card img {
    max-width: 68px;
    height: 60px;
  }

  body.promo-page .promo-orbit-card > span {
    font-size: 11px;
  }

  body.promo-page .promo-orbit-info {
    left: 7px;
    right: 7px;
    bottom: 7px;
    padding: 7px 8px;
    border-radius: 10px;
    font-size: 10px;
    line-height: 1.3;
  }

  body.promo-page .promo-orbit-count {
    right: -4px;
    bottom: -2px;
  }

  body.promo-page .promo-footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  body.promo-page .promo-footer-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 599px) {
  body.promo-page .wrap {
    width: calc(100% - 24px);
  }

  body.promo-page .nav {
    min-height: 68px;
    gap: 14px;
  }

  body.promo-page .hero {
    --hero-edge-reserve: 0;
    margin-bottom: 0;
  }

  body.promo-page .promo-hero-stage,
  body.promo-page .hero-content {
    min-height: 100%;
    height: 100%;
  }

  body.promo-page .hero-content {
    padding-top: 78px;
    padding-bottom: 12px;
  }

  body.promo-page .promo-hero-layout {
    gap: 14px;
  }

  body.promo-page .promo-copy-panel {
    padding: 18px 14px;
    border-radius: 24px;
  }

  body.promo-page .promo-hero-kicker {
    min-height: 28px;
    padding: 0 12px;
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  body.promo-page .promo-copy-panel h1 {
    font-size: clamp(28px, 8.4vw, 34px);
  }

  body.promo-page .promo-hero-sub {
    font-size: 12px;
    line-height: 1.45;
  }

  body.promo-page .promo-coverage {
    width: min(100%, 300px);
    margin-top: 12px;
    padding: 9px 12px;
    border-radius: 16px;
  }

  body.promo-page .promo-coverage strong {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  body.promo-page .promo-coverage span {
    font-size: 12px;
  }

  body.promo-page .promo-kit-summary {
    margin-top: 14px;
    gap: 6px;
  }

  body.promo-page .promo-kit-pill {
    min-height: 28px;
    padding: 0 10px;
    font-size: 11px;
  }

  body.promo-page .promo-hero-actions {
    gap: 10px;
    margin-top: 16px;
  }

  body.promo-page .promo-hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  body.promo-page .promo-orbit-stage {
    width: min(100%, 340px);
    min-height: 0;
    --orbit-radius: clamp(86px, min(22vw, 16svh), 122px);
  }

  body.promo-page .promo-orbit-stage::before {
    width: min(100%, 300px);
  }

  body.promo-page .promo-orbit-stage::after {
    width: min(100%, 230px);
  }

  body.promo-page .promo-orbit-core {
    width: 80px;
    gap: 3px;
    padding: 10px;
  }

  body.promo-page .promo-orbit-core strong {
    font-size: 14px;
  }

  body.promo-page .promo-orbit-core span {
    font-size: 9px;
  }

  body.promo-page .promo-orbit-item {
    width: clamp(72px, 22vw, 92px);
  }

  body.promo-page .promo-orbit-card {
    min-height: 80px;
    padding: 8px 6px 10px;
    border-radius: 16px;
    gap: 6px;
  }

  body.promo-page .promo-orbit-card img {
    max-width: 48px;
    height: 42px;
  }

  body.promo-page .promo-orbit-card > span {
    font-size: 9px;
    line-height: 1.2;
  }

  body.promo-page .promo-orbit-info {
    left: 6px;
    right: 6px;
    bottom: 6px;
    padding: 6px 7px;
    font-size: 9px;
    line-height: 1.25;
  }

  body.promo-page .promo-orbit-count {
    right: -2px;
    bottom: -2px;
    min-height: 18px;
    padding: 0 6px;
    font-size: 9px;
  }

  body.promo-page .hero-edge {
    transform: translateY(42%);
  }

  body.promo-page .promo-footer-actions {
    width: 100%;
  }

  body.promo-page .promo-footer-actions .footer-btn {
    width: 100%;
    min-width: 0;
  }

  body.promo-page .promo-footer-policy {
    width: 100%;
  }
}

@media (max-width: 599px) and (max-height: 760px) {
  body.promo-page .hero-content {
    padding-top: 76px;
    padding-bottom: 12px;
  }

  body.promo-page .promo-copy-panel {
    padding: 16px 12px;
  }

  body.promo-page .promo-coverage {
    margin-top: 10px;
    padding: 8px 10px;
  }

  body.promo-page .promo-copy-panel h1 {
    font-size: clamp(24px, 7.8vw, 30px);
  }

  body.promo-page .promo-orbit-stage {
    width: min(100%, 300px);
    --orbit-radius: clamp(78px, min(20vw, 14svh), 108px);
  }

  body.promo-page .promo-hero-sub {
    font-size: 12px;
  }

  body.promo-page .promo-orbit-core {
    width: 72px;
  }

  body.promo-page .promo-orbit-item {
    width: clamp(66px, 20vw, 84px);
  }

  body.promo-page .promo-orbit-card {
    min-height: 72px;
  }
}

@media (max-width: 1366px) and (min-width: 861px), (max-height: 860px) and (min-width: 861px) {
  body.promo-page .nav {
    min-height: 74px;
  }

  body.promo-page .hero-content {
    padding-top: clamp(88px, 11svh, 108px);
    padding-bottom: 18px;
  }

  body.promo-page .promo-hero-layout {
    grid-template-columns: minmax(340px, 460px) minmax(340px, 1fr);
    gap: 12px;
    width: min(100%, 1180px);
  }

  body.promo-page .promo-copy-panel {
    width: min(100%, 460px);
    padding: 20px 18px 22px;
  }

  body.promo-page .promo-copy-panel h1 {
    font-size: clamp(34px, 3.2vw, 48px);
  }

  body.promo-page .promo-hero-sub {
    max-width: 36ch;
    font-size: 15px;
  }

  body.promo-page .promo-coverage {
    width: min(100%, 390px);
    margin-top: 14px;
  }

  body.promo-page .promo-kit-summary {
    gap: 8px;
  }

  body.promo-page .promo-hero-actions {
    max-width: 420px;
  }

  body.promo-page .promo-orbit-stage {
    width: min(100%, 620px);
    --orbit-radius: clamp(126px, min(15vw, 18svh), 190px);
  }

  body.promo-page .promo-orbit-stage::before {
    width: min(100%, 540px);
  }

  body.promo-page .promo-orbit-stage::after {
    width: min(100%, 416px);
  }

  body.promo-page .promo-orbit-item {
    width: clamp(104px, 8.6vw, 144px);
  }

  body.promo-page .promo-orbit-item-1 {
    width: clamp(116px, 9.4vw, 156px);
  }

  body.promo-page .promo-orbit-card {
    min-height: clamp(104px, 13svh, 142px);
  }

  body.promo-page .promo-orbit-card img {
    max-width: 70px;
    height: 62px;
  }

  body.promo-page .promo-orbit-item-1 .promo-orbit-card img {
    max-width: 82px;
    height: 72px;
  }
}

@media (max-width: 680px) {
  body.promo-page {
    min-height: 100svh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.promo-page .container.hero-content.promo-hero-content {
    width: 100%;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  body.promo-page main,
  body.promo-page .hero,
  body.promo-page .hero > .container-fluid,
  body.promo-page .promo-hero-stage,
  body.promo-page .hero-content {
    min-height: 0;
    height: auto;
  }

  body.promo-page .wrap {
    width: calc(100% - 20px);
  }

  body.promo-page .nav {
    min-height: 62px;
    gap: 12px;
  }

  body.promo-page .logo {
    width: 138px;
  }

  body.promo-page .phone,
  body.promo-page .region {
    display: none;
  }

  body.promo-page .nav-right {
    gap: 8px;
  }

  body.promo-page .socials {
    gap: 8px;
  }

  body.promo-page .hero-content {
    align-items: flex-start;
    padding-top: 70px;
    padding-bottom: 20px;
  }

  body.promo-page .promo-hero-layout {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    gap: 10px;
  }

  body.promo-page .promo-copy-panel {
    width: 100%;
    padding: 16px 14px 14px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(22, 27, 42, 0.9), rgba(14, 18, 28, 0.96));
    box-shadow: 0 20px 44px rgba(7, 10, 18, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  body.promo-page .promo-copy-panel h1 {
    max-width: 9.5ch;
    font-size: clamp(30px, 8.8vw, 38px);
    margin-bottom: 8px;
  }

  body.promo-page .promo-coverage,
  body.promo-page .promo-kit-summary,
  body.promo-page .promo-hero-actions {
    display: none;
  }

  body.promo-page .promo-hero-layout,
  body.promo-page .promo-copy-panel,
  body.promo-page .promo-orbit-stage {
    min-width: 0;
  }

  body.promo-page .promo-mobile-story {
    display: block;
    margin-top: 12px;
    overflow: hidden;
  }

  body.promo-page .promo-mobile-story-track {
    gap: 0;
    padding-right: 0;
    scroll-padding-left: 0;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
  }

  body.promo-page .promo-mobile-story-slide {
    flex-basis: 100%;
    min-width: 100%;
    min-height: 172px;
    padding: 16px 14px;
    border-radius: 22px;
  }

  body.promo-page .promo-mobile-story-slide-cta strong {
    max-width: none;
    font-size: 22px;
    line-height: 1.05;
  }

  body.promo-page .promo-mobile-story-slide strong {
    max-width: none;
    font-size: 20px;
    line-height: 1.1;
  }

  body.promo-page .promo-mobile-story-slide p {
    font-size: 12px;
    line-height: 1.42;
  }

  body.promo-page .promo-mobile-story-stats {
    gap: 6px;
  }

  body.promo-page .promo-mobile-story-stats span {
    min-height: 26px;
    font-size: 10px;
  }

  body.promo-page .promo-mobile-story-actions {
    gap: 8px;
    margin-top: 14px;
  }

  body.promo-page .promo-mobile-story-actions .btn {
    padding: 11px 12px;
    font-size: 13px;
  }

  body.promo-page .promo-mobile-story-dots {
    margin-top: 0;
  }

  body.promo-page .promo-mobile-story-nav {
    justify-content: space-between;
    gap: 8px;
    margin-top: 10px;
    padding-right: 5px;
    padding-left: 5px;
  }

  body.promo-page .promo-mobile-story-hint {
    font-size: 9px;
    transform: translateX(-8px);
  }

  body.promo-page .promo-mobile-story-hint-arrow {
    font-size: 16px;
  }

  body.promo-page .promo-mobile-story-dot {
    width: 9px;
    height: 9px;
  }

  body.promo-page .promo-orbit-stage {
    width: 100%;
    min-height: 0;
    aspect-ratio: auto;
    justify-self: stretch;
    overflow: hidden;
    padding: 14px 12px 14px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(18, 23, 36, 0.9), rgba(12, 15, 24, 0.96));
    box-shadow: 0 18px 40px rgba(7, 10, 18, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  body.promo-page .promo-orbit-stage::before,
  body.promo-page .promo-orbit-stage::after,
  body.promo-page .promo-orbit-core {
    display: none;
  }

  body.promo-page .promo-mobile-rail-head {
    display: grid;
    gap: 4px;
    margin-bottom: 12px;
    text-align: left;
  }

  body.promo-page .promo-mobile-rail-head strong {
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
  }

  body.promo-page .promo-mobile-rail-head span {
    color: rgba(238, 240, 246, 0.64);
    font-size: 10px;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  body.promo-page .promo-orbit-items {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    padding: 0 2px 4px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  body.promo-page .promo-orbit-items::-webkit-scrollbar {
    display: none;
  }

  body.promo-page .promo-orbit-item {
    position: relative;
    top: auto;
    left: auto;
    width: min(40vw, 142px);
    flex: 0 0 min(40vw, 142px);
    transform: none;
    animation: none;
    scroll-snap-align: start;
  }

  body.promo-page .promo-orbit-item-1 {
    width: min(44vw, 154px);
    flex-basis: min(44vw, 154px);
  }

  body.promo-page .promo-orbit-card {
    min-height: 122px;
    padding: 12px 10px 12px;
    border-radius: 18px;
    gap: 8px;
  }

  body.promo-page .promo-orbit-card img {
    max-width: 58px;
    height: 52px;
  }

  body.promo-page .promo-orbit-item-1 .promo-orbit-card img {
    max-width: 68px;
    height: 60px;
  }

  body.promo-page .promo-orbit-card > span {
    font-size: 10px;
    line-height: 1.25;
  }

  body.promo-page .promo-orbit-info {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    margin-top: 2px;
    padding: 7px 8px;
    font-size: 9px;
    line-height: 1.28;
    opacity: 0;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.2s ease, max-height 0.2s ease;
  }

  body.promo-page .promo-orbit-card:hover .promo-orbit-info,
  body.promo-page .promo-orbit-card:focus-within .promo-orbit-info,
  body.promo-page .promo-orbit-card.is-open .promo-orbit-info {
    opacity: 1;
    max-height: 120px;
  }

  body.promo-page .promo-orbit-count {
    right: 0;
    bottom: 0;
    min-height: 18px;
    padding: 0 6px;
    font-size: 9px;
  }
}

@media (min-width: 480px) and (max-width: 680px) {
  body.promo-page .promo-hero-layout {
    width: min(100%, 460px);
    gap: 12px;
  }

  body.promo-page .promo-copy-panel {
    padding: 18px 16px 16px;
  }

  body.promo-page .promo-copy-panel h1 {
    max-width: 11.5ch;
    font-size: clamp(32px, 7vw, 40px);
  }

  body.promo-page .promo-mobile-story-slide {
    min-height: 184px;
    padding: 18px 16px;
  }

  body.promo-page .promo-mobile-story-slide strong {
    font-size: 22px;
    line-height: 1.12;
  }

  body.promo-page .promo-mobile-story-slide p {
    font-size: 13px;
    line-height: 1.45;
  }

  body.promo-page .promo-orbit-item {
    width: min(36vw, 152px);
    flex-basis: min(36vw, 152px);
  }

  body.promo-page .promo-orbit-item-1 {
    width: min(40vw, 164px);
    flex-basis: min(40vw, 164px);
  }

  body.promo-page .promo-orbit-card > span {
    font-size: 11px;
  }
}

@media (max-width: 680px) and (max-height: 760px) {
  body.promo-page {
    overflow-y: auto;
  }

  body.promo-page .nav {
    min-height: 58px;
  }

  body.promo-page .hero-content {
    padding-top: 66px;
    padding-bottom: 18px;
  }

  body.promo-page .promo-copy-panel {
    padding: 14px 12px 12px;
  }

  body.promo-page .promo-mobile-story-slide {
    min-height: 150px;
    padding: 14px 12px;
  }

  body.promo-page .promo-mobile-story-slide strong {
    margin-top: 10px;
    max-width: none;
    font-size: 18px;
  }

  body.promo-page .promo-mobile-story-slide p {
    margin-top: 10px;
    font-size: 12px;
  }

  body.promo-page .promo-mobile-story-actions {
    gap: 8px;
  }

  body.promo-page .promo-mobile-story-actions .btn {
    padding: 10px 10px;
    font-size: 12px;
  }

  body.promo-page .promo-orbit-stage {
    padding: 12px 10px 12px;
  }

  body.promo-page .promo-orbit-item {
    width: min(38vw, 132px);
    flex-basis: min(38vw, 132px);
  }

  body.promo-page .promo-orbit-item-1 {
    width: min(42vw, 144px);
    flex-basis: min(42vw, 144px);
  }

  body.promo-page .promo-orbit-card {
    min-height: 112px;
    padding: 10px 8px 12px;
  }

  body.promo-page .promo-orbit-card img {
    max-width: 56px;
    height: 50px;
  }

  body.promo-page .promo-orbit-item-1 .promo-orbit-card img {
    max-width: 66px;
    height: 58px;
  }
}
