﻿:root {
  color-scheme: dark;
  --bg: var(--srm-canvas, #060912);
  --panel: var(--srm-surface-1, #0b1120);
  --panel-2: var(--srm-surface-2, #10192b);
  --line: var(--srm-border-subtle, rgba(184, 216, 214, 0.16));
  --text: var(--srm-text-primary, #f3f6f5);
  --muted: var(--srm-text-muted, #9daaa8);
  --soft: var(--srm-text-secondary, #d8e4df);
  --accent: var(--srm-accent-2, #7d6dff);
  --accent-2: var(--srm-accent, #4d84ff);
  --danger: var(--srm-error, #f17272);
  --shadow: var(--srm-shadow-lg, 0 24px 80px rgba(0, 0, 0, 0.42));
}

* {
  box-sizing: border-box;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    linear-gradient(180deg, rgba(9, 17, 18, 0.94), rgba(4, 8, 9, 0.98)),
    #060912;
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(6, 13, 14, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 18px;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(125, 109, 255, 0.16);
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.nav a {
  min-height: 36px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

.entry-menu { position: relative; }
.entry-menu summary,
.entry-link {
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  list-style: none;
  white-space: nowrap;
}
.entry-menu summary::-webkit-details-marker { display: none; }
.entry-menu summary:hover, .entry-menu summary:focus-visible, .entry-menu[open] summary,
.entry-link:hover, .entry-link:focus-visible { background: rgba(255, 255, 255, 0.07); color: var(--text); outline: none; }
.entry-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 20;
  min-width: 190px;
  display: grid;
  gap: 4px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #090c13;
  box-shadow: var(--shadow);
}
.entry-menu-panel a { border-radius: 6px; }

.section {
  position: relative;
  padding: 96px 0;
}

.section.compact {
  padding: 74px 0;
}

.hero {
  min-height: min(780px, calc(100svh - 120px));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 56px;
  background: #060912;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(99, 89, 196, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(4, 7, 13, 0.12), rgba(4, 7, 13, 0.68)),
    linear-gradient(90deg, rgba(4, 7, 13, 0.98) 0%, rgba(4, 7, 13, 0.92) 43%, rgba(4, 7, 13, 0.38) 74%, rgba(4, 7, 13, 0.58) 100%);
  pointer-events: none;
}

.hero-wrap {
  position: relative;
  z-index: 1;
  display: block;
  align-items: center;
}

.hero-copy {
  max-width: 690px;
}

.hero-logo {
  width: 136px;
  height: 136px;
  object-fit: contain;
  border-radius: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.9;
  font-weight: 900;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.lead {
  max-width: 620px;
  color: var(--soft);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.48;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  color: var(--text);
}

.button.primary {
  background: linear-gradient(180deg, #7d6dff, #4d84ff);
  box-shadow: 0 18px 45px rgba(45, 194, 174, 0.22);
}

.button.subtle {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.hero-stats span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
}

.hero-stats img {
  width: 24px;
  height: 24px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  clip-path: inset(5% round 24%);
  transform: scale(1.18);
  background: #080a0e;
}

.hero-stats img.platform-icon-web,
.platform-logos img.platform-icon-web {
  object-fit: contain;
  clip-path: none;
  transform: none;
  background: transparent;
}

.hero-platform-symbol {
  display: block;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 7px;
}

.hero-stats .hero-platform-web {
  border: 1px solid rgba(255, 255, 255, .11);
  background: #080a0e url("assets/support/contact-platform-strip.png") 94% 50% / 420% auto no-repeat;
}

.platform-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.platform-logos span,
.payment-brands span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px 8px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, .035);
}

.platform-logos img {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  object-fit: cover;
  object-position: center;
  clip-path: inset(5% round 23%);
  transform: scale(1.16);
  background: #080a0e;
}

.platform-logo-symbol {
  display: block;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 8px;
}

.platform-logos .platform-logo-web {
  border: 1px solid rgba(255, 255, 255, .11);
  background-color: #080a0e;
  background-image: url("assets/support/contact-platform-strip.png");
  background-repeat: no-repeat;
  background-position: 94% 50%;
  background-size: 420% auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 8px 20px rgba(0, 0, 0, .3);
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
}

.download-grid,
.document-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

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

.download-card,
.document-grid a,
.feature-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.18);
}

.download-card,
.document-grid a {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
}

.download-card:hover,
.document-grid a:hover {
  border-color: rgba(125, 109, 255, 0.44);
  background: rgba(125, 109, 255, 0.08);
}

.download-card strong,
.document-grid strong {
  font-size: 18px;
}

.download-card span,
.document-grid span {
  color: var(--muted);
  line-height: 1.45;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid article {
  min-height: 220px;
  padding: 24px;
}

.feature-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.apps-section {
  padding-top: 36px;
}

.app-catalog {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.app-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.app-card-main {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
}

.app-card-secondary {
  max-width: 680px;
  margin-top: 10px;
}

.app-preview {
  width: 100%;
  min-height: 360px;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #060912;
  cursor: zoom-in;
  overflow: hidden;
}

.app-preview img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: contain;
  object-position: top center;
  transition: transform 180ms ease, filter 180ms ease;
}

.app-preview:hover img,
.app-preview:focus-visible img {
  transform: scale(1.025);
  filter: brightness(1.08);
}

.app-card-body {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.app-tag {
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(125, 109, 255, 0.28);
  border-radius: 999px;
  color: var(--accent-2);
  background: rgba(125, 109, 255, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.app-card-body p {
  color: var(--muted);
  line-height: 1.5;
}

.app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.disabled-label {
  cursor: default;
  opacity: 0.62;
}

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid rgba(125, 109, 255, 0.34);
  border-radius: 8px;
  color: var(--accent);
  background: rgba(125, 109, 255, 0.08);
}

.icon svg {
  display: block;
  width: 20px;
  height: 20px;
  margin: auto;
  stroke-width: 1.8;
}

:where(
  .hero-stats,
  .quote-total,
  .quote-details,
  .period-options,
  .result-details,
  .price,
  [data-price]
) {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

.demo-board {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.75fr);
  gap: 32px;
  align-items: start;
  margin-top: 30px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.demo-copy {
  position: sticky;
  top: 96px;
}

.demo-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
}

.demo-downloads {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 18px;
}

.demo-downloads .button {
  min-width: 0;
  min-height: 42px;
  padding: 10px 12px;
  font-size: 13px;
  text-align: center;
}

.demo-shots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.demo-shots figure {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  margin: 0;
  padding: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 8, 12, 0.76);
}

.demo-shot__media {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #07090c;
}

.demo-shots img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border: 0;
}

.demo-shot--phone .demo-shot__media {
  align-items: center;
  background: transparent;
}

.demo-shot--phone img {
  width: min(100%, 320px);
}

.demo-shots figcaption {
  min-height: 70px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.demo-shots figcaption strong,
.demo-shots figcaption span {
  display: block;
}

.demo-shots figcaption strong {
  margin-bottom: 5px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.35;
}

.request-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 36px;
  align-items: start;
}

.support-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.support-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.support-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.support-link:hover,
.support-link:focus-visible {
  border-color: rgba(125, 109, 255, 0.48);
  background: rgba(125, 109, 255, 0.08);
  outline: none;
}

.support-link strong {
  font-size: 18px;
}

.support-link span {
  color: var(--muted);
  text-align: right;
}

.support-link.whatsapp strong {
  color: #67e6a3;
}

.support-link.telegram strong {
  color: #7dccff;
}

.support-link.email strong {
  color: var(--accent-2);
}

.support-form {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 36px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.faq-list summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 20px;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list summary:focus-visible {
  outline: 2px solid rgba(125, 109, 255, 0.66);
  outline-offset: 2px;
}

.faq-list p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
  line-height: 1.55;
}

.sticky-head {
  position: sticky;
  top: 110px;
}

.request-form {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

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

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label span {
  color: var(--soft);
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(207, 229, 225, 0.18);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--text);
  background: rgba(2, 6, 7, 0.72);
  outline: none;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(125, 109, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(125, 109, 255, 0.13);
}

.wide,
.server-line {
  margin-top: 14px;
}

.purchase-guidance {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(125, 109, 255, 0.24);
  border-radius: 8px;
  background: rgba(7, 12, 24, 0.72);
}

.purchase-guidance strong { color: var(--text); }
.purchase-guidance p, .field-note { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.period-options { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; margin-top: 10px; }
.period-options button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(125, 109, 255, 0.10);
  font-weight: 700;
}
.period-options button:hover, .period-options button:focus-visible { border-color: rgba(125, 109, 255, 0.70); background: rgba(125, 109, 255, 0.18); }
.period-options span { color: #cfc9ff; font-size: 12px; }

.quote-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 16px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(125, 109, 255, 0.28);
  border-radius: 8px;
  background: rgba(125, 109, 255, 0.08);
}

.quote-box span,
.quote-box small {
  color: var(--muted);
}

.quote-box strong {
  font-size: 26px;
  line-height: 1;
}

.quote-box small {
  grid-column: 1 / -1;
  line-height: 1.45;
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 18px;
}

.consent input {
  min-height: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--accent);
}

.consent span {
  color: var(--muted);
  font-weight: 500;
  line-height: 1.45;
}

.form-status {
  min-height: 22px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.form-status.ok {
  color: var(--accent);
}

.form-status.error {
  color: var(--danger);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox__inner {
  position: relative;
  width: min(1120px, 100%);
  max-height: calc(100vh - 44px);
}

.image-lightbox__crop {
  position: relative;
  display: block;
  overflow: hidden;
  max-width: 100%;
  max-height: calc(100vh - 44px);
  border: 1px solid rgba(216, 228, 223, 0.26);
  border-radius: 8px;
  background: #050809;
  box-shadow: var(--shadow);
}

.image-lightbox img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
}

.image-lightbox button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(216, 228, 223, 0.34);
  border-radius: 8px;
  color: var(--text);
  background: rgba(7, 16, 17, 0.86);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-wrap {
  display: grid;
  gap: 20px;
}

.footer-brand,
.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.footer-brand strong {
  color: var(--text);
}

.footer-legal {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.footer-legal div {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .025);
}

.footer-legal span,
.footer-legal strong,
.footer-legal a {
  display: block;
  overflow-wrap: anywhere;
}

.footer-legal span { margin-bottom: 5px; font-size: 12px; }
.footer-legal strong { color: var(--text); font-size: 13px; }
.footer-disclosure { max-width: 1050px; margin: 0; font-size: 12px; line-height: 1.55; }

.copy-row {
  display: flex !important;
  align-items: center;
  gap: 7px;
}

.copy-button {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--soft);
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
}

.copy-button:hover,
.copy-button:focus-visible,
.copy-button.copied {
  border-color: rgba(222, 229, 238, .3);
  color: var(--text);
  background: rgba(255, 255, 255, .08);
  outline: none;
}

.footer-wrap a {
  color: var(--accent-2);
}

.footer-social {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.footer-social:hover,
.footer-social:focus-visible {
  border-color: rgba(125, 109, 255, 0.46);
  background: rgba(125, 109, 255, 0.08);
  outline: none;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social.whatsapp {
  color: #67e6a3;
}

.footer-social.telegram {
  color: #7dccff;
}

.doc-page {
  background: #060912;
}

.doc-shell {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 80px;
}

.doc-shell article {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.doc-shell h1 {
  font-size: clamp(36px, 6vw, 64px);
}

.doc-shell h2 {
  margin-top: 34px;
  font-size: 28px;
}

.doc-shell p,
.doc-shell li {
  color: var(--soft);
  line-height: 1.65;
}

.doc-shell .back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--accent-2);
}

@media (max-width: 1279px) {
  .demo-board {
    grid-template-columns: 1fr;
  }

  .demo-copy {
    position: static;
  }
}

@media (max-width: 980px) {
  .hero-wrap,
  .request-layout,
  .support-layout,
  .faq-layout,
  .app-card-main {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .sticky-head {
    position: static;
  }
}

@media (orientation: landscape) and (max-height: 620px) {
  .section {
    padding: 52px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 88px;
    padding-bottom: 36px;
  }

  .hero-logo {
    width: 82px;
    height: 82px;
    margin-bottom: 16px;
    border-radius: 22px;
  }

  .hero-copy h1 {
    font-size: clamp(44px, 7vw, 76px);
  }

  .hero-copy .lead {
    max-width: 560px;
    font-size: 16px;
  }

  .hero-actions,
  .hero-stats {
    margin-top: 16px;
  }

  .device-frame {
    width: min(100%, 250px);
    max-height: calc(100vh - 140px);
  }

  .demo-board {
    gap: 18px;
    margin-top: 28px;
    padding: 18px;
  }
}
@media (max-width: 767px) {
  .period-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .request-form .period-field { grid-column: 1 / -1; }
  .footer-legal { grid-template-columns: 1fr; }
  body {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .site-header {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    min-height: 76px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    border-bottom: 0;
    background: rgba(6, 13, 14, 0.94);
  }

  .brand {
    display: none;
  }

  .nav {
    width: min(100%, 430px);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
    overflow: visible;
  }

  .nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 8px 2px;
    font-size: 12px;
    text-align: center;
  }

  .entry-menu summary,
  .entry-link {
    min-height: 100%;
    justify-content: center;
    padding: 8px 2px;
    font-size: 12px;
    text-align: center;
  }

  .entry-menu-panel {
    top: auto;
    right: 0;
    bottom: calc(100% + 10px);
  }

  .wrap,
  .doc-shell {
    width: min(100% - 24px, 1180px);
  }

  .section,
  .section.compact {
    padding: 38px 0;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
    padding-top: 36px;
    padding-bottom: 34px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(4, 7, 13, 0.48), rgba(4, 7, 13, 0.94) 66%, rgba(4, 7, 13, 0.98)),
      linear-gradient(90deg, rgba(4, 7, 13, 0.74), rgba(4, 7, 13, 0.44));
  }

  .hero-logo {
    display: none;
  }

  .hero-wrap {
    gap: 18px;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    max-width: none;
  }

  .hero-copy h1 {
    order: 1;
    margin-bottom: 10px;
    font-size: 52px;
    line-height: 0.92;
  }

  .hero-copy .eyebrow {
    order: 2;
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.35;
  }

  .hero-copy .lead {
    order: 3;
    margin-bottom: 0;
    font-size: 15.5px;
    line-height: 1.45;
  }

  .hero-actions {
    order: 4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .hero-stats {
    order: 5;
    gap: 6px;
    margin-top: 14px;
  }

  .hero-stats span {
    padding: 6px 9px;
    font-size: 11.5px;
  }

  .button {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .download-grid,
  .document-grid,
  .feature-grid,
  .app-catalog {
    grid-template-columns: 1fr;
  }

  .app-card-main {
    grid-template-columns: 1fr;
  }

  .app-preview,
  .app-preview img {
    min-height: 220px;
  }

  .app-card-body {
    padding: 16px;
  }

  .app-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-top: 12px;
  }

  .demo-board {
    margin-top: 36px;
    padding: 18px;
  }

  .demo-shots {
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: visible;
    padding: 0;
  }

  .demo-shots figure {
    width: 100%;
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .form-grid label:nth-child(1),
  .form-grid label:nth-child(3) {
    grid-column: 1 / -1;
  }

  .request-layout {
    gap: 14px;
  }

  .support-layout {
    gap: 14px;
  }

  .support-layout .section-head {
    margin-bottom: 0;
  }

  .support-layout .section-head h2 {
    font-size: 28px;
    line-height: 1.02;
  }

  .support-layout .section-head p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.4;
  }

  .support-links {
    gap: 8px;
    margin-top: 14px;
  }

  .support-link {
    min-height: 58px;
    padding: 12px;
  }

  .support-link strong {
    font-size: 15px;
  }

  .support-link span {
    font-size: 12px;
  }

  .support-form {
    padding: 14px;
  }

  .support-form-grid {
    grid-template-columns: 1fr;
  }

  .request-layout .section-head {
    margin-bottom: 0;
  }

  .request-layout .section-head .eyebrow {
    margin-bottom: 8px;
  }

  .request-layout .section-head h2 {
    margin-bottom: 0;
    font-size: 28px;
    line-height: 1.02;
  }

  .request-layout .section-head p:not(.eyebrow) {
    display: none;
  }

  .request-form,
  .demo-board,
  .doc-shell article {
    padding: 14px;
  }

  .demo-board {
    gap: 14px;
    margin-top: 28px;
  }

  .demo-copy h2 {
    font-size: 26px;
    line-height: 1.05;
  }

  .demo-copy p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.4;
  }

  .demo-shots {
    gap: 8px;
  }

  label {
    gap: 5px;
  }

  label span {
    font-size: 12px;
    line-height: 1.2;
  }

  input,
  select,
  textarea {
    min-height: 40px;
    padding: 9px 10px;
    font-size: 13px;
  }

  textarea {
    min-height: 72px;
  }

  .wide,
  .server-line {
    margin-top: 9px;
  }

  .quote-box {
    grid-template-columns: 1fr;
    margin-top: 12px;
    padding: 12px;
  }

  .quote-box strong {
    font-size: 22px;
  }

  .consent {
    margin-top: 12px;
  }

  .consent span {
    font-size: 12px;
    line-height: 1.35;
  }

  .form-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .footer-wrap,
  .footer-brand,
  .footer-contacts {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-social {
    width: 100%;
    justify-content: center;
  }
}

/* Premium background and single-product catalog polish. */
body {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(4, 8, 15, .94), rgba(2, 5, 10, .98)),
    #05080d;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -2;
  pointer-events: none;
}

body::before {
  background:
    radial-gradient(circle at 18% 12%, rgba(125, 109, 255, .16), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(118, 90, 255, .14), transparent 30%),
    radial-gradient(circle at 54% 86%, rgba(52, 211, 153, .08), transparent 34%);
  filter: blur(2px);
  animation: premiumGlow 18s ease-in-out infinite alternate;
}

body::after {
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(255,255,255,.045), transparent 26%, rgba(125,109,255,.045) 48%, transparent 68%),
    rgba(4, 9, 14, .52);
  backdrop-filter: blur(1px);
  opacity: .72;
}

@keyframes premiumGlow {
  0% { transform: translate3d(-1.5%, -1%, 0) scale(1); opacity: .72; }
  100% { transform: translate3d(1.5%, 1%, 0) scale(1.04); opacity: .95; }
}

.site-header,
.hero-card,
.feature-card,
.app-card,
.support-form,
.quote-box {
  background-color: rgba(8, 15, 24, .74);
  backdrop-filter: blur(22px) saturate(1.1);
}

.app-catalog {
  grid-template-columns: 1fr;
}

.app-card-main {
  width: 100%;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
}

.app-card-secondary {
  display: none !important;
}

.app-preview {
  min-height: 0;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 50% 5%, rgba(125,109,255,.12), transparent 36%),
    #05080d;
}

.app-preview img {
  min-height: 0;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.image-lightbox {
  padding: clamp(12px, 3vw, 28px);
  background: rgba(0, 0, 0, .86);
}

.image-lightbox__inner {
  width: min(1280px, 96vw);
  max-height: 88vh;
  display: grid;
  place-items: center;
}

.image-lightbox__crop {
  max-width: 100%;
  max-height: 88vh;
}

.image-lightbox img {
  cursor: zoom-out;
}

.image-lightbox button {
  display: grid;
  place-items: center;
  font-weight: 800;
}

@media (max-width: 820px) {
  .app-card-main {
    grid-template-columns: 1fr;
  }

  .app-preview {
    aspect-ratio: 4 / 3;
  }
}

.nav a.active {
  color: var(--text);
  background: rgba(89, 114, 255, .14);
  border-color: rgba(125, 143, 255, .28);
}

.payment-methods {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.payment-methods legend {
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 700;
}

.payment-method {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(142, 159, 194, .2);
  border-radius: 8px;
  background: rgba(8, 15, 27, .76);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.payment-method:hover,
.payment-method.selected {
  border-color: rgba(111, 131, 255, .58);
  background: rgba(24, 35, 68, .88);
}

.payment-method input {
  width: 18px;
  height: 18px;
  accent-color: #7b83ff;
}

.payment-method span,
.payment-method strong,
.payment-method small {
  display: block;
}

.payment-method small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.4;
}

.payment-method em {
  padding: 5px 8px;
  border: 1px solid rgba(111, 131, 255, .38);
  border-radius: 6px;
  color: #cbd2ff;
  font-size: 12px;
  font-style: normal;
}

.payment-info-section {
  border-block: 1px solid rgba(142, 159, 194, .12);
  background: rgba(4, 9, 17, .46);
}

.payment-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.info-card {
  padding: clamp(16px, 1.7vw, 21px) clamp(22px, 2.6vw, 34px);
  border: 1px solid rgba(142, 159, 194, .18);
  border-radius: 8px;
  background: rgba(10, 18, 32, .88);
}

.info-card h2 { margin: 2px 0 10px; font-size: clamp(22px, 1.8vw, 28px); }
.info-card p, .info-card li { color: var(--muted); line-height: 1.36; }
.info-card ol { margin: 0 0 10px; padding-left: 20px; }
.info-card a:not(.button) { color: #cbd2ff; }

.merchant-card dl,
.merchant-details { margin: 0 0 18px; }
.merchant-card dl div,
.merchant-details div {
  display: grid;
  grid-template-columns: minmax(120px, .8fr) 1.2fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(142, 159, 194, .12);
}
.merchant-card dt, .merchant-details dt { color: var(--muted); }
.merchant-card dd, .merchant-details dd { margin: 0; color: var(--text); }
.placeholder-value { color: #f0b7b7 !important; }

.payment-brands {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}
.payment-brands img { width: 46px; height: 46px; border-radius: 8px; object-fit: cover; clip-path: inset(3px round 7px); transform: scale(1.06); }
.payment-brands b { font-size: 14px; }

.result-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
  background: radial-gradient(circle at 20% 10%, rgba(67, 83, 181, .2), transparent 34%), #050a12;
}
.result-card {
  width: min(100%, 620px);
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid rgba(142, 159, 194, .22);
  border-radius: 8px;
  background: rgba(9, 17, 31, .96);
  box-shadow: var(--shadow);
}
.result-card > img { width: 64px; height: 64px; border-radius: 8px; }
.result-card h1 { margin: 8px 0 12px; }
.result-card > p:not(.eyebrow):not(.form-status) { color: var(--muted); line-height: 1.55; }
.result-details { display: grid; grid-template-columns: .7fr 1.3fr; gap: 8px 14px; margin: 22px 0; padding: 16px; border-radius: 8px; background: rgba(20, 31, 52, .8); }
.result-details span { color: var(--muted); }
.result-details strong { color: var(--text); overflow-wrap: anywhere; }

.legal-warning {
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(128, 142, 255, .35);
  border-radius: 8px;
  background: rgba(54, 65, 132, .2);
  color: #d6dcff;
  line-height: 1.5;
}

body.legal {
  min-height: 100vh;
  padding: 0;
  background: #060708;
}
body.legal::before {
  inset: -22%;
  background: radial-gradient(circle at 50% 12%, rgba(255, 255, 255, .055), transparent 42%);
  filter: blur(72px);
  opacity: .72;
  animation: none;
}
body.legal::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, .012), transparent 38%, rgba(0, 0, 0, .22));
}
body.legal main {
  width: min(1180px, calc(100% - 40px));
  display: grid;
  gap: 22px;
  margin: 0 auto;
  padding: 48px 0 64px;
}
body.legal main > * { margin-block: 0; }
body.legal main > h1 { font-size: clamp(36px, 5vw, 64px); line-height: 1.02; }
.legal-titlebar { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.legal-titlebar > div { min-width: 0; }
.legal-titlebar h1 { margin: 5px 0 0; font-size: clamp(36px, 5vw, 64px); line-height: 1.02; }
.legal-language-switch,
.merchant-language-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  justify-self: start;
  gap: 4px;
  padding: 4px;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  background: #111;
}
.merchant-language-switch { margin: 18px 0; }
.legal-language-switch button,
.merchant-language-switch button {
  min-width: 92px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: #bdbdbd;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.legal-language-switch button[aria-pressed="true"],
.merchant-language-switch button[aria-pressed="true"] {
  border-color: #777;
  background: #252525;
  color: #fff;
}
.legal-language-panel[hidden] { display: none; }
.legal-status {
  margin: 18px 0;
  padding: 14px 16px;
  border: 1px solid #444;
  border-radius: 8px;
  background: #151515;
  color: #d8d8d8;
  line-height: 1.55;
}
.legal-status strong { color: #fff; }
.legal-back-button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; flex: 0 0 auto; padding: 0 20px; border: 1px solid rgba(222, 229, 238, .2); border-radius: 8px; background: #171a20; color: #f5f7fa; font-weight: 800; }
.legal-back-button:hover, .legal-back-button:focus-visible { background: #242a32; border-color: rgba(222, 229, 238, .36); }
.legal-merchant-link { padding-top: 4px; }

@media (max-width: 640px) {
  body.legal main { width: min(100% - 28px, 1180px); gap: 16px; padding: 28px 0 40px; }
  .legal-titlebar { align-items: stretch; flex-direction: column; gap: 14px; }
  .legal-titlebar h1 { font-size: clamp(32px, 10vw, 42px); line-height: 1.06; }
  body.legal main > h1 { font-size: clamp(32px, 10vw, 42px); line-height: 1.06; }
  .legal-back-button { width: 100%; }
  .legal-language-switch,
  .merchant-language-switch { width: 100%; }
  .legal-language-switch button,
  .merchant-language-switch button { min-width: 0; }
  body.legal .document-grid { grid-template-columns: 1fr; }
  body.legal .document-grid a { min-height: 112px; padding: 18px; }
  body.legal .document-grid strong { font-size: 17px; }
}

@media (max-width: 980px) {
  .payment-info-grid { grid-template-columns: 1fr 1fr; }
  .merchant-card { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .payment-info-grid { grid-template-columns: 1fr; }
  .merchant-card { grid-column: auto; }
  .payment-method { grid-template-columns: auto 1fr; }
  .payment-method em { grid-column: 2; justify-self: start; }
  .merchant-card dl div, .merchant-details div { grid-template-columns: 1fr; gap: 4px; }
}

/* Stage 15 premium dark refinement: neutral surfaces with one ambient blue light. */
:root {
  --bg: #050608;
  --panel: #0b0d11;
  --panel-2: #101319;
  --line: rgba(222, 229, 238, .12);
  --text: #f4f5f7;
  --soft: #d7dbe2;
  --muted: #b5bdc9;
  --accent: #d9dde4;
  --accent-2: #b7bec9;
  --shadow: 0 28px 90px rgba(0, 0, 0, .52);
}

body {
  background: #050608;
}

body::before {
  inset: -38%;
  background:
    linear-gradient(118deg, transparent 28%, rgba(48, 82, 142, .15) 44%, rgba(64, 103, 170, .21) 50%, transparent 68%),
    linear-gradient(35deg, transparent 34%, rgba(31, 58, 105, .11) 51%, transparent 66%);
  filter: blur(70px);
  opacity: .8;
  animation: ambientBlueBreath 16s ease-in-out infinite alternate;
}

body::after {
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .012), transparent 32%, rgba(0, 0, 0, .18));
  opacity: 1;
  backdrop-filter: none;
}

@keyframes ambientBlueBreath {
  0% { transform: translate3d(-8%, -3%, 0) scale(1); opacity: .42; }
  48% { transform: translate3d(2%, 3%, 0) scale(1.06); opacity: .72; }
  100% { transform: translate3d(9%, -1%, 0) scale(1.12); opacity: .52; }
}

.site-header {
  border-color: rgba(222, 229, 238, .09);
  background: rgba(5, 6, 8, .82);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .24);
}

.brand img {
  box-shadow: 0 12px 34px rgba(0, 0, 0, .48);
}

.nav,
.hero-stats span {
  border-color: rgba(222, 229, 238, .11);
  background: rgba(255, 255, 255, .025);
}

.nav a:hover,
.nav a:focus-visible,
.nav a.active {
  color: var(--text);
  border-color: transparent;
  background: rgba(255, 255, 255, .07);
}

.hero {
  background:
    radial-gradient(circle at 75% 34%, rgba(56, 91, 151, .16), transparent 32%),
    linear-gradient(145deg, rgba(5, 6, 8, .34), rgba(8, 10, 13, .72));
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(5, 6, 8, .92), rgba(5, 6, 8, .34)),
    linear-gradient(180deg, transparent 64%, rgba(5, 6, 8, .8));
}

.hero-logo {
  box-shadow: 0 24px 70px rgba(0, 0, 0, .62);
}

.eyebrow,
.info-card a:not(.button),
.field-note,
.request-form label > small,
.support-form label > small {
  color: #aab1bc;
}

.button {
  border-color: rgba(222, 229, 238, .13);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.button.primary {
  color: #f7f8fa;
  border-color: rgba(232, 236, 242, .2);
  background: linear-gradient(180deg, #242932, #171b22);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .36), inset 0 1px rgba(255, 255, 255, .08);
}

.button.subtle {
  border-color: rgba(222, 229, 238, .12);
  background: rgba(255, 255, 255, .035);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(232, 236, 242, .3);
  background-color: rgba(255, 255, 255, .075);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .42);
  outline: none;
}

.device-frame,
.feature-grid article,
.demo-board,
.demo-shots figure,
.request-form,
.purchase-guidance,
.quote-box,
.app-card,
.support-form,
.document-list article,
.info-card,
.payment-method,
.faq-list details,
.result-card,
.result-details {
  border-color: rgba(222, 229, 238, .1);
  background: rgba(11, 13, 17, .84);
  box-shadow: 0 20px 58px rgba(0, 0, 0, .28);
  backdrop-filter: blur(20px) saturate(.9);
}

.feature-grid .icon,
.app-badge,
.app-tag,
.period-options button,
.payment-method em,
.legal-warning {
  color: #c6cbd3;
  border-color: rgba(222, 229, 238, .14);
  background: rgba(255, 255, 255, .045);
}

.period-options button:hover,
.period-options button:focus-visible,
.payment-method:hover,
.payment-method.selected {
  border-color: rgba(222, 229, 238, .26);
  background: rgba(255, 255, 255, .075);
}

.period-options span {
  color: #c9ced6;
}

.request-form input,
.request-form select,
.request-form textarea,
.support-form input,
.support-form select,
.support-form textarea {
  color: var(--text);
  border-color: rgba(222, 229, 238, .13);
  background: #0c0f14;
  box-shadow: inset 0 1px rgba(255, 255, 255, .025);
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus,
.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: rgba(226, 231, 238, .34);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .045);
  outline: none;
}

.payment-info-section,
.apps-section {
  border-color: rgba(222, 229, 238, .08);
  background: rgba(4, 5, 7, .32);
}

.app-preview {
  background: #07090c;
}

.download-card:hover,
.document-grid a:hover,
.support-link:hover,
.support-link:focus-visible {
  border-color: rgba(222, 229, 238, .24);
  background: rgba(255, 255, 255, .065);
}

.support-link.whatsapp strong,
.support-link.telegram strong,
.support-link.email strong {
  color: #d7dbe2;
}

.form-status.ok {
  color: #d7dbe2;
}

@media (max-width: 767px) {
  .site-header {
    background: rgba(5, 6, 8, .94);
  }

  .nav a {
    font-size: 11px;
  }

  .feature-grid article {
    min-height: 0;
    padding: 20px;
  }
}

/* Compact purchase workspace and responsive product showcase. */
.showcase {
  min-width: 0;
}

.demo-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.08;
}

.showcase-toolbar {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.showcase-tabs,
.showcase-devices,
.purchase-stepper {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(222, 229, 238, .1);
  border-radius: 8px;
  background: rgba(4, 6, 9, .72);
}

.showcase-tabs {
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.showcase-devices {
  width: 100%;
}

.showcase-tabs button,
.showcase-devices button,
.purchase-stepper button {
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.showcase-tabs button[aria-selected="true"],
.showcase-devices button.is-active,
.purchase-stepper button[aria-selected="true"] {
  color: var(--text);
  border-color: rgba(222, 229, 238, .13);
  background: rgba(255, 255, 255, .075);
  box-shadow: inset 0 1px rgba(255, 255, 255, .04);
}

.showcase-devices button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.showcase-devices svg,
.showcase-arrow svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.showcase-stage {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 12px;
}

.showcase-arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(222, 229, 238, .12);
  border-radius: 8px;
  color: var(--soft);
  background: rgba(255, 255, 255, .035);
}

.showcase-arrow:hover,
.showcase-arrow:focus-visible {
  color: var(--text);
  border-color: rgba(222, 229, 238, .26);
  background: rgba(255, 255, 255, .075);
  outline: none;
}

.showcase-slide {
  min-width: 0;
  margin: 0;
}

.showcase-media {
  --showcase-media-gap: 24px;
  position: relative;
  width: 100%;
  height: clamp(360px, 41vw, 540px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(222, 229, 238, .1);
  border-radius: 8px;
  background: #07090c;
  cursor: zoom-in;
}

.showcase-media__crop {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  overflow: hidden;
  max-width: calc(100% - var(--showcase-media-gap));
  max-height: calc(100% - var(--showcase-media-gap));
  border-radius: 5px;
  background: #050709;
  transform: translate(-50%, -50%);
}

.showcase-media img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  image-rendering: auto;
  opacity: 1;
  transition: opacity 160ms ease;
}

.showcase-media.is-loading img {
  opacity: 0;
}

.showcase-slide figcaption {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 18px;
  min-height: 58px;
  padding: 13px 2px 0;
}

.showcase-slide figcaption strong {
  color: var(--text);
  line-height: 1.4;
}

.showcase-slide figcaption span,
.showcase-footer {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.showcase-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 58px 0;
}

#showcaseCounter {
  color: var(--soft);
  font-variant-numeric: tabular-nums;
}

.purchase-layout {
  display: grid;
  gap: 18px;
}

.purchase-head {
  max-width: 820px;
}

.purchase-head h2 {
  margin-bottom: 8px;
}

.purchase-form {
  padding: 0;
  overflow: hidden;
}

.purchase-stepper {
  display: none;
}

.purchase-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  align-items: stretch;
}

.purchase-column {
  min-width: 0;
  padding: clamp(18px, 2vw, 24px);
}

.purchase-checkout {
  border-left: 1px solid rgba(222, 229, 238, .1);
  background: rgba(4, 6, 9, .28);
}

.purchase-column-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.purchase-column-head > span {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(222, 229, 238, .14);
  border-radius: 7px;
  color: var(--soft);
  background: rgba(255, 255, 255, .045);
  font-size: 13px;
  font-weight: 800;
}

.purchase-column-head strong,
.purchase-column-head small {
  display: block;
}

.purchase-column-head strong {
  color: var(--text);
  font-size: 16px;
}

.purchase-column-head small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.purchase-form .form-grid {
  gap: 10px;
}

.purchase-form label {
  gap: 6px;
}

.purchase-form label > span,
.purchase-form legend {
  font-size: 13px;
}

.purchase-form input,
.purchase-form select {
  min-height: 42px;
  padding: 9px 11px;
}

.purchase-contact-grid label:last-child {
  grid-column: 1 / -1;
}

.purchase-divider {
  height: 1px;
  margin: 16px 0;
  background: rgba(222, 229, 238, .08);
}

.purchase-guidance {
  gap: 9px;
  margin-top: 14px;
  padding: 13px;
  box-shadow: none;
}

.purchase-guidance .period-options {
  gap: 6px;
  margin-top: 8px;
}

.purchase-guidance .period-options button {
  min-height: 38px;
  padding: 7px 5px;
  font-size: 12px;
}

.purchase-pricing-details {
  border-top: 1px solid rgba(222, 229, 238, .08);
  padding-top: 9px;
}

.purchase-pricing-details summary {
  color: var(--soft);
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}

.purchase-pricing-details p {
  margin-top: 8px;
}

.purchase-checkout .quote-box {
  margin-top: 0;
  padding: 15px;
  box-shadow: none;
}

.purchase-checkout .quote-box strong {
  font-size: clamp(25px, 3vw, 32px);
}

.purchase-promo {
  margin-top: 14px;
}

.purchase-checkout .payment-methods {
  margin-top: 14px;
}

.purchase-checkout .payment-method {
  min-height: 64px;
  padding: 10px 12px;
}

.purchase-checkout .payment-method small {
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.3;
}

.purchase-checkout .consent {
  margin-top: 14px;
}

.purchase-checkout .consent span {
  font-size: 12px;
  line-height: 1.35;
}

.purchase-checkout .form-actions {
  margin-top: 14px;
}

.purchase-checkout .form-actions .button {
  width: 100%;
}

@media (min-width: 1180px) {
  .purchase-contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .purchase-contact-grid label:last-child {
    grid-column: auto;
  }
}

@media (max-width: 1100px) {
  .purchase-stepper {
    width: calc(100% - 32px);
    display: grid;
    margin: 16px 16px 0;
  }

  .purchase-workspace {
    display: block;
  }

  .purchase-column:not(.is-active) {
    display: none;
  }

  .purchase-checkout {
    border-top: 1px solid rgba(222, 229, 238, .1);
    border-left: 0;
  }
}

@media (max-width: 900px) {
  .demo-board {
    padding: 20px;
  }

  .showcase-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .showcase-tabs,
  .showcase-devices {
    width: 100%;
  }

  .showcase-media {
    height: clamp(380px, 68vw, 560px);
  }
}

@media (max-width: 600px) {
  .showcase-tabs {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .showcase-tabs button {
    min-height: 48px;
    line-height: 1.2;
    white-space: normal;
  }

  .showcase-tabs button,
  .showcase-devices button {
    padding-inline: 7px;
    font-size: 11px;
  }

  .showcase-devices button {
    gap: 4px;
  }

  .showcase-devices svg {
    width: 16px;
    height: 16px;
  }

  .showcase-stage {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 6px;
  }

  .showcase-arrow {
    width: 36px;
    height: 44px;
  }

  .showcase-media {
    --showcase-media-gap: 14px;
    height: min(112vw, 500px);
    padding: 7px;
  }

  .showcase-slide figcaption {
    grid-template-columns: 1fr;
    gap: 5px;
    min-height: 92px;
  }

  .showcase-footer {
    display: block;
    padding: 8px 42px 0;
  }

  .showcase-footer span {
    display: block;
  }

  .showcase-footer span + span {
    margin-top: 3px;
  }

  .purchase-column {
    padding: 16px;
  }

  .purchase-form .purchase-contact-grid,
  .purchase-license-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .purchase-form .purchase-contact-grid > label,
  .purchase-form .purchase-license-grid > label {
    grid-column: auto;
  }

  .purchase-contact-grid label:last-child {
    grid-column: 1 / -1;
  }

  .purchase-form .period-field {
    grid-column: auto;
  }

  .purchase-guidance .period-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; }
}

/* Mobile presentation density: show more product context without shrinking touch targets. */
@media (max-width: 600px) {
  html {
    scrollbar-width: none;
  }

  html::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
    font-size: 14px;
  }

  .wrap,
  .doc-shell {
    width: min(100% - 20px, 1180px);
  }

  .site-header {
    min-height: 68px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  }

  .nav a,
  .entry-menu summary,
  .entry-link {
    min-height: 44px;
    padding: 7px 2px;
    font-size: 10.5px;
  }

  .section,
  .section.compact {
    padding: 30px 0;
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .hero-wrap {
    gap: 14px;
  }

  .hero-copy h1 {
    margin-bottom: 8px;
    font-size: 44px;
    line-height: .94;
  }

  .hero-copy .eyebrow {
    margin-bottom: 8px;
    font-size: 10.5px;
  }

  .hero-copy .lead {
    font-size: 14px;
    line-height: 1.42;
  }

  .hero-actions {
    gap: 7px;
    margin-top: 14px;
  }

  .button {
    min-height: 44px;
    padding: 9px 10px;
    font-size: 12px;
  }

  .hero-stats {
    gap: 5px;
    margin-top: 11px;
  }

  .hero-stats span {
    gap: 5px;
    padding: 5px 8px;
    font-size: 10.5px;
  }

  .hero-stats img,
  .hero-platform-symbol {
    flex-basis: 20px;
    width: 20px;
    height: 20px;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .section-head h2,
  .demo-copy h2,
  .support-layout .section-head h2,
  .request-layout .section-head h2 {
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 1.05;
  }

  .section-head p:not(.eyebrow),
  .demo-copy p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.42;
  }

  .feature-grid article {
    padding: 16px;
  }

  .feature-grid .icon {
    width: 36px;
    height: 36px;
    margin-bottom: 15px;
  }

  .feature-grid .icon svg {
    width: 18px;
    height: 18px;
  }

  .feature-grid h3 {
    margin-bottom: 7px;
    font-size: 18px;
  }

  .feature-grid p {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.45;
  }

  .demo-board,
  .request-form,
  .doc-shell article {
    padding: 12px;
  }

  .showcase-toolbar {
    gap: 10px;
    margin-bottom: 10px;
  }

  .showcase-media[data-device="desktop"] {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .showcase-media[data-device="tablet"] {
    height: auto;
    aspect-ratio: 1280 / 700;
  }

  .showcase-media[data-device="phone"] {
    height: min(112vw, 500px);
    aspect-ratio: auto;
  }

  .showcase-slide figcaption strong {
    font-size: 14px;
  }

  .showcase-slide figcaption span,
  .showcase-footer {
    font-size: 12px;
  }
}
.language-switch { display: inline-flex; align-items: center; gap: 4px; padding: 3px; border: 1px solid var(--border); border-radius: 999px; }
.language-switch a { min-width: 38px; padding: 6px 9px; border-radius: 999px; text-align: center; font-size: 12px; font-weight: 800; }
.language-switch a.active { background: var(--surface-3); color: var(--text); }
.legal-consents { display: grid; gap: 9px; margin: 0; padding: 12px; border: 1px solid var(--border); border-radius: 12px; background: var(--surface-2); }
.legal-consents legend { padding: 0 6px; font-weight: 800; }
.legal-consents .consent { margin: 0; }
.legal-consents a { text-decoration: underline; text-underline-offset: 2px; }
