/* Reset & base */
*, *::before, *::after { box-sizing: border-box; }
.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; }
.is-hidden { display: none !important; }
html { scroll-behavior: smooth; overflow-x: clip; width: 100%; }
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: clip;
  overflow-wrap: break-word;
  background: #000;
  color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
  min-height: 100vh;
}

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

html:has(body.page-home) {
  background-color: #000;
}
/* Home: full-bleed background image behind all content (not selectable — CSS layer only) */
body.page-home::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: #000;
  background-image: url("../assets/homeBackground.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}
@media (max-width: 900px) {
  body.page-home::before {
    background-size: 200% auto;
    background-position: center center;
  }
}
body.page-home > main,
body.page-home > footer {
  position: relative;
  z-index: 1;
}
body.page-home .addons-showcase {
  background: transparent;
}
body.page-home .start-fly-block,
body.page-home .footer {
  background: transparent;
}
body.page-home .header {
  background: #000;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.page-home .header.header--glass {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(17px) saturate(180%);
  -webkit-backdrop-filter: blur(17px) saturate(180%);
}

/* Header */
.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
}
/* Apple Liquid Glass — при скролле */
.header--glass {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(17px) saturate(180%);
  -webkit-backdrop-filter: blur(17px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 4px 32px rgba(0,0,0,0.5);
}
.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.5s ease;
}
.header__logo { transition: opacity 0.12s ease; }
.header__logo:hover { transform: none; opacity: 0.65; }
.header__logo-img { height: 22px; width: auto; }
.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header__nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
}
.header__nav-link:hover { color: #E3D23A; }
body.page-home .header__tagline {
  margin: 0;
  color: #fff;
  font-weight: 500;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  text-align: center;
}
.header__social {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header__nav-link--docs {
  display: inline-flex;
  align-items: center;
  align-self: center;
  margin-right: 0.5rem;
  padding: 4px 2px;
  white-space: nowrap;
}
.header__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  min-width: 36px;
  min-height: 36px;
  opacity: 0.65;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.header__social-link:hover { opacity: 1; }
.header__social-link:hover .header__social-icon { background-color: #E3D23A; }
.header__social-icon {
  display: block;
  width: 14px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.65);
  transition: background-color 0.2s ease;
  pointer-events: none;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
}
.header__social-icon--patreon { -webkit-mask-image: url(../assets/icons/icon-patreon.svg); mask-image: url(../assets/icons/icon-patreon.svg); }
.header__social-icon--github { -webkit-mask-image: url(../assets/icons/icon-github.svg); mask-image: url(../assets/icons/icon-github.svg); }
.header__social-link:has(.header__social-icon--github),
.header__social-link:has(.header__social-icon--instagram) { display: none; }
.header__social-icon--youtube { -webkit-mask-image: url(../assets/icons/icon-youtube.svg); mask-image: url(../assets/icons/icon-youtube.svg); }
.header__social-icon--twitter { -webkit-mask-image: url(../assets/icons/icon-twitter.svg); mask-image: url(../assets/icons/icon-twitter.svg); }
.header__social-icon--instagram { -webkit-mask-image: url(../assets/icons/icon-instagram.svg); mask-image: url(../assets/icons/icon-instagram.svg); }
.header__social-icon--tiktok { -webkit-mask-image: url(../assets/icons/icon-tiktok.svg); mask-image: url(../assets/icons/icon-tiktok.svg); }
.header__tagline-break-mobile { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  max-width: 1020px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: #000;
}
.hero__video {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding-top: 80px;
  padding-bottom: 80px;
  transform: translateY(40px);
}
/* Optional fallback when no video: add hero-bg.webp for static background */
.hero__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-color: #000;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}
.hero__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  pointer-events: none;
}
.hero__left {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 25px;
  padding-bottom: 25px;
  margin-top: -40px;
  padding-left: 42px;
  max-width: 340px;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 18px;
  font-weight: 500;
  pointer-events: auto;
  user-select: text;
}
.hero__logo-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.hero__logo-wrap {
  display: inline-block;
}
.hero__logo {
  max-width: 186px;
  width: 186px;
  height: 49px;
  padding-left: 0px;
  padding-right: 0px;
  margin-left: 0px;
  margin-right: 0px;
}
.hero__addon-icon {
  width: 26px;
  height: 23.15px;
  flex-shrink: 0;
  margin-top: 5px;
  margin-bottom: 0;
  margin-left: 0px;
  transition: transform 0.5s ease;
  transform: scale(1);
  transform-origin: center center;
}
.hero__logo-header:hover .hero__addon-icon {
  transform: scale(1.25);
}
.hero__intro {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  opacity: 0.9;
  line-height: 1.35;
}
/* Hero CTA — same glass look as cards; layout/size matches original hero button */
.hero__cta.addons-card__cta {
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 120px;
  max-width: 100%;
  height: 38px;
  min-height: 38px;
  max-height: none;
  margin-top: 0;
  padding: 8px 20px;
  white-space: nowrap;
  border-width: 1px;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  border-color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.09) 100%),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06),
    0 18px 34px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  text-decoration: none;
  box-sizing: border-box;
}
.hero__cta.addons-card__cta .addons-card__cta-label {
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1;
}
.hero__cta.addons-card__cta:hover::after {
  transform: translateX(340%) rotate(18deg);
  opacity: 1;
}
.hero__cta.addons-card__cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 3px;
}
.hero__cta-hint {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 3px;
  margin: -18px 0;
  padding: 0 2px;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.7;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
}
.hero__cta-hint-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  font-size: 4px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  /* SVG icon placeholder — замените на img или inline SVG */
}
.hero__blender-badge-link {
  display: inline-block;
  width: 50px;
  margin-top: 18px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.12s ease;
}
.hero__blender-badge-link:hover { transform: none; opacity: 0.65; }
.hero__blender-badge {
  width: 52px;
  height: 64px;
  display: block;
  opacity: 0.9;
}
.hero__features {
  margin-top: 0.25rem;
  max-width: 320px;
}
.hero__features-item--hidden {
  display: none;
}
.hero__features-title {
  display: none; /* скрыто пока */
  margin: 0 0 0.35rem;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero__features-list {
  margin: 4px 0 10px;
  padding-left: 14px;
  width: 100%;
  max-width: 320px;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.85;
}
.hero__features-list li {
  margin-bottom: 0.2rem;
}
.hero__features-list li:last-child {
  margin-bottom: 0;
}

/* Glass block — фон, контент поверх */
.glass-block {
  position: relative;
  z-index: 11;
  width: 100%;
  margin-top: 0;
  margin-bottom: 2rem;
  padding-top: 0;
  padding-bottom: 2rem;
  background: #000;
}
#features {
  width: 100%;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  scroll-margin-top: 160px;
}
.glass-block__img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  max-width: 100vw;
  height: auto;
  display: block;
  object-fit: contain;
  margin-top: -80px;
  margin-bottom: -80px;
  z-index: 0;
  pointer-events: none;
}
.glass-block__content {
  position: relative;
  top: -40px;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 790px;
  height: 422px;
  min-height: 400px;
  padding: 0;
  margin: 0 auto;
  vertical-align: bottom;
  text-align: center;
}
.glass-block__row {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  width: 100%;
  margin: 0;
  padding: 0 clamp(1.5rem, 4vw, 40px);
  text-align: left;
}
.glass-block__left {
  flex: 0 0 auto;
  min-width: 140px;
  width: 254px;
  max-width: 35%;
  height: 663px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}
.glass-block__plugin-img {
  width: 254px;
  height: 663px;
  padding: 0;
  margin: 0;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.glass-block__left:hover .glass-block__plugin-img {
  transform: scale(1.02);
}
.glass-block__right {
  flex: 1 1 auto;
  min-width: 0;
  width: 440px;
  max-width: 65%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(1rem, 2vw, 32px);
  margin: 0;
}
.glass-block__item {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1vw, 1rem);
}
.glass-block__right .glass-block__item:nth-child(4) {
  margin-top: 60px;
}
.glass-block__item-placeholder {
  width: clamp(108px, 12vw, 144px);
  height: clamp(84px, 10.5vw, 108px);
  flex-shrink: 0;
  background: #151616;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.glass-block__item-placeholder .glass-block__item-video,
.glass-block__item-placeholder .glass-block__item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.glass-block__right .glass-block__item:nth-child(5) .glass-block__item-placeholder {
  height: auto;
  min-height: 0;
  background-color: #000;
  overflow: visible;
  margin-left: -4px;
}
.glass-block__right .glass-block__item:nth-child(5) .glass-block__item-img {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.glass-block__item-placeholder .glass-block__item-video {
  opacity: 1;
  padding-top: 0;
  padding-bottom: 0;
}
.glass-block__item-text {
  margin: 0;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: clamp(12px, 1.4vw, 14px);
  line-height: 1.5;
  opacity: 0.9;
}
.glass-block__item-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}
.glass-block__item-text--lead {
  font-size: clamp(14px, 1.6vw, 16px);
}
.glass-block__item-text--sub {
  font-size: clamp(10px, 1.1vw, 12px);
  opacity: 0.75;
}

/* Mapping pad image block — отдельный блок ниже features */
.mapping-block {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 820px;
  margin: 8rem auto 1rem;
  padding: 4rem clamp(1.5rem, 4vw, 40px) 0;
  text-align: center;
  background: #000;
}
.mapping-block__img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.mapping-block:hover .mapping-block__img {
  transform: scale(1.02);
}

/* Benefits block — alternating text + placeholder rows */
.extraFeatures-block {
  padding-top: 50px;
  padding-bottom: 0;
  padding-left: 60px;
  padding-right: 60px;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 20px;
  margin-right: 20px;
  background: #000;
}
.extraFeatures-block__inner {
  max-width: 820px;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 0;
}
.extraFeatures-block__row {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.extraFeatures-block__row:last-child {
  margin-bottom: 0;
}
.extraFeatures-block__row--reverse {
  flex-direction: row-reverse;
}
.extraFeatures-block__copy {
  flex: 1 1 auto;
  min-width: 0;
}
.extraFeatures-block__text {
  margin: 0;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}
.extraFeatures-block__placeholder {
  flex: 0 0 auto;
  width: min(100%, 320px);
  aspect-ratio: 16 / 9;
  max-height: 180px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}
.extraFeatures-block__media {
  flex: 0 0 auto;
  width: min(100%, 320px);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.extraFeatures-block__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 180px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
}
.extraFeatures-block__media:hover .extraFeatures-block__video {
  transform: scale(1.1);
}
.extraFeatures-block__media {
  border: 1.5px solid #0a0a0a;
  border-radius: 16px;
}
.extraFeatures-block__media-title {
  margin: 0 0 0.5rem;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

/* FPV Mode block — image left, text right */
.fpv-block {
  padding: 50px 60px 0;
  margin: 0 20px;
  background: #000;
}
.fpv-block__inner {
  max-width: 820px;
  margin: 0 auto;
}
.fpv-block__row {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 3rem);
}
.fpv-block__media {
  flex: 0 0 auto;
  width: min(100%, 320px);
}
.fpv-block__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.fpv-block__media:hover .fpv-block__img {
  transform: scale(1.02);
}
.fpv-block__copy {
  flex: 1 1 auto;
  min-width: 0;
}
.fpv-block__title {
  margin: 0 0 1rem;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.fpv-block__text {
  margin: 0 0 0.75rem;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}
.fpv-block__text:last-of-type {
  margin-bottom: 0;
}
.fpv-block__list {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
}
.fpv-block__list li {
  margin-bottom: 0.35rem;
}
.fpv-block__list li:last-child {
  margin-bottom: 0;
}
.fpv-block__video-wrap {
  width: 90%;
  margin: 2.5rem auto 0;
  overflow: hidden;
  border-radius: 16px;
}
.fpv-block__video {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 16px;
}
.fpv-block__video-caption {
  width: 90%;
  margin: 0.5rem auto 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  position: relative;
  z-index: 1;
}
.fpv-block__video-caption-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.fpv-block__video-caption-link:hover {
  color: #E3D23A;
  text-decoration: underline;
}

/* Content placeholder */
.content-placeholder {
  min-height: 60vh;
  padding: 4rem 2rem;
  background: #000;
}
.content-placeholder[id="contacts"] {
  min-height: 0;
  padding: 2rem;
}

/* Docs section */
.docs-section {
  padding: 2rem clamp(2rem, 6vw, 4rem);
  background: #000;
  max-width: 520px;
  margin: 0 auto;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  box-sizing: border-box;
}
/* No solid panel behind Support / Documentation (inherits page background) */
.docs-section--surface-clear {
  background: transparent;
  padding-top: 1.5rem;
  padding-bottom: 60px;
  padding-left: 50px;
  padding-right: 50px;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  scroll-margin-top: 80px;
}
#support {
  padding-top: 0;
  padding-bottom: 2rem;
  padding-left: 50px;
  padding-right: 50px;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.docs-section__title {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}
.docs-section__title:first-child {
  margin-top: 0;
}
.docs-section__title--accent {
  color: rgba(255, 255, 255, 1);
}
.docs-section__text {
  margin: 0.25rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #fff;
}
.docs-section__text--accent {
  color: rgba(227, 210, 58, 1);
}
.docs-section__note {
  margin: 0.5rem 0 0 1rem;
  font-size: 0.9rem;
  opacity: 0.85;
  color: #fff;
}
.docs-section__block {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}
.docs-section__block .docs-section__title {
  margin-top: 0;
}
.docs-section__install-img {
  display: block;
  max-width: 100%;
  margin: 1rem 0;
}
.docs-section__list {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.8;
}
.docs-section__link {
  color: #E3D23A;
  text-decoration: none;
}
.docs-section__link:hover {
  text-decoration: underline;
}
.docs-section__cta {
  display: inline-block;
  margin-top: 1rem;
  min-width: 203px;
  height: 44px;
  padding: 9px 20px;
  white-space: nowrap;
  text-align: center;
  background: #000;
  color: #fff;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #E3D23A;
  border-radius: 11px;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}
.docs-section__cta:hover {
  background: #E3D23A;
  color: #000;
  border-color: #E3D23A;
}
#documentations,
#purchase,
#purchase-focus,
#support {
  scroll-margin-top: 80px;
}
#top {
  scroll-margin-top: 80px;
}

/* Section divider — between docs and purchase */
.section-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 clamp(3rem, 8vw, 6rem);
}
.section-divider--before-compatibility {
  margin-top: 50px;
}
/* Desktop: hide line break before "to timeline", hide divider before Compatibility, align docs with image */
@media (min-width: 769px) {
  .section-divider--before-fpv {
    margin-top: 100px;
  }
  .hero__cta.addons-card__cta {
    width: auto;
    max-width: 195px;
    min-width: unset;
    padding: 8px 22px;
    align-self: flex-start;
    box-sizing: border-box;
    margin-top: -12px;
  }
  .hero__cta.addons-card__cta .addons-card__cta-label {
    letter-spacing: 0.07em;
  }
  .hero__intro-br-mobile { display: none; }
  .mapping-block { margin-top: 9.35rem; margin-bottom: 0 !important; padding-top: 3.4rem; }
  .mapping-block__img { max-width: 690px; }
  .docs-section {
    margin-left: calc(80px + max(0px, (100vw - 980px) / 2));
    margin-right: auto;
    max-width: 660px;
  }
  #support {
    margin-top: calc(5.5rem - 20px);
    padding-bottom: 2rem;
    padding-left: 0;
    margin-left: calc(80px + max(0px, (100vw - 980px) / 2));
    margin-right: auto;
    max-width: 660px;
  }
  .docs-section--surface-clear {
    padding-top: 1.25rem;
    padding-bottom: 60px;
    padding-left: 0;
    margin-left: calc(80px + max(0px, (100vw - 980px) / 2));
    margin-right: auto;
    max-width: 660px;
  }
  .glass-block__plugin-img {
    margin-top: -24px;
  }
}

/* Purchase block — UI panel + product info */
.purchase-block {
  padding: 40px 100px;
  background: #000;
}
.purchase-block__row {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: clamp(2rem, 4vw, 4rem);
  max-width: 1100px;
  margin: 0 auto;
}
.purchase-block__panel {
  flex: 0 0 auto;
  min-width: 280px;
  max-width: 45%;
}
.purchase-block__panel--img {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.purchase-block__panel--img .purchase-block__plugin-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.purchase-block__panel--img:hover .purchase-block__plugin-img {
  transform: scale(1.02);
}
/* Plugin UI mockup styles — закомментировано, оставлено для будущего
.purchase-block__panel {
  background: #2a2a2a;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
*/
.purchase-block__panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #fff;
}
.purchase-block__panel-controls {
  display: flex;
  gap: 0.5rem;
}
.purchase-block__panel-btn {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: default;
}
.purchase-block__panel-body {
  padding: 1rem 1.25rem;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.8rem;
  color: #fff;
}
.purchase-block__panel-logo {
  width: 100%;
  max-width: 175px;
  height: auto;
  margin-bottom: 1rem;
}
.purchase-block__panel-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.4rem 0;
}

.purchase-block__panel-select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #fff;
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
}
.purchase-block__panel-icons {
  display: flex;
  gap: 0.35rem;
  margin-left: auto;
}
.purchase-block__panel-icons span {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  font-size: 0.7rem;
}
.purchase-block__panel-btn-wide {
  width: 100%;
  margin: 0.75rem 0;
  padding: 0.5rem;
  background: #000;
  border: 2px solid #E3D23A;
  border-radius: 11px;
  color: #fff;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}
.purchase-block__panel-btn-wide:hover {
  background: #E3D23A;
  color: #000;
  border-color: #E3D23A;
}
.purchase-block__panel-actions {
  display: flex;
  gap: 0.5rem;
  margin: 0.5rem 0;
}
.purchase-block__panel-btn-start {
  flex: 1;
  padding: 0.5rem;
  background: #000;
  color: #fff;
  border: 2px solid #E3D23A;
  border-radius: 11px;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}
.purchase-block__panel-btn-start:hover {
  background: #E3D23A;
  color: #000;
  border-color: #E3D23A;
}
.purchase-block__panel-btn-stop {
  flex: 1;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 11px;
  font-size: 0.85rem;
  cursor: pointer;
}
.purchase-block__panel-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
  cursor: pointer;
}
.purchase-block__panel-checkbox--indent {
  margin-left: 1rem;
}
.purchase-block__panel-expand {
  margin: 0.35rem 0;
  color: rgba(255, 255, 255, 0.7);
  cursor: default;
}
.purchase-block__panel-expand--open {
  color: #fff;
}

.purchase-block__info {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 55%;
}
.purchase-block__info-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.purchase-block__info-logo {
  height: 35px;
  width: auto;
  margin-left: 0px;
  margin-right: 0px;
}
img[src*="addonIcon.svg"] {
  transition: transform 0.5s ease;
  transform-origin: center center;
}
.purchase-block__info-header:hover .purchase-block__info-icon {
  transform: scale(1.25);
}
.purchase-block__info-icon {
  width: 26px;
  height: 23.15px;
  margin-top: 5px;
  margin-bottom: 0;
  margin-left: 3px;
  transform: scale(1);
}
.purchase-block__info-desc {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
}
/* License tier picker — glass cards + radio (blenderfly purchase) */
.license-picker {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  width: 100%;
  max-width: 520px;
}
.license-picker__card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0;
  padding: 0.9rem 1rem 1rem 1rem;
  border-radius: 14px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 28px rgba(0, 0, 0, 0.35);
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.license-picker__card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
}
.license-picker__card:has(.license-picker__input:checked) {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.095);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 22px rgba(227, 210, 58, 0.12);
}
.license-picker__card:has(.license-picker__input:focus-visible) {
  outline: 2px solid rgba(227, 210, 58, 0.55);
  outline-offset: 2px;
}
.license-picker__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
}
.license-picker__radio {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background 0.2s ease;
  position: relative;
}
.license-picker__card:has(.license-picker__input:checked) .license-picker__radio {
  border-color: rgba(255, 255, 255, 0.55);
}
.license-picker__card:has(.license-picker__input:checked) .license-picker__radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.28),
    0 0 14px rgba(227, 210, 58, 0.18);
}
.license-picker__main {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.license-picker__price {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.35rem, 3.2vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.license-picker__name {
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
}

.purchase-block__cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}
button.purchase-block__cta {
  appearance: none;
  -webkit-appearance: none;
}
/* Purchase CTAs — same glass control as hero / home cards */
.purchase-block__cta.addons-card__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  width: 240px;
  max-width: 240px;
  height: 42px;
  min-height: 42px;
  max-height: none;
  margin: 0;
  padding: 8px 20px;
  white-space: nowrap;
  line-height: 1;
  border-width: 1px;
  border-radius: 11px;
  overflow: hidden;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  border-color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.09) 100%),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06),
    0 18px 34px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  color: #fff;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  transition:
    border-color 0.45s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.45s cubic-bezier(0.33, 1, 0.68, 1);
}
/* Single checkout CTA — Aqua Y2K gel (archived glass: backups/purchase-checkout-buy-button-before-aqua.css) */
.purchase-block__cta.addons-card__cta.purchase-block__cta--checkout {
  width: 100%;
  max-width: 520px;
  min-height: calc(48px * 1.05 * 1.05);
  height: auto;
  padding: 12px 22px;
  border-radius: 14px;
  /* buttonStudio/newStyle.json recipe (styleOnly, no size changes) */
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --pointer-x: 50%;
  --pointer-y: 50%;
  --pointer-x-soft: 50%;
  --pointer-y-soft: 50%;
  --cursor-glow-size: 29%;
  --cursor-glow-opacity: 0.34;
  --flow-speed: 4.4s;
  --hover-fx-opacity: 0.08;
  --hover-hue: -10deg;

  border-width: 1.3px;
  border-style: solid;
  border-color: rgba(173, 239, 248, 0.34);
  border-top-color: rgba(247, 254, 255, 0.82);
  border-bottom-color: rgba(87, 187, 205, 0.24);

  color: rgb(240, 252, 255);
  background:
    linear-gradient(
      180deg,
      rgba(245, 254, 255, 0.32) 0%,
      rgba(224, 248, 252, 0.18) 22%,
      rgba(151, 223, 233, 0.16) 52%,
      rgba(68, 158, 179, 0.19) 100%
    );

  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35),
    0 0 18px rgba(148, 228, 240, 0.28);

  box-shadow:
    0 14px 39px rgba(65, 155, 176, 0.19),
    0 6px 18px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -10px 24px rgba(255, 255, 255, 0.1),
    inset 0 -16px 24px rgba(74, 165, 186, 0.32);

  backdrop-filter: blur(14.9px) saturate(180%);
  -webkit-backdrop-filter: blur(14.9px) saturate(180%);

  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    background 0.35s ease;
}
.purchase-block__cta.addons-card__cta.purchase-block__cta--checkout:hover {
  background:
    linear-gradient(
      180deg,
      rgba(250, 254, 255, 0.36) 0%,
      rgba(230, 249, 252, 0.22) 20%,
      rgba(151, 225, 236, 0.22) 52%,
      rgba(84, 187, 206, 0.24) 100%
    );
  transform: none;
  filter: hue-rotate(var(--hover-hue, 0deg));
  border-color: rgba(214, 248, 253, 0.7);
  box-shadow:
    0 26px 56px rgba(116, 215, 231, 0.2),
    0 10px 22px rgba(0, 0, 0, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 14px 28px rgba(255, 255, 255, 0.18),
    inset 0 -18px 28px rgba(80, 177, 198, 0.3);
}
.purchase-block__cta.addons-card__cta.purchase-block__cta--checkout .addons-card__cta-label {
  color: #effcff;
  font-size: calc(14px * 1.15 * 1.15);
}
.purchase-block__cta.addons-card__cta.purchase-block__cta--checkout .addons-card__cta-hoverfill {
  position: absolute;
  inset: -12%;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at var(--pointer-x-soft) var(--pointer-y-soft), rgba(255, 255, 255, 0.36) 0, rgba(142, 232, 242, 0.34) 14%, rgba(142, 232, 242, 0.1) 28%, transparent 29%),
    radial-gradient(circle at calc(var(--pointer-x-soft) + 10%) calc(var(--pointer-y-soft) - 12%), rgba(238, 252, 255, 0.2) 0, transparent 26%);
  filter: blur(12px) saturate(145%);
  transform: translateZ(0) scale(0.96);
  transition:
    opacity 0.28s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease;
}
.purchase-block__cta.addons-card__cta.purchase-block__cta--checkout:hover .addons-card__cta-hoverfill {
  opacity: 0.65;
  transform: translateZ(0) scale(1);
}
.purchase-block__cta.addons-card__cta.purchase-block__cta--checkout::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 14% 108%, rgba(255, 255, 255, 0.16) 0, rgba(255, 255, 255, 0.26) 16%, transparent 38%),
    radial-gradient(circle at 50% 118%, rgba(112, 210, 223, 0.24) 0, transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 40%, transparent 60%, rgba(255, 255, 255, 0.03) 100%);
  mix-blend-mode: screen;
  opacity: 0.55;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease,
    background-position 0.6s ease;
}
.purchase-block__cta.addons-card__cta.purchase-block__cta--checkout::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(0deg, rgba(228, 251, 255, 0.22), transparent 34%),
    radial-gradient(circle at 50% 118%, rgba(92, 193, 211, 0.34), transparent 52%);
  opacity: 0.48;
}
.purchase-block__cta.addons-card__cta.purchase-block__cta--checkout:hover::before {
  transform: none;
}
.purchase-block__cta.addons-card__cta.purchase-block__cta--checkout .addons-card__cta-label::before {
  display: none;
}
.purchase-block__cta.addons-card__cta.purchase-block__cta--checkout:hover::after {
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.12) 24%, rgba(255, 255, 255, 0.26) 36%, rgba(126, 227, 239, 0.18) 52%, transparent 70%),
    radial-gradient(circle at var(--pointer-x-soft) var(--pointer-y-soft), rgba(126, 227, 239, 0.24), transparent 44%),
    radial-gradient(circle at 50% 120%, rgba(126, 227, 239, 0.28), transparent 48%);
  background-size: 180% 180%, 100% 100%, 100% 100%;
  animation: buy-glass-tide var(--flow-speed) linear infinite;
}

.purchase-block__cta.addons-card__cta.purchase-block__cta--checkout:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.92),
    0 0 0 5px rgba(137, 225, 236, 0.18),
    0 24px 54px rgba(108, 205, 220, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -18px 28px rgba(80, 177, 198, 0.28);
}

.purchase-block__cta.addons-card__cta.purchase-block__cta--checkout:active {
  transform: translateY(-1px) scale(0.995);
  box-shadow:
    0 14px 26px rgba(72, 170, 190, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 12px 20px rgba(255, 255, 255, 0.12),
    inset 0 -12px 20px rgba(80, 177, 198, 0.3);
}

@keyframes buy-glass-tide {
  0% { background-position: 130% 50%, 0% 0%, 0% 0%; }
  100% { background-position: -40% 50%, 0% 0%, 0% 0%; }
}
.purchase-block__cta.addons-card__cta .addons-card__cta-label {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}
.purchase-block__cta.addons-card__cta:hover::after {
  transform: translateX(340%) rotate(18deg);
  opacity: 1;
}
.purchase-block__cta.addons-card__cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 3px;
}
.purchase-block__cta.addons-card__cta:hover {
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(255, 255, 255, 0.07),
    0 18px 34px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.07),
    0 0 16px rgba(255, 255, 255, 0.08);
}
.purchase-block__cta--soon:not(.addons-card__cta) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  max-width: 240px;
  height: 42px;
  padding: 8px 20px;
  background: transparent;
  color: #888;
  border: 2px solid #666;
  border-radius: 11px;
  cursor: default;
}
.purchase-block__cta--soon:not(.addons-card__cta):hover {
  background: transparent;
  color: #888;
  border-color: #999;
}
.purchase-block__badges-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
}
.purchase-block__platforms-img {
  margin-left: -10px;
  max-width: 200px;
  height: auto;
  display: block;
  transition: opacity 0.12s ease;
}
.purchase-block__badges-row .purchase-block__platforms-img:hover {
  opacity: 0.65;
}
.purchase-block__blender-hint {
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0.75rem 0 0;
  padding: 0 2px;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.7;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
}
.purchase-block__blender-hint-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  font-size: 4px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
.purchase-block__badges-row .purchase-block__blender-badge-link {
  margin-top: 0;
  margin-right: 0.5rem;
}
.purchase-block__badges-row .purchase-block__blender-badge {
  width: 31.2px;
  height: 38.4px;
  opacity: 0.9;
}
.purchase-block__blender-badge-link {
  display: inline-block;
  margin-top: 0.5rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.5s ease;
}
.purchase-block__blender-badge-link:hover { transform: none; opacity: 0.65; }
.purchase-block__blender-badge-link { transition: opacity 0.12s ease; }
.purchase-block__blender-badge {
  width: 52px;
  height: 64px;
  display: block;
  opacity: 0.9;
}
/* Start → Fly block — full-screen CTA before footer */
.start-fly-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 370px;
  padding-top: 0;
  padding-bottom: 40px;
  padding-left: 2rem;
  padding-right: 2rem;
  background: #000;
  text-align: center;
}
.start-fly-block__intro {
  margin: 0 0 1rem;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  color: #fff;
  opacity: 0.9;
}
.start-fly-block__title {
  margin: 0;
  font-size: clamp(4rem, 18vw, 22vw);
  font-weight: 700;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

/* Home — Blender Add-ons cards (glass + hover lift / glow) */
.addons-showcase {
  padding: 3.5rem clamp(1.5rem, 4vw, 3rem) 3rem;
  background: #000;
  scroll-margin-top: 80px;
}
.addons-showcase__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.addons-showcase__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0 0 2rem;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: clamp(1rem, 2vw, 2.25rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  text-align: left;
}
.addons-showcase__title-icon {
  flex-shrink: 0;
  width: 0.966em;
  height: auto;
  display: block;
  transform: translateY(2px) scale(1);
  transform-origin: center center;
  transition: transform 0.5s ease;
}
.addons-showcase__title:hover .addons-showcase__title-icon {
  transform: translateY(2px) scale(1.25);
}
.addons-showcase__title-icon:hover {
  transform: translateY(2px) scale(1.25);
}
.addons-showcase__grid {
  --addons-grid-row-min: 30rem; /* ≥ высота карточки с раскрытой CTA — строка не растёт при hover */
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.75rem);
  align-items: start;
}
@media (min-width: 901px) {
  .addons-showcase__grid {
    grid-template-rows: minmax(var(--addons-grid-row-min), auto);
  }
}
.addons-card-slot {
  position: relative;
  margin: 0;
  padding: 0 0 12px;
  list-style: none;
  min-width: 0;
  isolation: isolate;
  align-self: start;
}
.addons-card-slot::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 52%;
  background: radial-gradient(
    ellipse 78% 92% at var(--addons-glow-x, 50%) 100%,
    rgba(227, 210, 58, 0.28) 0%,
    rgba(227, 210, 58, 0.08) 40%,
    transparent 72%
  );
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 0;
}
.addons-card-slot:hover::before {
  opacity: 0.6;
}
.addons-card {
  position: relative;
  z-index: 1;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  transition: transform 0.45s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.45s ease, border-color 0.35s ease;
  will-change: transform;
}
.addons-card--featured {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}
.addons-card--featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 34%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.35s ease;
}
.addons-card:has(.addons-card__link) {
  cursor: pointer;
}
.addons-card-slot--soon {
  cursor: pointer;
}
.addons-card--soon {
  cursor: pointer;
}
.addons-card__soon-tip {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: clamp(11px, 1.6vw, 13px);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.65);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
  z-index: 4;
}
.addons-card--soon:hover .addons-card__soon-tip,
.addons-card--soon:focus-within .addons-card__soon-tip {
  opacity: 1;
  visibility: visible;
}
.addons-card--soon:focus-visible {
  outline: 2px solid rgba(227, 210, 58, 0.55);
  outline-offset: 4px;
}

/* Soon cards: blur teaser content; sharp overlay + subscribe only */
.addons-card--teaser-private {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.addons-card__teaser-blur {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  filter: blur(16px);
  -webkit-filter: blur(16px);
  opacity: 0.82;
  transform: translateZ(0);
}
.addons-card__teaser-blur .addons-card__inner {
  flex: 1 1 auto;
  min-height: 0;
}
.addons-card--teaser-private .addons-card__cta--placeholder {
  display: none !important;
}
.addons-card--teaser-private .addons-card__soon-tip {
  opacity: 0 !important;
  visibility: hidden !important;
}
.addons-card__teaser-veil {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1rem 1.1rem 1.2rem;
  text-align: center;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    165deg,
    rgba(10, 10, 12, 0.25) 0%,
    rgba(0, 0, 0, 0.52) 55%,
    rgba(0, 0, 0, 0.6) 100%
  );
}
.addons-card__teaser-veil-title {
  margin: 0;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: clamp(12px, 1.7vw, 14px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.75);
}
.addons-card__teaser-veil-sub {
  margin: 0;
  max-width: 16rem;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: clamp(10px, 1.25vw, 12px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.65);
}
/* SUBSCRIBE uses default .addons-card__cta — shown only on :hover / :focus-within (same as other soon cards) */
@media (prefers-reduced-motion: reduce) {
  .addons-card__teaser-blur {
    filter: blur(0);
    -webkit-filter: none;
    opacity: 0.2;
  }
  .addons-card__teaser-veil {
    background: linear-gradient(
      165deg,
      rgba(10, 10, 12, 0.58) 0%,
      rgba(0, 0, 0, 0.88) 100%
    );
  }
}

.addons-card:hover,
.addons-card:focus-within {
  z-index: 2;
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.16);
}
.addons-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  text-decoration: none;
  color: inherit;
}
.addons-card__link {
  text-decoration: none;
  color: inherit;
}
.addons-card__link--cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}
.addons-card--featured .addons-card__media,
.addons-card--featured .addons-card__body {
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.addons-card__link--cover:focus-visible {
  outline: 2px solid #e3d23a;
  outline-offset: 4px;
  border-radius: 22px;
}
.addons-card__badge {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  padding: 0;
  color: #0a0a0a;
  background: #e3d23a;
  border-radius: 50%;
  line-height: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.addons-card__badge-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}
.addons-card__media {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #141416;
}
.addons-card__media--a {
  background: linear-gradient(160deg, #242228 0%, #0e0e10 100%);
}
.addons-card__media--b {
  background: linear-gradient(160deg, #1e2224 0%, #0c0f10 100%);
}
.addons-card__media--c {
  background: linear-gradient(160deg, #221e26 0%, #0e0c12 100%);
}
.addons-card__media .addons-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}
.addons-card__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 2;
  transition: opacity 0.22s ease-out;
  pointer-events: none;
}
.addons-card__media.is-video-active .addons-card__poster {
  opacity: 0;
}
.addons-card--featured:hover .addons-card__poster,
.addons-card--featured:focus-within .addons-card__poster {
  opacity: 0;
}
.addons-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  border-radius: 0;
  pointer-events: none;
  z-index: 3;
}
@media (prefers-reduced-motion: reduce) {
  .addons-card__poster {
    transition: opacity 0.15s ease-out;
  }
}
.addons-card__body {
  padding: 1.15rem 1.25rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  flex: 1;
  text-align: center;
}
.addons-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  width: 100%;
  transform: translateX(-2.5px);
}
.addons-card-slot:nth-child(2) .addons-card__logo {
  transform: translateX(calc(-2.5px + 1mm));
}
.addons-card__logo img {
  max-width: min(180px, 100%);
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.addons-card-slot:nth-child(2) .addons-card__logo img {
  transform: scale(0.97);
  transform-origin: center center;
}
.addons-card-slot:nth-child(3) .addons-card__logo img {
  transform: scale(0.95);
  transform-origin: center center;
}
.addons-card__brand {
  margin: 0;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-weight: 700;
  font-size: clamp(1.05rem, 2.1vw, 1.25rem);
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #fff;
}
.addons-card__desc {
  margin: 0;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: clamp(11px, 1.35vw, 13px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}
.addons-card__cta {
  --addons-cta-fill-ms: 0.14s;
  position: relative;
  display: inline-flex;
  isolation: isolate;
  align-items: center;
  justify-content: center;
  width: 240px;
  max-width: 100%;
  max-height: 0;
  margin-top: 0;
  padding: 0 20px;
  border-radius: 11px;
  overflow: hidden;
  border: 0 solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.07) 100%),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05),
    0 12px 28px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96);
  transition:
    max-height 0.38s cubic-bezier(0.33, 1, 0.68, 1),
    margin-top 0.38s cubic-bezier(0.33, 1, 0.68, 1),
    padding 0.38s cubic-bezier(0.33, 1, 0.68, 1),
    border-width 0.38s cubic-bezier(0.33, 1, 0.68, 1),
    opacity 0.22s ease,
    transform 0.38s cubic-bezier(0.33, 1, 0.68, 1),
    border-color 0.45s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.45s cubic-bezier(0.33, 1, 0.68, 1);
}
.addons-card__cta-hoverfill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--addons-cta-fill-ms, 0.75s) ease-in-out;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.07) 100%),
    rgba(255, 255, 255, 0.06);
}
.addons-card__cta:hover .addons-card__cta-hoverfill {
  opacity: 1;
}
.addons-card__cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 11px;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.08) 28%, rgba(255, 255, 255, 0) 62%);
  opacity: 0.9;
  transition: opacity var(--addons-cta-fill-ms, 0.24s) ease-in-out;
  pointer-events: none;
}
.addons-card__cta::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -18%;
  width: 44%;
  z-index: 3;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.28) 48%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-150%) rotate(18deg);
  transition: transform 0.65s ease, opacity 0.45s cubic-bezier(0.33, 1, 0.68, 1);
  opacity: 0.9;
  pointer-events: none;
}
.addons-card__cta-label::before {
  content: "";
  position: absolute;
  inset: -12px -18px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 72%);
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.33, 1, 0.68, 1);
  pointer-events: none;
}
.addons-card__cta-label {
  position: relative;
  z-index: 2;
  transform: translateZ(0);
  backface-visibility: hidden;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}
a.addons-card__cta {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
a.addons-card__cta:visited {
  color: inherit;
}
a.addons-card__cta:focus-visible {
  outline: 2px solid #e3d23a;
  outline-offset: 3px;
  border-radius: 11px;
}
.addons-card:hover .addons-card__cta,
.addons-card:focus-within .addons-card__cta {
  max-height: 56px;
  margin-top: 0.65rem;
  padding: 10px 20px;
  border-width: 1px;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  border-color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.09) 100%),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06),
    0 18px 34px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}
.addons-card:hover .addons-card__cta::after,
.addons-card:focus-within .addons-card__cta::after {
  transform: translateX(340%) rotate(18deg);
}
.addons-card__cta:hover {
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(255, 255, 255, 0.07),
    0 18px 34px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.07),
    0 0 16px rgba(255, 255, 255, 0.08);
}
.addons-card__cta:hover::before {
  opacity: 0.95;
}
.addons-card__cta:hover::after {
  opacity: 1;
}
.addons-card__cta:hover .addons-card__cta-label::before {
  opacity: 1;
}
.addons-card--featured:hover,
.addons-card--featured:focus-within {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.035) 100%),
    rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.addons-card--featured:hover::before,
.addons-card--featured:focus-within::before {
  opacity: 0.48;
}
@media (max-width: 900px) {
  .addons-showcase__title {
    text-align: center;
    justify-content: center;
    font-size: clamp(2rem, 3.6vw, 2.5rem);
  }
  .addons-card__desc {
    font-size: clamp(22px, 2.7vw, 26px);
    line-height: 1.45;
  }
  .addons-card__cta {
    width: min(240px, 100%);
  }
  .addons-showcase__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .addons-card:hover,
  .addons-card:focus-within {
    transform: translateY(-8px) scale(1.015);
  }
}
@media (prefers-reduced-motion: reduce) {
  .addons-card-slot::before,
  .addons-card {
    transition: none;
  }
  .addons-card:hover,
  .addons-card:focus-within {
    transform: none;
  }
  .addons-card-slot:hover::before {
    opacity: 0.6;
  }
}

/* Footer */
.footer {
  padding: 3rem 2rem;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__copyright {
  font-size: 0.9rem;
  opacity: 0.7;
}
.footer__logo {
  display: flex;
  align-items: center;
  transition: opacity 0.12s ease;
}
.footer__logo:hover { transform: none; opacity: 0.65; }
.footer__logo-img { height: 26px; width: auto; }
.footer__nav {
  display: flex;
  gap: 2rem;
}
.footer__nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.9rem;
}
.footer__nav-link:hover { color: #E3D23A; }
.footer__nav-link--muted { color: rgba(255,255,255,0.32); }
.footer__nav-link--muted:hover { color: #E3D23A; }
.footer__social {
  display: flex;
  gap: 4px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  min-width: 36px;
  min-height: 36px;
  color: #fff;
  opacity: 0.65;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.footer__social-link:hover { opacity: 1; }
.footer__social-link:hover .footer__social-icon { background-color: #E3D23A; }
.footer__social-icon {
  display: block;
  width: 13px;
  height: 13px;
  background-color: rgba(255, 255, 255, 0.65);
  transition: background-color 0.2s ease;
  pointer-events: none;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
}
.footer__social-icon--patreon { -webkit-mask-image: url(../assets/icons/icon-patreon.svg); mask-image: url(../assets/icons/icon-patreon.svg); }
.footer__social-icon--github { -webkit-mask-image: url(../assets/icons/icon-github.svg); mask-image: url(../assets/icons/icon-github.svg); }
.footer__social-link:has(.footer__social-icon--github),
.footer__social-link:has(.footer__social-icon--instagram) { display: none; }
.footer__social-icon--youtube { -webkit-mask-image: url(../assets/icons/icon-youtube.svg); mask-image: url(../assets/icons/icon-youtube.svg); }
.footer__social-icon--twitter { -webkit-mask-image: url(../assets/icons/icon-twitter.svg); mask-image: url(../assets/icons/icon-twitter.svg); }
.footer__social-icon--instagram { -webkit-mask-image: url(../assets/icons/icon-instagram.svg); mask-image: url(../assets/icons/icon-instagram.svg); }
.footer__social-icon--tiktok { -webkit-mask-image: url(../assets/icons/icon-tiktok.svg); mask-image: url(../assets/icons/icon-tiktok.svg); }
/* Таблеты и мобильные (≤900px): уменьшаем hero и видео */
@media (max-width: 900px) {
  .hero { min-height: 50vh; max-width: 100%; }
  .hero__video { padding-top: 40px; padding-bottom: 40px; }
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    flex-wrap: wrap;
    padding: 1rem;
    gap: 1rem;
  }
  .header__nav { order: 3; width: 100%; justify-content: center; gap: 1.5rem; }
  .header__social { margin-left: auto; }
  .hero { max-width: 100%; }
  .hero__content { padding: 1rem; flex-wrap: wrap; gap: 0.5rem; }
  .hero { z-index: 20; overflow: visible; }
  .hero__content { justify-content: center; }
  .hero__left { max-width: 100%; padding: 25px 1rem; padding-bottom: max(env(safe-area-inset-bottom, 0px), 220px); align-items: center; }
  .hero__cta.addons-card__cta {
    align-self: center;
    margin-top: 20px;
    flex-shrink: 0;
    width: 90vw;
    min-width: 90vw;
    max-width: 90vw;
    box-sizing: border-box;
  }
  .hero__logo { max-width: 126px; }
  .hero__addon-icon { width: 26px; height: 23.15px; margin-top: 5px; margin-left: 0px; }
  .hero__blender-badge-link { display: none; }
  .hero__blender-badge { height: 22px; width: auto; }
  .hero__intro { font-size: 0.95rem; }
  .hero__intro-br-desktop { display: none; }
  .hero__features-title { font-size: 0.7rem; }
  .hero__features-list { font-size: 0.6rem; max-width: 100%; }
  .glass-block { margin-top: 2rem; padding-bottom: max(env(safe-area-inset-bottom, 0px), 100px); }
  .glass-block__img { display: none; }
  .glass-block__right .glass-block__item:nth-child(4) { margin-top: 0; }
  .docs-section { width: 90%; max-width: 90%; margin: 0 auto; padding: 2rem 1rem; box-sizing: border-box; position: relative; z-index: 15; background: #000; }
  .docs-section.docs-section--surface-clear { background: transparent; }
  #support { width: 90%; max-width: 90%; margin: 0 auto; height: auto; padding: 2rem 1rem; padding-bottom: 1.5rem; box-sizing: border-box; }
  .docs-section--surface-clear { width: 90%; max-width: 90%; margin: 0 auto; padding: 1.25rem 1rem 2rem; box-sizing: border-box; }
  .docs-section__title { font-size: 1.1rem; }
  .docs-section__text,
  .docs-section__list { font-size: 0.9rem; }
  .section-divider { margin: 0 1rem; }
  .section-divider--before-compatibility { display: block; margin-top: 50px; position: relative; z-index: 15; }
  .mapping-block { margin: -8.5rem auto 2rem; padding: 0.5rem 1rem 0; }
  .extraFeatures-block { padding: 2rem 1rem; }
  .extraFeatures-block__row { flex-direction: column; align-items: stretch; gap: 1rem; margin-bottom: 2.5rem; }
  .fpv-block { padding: 2rem 1rem; }
  .fpv-block__row { flex-direction: column; align-items: stretch; gap: 1.5rem; }
  .fpv-block__media { width: 100%; max-width: 280px; margin: 0 auto; }
  .extraFeatures-block__row--reverse { flex-direction: column-reverse; align-items: stretch; gap: 1rem; margin-bottom: 2.5rem; }
  .extraFeatures-block__placeholder { width: 100%; max-height: 140px; }
  .extraFeatures-block__media { width: 100%; }
  .extraFeatures-block__video { max-height: 140px; }
  .extraFeatures-block__text { font-size: 0.9rem; }
  .docs-section__cta { width: 100%; max-width: 100%; box-sizing: border-box; display: block; text-align: center; }
  .purchase-block__cta-group { align-items: stretch; width: 100%; }
  .license-picker { max-width: 100%; }
  .purchase-block__cta.addons-card__cta.purchase-block__cta--checkout {
    width: 100%;
    max-width: none;
    min-width: 0;
    box-sizing: border-box;
  }
  .purchase-block__cta.addons-card__cta:not(.purchase-block__cta--checkout) {
    width: 90vw;
    min-width: 90vw;
    max-width: 90vw;
    box-sizing: border-box;
  }
  .purchase-block { padding: 2rem 1rem; }
  .purchase-block__row { flex-wrap: wrap; gap: 1.5rem; }
  .purchase-block__panel { min-width: 0; max-width: 100%; flex: 1 1 100%; }
  .purchase-block__info { max-width: 100%; }
  .purchase-block__panel-body { padding: 0.75rem 1rem; font-size: 0.75rem; }
  .purchase-block__panel-logo { max-width: 136px; }
  .license-picker__price { font-size: 1.35rem; }
  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1rem;
    gap: 1.5rem;
  }
  .footer__brand { align-self: center; }
  .footer__nav { flex-wrap: nowrap; justify-content: center; width: 100%; gap: 1rem; }
  .footer__nav-link { font-size: 0.7rem; }
  .footer__social { align-self: center; }
  /* Sticky header wraps to two rows — 80px is too small; align with real header height */
  #top,
  #features,
  #support,
  #documentations,
  #purchase,
  #purchase-focus,
  .docs-section--surface-clear {
    scroll-margin-top: calc(132px + env(safe-area-inset-top, 0px));
  }
}

/* Узкие экраны (≤600px): features блок — картинка и пункты в колонку */
@media (max-width: 600px) {
  .glass-block { padding: 2rem 0 max(env(safe-area-inset-bottom, 0px), 100px); margin-top: 4rem; margin-bottom: 2rem; }
  .glass-block__img { display: none; }
  .glass-block__content {
    flex-wrap: wrap;
    height: auto;
    min-height: 0;
    max-width: 100%;
    margin-top: 12px;
    margin-bottom: 12px;
  }
  .glass-block__row {
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0 1rem;
    padding: 0 0.5rem;
  }
  .glass-block__left {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
    height: auto;
    min-height: 200px;
  }
  .glass-block__right {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }
  .glass-block__right .glass-block__item:nth-child(4) { margin-top: 0; }
  .glass-block__plugin-img { max-width: 100%; width: auto; height: auto; max-height: 600px; }
  .glass-block__item-placeholder { width: 80px; height: 60px; }
  .glass-block__right .glass-block__item:nth-child(5) .glass-block__item-placeholder { height: auto; min-height: 0; overflow: visible; width: auto; max-width: 120px; }
  .glass-block__item-text { font-size: 13px; }
  .glass-block__item-text--lead { font-size: 15px; }
  .glass-block__item-text--sub { font-size: 11px; }
}

/* Mobile: viewport 1020px — исправление пропорций (glassBlock крупнее, остальное мельче) */
.is-mobile .hero {
  min-height: min(55vh, 480px);
  z-index: 20;
  overflow: visible;
}
.is-mobile #features { max-width: 100%; }
.is-mobile .glass-block { padding-bottom: max(env(safe-area-inset-bottom, 0px), 100px); }
.is-mobile .glass-block__img {
  display: none;
}
.is-mobile .glass-block__right .glass-block__item:nth-child(4) { margin-top: 0; }
.is-mobile .hero__intro { font-size: 14px; }
.is-mobile .hero__features-list { font-size: 9px; }
.is-mobile .hero__logo { max-width: 114px; }
.is-mobile .hero__addon-icon { width: 26px; height: 23.15px; margin-top: 5px; margin-left: 0px; }
.is-mobile .hero__blender-badge-link { display: none; }
.is-mobile .hero__content { justify-content: center; }
.is-mobile .hero__left { max-width: 280px; padding: 25px 1rem; padding-bottom: max(env(safe-area-inset-bottom, 0px), 220px); align-items: center; }
.is-mobile .hero__cta.addons-card__cta {
  align-self: center;
  margin-top: 20px;
  flex-shrink: 0;
  width: 90vw;
  min-width: 90vw;
  max-width: 90vw;
  box-sizing: border-box;
}
.is-mobile .glass-block__item-text { font-size: 11px; }
.is-mobile .glass-block__item-text--lead { font-size: 12px; }
.is-mobile .glass-block__item-text--sub { font-size: 9px; }
.is-mobile .glass-block__plugin-img { max-height: 540px; }
.is-mobile .glass-block__item-placeholder { width: 70px; height: 52px; }
.is-mobile .glass-block__right .glass-block__item:nth-child(5) .glass-block__item-placeholder { width: auto; max-width: 100px; height: auto; min-height: 0; overflow: visible; }
.is-mobile .docs-section__title { font-size: 1rem; }
.is-mobile .docs-section__text,
.is-mobile .docs-section__list { font-size: 0.8rem; }
.is-mobile .header__nav-link { font-size: 12px; }
.is-mobile body.page-home .header__tagline { font-size: 12px; }
.is-mobile .header { padding: 0.75rem 1rem; }
.is-mobile .purchase-block__panel-body { font-size: 0.65rem; }
.is-mobile .footer__nav { flex-wrap: nowrap; justify-content: center; width: 100%; gap: 1rem; }
.is-mobile .footer__nav-link { font-size: 0.7rem; }
.is-mobile .footer__brand { align-self: center; }
.is-mobile .footer__social { align-self: center; }
.is-mobile .docs-section { width: 90%; max-width: 90%; margin: 0 auto; padding: 2rem 1rem; box-sizing: border-box; position: relative; z-index: 15; background: #000; }
.is-mobile .docs-section.docs-section--surface-clear { background: transparent; }
.is-mobile #support { width: 90%; max-width: 90%; margin: 0 auto; padding: 2rem 1rem; padding-bottom: 1.5rem; box-sizing: border-box; }
.is-mobile .docs-section--surface-clear { width: 90%; max-width: 90%; margin: 0 auto; padding: 1.25rem 1rem 2rem; box-sizing: border-box; }
.is-mobile .section-divider--before-compatibility { display: block; margin-top: 50px; position: relative; z-index: 15; }
.is-mobile .docs-section__cta { width: 100%; max-width: 100%; box-sizing: border-box; display: block; text-align: center; }
.is-mobile .fpv-block { padding: 2rem 1rem; }
.is-mobile .fpv-block__row { flex-direction: column; align-items: stretch; gap: 1.5rem; }
.is-mobile .fpv-block__media { width: 100%; max-width: 280px; margin: 0 auto; }
.is-mobile .purchase-block__cta-group { align-items: stretch; width: 100%; }
.is-mobile .purchase-block__cta.addons-card__cta.purchase-block__cta--checkout {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}
.is-mobile .purchase-block__cta.addons-card__cta:not(.purchase-block__cta--checkout) {
  width: 90vw;
  min-width: 90vw;
  max-width: 90vw;
  box-sizing: border-box;
}

@media (max-width: 430px) {
  .header__tagline-break-mobile { display: block; }
}

/* Paddle / checkout — success dialog + thank-you page (match selected .license-picker__card, darker glass) */
/* Closed <dialog> must not participate in layout — without explicit display:none, some UAs still paint children at end of body (scroll past footer). */
.checkout-success-dialog {
  display: none;
  padding: 0;
  border: none;
  background: transparent;
  margin: 0;
  box-sizing: border-box;
}
.checkout-success-dialog[open] {
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  width: 100%;
  max-width: 100vw;
  height: 100%;
  max-height: 100vh;
  max-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout-success-dialog::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
/* Same language as .license-picker__card:has(.license-picker__input:checked), darker base */
.checkout-success-dialog__panel,
.checkout-thank-you {
  width: min(100%, 520px);
  padding: 2.35rem 2.25rem 2rem;
  text-align: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #fff;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 10px 32px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 22px rgba(227, 210, 58, 0.14);
  box-sizing: border-box;
}
.checkout-success-dialog__panel {
  flex-shrink: 0;
  width: min(100%, 520px);
}
.checkout-thank-you {
  padding: 2.5rem 2.25rem 2.15rem;
}
.checkout-success-dialog__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.35rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.95) 0%, rgba(22, 163, 74, 0.98) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.45),
    0 0 28px rgba(34, 197, 94, 0.35);
}
.checkout-success-dialog__title {
  margin: 0 0 0.85rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.02em;
}
.checkout-success-dialog__text {
  margin: 0 0 1.65rem;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.55;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  color: rgba(255, 255, 255, 0.82);
}
.checkout-success-lead {
  display: block;
}
.checkout-success-emphasis {
  display: block;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.checkout-success-dialog__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}
.checkout-success-dialog__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #e3d23a;
  text-decoration: none;
}
.checkout-success-dialog__link:hover {
  color: #f0e566;
  text-decoration: underline;
}
.checkout-success-dialog__btn {
  display: block;
  width: 100%;
  padding: 0.7rem 1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 6px 20px rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.checkout-success-dialog__btn:hover {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Standalone thank-you page (blenderfly/thank-you.html) */
.page-thank-you {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #000;
}
.page-thank-you main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem 3rem;
}
.checkout-thank-you .checkout-success-dialog__icon {
  margin-bottom: 1.35rem;
}
.checkout-thank-you__title {
  margin: 0 0 0.85rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.02em;
}
.checkout-thank-you__text {
  margin: 0 0 1.65rem;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.55;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  color: rgba(255, 255, 255, 0.82);
}
.checkout-thank-you__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}
.checkout-thank-you__btn {
  display: block;
  width: 100%;
  padding: 0.7rem 1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 6px 20px rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.checkout-thank-you__btn:hover {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 8px 24px rgba(0, 0, 0, 0.3);
}
.checkout-thank-you__btn--secondary {
  border-color: rgba(227, 210, 58, 0.45);
  background: rgba(227, 210, 58, 0.08);
  color: #e3d23a;
}
.checkout-thank-you__btn--secondary:hover {
  border-color: rgba(227, 210, 58, 0.65);
  background: rgba(227, 210, 58, 0.14);
  color: #f0e566;
}
