:root {
  --bg: #080a12;
  --bg-soft: #0f1426;
  --text: #f4f7ff;
  --text-muted: #a6afc8;
  --accent: #6b8cff;
  --accent-hover: #84a0ff;
  --line: #222a45;
  --card: #10172d;
}

@font-face {
  font-family: "Involve";
  src: url("https://static.tildacdn.com/tild6633-6433-4931-b037-343930616230/Involve-Regular_1.woff")
    format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Involve";
  src: url("https://static.tildacdn.com/tild3230-3839-4033-a539-353365343434/Involve-Medium_1.woff")
    format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Involve";
  src: url("https://static.tildacdn.com/tild6166-6630-4730-a531-323239343037/Involve-SemiBold_1.woff")
    format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Involve";
  src: url("https://static.tildacdn.com/tild6637-3335-4763-a330-636462636631/Involve-Bold_1.woff")
    format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: "Involve", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, #131b34 0%, var(--bg) 40%);
  background-color: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100%;
  overscroll-behavior-x: none;
}

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

.page-edge {
  width: 100%;
  padding-left: 78px;
  padding-right: 78px;
}

.topbar {
  padding: 16px 0;
  position: absolute;
  top: 22px;
  left: 0;
  width: 100%;
  z-index: 10;
}

.topbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.topbar-inner--download {
  grid-template-columns: auto 1fr;
}

.topbar-inner--download .nav {
  justify-content: flex-end;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.brand-name {
  font-size: 24px;
  font-weight: 700;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.topbar .btn {
  padding: 14px 30px;
  font-size: 18px;
}

.topbar-actions {
  display: contents;
}

.nav-toggle,
.nav-drawer,
.hero-download-btn--mobile {
  display: none;
}

.nav a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  padding: 11px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

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

.btn.secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(420px, 1fr);
  gap: 30px;
  align-items: center;
  padding-top: 165px;
  padding-bottom: 140px;
  position: relative;
  z-index: 2;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 180px;
  background: linear-gradient(
    to bottom,
    rgba(8, 11, 20, 0) 0%,
    rgba(8, 11, 20, 0.72) 58%,
    rgba(8, 11, 20, 0.96) 100%
  );
  filter: blur(10px);
  pointer-events: none;
  z-index: 1;
}

.bg-circles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  background: radial-gradient(circle, rgba(90, 126, 255, 0.28) 0%, rgba(90, 126, 255, 0) 68%);
  animation: pulse-glow 4.5s ease-in-out infinite;
}

.bg-circle.c1 {
  width: 470px;
  height: 470px;
  top: -4%;
  left: -6%;
  animation-delay: 0s;
}

.bg-circle.c2 {
  width: 520px;
  height: 520px;
  top: 34%;
  right: -7%;
  animation-delay: 0.9s;
}

.bg-circle.c3 {
  width: 620px;
  height: 620px;
  bottom: -16%;
  left: 26%;
  animation-delay: 0.6s;
}

.bg-circle.c4 {
  width: 0;
  height: 0;
  bottom: auto;
  right: auto;
  animation-delay: 0s;
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.72;
    transform: scale(1.1);
  }
}

.hero-card {
  min-height: 390px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  overflow: visible;
}

.hero-image-wrap {
  width: 100%;
  position: relative;
  overflow: visible;
  clip-path: inset(0 0 0 0);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 79%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 79%, rgba(0, 0, 0, 0) 100%);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 95px;
  background: linear-gradient(to bottom, rgba(9, 12, 20, 0), rgba(9, 12, 20, 0.95));
  filter: blur(12px);
  pointer-events: none;
}

.hero-phone-layer {
  position: relative;
  width: 100%;
}

.hero-main-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.95;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.45));
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero-title {
  font-size: clamp(42px, 5.4vw, 84px);
  margin: 0;
  line-height: 1.02;
  max-width: 980px;
  font-weight: 600;
}

.hero-title span {
  display: block;
}

.hero-text {
  margin: 20px 0 28px;
  max-width: 900px;
  color: var(--text-muted);
  font-size: clamp(21px, 2vw, 34px);
  line-height: 1.35;
}

.hero-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: min(100%, 340px);
  padding: 12px 22px 12px 12px;
  border-radius: 22px;
  background: linear-gradient(180deg, #252836 0%, #1a1d28 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 32px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.hero-download-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(120, 150, 255, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 36px rgba(0, 0, 0, 0.42);
}

.hero-download-btn-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(180deg, #5f8fff 0%, #3f6ef0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(63, 110, 240, 0.35);
}

.hero-download-btn-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.hero-download-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
}

.hero-download-btn-platforms {
  font-size: clamp(12px, 0.95vw, 14px);
  line-height: 1.2;
  color: #8f98b5;
  font-weight: 500;
}

.hero-download-btn-label {
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.15;
  color: #ffffff;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  width: min(100%, 820px);
  max-width: 820px;
  margin-left: auto;
}

.hero-floating-icon {
  position: absolute;
  z-index: 4;
  width: clamp(72px, 8vw, 108px);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.45));
}

.hero-floating-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 180%;
  height: 180%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.85;
}

.hero-floating-icon--link {
  left: 28%;
  top: 10%;
  filter: drop-shadow(0 0 22px rgba(72, 220, 120, 0.55))
    drop-shadow(0 14px 28px rgba(0, 0, 0, 0.45));
}

.hero-floating-icon--link::before {
  background: radial-gradient(
    circle,
    rgba(90, 255, 140, 0.55) 0%,
    rgba(60, 200, 100, 0.2) 42%,
    transparent 72%
  );
}

.hero-floating-icon--lock {
  left: 24%;
  top: 28%;
  filter: drop-shadow(0 0 24px rgba(100, 150, 255, 0.6))
    drop-shadow(0 14px 28px rgba(0, 0, 0, 0.45));
}

.hero-floating-icon--lock::before {
  background: radial-gradient(
    circle,
    rgba(130, 170, 255, 0.55) 0%,
    rgba(90, 120, 255, 0.22) 42%,
    transparent 72%
  );
}

html.js-reveal-ready .reveal-appear:not(.reveal-appear--hero) {
  opacity: 0;
}

html.js-reveal-ready .reveal-appear--hero {
  opacity: 0;
}

.reveal-appear--hero.is-visible {
  animation: reveal-appear 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal-appear--hero.reveal-appear--delay-2 {
  animation-delay: 0.2s;
}

.reveal-appear--hero.reveal-appear--delay-3 {
  animation-delay: 0.35s;
}

.blend-screen .reveal-appear.is-visible {
  animation: reveal-appear 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.blend-screen .reveal-appear--delay-1.is-visible {
  animation-delay: 0.35s;
}

.blend-screen .reveal-appear--delay-2.is-visible {
  animation-delay: 0.7s;
}

.blend-screen .reveal-appear--delay-3.is-visible {
  animation-delay: 1.05s;
}

.blend-screen .reveal-appear--delay-4.is-visible {
  animation-delay: 1.4s;
}

.blend-screen .reveal-appear--delay-5.is-visible {
  animation-delay: 1.75s;
}

@keyframes reveal-appear {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reveal-appear-lock {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.blend-screen .reveal-appear--lock.is-visible {
  animation: reveal-appear-lock 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.blend-screen {
  min-height: 100vh;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  overflow-x: clip;
  overflow-y: hidden;
  margin-top: -72px;
  background-color: #0d121f;
  background-image:
    linear-gradient(180deg, rgba(7, 10, 19, 0.45) 0%, rgba(7, 10, 19, 0.82) 100%),
    radial-gradient(circle at 22% 14%, rgba(98, 129, 255, 0.18) 0%, rgba(98, 129, 255, 0) 46%);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

.blend-screen::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 26%;
  bottom: 0;
  background-image:
    linear-gradient(180deg, rgba(13, 18, 31, 0.08) 0%, rgba(13, 18, 31, 0.92) 100%),
    url("./f0af636bec869f93f99c4e1ee19e7dfb.webp"),
    url("./f0af636bec869f93f99c4e1ee19e7dfb.webp");
  background-size: cover, 520px auto, 520px auto;
  background-position:
    center,
    calc(50% - 90px) top,
    calc(50% + 90px) top;
  background-repeat: no-repeat, repeat, repeat;
  background-blend-mode: multiply, normal, normal;
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.15) 20%,
    rgba(0, 0, 0, 0.75) 42%,
    rgba(0, 0, 0, 1) 62%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.15) 20%,
    rgba(0, 0, 0, 0.75) 42%,
    rgba(0, 0, 0, 1) 62%
  );
  filter: blur(0.8px);
  pointer-events: none;
}

.blend-screen::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 22%;
  height: 220px;
  background: linear-gradient(
    to bottom,
    rgba(8, 11, 20, 0.96) 0%,
    rgba(8, 11, 20, 0.75) 35%,
    rgba(8, 11, 20, 0) 100%
  );
  filter: blur(14px);
  pointer-events: none;
}

.blend-screen-content {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 56px;
  padding-bottom: 0;
  box-shadow: inset 0 -130px 190px rgba(5, 8, 14, 0.55);
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.blend-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.blend-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(118, 149, 255, 0.42) 0%,
    rgba(118, 149, 255, 0) 70%
  );
  filter: blur(2px);
  animation: blend-pulse 4.2s ease-in-out infinite;
}

.blend-circle.b1 {
  width: 330px;
  height: 330px;
  top: 49%;
  left: 38%;
  animation-delay: 0.2s;
}

.blend-circle.b2 {
  width: 380px;
  height: 380px;
  top: 53%;
  left: 49%;
  animation-delay: 1.2s;
}

.blend-heading {
  margin: 0;
  max-width: 980px;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.18;
  font-weight: 600;
  position: relative;
  z-index: 3;
}

/* Сцена 2-го экрана: телефон + карточки (десктоп — absolute внутри) */
.blend-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: 1;
}

.blend-feature-cards {
  position: static;
  width: 100%;
  height: 100%;
}

.blend-phone-wrap {
  position: absolute;
  left: 50%;
  top: 250px;
  bottom: 0;
  transform: translateX(-50%);
  width: min(100%, 860px);
  z-index: 2;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 72%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 72%, rgba(0, 0, 0, 0) 100%);
}

.blend-phone-aspect {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.blend-phone-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  height: 190px;
  background: linear-gradient(to bottom, rgba(10, 14, 24, 0) 0%, rgba(10, 14, 24, 0.95) 100%);
  filter: blur(24px);
  pointer-events: none;
  z-index: 3;
}

.blend-phone-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.55));
}

.feature-shape-block {
  position: absolute;
  width: 340px;
  height: auto;
  z-index: 5;
  pointer-events: none;
  overflow: visible;
}

.feature-shape-left {
  top: 330px;
  left: calc(50% - min(430px, 50%) - 68px);
}

.feature-shape-right {
  top: 500px;
  left: calc(50% + min(430px, 50%) - 237px);
}

.feature-shape-block .tn-atom {
  width: 100%;
  min-height: 220px;
  height: 100%;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(36, 40, 54, 0.92) 0%, rgba(33, 36, 48, 0.9) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 16px 42px rgba(5, 8, 16, 0.52);
  backdrop-filter: blur(3px);
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.feature-shape-icon {
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  object-fit: contain;
  margin-bottom: 18px;
}

.feature-shape-text {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}

.feature-edge-badge {
  position: absolute;
  z-index: 6;
  width: 72px;
  height: auto;
  pointer-events: none;
}

.feature-edge-badge::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.feature-edge-badge--settings {
  right: 10px;
  bottom: -298px;
  filter: drop-shadow(0 0 22px rgba(140, 170, 255, 0.7))
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.45));
}

.feature-edge-badge--settings::before {
  background: radial-gradient(
    circle,
    rgba(150, 180, 255, 0.6) 0%,
    rgba(110, 140, 255, 0.25) 45%,
    transparent 72%
  );
}

.feature-edge-badge--lockmess {
  top: -222px;
  left: calc(55% - 150px);
  filter: drop-shadow(0 0 24px rgba(160, 130, 255, 0.75))
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.45));
}

.feature-edge-badge--lockmess::before {
  background: radial-gradient(
    circle,
    rgba(180, 150, 255, 0.62) 0%,
    rgba(130, 100, 230, 0.24) 45%,
    transparent 72%
  );
}

@keyframes blend-pulse {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.86);
  }
  50% {
    opacity: 0.72;
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  html.js-reveal-ready .reveal-appear {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }

  .blend-screen .reveal-appear--lock {
    transform: translateX(-50%) !important;
  }

  .hero-main-image {
    opacity: 0.95;
  }
}

.neon-divider {
  position: relative;
  z-index: 4;
  width: min(960px, 88%);
  height: 1px;
  margin: clamp(36px, 5vw, 64px) auto clamp(8px, 1vw, 16px);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(120, 150, 255, 0.15) 18%,
    rgba(180, 200, 255, 0.95) 50%,
    rgba(120, 150, 255, 0.15) 82%,
    transparent 100%
  );
  box-shadow:
    0 0 6px rgba(140, 170, 255, 0.85),
    0 0 18px rgba(120, 150, 255, 0.55),
    0 0 36px rgba(100, 130, 255, 0.25);
}

.neon-divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 14px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(120, 150, 255, 0.08) 20%,
    rgba(160, 185, 255, 0.22) 50%,
    rgba(120, 150, 255, 0.08) 80%,
    transparent 100%
  );
  filter: blur(4px);
  pointer-events: none;
}

.neon-divider--footer {
  margin: clamp(24px, 3vw, 40px) auto clamp(36px, 5vw, 64px);
}

.faq-screen {
  position: relative;
  z-index: 2;
  background: var(--bg);
  padding: clamp(48px, 6vw, 88px) 0 clamp(24px, 3vw, 40px);
  scroll-margin-top: 32px;
}

.faq-screen-inner {
  max-width: 920px;
  margin: 0 auto;
}

.faq-title {
  margin: 0 0 clamp(28px, 3.5vw, 44px);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(16, 23, 45, 0.72);
  border: 1px solid rgba(45, 58, 98, 0.55);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.faq-item[open] {
  background: rgba(18, 26, 50, 0.92);
  border-color: rgba(90, 120, 210, 0.45);
}

.faq-question {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(18px, 2vw, 24px) clamp(20px, 2.4vw, 28px);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  cursor: pointer;
  user-select: none;
}

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

.faq-question::after {
  content: "";
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 clamp(20px, 2.4vw, 28px);
  transition:
    grid-template-rows 0.4s ease,
    padding 0.4s ease;
}

.faq-item[open]:not(.is-closing) .faq-answer {
  grid-template-rows: 1fr;
  padding: 0 clamp(20px, 2.4vw, 28px) clamp(20px, 2.4vw, 28px);
}

.faq-item.is-closing .faq-answer {
  grid-template-rows: 0fr;
  padding: 0 clamp(20px, 2.4vw, 28px);
}

.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
}

.faq-answer p {
  margin: 0 0 12px;
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.6;
  color: var(--text-muted);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-muted);
}

.faq-answer li {
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.55;
  margin-bottom: 8px;
}

.faq-answer li:last-child {
  margin-bottom: 0;
}

.site-footer {
  position: relative;
  z-index: 2;
  background: var(--bg);
  padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 72px);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: min(920px, 95vw);
  height: 320px;
  background: radial-gradient(
    ellipse at center,
    rgba(70, 110, 230, 0.16) 0%,
    rgba(70, 110, 230, 0.06) 42%,
    transparent 72%
  );
  pointer-events: none;
}

.site-footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) minmax(160px, 0.8fr) minmax(260px, 1fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(36px, 4vw, 56px);
  min-height: 100%;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-brand .brand-name {
  font-size: clamp(20px, 2vw, 28px);
}

.footer-telegram-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(24, 34, 62, 0.95);
  border: 1px solid rgba(70, 100, 190, 0.35);
  color: var(--accent);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-telegram-btn:hover {
  background: rgba(34, 48, 86, 0.95);
  border-color: rgba(90, 130, 220, 0.55);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-legal a {
  color: var(--text);
  text-decoration: none;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--accent-hover);
}

.footer-copy {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: clamp(13px, 1vw, 15px);
}

.footer-heading {
  margin: 0 0 20px;
  color: #8bb0ff;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--accent-hover);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-contacts p {
  margin: 0;
  color: var(--text);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.45;
}

.footer-company {
  font-weight: 700;
  font-size: clamp(15px, 1.2vw, 17px) !important;
}

.footer-label {
  color: var(--text-muted);
}

.footer-support-text {
  margin-top: 4px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  right: 16px;
  transform: translateY(120px);
  opacity: 0;
  bottom: 16px;
  width: min(860px, calc(100% - 24px));
  background: #171d33;
  border-radius: 20px;
  padding: 10px 10px 10px 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  z-index: 40;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
  animation: cookie-slide-in 0.45s ease-out 0.15s forwards;
}

.cookie-banner p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(12px, 0.95vw, 15px);
  line-height: 1.3;
  font-weight: 700;
  text-align: left;
  max-width: 700px;
}

.cookie-banner p a {
  color: #8bb0ff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.cookie-btn {
  border: 0;
  background: #5788ff;
  color: #ffffff;
  border-radius: 999px;
  padding: 10px 26px;
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  margin-right: 10px;
  margin-left: 2px;
  align-self: center;
  line-height: 1;
}

.cookie-banner.is-hidden {
  animation: cookie-slide-out 0.35s ease-in forwards;
}

@keyframes cookie-slide-in {
  from {
    transform: translateY(120px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes cookie-slide-out {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(120px);
    opacity: 0;
    visibility: hidden;
  }
}

.topbar--static {
  position: relative;
  top: 0;
}

.topbar--legal .topbar-inner--legal {
  display: flex;
  justify-content: center;
  grid-template-columns: 1fr;
}

.topbar--legal .brand {
  justify-content: center;
}

.topbar--legal .nav {
  display: none;
}

.legal-page {
  padding: 28px 0 80px;
  position: relative;
  z-index: 2;
}

.topbar--legal + .legal-page {
  padding-top: 12px;
}

.topbar--legal + .legal-page .legal-content h1 {
  margin-top: 24px;
}

@media (max-width: 900px) {
  .topbar--legal {
    padding: 20px 0 16px;
  }

  .topbar--legal + .legal-page {
    padding-top: 8px;
  }

  .topbar--legal + .legal-page .legal-content h1 {
    margin-top: 28px;
    text-align: left;
  }
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-content h1 {
  margin: 0 0 28px;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
}

.legal-content h2 {
  margin: 32px 0 14px;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  color: #8bb0ff;
}

.legal-content p {
  margin: 0 0 14px;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
  color: var(--text-muted);
}

.legal-content ul {
  margin: 0 0 16px;
  padding-left: 22px;
  color: var(--text-muted);
}

.legal-content li {
  margin-bottom: 8px;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.55;
}

.legal-content em {
  color: #b8c4e8;
  font-style: normal;
}

.site-footer--compact {
  padding: 32px 0 40px;
}

.site-footer--compact .site-footer-inner {
  display: block;
  text-align: center;
}

.site-footer--compact .footer-copy {
  margin: 0;
}

.download-main {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 0 70px;
}

.download-box {
  width: min(760px, 100%);
  background: linear-gradient(165deg, #0f1732 0%, #0b1022 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 34px 28px 20px;
  text-align: center;
}

.download-title {
  margin: 0 0 10px;
  font-size: clamp(27px, 4vw, 40px);
}

.download-subtitle {
  color: var(--text-muted);
  margin: 0 0 28px;
}

.download-action {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-action p {
  margin: 0;
  color: var(--text-muted);
  font-size: 18px;
}

.download-access-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 420px);
  padding: 18px 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.15;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px);
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.download-access-btn.is-visible {
  animation: download-access-appear 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.download-access-btn:hover {
  border-color: rgba(140, 165, 255, 0.35);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

@keyframes download-access-appear {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.download-action-message {
  margin: 0;
  color: var(--text-muted);
  font-size: 18px;
  opacity: 0;
  animation: download-access-appear 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.download-step[hidden] {
  display: none !important;
}

.download-checkout {
  width: 100%;
}

.download-opening {
  margin: 0;
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translateY(14px);
}

.download-opening.is-visible,
.download-email-block.is-visible,
.download-checkout-block.is-visible {
  animation: download-access-appear 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.download-checkout-block {
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  width: 100%;
  min-height: 160px;
  opacity: 0;
  transform: translateY(14px);
}

.download-checkout-hint {
  margin: 0;
  text-align: center;
  color: var(--text-muted);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.45;
}

.download-file-btn {
  display: block;
  width: 100%;
  padding: 18px 24px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 600;
  font-family: inherit;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(180deg, #48c878 0%, #2da85a 100%);
  box-shadow: 0 8px 22px rgba(45, 168, 90, 0.35);
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.download-file-btn.is-visible {
  animation: download-access-appear 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.download-file-btn[hidden] {
  display: none !important;
}

.download-file-btn:active {
  transform: translateY(1px);
  filter: brightness(0.96);
}

.download-status {
  margin: 0;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.download-status--ok {
  color: #b8f5c8;
  background: rgba(72, 200, 120, 0.12);
  border-color: rgba(72, 200, 120, 0.35);
}

.download-status[hidden] {
  display: none !important;
}

.download-email-block {
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  width: 100%;
  min-height: 200px;
  opacity: 0;
  transform: translateY(14px);
}

.download-email-hint {
  margin: 0;
  text-align: center;
  color: var(--text-muted);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.45;
}

.download-email-field {
  display: block;
  width: 100%;
}

.download-email-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.download-email-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.download-email-input:disabled,
.download-email-field.is-locked .download-email-input {
  opacity: 0.65;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.download-email-input:focus {
  border-color: rgba(125, 140, 255, 0.55);
  background: rgba(255, 255, 255, 0.07);
}

.download-pay-btn {
  width: 100%;
  margin-top: auto;
  padding: 16px 24px;
  border: none;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 600;
  font-family: inherit;
  cursor: not-allowed;
  background: #4a5068;
  color: rgba(255, 255, 255, 0.45);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease;
}

.download-pay-btn:not(:disabled) {
  cursor: pointer;
  background: var(--accent);
  color: #ffffff;
}

.download-pay-btn:not(:disabled):hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.download-pay-btn.is-loading {
  cursor: wait;
  pointer-events: none;
}

.download-pay-btn__label,
.download-pay-btn__spinner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.download-pay-btn__spinner {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: download-spin 0.75s linear infinite;
}

.download-pay-btn__spinner[hidden] {
  display: none !important;
}

.download-pay-btn__label[hidden] {
  display: none !important;
}

@keyframes download-spin {
  to {
    transform: rotate(360deg);
  }
}

.download-success {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
  color: #b8f5c8;
  background: rgba(72, 200, 120, 0.12);
  border: 1px solid rgba(72, 200, 120, 0.35);
}

.download-success[hidden] {
  display: none !important;
}

.download-pay-link {
  display: block;
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(180deg, #5f8fff 0%, #3f6ef0 100%);
  box-shadow: 0 8px 18px rgba(63, 110, 240, 0.35);
}

.download-pay-link.is-prominent {
  margin-top: 18px;
  padding: 18px 20px;
  font-size: 17px;
  animation: download-pay-pulse 2s ease-in-out infinite;
}

@keyframes download-pay-pulse {
  0%,
  100% {
    box-shadow: 0 8px 18px rgba(63, 110, 240, 0.35);
  }
  50% {
    box-shadow: 0 8px 28px rgba(63, 110, 240, 0.55);
  }
}

.download-pay-link[hidden] {
  display: none !important;
}

.download-pay-link:active {
  transform: translateY(1px);
}

.download-success--pending {
  color: #ffe9b0;
  background: rgba(255, 200, 80, 0.12);
  border-color: rgba(255, 200, 80, 0.35);
}

.download-resend-btn {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  color: #e8ecff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
  position: relative;
}

.download-resend-btn[hidden] {
  display: none !important;
}

.download-resend-btn.is-loading {
  cursor: wait;
  pointer-events: none;
}

.download-resend-btn__spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: download-spin 0.75s linear infinite;
  vertical-align: middle;
}

.download-resend-btn__spinner[hidden] {
  display: none !important;
}

.download-resend-btn__label[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.platform-switch {
  margin-top: 25px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
}

.platform-switch-track {
  display: flex;
  gap: 12px;
  width: min(100%, 420px);
  padding: 0;
  background: none;
  border: none;
}

.platform-switch-btn {
  flex: 1;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.platform-switch-btn:hover:not(.active) {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.03);
}

.platform-switch-btn.active {
  background: rgba(125, 140, 255, 0.72);
  border-color: rgba(145, 160, 255, 0.85);
  color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
  .download-access-btn,
  .download-action-message,
  .download-opening,
  .download-email-block {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

.hero-scroll-fade {
  display: none;
}

/* Планшет 641–900px: упрощённая колонка */
@media (min-width: 641px) and (max-width: 900px) {
  .page-edge {
    padding-left: 24px;
    padding-right: 24px;
  }

  .topbar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .nav-toggle,
  .nav-drawer {
    display: none;
  }

  .nav--desktop {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    padding-top: 140px;
    min-height: auto;
  }

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

  .hero-download-btn--mobile {
    display: none !important;
  }

  .blend-stage {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .blend-stage .blend-phone-wrap {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    transform: none;
  }

  .feature-shape-left,
  .feature-shape-right {
    position: relative;
    top: auto;
    left: auto;
  }
}

@media (max-width: 900px) {
  .topbar-inner--legal {
    padding-top: 10px;
    padding-bottom: 6px;
  }

  .topbar--legal .topbar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .topbar--legal .nav--desktop {
    display: none;
  }

  .topbar--legal .topbar-actions {
    display: none;
  }

  .legal-content h1 {
    font-size: clamp(26px, 5vw, 36px);
  }

  .faq-question {
    font-size: 15px;
    padding: 16px 18px;
  }

  .faq-item[open]:not(.is-closing) .faq-answer {
    padding: 0 18px 18px;
  }

  .faq-answer,
  .faq-item.is-closing .faq-answer {
    padding: 0 18px;
  }
}

@media (max-width: 380px) {
  .topbar--legal + .legal-page .legal-content h1 {
    margin-top: 16px;
    font-size: 26px;
  }
}

/* Страница /download — только лого + название по центру */
body.page-download .topbar-inner--download {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  grid-template-columns: unset !important;
}

body.page-download .topbar-inner--download .brand {
  justify-content: center;
}

@media (min-width: 641px) {
  body.page-download .topbar--download {
    position: absolute;
    top: 22px;
    padding: 16px 0;
    width: 100%;
  }

  body.page-download .topbar-inner--download {
    width: min(1140px, calc(100% - 48px));
    margin: 0 auto;
  }

  body.page-download .topbar-inner--download .brand-logo {
    width: 44px;
    height: 44px;
  }

  body.page-download .topbar-inner--download .brand-name {
    font-size: 24px;
  }

  body.page-download .download-main.page-edge {
    width: min(1140px, calc(100% - 48px));
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  body.page-download .download-main {
    padding-top: calc(56px + env(safe-area-inset-top, 0px) + 32px) !important;
  }

  body.page-download .site-footer--download {
    display: none !important;
  }
}

/* ——— Страница /install-ios ——— */
body.page-install {
  --install-max: 720px;
}

body.page-install .topbar--install {
  position: fixed;
  inset: 0 auto auto 0;
  right: 0;
  z-index: 50;
  padding: 0;
  padding-top: env(safe-area-inset-top, 0px);
  background: var(--telega-bg, #0b1022);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body.page-install .topbar-inner--install {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  max-width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
}

body.page-install .install-main {
  padding: calc(56px + env(safe-area-inset-top, 0px) + 28px) 0 48px;
  min-height: 100vh;
  box-sizing: border-box;
}

body.page-install .install-article {
  max-width: var(--install-max);
  margin: 0 auto;
  padding: 0 20px;
}

.install-title {
  font-size: clamp(24px, 5vw, 32px);
  line-height: 1.2;
  margin: 0 0 16px;
  color: #fff;
}

.install-ipa-name {
  color: #8eb4ff;
}

.install-lead {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-muted, rgba(255, 255, 255, 0.78));
}

.install-callout {
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 24px;
}

.install-callout--warn {
  color: #ffe9b0;
  background: rgba(255, 200, 80, 0.1);
  border: 1px solid rgba(255, 200, 80, 0.35);
}

.install-toc {
  margin: 0 0 32px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.install-toc-title {
  margin: 0 0 12px;
  font-size: 17px;
  color: #fff;
}

.install-toc-list {
  margin: 0;
  padding-left: 20px;
  color: var(--text-muted, rgba(255, 255, 255, 0.75));
  line-height: 1.7;
}

.install-toc-list a {
  color: #9ab8ff;
  text-decoration: none;
}

.install-toc-list a:hover {
  text-decoration: underline;
}

.install-section {
  margin-bottom: 28px;
}

.install-section h2 {
  margin: 0 0 12px;
  font-size: 20px;
  color: #fff;
}

.install-card {
  padding: 20px 20px 4px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 22px;
}

.install-card p,
.install-section p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted, rgba(255, 255, 255, 0.78));
}

.install-card a,
.install-section a {
  color: #8eb4ff;
  word-break: break-all;
}

.install-bullets {
  margin: 0;
  padding-left: 20px;
  color: var(--text-muted, rgba(255, 255, 255, 0.78));
  line-height: 1.65;
  font-size: 15px;
}

.install-bullets li {
  margin-bottom: 8px;
}

.install-steps {
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--text-muted, rgba(255, 255, 255, 0.82));
  line-height: 1.65;
  font-size: 15px;
}

.install-steps li {
  margin-bottom: 10px;
}

.install-note {
  font-size: 14px !important;
  opacity: 0.9;
  font-style: italic;
}

.install-back {
  margin: 36px 0 0;
  text-align: center;
}

.install-back-link {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(100, 130, 255, 0.2);
  color: #c8d8ff !important;
  text-decoration: none;
  font-weight: 600;
}

.install-back-link:hover {
  background: rgba(100, 130, 255, 0.32);
}

.download-checkout-hint a {
  color: #9ab8ff;
  font-weight: 600;
}

@media (min-width: 641px) {
  body.page-install .topbar--install {
    position: absolute;
    top: 18px;
    background: transparent;
    border: none;
  }

  body.page-install .topbar-inner--install .brand-logo {
    width: 44px;
    height: 44px;
  }

  body.page-install .topbar-inner--install .brand-name {
    font-size: 22px;
  }

  body.page-install .install-main {
    padding-top: 100px;
  }
}
