.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;
}
/* Shared acquisition and card-handoff layout. Locale changes content only. */
.app-entry-card {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.app-entry-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 0.96fr);
  grid-template-areas: "visual copy";
  gap: 32px;
  align-items: stretch;
  width: 100%;
  padding: 42px;
  border-radius: 8px;
  border: 1px solid color-mix(in oklab, var(--border-strong) 72%, var(--border));
  background: linear-gradient(
    180deg,
    color-mix(in oklab, var(--card) 78%, var(--glass-top) 22%) 0%,
    color-mix(in oklab, var(--card-strong) 88%, var(--glass-bottom) 12%) 100%
  );
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  position: static;
  overflow: visible;
}
.app-entry-hero::before {
  content: none;
}
.hero-copy,
.hero-visual {
  position: static;
  z-index: auto;
}
.hero-visual {
  position: relative;
}
.hero-copy {
  grid-area: copy;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.app-entry-card h1 {
  max-width: 13ch;
  margin-bottom: 16px;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: 0;
}
.app-entry-card #pageLead {
  max-width: 44rem;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.62;
}
.cta-stack--hero {
  grid-template-areas:
    "web ios"
    "android vetka"
    "aux aux";
  max-width: 560px;
}
.cta-stack--hero .store-button {
  justify-content: flex-start;
  min-width: 0;
  min-height: 58px;
}
.cta-stack--hero .store-button__label {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: center;
}
.cta-stack--hero #vetkaProjectsButton {
  grid-area: vetka;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.feature-card {
  min-width: 0;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid color-mix(in oklab, var(--border-strong) 70%, var(--border));
  background: color-mix(in oklab, var(--surface-container-high) 82%, transparent);
  box-shadow: inset 0 1px 0 var(--inner-highlight);
  position: static;
  overflow: visible;
}
.seo-section,
.faq-section,
.faq-item {
  position: static;
  overflow: visible;
  border-radius: 8px;
}
.app-entry-card .card-links {
  justify-content: center;
  margin-top: 4px;
}
@media (max-width: 980px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .app-entry-hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "copy";
  }
  .cta-stack--hero {
    max-width: none;
  }
}
@media (max-width: 720px) {
  .app-entry-hero {
    gap: 18px;
    padding: 18px;
  }
  .app-entry-card h1 {
    max-width: none;
    font-size: clamp(1.9rem, 8.8vw, 2.4rem);
  }
  .app-entry-card #pageLead {
    font-size: 16px;
  }
  .cta-stack--hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "web ios"
      "android vetka"
      "aux aux";
    gap: 10px;
    max-width: none;
  }
  .cta-stack--hero .store-button {
    min-height: 54px;
    gap: 10px;
    padding: 12px 12px;
    font-size: 14px;
  }
  .cta-stack--hero .store-button__icon {
    width: 22px;
    height: 22px;
  }
  .cta-stack--hero .store-button__label {
    font-size: 14px;
    line-height: 1.2;
  }
  .cta-stack--hero .store-button__caption {
    font-size: 11px;
  }
  .hero-visual img {
    aspect-ratio: 16 / 10;
  }
  .hero-visual--share {
    padding-bottom: 66px;
  }
  .hero-visual--share img {
    max-height: min(54vh, 420px);
    padding: 14px;
  }
  .hero-visual--share figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}
.app-entry-hero--landing {
  align-items: stretch;
}
@media (min-width: 981px) {
  .app-entry-hero--landing .hero-visual {
    display: flex;
  }
  .app-entry-hero--landing .poster-zoom-trigger,
  .app-entry-hero--landing .hero-visual img {
    height: 100%;
  }
  .app-entry-hero--landing .hero-visual img {
    aspect-ratio: auto;
    object-fit: cover;
  }
}
.app-entry-hero--share {
  align-items: stretch;
}
.hero-copy--minimal {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
}
.hero-copy--panel {
  --hero-panel-label-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  position: relative;
}
.hero-copy--share {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
}
.hero-copy--minimal .cta-stack--hero {
  width: 100%;
  margin-top: 0;
}
.hero-copy--panel .cta-stack--hero {
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.hero-copy__title--landing {
  max-width: none !important;
  margin: 0 0 10px !important;
  font-size: clamp(1.475rem, calc(1.9vw + 2px), 2.125rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em !important;
  font-weight: 780 !important;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
.hero-copy__title--card {
  max-width: none !important;
  margin-bottom: 0 !important;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem) !important;
  line-height: 1.18 !important;
  letter-spacing: -0.02em !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-copy--share .cta-stack--hero {
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.app-entry-hero--share .hero-visual {
  align-self: start;
}
.hero-copy__title-row {
  width: 100%;
  position: relative;
  display: block;
  padding-right: 118px;
}
.hero-copy__title-row h1 {
  display: block;
  min-width: 0;
}
.hero-copy--panel .hero-copy__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-right: 0;
}
.hero-copy--panel .hero-copy__mode-toggle {
  position: static;
  min-height: 32px;
  padding: 7px 13px;
  font-size: var(--hero-panel-label-size);
  line-height: 1.15;
  flex: 0 0 auto;
}
.hero-copy__mode-toggle {
  position: absolute;
  top: 0;
  right: 0;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid color-mix(in oklab, var(--border-strong) 72%, var(--border));
  border-radius: 999px;
  background: color-mix(in oklab, var(--surface-container-high) 84%, transparent);
  box-shadow: inset 0 1px 0 var(--inner-highlight);
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 0.14s ease,
    border-color 0.14s ease,
    color 0.14s ease;
}
.hero-copy__mode-toggle:hover {
  color: var(--text);
  border-color: color-mix(in oklab, var(--border-strong) 82%, var(--primary));
  background: color-mix(in oklab, var(--surface-container-high) 60%, var(--primary) 14%);
}

.hero-switcher-panel {
  width: 100%;
  max-width: 560px;
  height: 172px;
  margin-top: 10px;
  flex: 0 0 auto;
  border: 1px solid color-mix(in oklab, var(--border-strong) 72%, var(--border));
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    color-mix(in oklab, var(--surface-container-highest) 92%, white 8%),
    color-mix(in oklab, var(--surface-container-high) 92%, black 8%)
  );
  box-shadow: inset 0 1px 0 var(--inner-highlight);
  overflow: hidden;
}
.hero-switcher-panel .hero-switcher-panel__viewport {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  overflow: auto;
  padding: 8px 12px;
  scrollbar-gutter: stable;
  color: var(--text-soft);
}
.hero-switcher-panel .hero-switcher-panel__content {
  width: 100%;
}
.hero-switcher-panel .hero-switcher-panel__content[hidden] {
  display: none;
}
.hero-switcher-panel .hero-switcher-panel__contact {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px solid color-mix(in oklab, var(--border-strong) 50%, transparent);
}
.hero-switcher-panel .hero-switcher-panel__contact:last-child {
  border-bottom: 0;
}
.hero-switcher-panel .hero-switcher-panel__contact-text {
  display: block;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
  user-select: text;
  cursor: text;
  font-size: 13px;
  line-height: 1.38;
  font-weight: 600;
  color: var(--text-soft);
}
.hero-switcher-panel .hero-switcher-panel__contact-icon {
  width: 30px;
  min-width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in oklab, var(--border-strong) 68%, var(--border));
  border-radius: 11px;
  background: color-mix(in oklab, var(--surface-container-high) 84%, transparent);
  color: var(--text);
  text-decoration: none;
  user-select: none;
  transition:
    background 0.14s ease,
    border-color 0.14s ease,
    color 0.14s ease,
    transform 0.14s ease;
}
.hero-switcher-panel a.hero-switcher-panel__contact-icon {
  cursor: pointer;
}
.hero-switcher-panel a.hero-switcher-panel__contact-icon:hover,
.hero-switcher-panel a.hero-switcher-panel__contact-icon:focus-visible {
  color: var(--text);
  border-color: color-mix(in oklab, var(--border-strong) 82%, var(--primary));
  background: color-mix(in oklab, var(--surface-container-high) 60%, var(--primary) 14%);
  transform: translateY(-1px);
}
.hero-switcher-panel span.hero-switcher-panel__contact-icon {
  cursor: default;
}
.hero-switcher-panel .hero-switcher-panel__contact-icon svg {
  display: block;
  width: calc(30px - 12px);
  height: calc(30px - 12px);
}
.hero-switcher-panel .hero-switcher-panel__contact-icon--telegram {
  color: #8fd8ff;
}
.hero-switcher-panel .hero-switcher-panel__contact-icon--website {
  color: #d7c2ff;
}
.hero-switcher-panel .hero-switcher-panel__contact-icon--phone {
  color: #9ef3bf;
}
.hero-switcher-panel .hero-switcher-panel__contact-icon--email {
  color: #ffd59a;
}
.hero-switcher-panel .hero-switcher-panel__contact-icon--instagram {
  color: #ff9ad7;
}
.hero-switcher-panel .hero-switcher-panel__contact-icon--whatsapp {
  color: #9ef3bf;
}
.hero-switcher-panel .hero-switcher-panel__contact-icon--facebook,
.hero-switcher-panel .hero-switcher-panel__contact-icon--linkedin,
.hero-switcher-panel .hero-switcher-panel__contact-icon--x,
.hero-switcher-panel .hero-switcher-panel__contact-icon--youtube {
  color: #b8c8ff;
}
.hero-switcher-panel .hero-switcher-panel__description {
  margin: 0;
  display: block;
  width: 100%;
  user-select: text;
  cursor: text;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  text-align: left;
  font-size: 13px;
  line-height: 1.5;
  color: color-mix(in oklab, var(--text-soft) 88%, var(--muted));
}
.hero-switcher-panel .hero-switcher-panel__business-url {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid color-mix(in oklab, var(--border-strong) 50%, transparent);
}
.hero-switcher-panel .hero-switcher-panel__description:empty +
  .hero-switcher-panel__business-url {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.hero-switcher-panel .hero-switcher-panel__business-url-text {
  min-width: 0;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
  user-select: text;
  cursor: text;
  font-size: 13px;
  line-height: 1.38;
  font-weight: 600;
  color: var(--text-soft);
}
.hero-switcher-panel .hero-switcher-panel__empty {
  width: 100%;
  margin: 0;
  user-select: text;
  cursor: text;
  padding: 2px 0;
  font-size: 13px;
  line-height: 1.5;
  color: color-mix(in oklab, var(--text-soft) 68%, var(--muted));
}
.hero-switcher-panel .hero-switcher-panel__content--description {
  text-align: left;
}
@media (max-width: 980px) {
  .hero-switcher-panel {
    max-width: none;
    height: clamp(188px, 32vw, 244px);
    margin-top: 18px;
  }
  .hero-switcher-panel .hero-switcher-panel__viewport {
    padding: 10px 14px;
  }
  .hero-switcher-panel .hero-switcher-panel__contact {
    gap: 11px;
    padding: 7px 0;
  }
  .hero-switcher-panel .hero-switcher-panel__contact-text,
  .hero-switcher-panel .hero-switcher-panel__description,
  .hero-switcher-panel .hero-switcher-panel__business-url-text,
  .hero-switcher-panel .hero-switcher-panel__empty {
    font-size: 14px;
    line-height: 1.48;
  }
  .hero-switcher-panel .hero-switcher-panel__empty {
    padding: 4px 0;
  }
  .hero-switcher-panel .hero-switcher-panel__contact-icon {
    width: 34px;
    min-width: 34px;
    height: 34px;
    border-radius: 12px;
  }
  .hero-switcher-panel .hero-switcher-panel__contact-icon svg {
    width: calc(34px - 14px);
    height: calc(34px - 14px);
  }
}
@media (max-width: 720px) {
  .hero-switcher-panel {
    height: clamp(184px, 48vw, 228px);
    margin-top: 16px;
  }
  .hero-switcher-panel .hero-switcher-panel__viewport {
    padding: 9px 12px;
  }
  .hero-switcher-panel .hero-switcher-panel__contact {
    gap: 10px;
    padding: 6px 0;
  }
  .hero-switcher-panel .hero-switcher-panel__contact-text,
  .hero-switcher-panel .hero-switcher-panel__description,
  .hero-switcher-panel .hero-switcher-panel__business-url-text,
  .hero-switcher-panel .hero-switcher-panel__empty {
    font-size: 13px;
    line-height: 1.46;
  }
  .hero-switcher-panel .hero-switcher-panel__empty {
    padding: 4px 0;
  }
  .hero-switcher-panel .hero-switcher-panel__contact-icon {
    width: 34px;
    min-width: 34px;
    height: 34px;
    border-radius: 12px;
  }
  .hero-switcher-panel .hero-switcher-panel__contact-icon svg {
    width: calc(34px - 14px);
    height: calc(34px - 14px);
  }
}
.hero-switcher-panel--compact {
  max-width: none;
  height: auto;
  min-height: 84px;
  margin-top: 8px;
}
.hero-switcher-panel--compact .hero-switcher-panel__viewport {
  padding: 8px 12px;
}
.hero-switcher-panel--compact .hero-switcher-panel__contact {
  padding: 4px 0;
}
.hero-switcher-panel--compact .hero-switcher-panel__contact-text,
.hero-switcher-panel--compact .hero-switcher-panel__description,
.hero-switcher-panel--compact .hero-switcher-panel__empty {
  font-size: 12.5px;
  line-height: 1.42;
}
.hero-switcher-panel--compact .hero-switcher-panel__contact-icon {
  width: 28px;
  min-width: 28px;
  height: 28px;
  border-radius: 10px;
}
.app-entry-hero--landing .cta-stack--hero .store-button {
  min-height: 70px;
  padding-top: 16px;
  padding-bottom: 16px;
}
body.landing-page::after {
  background-image: none;
}
body.landing-page .footer {
  box-shadow: none;
}
body.landing-page .feature-card::before {
  content: none;
}
body.seo-landing-page .seo-section,
body.seo-landing-page .faq-section {
  padding: 18px;
}
body.seo-landing-page .seo-section h2,
body.seo-landing-page .faq-section > h2 {
  margin-top: 0;
}
body.seo-landing-page .landing-scenario-links {
  gap: 8px 12px;
}
body.seo-landing-page .landing-scenario-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 11px;
  border: 1px solid color-mix(in oklab, var(--border-strong) 70%, var(--border));
  border-radius: 8px;
  background: color-mix(in oklab, var(--surface-container-high) 82%, transparent);
  color: var(--text-soft);
  text-decoration: none;
}
body.seo-landing-page .landing-scenario-links a:hover {
  border-color: color-mix(in oklab, var(--secondary) 44%, var(--border));
  color: var(--text);
}
.landing-scenario-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 12px;
}
.landing-scenario-links a {
  font-weight: 700;
}
.poster-zoom-trigger {
  appearance: none;
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: inherit;
  cursor: zoom-in;
}
.poster-zoom-trigger img {
  pointer-events: none;
}
.poster-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 28px);
}
.poster-lightbox[hidden] {
  display: none;
}
.poster-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 20, 0.82);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  backdrop-filter: blur(10px) saturate(140%);
}
.poster-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(96vw, 1280px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.poster-lightbox__close {
  appearance: none;
  padding: 10px 14px;
  border: 1px solid color-mix(in oklab, var(--border-strong) 72%, var(--border));
  border-radius: 14px;
  background: color-mix(in oklab, var(--surface-container-high) 84%, transparent);
  box-shadow: inset 0 1px 0 var(--inner-highlight);
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
}
.poster-lightbox__close:hover {
  color: var(--text);
  background: color-mix(in oklab, var(--surface-container-high) 68%, var(--primary) 18%);
}
.poster-lightbox__frame {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 2vw, 20px);
  border: 1px solid color-mix(in oklab, var(--border-strong) 72%, var(--border));
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    color-mix(in oklab, var(--card-strong) 94%, var(--surface-container-highest) 6%),
    color-mix(in oklab, var(--surface-container-high) 96%, var(--glass-bottom) 4%)
  );
  box-shadow:
    var(--shadow),
    inset 0 1px 0 var(--inner-highlight);
}
.poster-lightbox__image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  object-fit: contain;
  border-radius: 16px;
  cursor: zoom-out;
}
html.poster-lightbox-open,
body.poster-lightbox-open {
  overflow: hidden;
}
@media (min-width: 981px) {
  .hero-copy--share .cta-stack--hero {
    transform: translateY(6px);
  }
}
@media (max-width: 980px) {
  .hero-copy--panel {
    --hero-panel-label-size: 13px;
  }
}
@media (max-width: 720px) {
  .hero-copy__title--landing {
    font-size: clamp(1.675rem, calc(7.5vw + 2px), 2.025rem) !important;
  }
  .hero-copy--panel .cta-stack--hero {
    margin-top: 20px;
  }
  .app-entry-hero--landing .cta-stack--hero .store-button {
    min-height: 58px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .hero-copy__title--card {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    font-size: clamp(1.45rem, 6vw, 1.75rem) !important;
  }
  .hero-copy--panel {
    --hero-panel-label-size: 13px;
  }
  .hero-copy__title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding-right: 0;
  }
  .hero-copy__mode-toggle {
    position: static;
    min-height: 30px;
    padding: 8px 11px;
    font-size: 12px;
  }
  .hero-copy--share .cta-stack--hero {
    margin-top: 24px;
  }
  .poster-lightbox__dialog {
    width: min(100vw - 24px, 960px);
  }
  .poster-lightbox__close {
    padding: 9px 12px;
    font-size: 13px;
  }
}
.meta-note {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}
