:root {
  --home-bg: #08090b;
  --home-panel: #101114;
  --home-panel-2: #15161a;
  --home-line: #292b31;
  --home-line-soft: #1d1f24;
  --home-text: #f5f5f6;
  --home-muted: #a4a7af;
  --home-dim: #6f747e;
  --home-cyan: #64d8c2;
  --home-red: #ff4a5f;
  --home-gold: #d7b46a;
  --home-radius: 8px;
}

body.official-home {
  background: var(--home-bg);
  color: var(--home-text);
}

.official-home .official-nav {
  background: rgba(8, 9, 11, .92);
  border-bottom-color: var(--home-line-soft);
  backdrop-filter: blur(16px);
}

.official-home .official-nav .brand {
  height: 38px;
  align-items: center;
  line-height: 1;
}

.official-home .brand-wordmark,
.official-home .brand-wordmark-img {
  display: block;
}

.official-home .brand-wordmark-img {
  width: 126px;
  height: 32px;
  object-fit: contain;
  object-position: center;
  transform: translateY(1px);
}

.official-home .brand-divider {
  height: 22px;
  background: rgba(255, 255, 255, .18);
}

.official-home .brand-tagline {
  color: rgba(245, 245, 246, .58);
  font-size: 13px;
  letter-spacing: .01em;
  transform: translateY(-2px);
}

.official-home .brand-wordmark {
  height: 30px;
  line-height: 30px;
  color: var(--home-text);
  font-size: 20px;
  font-weight: 760;
  letter-spacing: -.01em;
}

.official-home .topnav a {
  color: #b6b8bf;
}

.official-home .topnav a:hover {
  color: var(--home-text);
  background: #14161a;
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
}

.language-toggle {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  background: transparent;
  color: var(--home-text);
  cursor: pointer;
}

.language-toggle-icon {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: #d9dbe0;
}

.language-toggle:hover,
.language-toggle[aria-expanded="true"] {
  background: #14161a;
  border-color: #383b44;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  width: 214px;
  display: none;
  padding: 6px;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  background: #101114;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .38);
}

.language-menu.is-open {
  display: grid;
}

.language-menu[hidden] {
  display: none !important;
}

.language-menu button {
  min-height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--home-muted);
  font: inherit;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button.is-active {
  background: #181a1f;
  color: var(--home-text);
}

.home-hero,
.home-section,
.home-footer {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
}

.home-hero {
  min-height: calc(100vh - 56px);
  padding: 92px 0 56px;
  display: grid;
  align-items: center;
  gap: 48px;
}

.home-hero__copy {
  max-width: 820px;
}

.section-head > p,
.section-head--split p:first-child {
  margin: 0 0 14px;
  color: var(--home-dim);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.home-hero h1,
.section-head h2,
.pricing-page-hero h1 {
  margin: 0;
  letter-spacing: -.02em;
  color: var(--home-text);
}

.nowrap {
  white-space: nowrap;
}

.home-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 7vw, 92px);
  line-height: .96;
  font-weight: 780;
}

.home-lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: #d9dbe0;
  font-size: clamp(18px, 2.4vw, 26px);
  line-height: 1.45;
}

.home-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.home-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  font-size: 14px;
  font-weight: 700;
  transition: background 140ms ease, border-color 140ms ease, transform 90ms ease;
}

.home-button:active {
  transform: scale(.985);
}

.home-button--primary {
  background: #f4f5f7;
  border-color: #f4f5f7;
  color: #0d0e11;
}

.home-button--secondary {
  color: var(--home-text);
  background: transparent;
}

.home-button--secondary:hover {
  background: #14161a;
  border-color: #3a3d45;
}

.hero-visual,
.section-visual {
  margin: 0;
  border: 1px solid var(--home-line);
  border-radius: 10px;
  background: var(--home-panel);
  overflow: hidden;
}

.hero-visual {
  box-shadow: 0 24px 80px rgba(0, 0, 0, .42);
}

.hero-visual img,
.section-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.home-section {
  padding: 108px 0;
  border-top: 1px solid var(--home-line-soft);
}

.outcome-section {
  overflow: hidden;
}

.outcome-section .section-head {
  max-width: none;
}

.outcome-section .section-head h2 {
  white-space: nowrap;
}

.pricing-page-hero {
  padding-top: 92px;
  border-top: 0;
}

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

.section-head h2,
.pricing-page-hero h1 {
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 760;
}

.section-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 40px;
  align-items: end;
}

.section-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.section-copy {
  margin: 0;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.72;
}

.package-intro {
  margin: 18px 0 0;
  max-width: 620px;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.72;
}

.outcome-layout {
  --outcome-media-height: min(421px, calc((50vw - 35px) * 1032 / 1419));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  max-width: 100%;
}

.outcome-list {
  min-width: 0;
  min-height: 0;
  height: var(--outcome-media-height);
  display: grid;
  grid-template-rows: 276fr 250fr 240fr 266fr;
}

.outcome-list {
  border: 1px solid var(--home-line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--home-panel);
}

.outcome-list article {
  min-height: 0;
  padding: 13px 16px;
  border-bottom: 1px solid var(--home-line-soft);
}

.outcome-list article:last-child {
  border-bottom: 0;
}

.outcome-list span {
  color: var(--home-dim);
  font: 700 12px/1 var(--lr-mono, monospace);
  letter-spacing: .08em;
}

.outcome-list h3 {
  margin: 7px 0 5px;
  color: var(--home-text);
  font-size: 16px;
  line-height: 1.2;
}

.outcome-list p,
.faq-list p {
  margin: 0;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.42;
}

.outcome-visual {
  gap: 10px;
}

.outcome-visual--image {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  height: var(--outcome-media-height);
  margin: 0;
  display: flex;
  gap: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.outcome-visual--image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 0;
}

.outcome-demo-row {
  min-height: 0;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--home-line);
  border-radius: 10px;
  background: #101114;
  overflow: hidden;
}

.demo-index {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 8px 0 0 4px;
}

.demo-index span {
  color: var(--home-dim);
  font: 720 12px/1 var(--lr-mono, monospace);
  letter-spacing: .08em;
}

.demo-index strong {
  color: var(--home-text);
  font-size: 18px;
  line-height: 1;
}

.demo-stack {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.demo-stack--wide {
  grid-template-columns: minmax(170px, 1.45fr) 1fr .9fr;
}

.demo-stack--gift {
  grid-template-columns: 1.18fr 1fr;
}

.demo-stack--review {
  grid-template-columns: .92fr 1fr 1.08fr;
}

.demo-card {
  min-width: 0;
  min-height: 0;
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 10px;
  border: 1px solid #2b2e35;
  border-radius: 8px;
  background: #15161a;
  overflow: hidden;
}

.demo-card b {
  color: #dfe1e6;
  font-size: 11px;
  line-height: 1.2;
}

.demo-card p,
.demo-card small {
  margin: 0;
  color: var(--home-muted);
  font-size: 10px;
  line-height: 1.35;
}

.demo-card em {
  float: right;
  color: var(--home-text);
  font-style: normal;
}

.demo-card strong {
  color: var(--home-text);
  font-size: 18px;
  line-height: 1;
}

.demo-card i {
  display: block;
  height: 5px;
  margin-top: auto;
  border-radius: 99px;
  background: #292c33;
  overflow: hidden;
}

.demo-card i::before {
  content: "";
  display: block;
  width: var(--value, 62%);
  height: 100%;
  border-radius: inherit;
  background: var(--home-cyan);
}

.demo-list p {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr) auto;
  gap: 5px;
  white-space: nowrap;
}

.demo-vote p {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.demo-pk {
  background: linear-gradient(90deg, rgba(62, 135, 239, .16), #15161a 48%, rgba(255, 74, 95, .15));
}

.demo-pk strong {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 6px;
  align-items: center;
  color: #9ac2ff;
  font-size: 12px;
}

.demo-pk strong span:nth-child(2) {
  color: #dfe1e6;
  font-size: 13px;
}

.demo-pk strong span:last-child {
  color: #ff8996;
  text-align: right;
}

.demo-pk i::before {
  background: linear-gradient(90deg, #5f9cff, var(--home-cyan));
}

.demo-prank {
  place-items: center;
  text-align: center;
}

.demo-prank strong {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle, #e8c66f 0 28%, #725a23 29%, #15161a 66%);
  color: #f4d77f;
  font-size: 26px;
}

.demo-reveal {
  place-items: center;
  text-align: center;
}

.demo-reveal strong {
  display: grid;
  place-items: center;
  width: 54px;
  height: 66px;
  border: 1px solid #caa45c;
  border-radius: 7px;
  color: #d7b46a;
  background: #18191e;
  font-size: 17px;
}

.demo-supergift {
  align-content: center;
  justify-items: center;
  min-height: 100%;
  background:
    radial-gradient(circle at 42% 45%, rgba(215, 180, 106, .35), transparent 32%),
    #15161a;
}

.demo-supergift strong {
  color: #f2d487;
  font-size: 20px;
  text-align: center;
}

.demo-supergift strong span {
  display: block;
  margin-top: 2px;
  font-size: 17px;
}

.demo-metrics p,
.demo-potential p {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  white-space: nowrap;
}

.demo-chart {
  padding: 0;
}

.demo-chart b {
  padding: 10px 10px 0;
}

.demo-chart svg {
  width: 100%;
  height: 92px;
  margin-top: -4px;
}

.demo-chart polyline {
  fill: none;
  stroke: var(--home-cyan);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.demo-potential em {
  color: #d1b66f;
  font-size: 9px;
}

.pricing-table-wrap {
  border: 1px solid var(--home-line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--home-panel);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.pricing-table th,
.pricing-table td {
  padding: 18px 20px;
  border-right: 1px solid var(--home-line-soft);
  border-bottom: 1px solid var(--home-line-soft);
  background: #101114;
  text-align: left;
  vertical-align: top;
}

.pricing-table th:last-child,
.pricing-table td:last-child {
  border-right: 0;
}

.pricing-table tr:last-child th,
.pricing-table tr:last-child td {
  border-bottom: 0;
}

.pricing-table thead th {
  background: #111216;
  color: var(--home-text);
  font-size: 18px;
  font-weight: 780;
  line-height: 1.35;
}

.pricing-table thead th:first-child {
  width: 40%;
  color: var(--home-muted);
  font-size: 13px;
  font-weight: 760;
}

.pricing-table thead span {
  display: block;
  margin-bottom: 6px;
  color: var(--home-dim);
  font: 720 12px/1 var(--lr-mono, monospace);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-line {
  display: block;
  margin-top: 10px;
  color: var(--home-text);
  font-size: 14px;
  font-weight: 760;
}

.pricing-table tbody th {
  color: var(--home-text);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.6;
}

.pricing-table td {
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.72;
}

.pricing-category {
  width: 18%;
  background: #14161a !important;
  color: #d4d7de !important;
  font-size: 13px !important;
  letter-spacing: .02em;
  vertical-align: middle !important;
}

.pricing-table .check {
  color: var(--home-text);
  font-weight: 780;
}

.pricing-table .no {
  color: var(--home-dim);
}

.pricing-table .quota {
  color: var(--home-text);
  font-weight: 700;
}

.addon-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  border: 1px solid var(--home-line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--home-line);
}

.addon-strip article {
  min-height: 136px;
  padding: 20px;
  background: #101114;
}

.addon-strip span {
  display: block;
  margin-bottom: 12px;
  color: var(--home-dim);
  font-size: 13px;
  font-weight: 760;
}

.addon-strip strong {
  display: block;
  color: var(--home-text);
  font-size: 18px;
  line-height: 1.35;
}

.addon-strip p {
  margin: 10px 0 0;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.6;
}

.text-link {
  justify-self: end;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  color: var(--home-text);
  font-size: 14px;
  font-weight: 700;
}

.text-link:hover {
  background: #14161a;
}

.text-link--primary {
  background: #f4f5f7;
  border-color: #f4f5f7;
  color: #0d0e11;
}

.text-link--primary:hover {
  background: #e8eaee;
}

.download-main {
  width: min(1240px, calc(100vw - 48px));
  margin: 0 auto;
}

.download-hero {
  --download-hero-block-height: clamp(228px, 15vw, 252px);
  min-height: auto;
  padding: 136px 0 112px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 456px;
  gap: 50px;
  align-items: center;
}

.download-hero__copy {
  min-height: var(--download-hero-block-height);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.download-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--home-text);
  font-size: clamp(42px, 6.2vw, 78px);
  font-weight: 780;
  letter-spacing: -.02em;
  line-height: .98;
}

.download-hero__copy .home-actions {
  margin-top: 0;
}

.download-card {
  min-height: auto;
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  height: var(--download-hero-block-height);
}

.download-card__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--home-line);
  border-radius: 999px;
  color: var(--home-muted);
  font-size: 12px;
  font-weight: 700;
}

.download-card h2 {
  margin: 0;
  color: var(--home-text);
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -.01em;
}

.download-card p {
  margin: 0;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.62;
}

.download-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  margin: 0;
  border: 1px solid var(--home-line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--home-line-soft);
  height: 100%;
  flex: 1;
}

.download-meta-grid div {
  min-height: 0;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 18px 22px;
  background: #111216;
}

.download-meta-grid dt {
  color: var(--home-dim);
  font-size: 11px;
  font-weight: 760;
}

.download-meta-grid dd {
  margin: 0;
  color: var(--home-text);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.28;
  white-space: nowrap;
}

.download-trust {
  padding-top: 14px;
  border-top: 1px solid var(--home-line-soft);
}

.download-section {
  padding: 86px 0;
  border-top: 1px solid var(--home-line-soft);
}

.download-check-grid,
.download-steps {
  display: grid;
  gap: 1px;
  border: 1px solid var(--home-line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--home-line-soft);
}

.download-check-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.download-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.download-check-grid article,
.download-steps article {
  min-height: 178px;
  padding: 22px;
  background: #101114;
}

.download-steps article {
  min-height: 176px;
}

.download-check-grid span,
.download-steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--home-dim);
  font: 720 13px/1 var(--lr-mono, monospace);
  letter-spacing: .08em;
}

.download-check-grid h3,
.download-steps h3 {
  margin: 0;
  color: var(--home-text);
  font-size: 18px;
  line-height: 1.25;
}

.download-check-grid p,
.download-steps p {
  margin: 12px 0 0;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.62;
}

.download-table-wrap {
  border: 1px solid var(--home-line);
  border-radius: 10px;
  overflow-x: auto;
  background: #101114;
}

.download-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.download-table th,
.download-table td {
  padding: 17px 18px;
  border-right: 1px solid var(--home-line-soft);
  border-bottom: 1px solid var(--home-line-soft);
  text-align: left;
  vertical-align: middle;
}

.download-table th:last-child,
.download-table td:last-child {
  border-right: 0;
}

.download-table tr:last-child td {
  border-bottom: 0;
}

.download-table thead th {
  color: var(--home-dim);
  background: #111216;
  font-size: 12px;
  font-weight: 760;
}

.download-table td {
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.55;
}

.download-table td:first-child {
  color: var(--home-text);
  font-family: var(--lr-mono, monospace);
  font-size: 12px;
  word-break: break-word;
}

.download-table a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--home-line);
  border-radius: 7px;
  color: var(--home-text);
  font-weight: 700;
}

.download-table a:hover {
  background: #15171b;
}

.download-spec-table-wrap {
  border: 1px solid var(--home-line);
  border-radius: 10px;
  overflow-x: auto;
  background: #101114;
}

.download-spec-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.download-spec-table th,
.download-spec-table td {
  padding: 18px 20px;
  border-right: 1px solid var(--home-line-soft);
  border-bottom: 1px solid var(--home-line-soft);
  text-align: left;
  vertical-align: top;
}

.download-spec-table tr:last-child th,
.download-spec-table tr:last-child td {
  border-bottom: 0;
}

.download-spec-table th {
  width: 190px;
  color: var(--home-text);
  background: #111216;
  font-size: 14px;
  font-weight: 760;
}

.download-spec-table td {
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.62;
}

.info-main {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
}

.info-hero {
  padding: 110px 0 72px;
  border-bottom: 1px solid var(--home-line-soft);
}

.info-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--home-text);
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 780;
  letter-spacing: -.02em;
  line-height: .98;
}

.info-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: #d9dbe0;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.62;
}

.info-section {
  padding: 86px 0;
  border-bottom: 1px solid var(--home-line-soft);
}

.info-section:last-child {
  border-bottom: 0;
}

.info-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 42px;
  align-items: end;
  margin-bottom: 30px;
}

.info-section h2 {
  margin: 0;
  color: var(--home-text);
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.08;
  letter-spacing: -.02em;
}

.info-section__head p {
  margin: 0;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.72;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--home-line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--home-line-soft);
}

.info-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card {
  min-height: 246px;
  padding: 24px;
  background: #101114;
}

.info-card__index {
  display: block;
  margin-bottom: 22px;
  color: var(--home-dim);
  font: 720 13px/1 var(--lr-mono, monospace);
  letter-spacing: .08em;
}

.info-card h3 {
  margin: 0;
  color: var(--home-text);
  font-size: 20px;
  line-height: 1.22;
}

.info-card p {
  margin: 12px 0 0;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.7;
}

.info-card .text-link {
  justify-self: start;
  margin-top: 22px;
}

.contact-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--home-line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--home-line-soft);
}

.contact-choice {
  min-height: 172px;
  padding: 24px;
  border: 0;
  background: #101114;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: background .16s ease, box-shadow .16s ease;
}

.contact-choice:hover,
.contact-choice.is-active {
  background: #15161a;
  box-shadow: inset 0 0 0 1px #d5d8dd;
}

.contact-choice span {
  display: block;
  margin-bottom: 22px;
  color: var(--home-dim);
  font: 720 13px/1 var(--lr-mono, monospace);
  letter-spacing: .08em;
}

.contact-choice h3 {
  margin: 0;
  color: var(--home-text);
  font-size: 21px;
  line-height: 1.2;
}

.contact-choice p {
  margin: 12px 0 0;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.7;
}

.contact-panels {
  margin-top: 24px;
}

.contact-panel {
  display: none;
}

.contact-panel.is-active {
  display: block;
}

.contact-panel-layout {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: stretch;
}

.contact-message-card,
.contact-service-card,
.contact-form-panel {
  padding: 26px;
  border: 1px solid var(--home-line);
  border-radius: 10px;
  background: #101114;
}

.contact-message-card {
  display: grid;
  gap: 14px;
}

.contact-service-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: flex-start;
}

.contact-message-card h2,
.contact-service-card h2,
.contact-form-panel h2 {
  margin: 0;
  color: var(--home-text);
  font-size: 28px;
  line-height: 1.12;
}

.contact-message-card p,
.contact-service-card p {
  margin: 0;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.72;
}

.contact-message-card a {
  color: var(--home-text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-service-card p {
  margin-top: 14px;
}

.contact-service-card .home-button {
  margin-top: auto;
}

.contact-form-panel {
  display: grid;
  gap: 22px;
}

.contact-form-panel--wide {
  max-width: 900px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.phone-field {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 8px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--home-dim);
  font-size: 12px;
  font-weight: 760;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  background: #0c0d10;
  color: var(--home-text);
  outline: none;
}

.form-field textarea {
  min-height: 138px;
  padding-top: 12px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #565a64;
}

.form-note {
  margin: 0;
  color: var(--home-dim);
  font-size: 12px;
  line-height: 1.6;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--home-line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--home-line-soft);
}

.about-visual article {
  min-height: 220px;
  padding: 24px;
  background: #101114;
}

.about-visual span,
.workflow-step span {
  color: var(--home-dim);
  font: 720 12px/1 var(--lr-mono, monospace);
  letter-spacing: .08em;
}

.about-visual h3,
.workflow-step h3 {
  margin: 18px 0 0;
  color: var(--home-text);
  font-size: 22px;
  line-height: 1.2;
}

.about-visual p,
.workflow-step p {
  margin: 12px 0 0;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.72;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--home-line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--home-line-soft);
}

.workflow-step {
  min-height: 232px;
  padding: 26px;
  background: #101114;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 95px;
  width: 1px;
  background: var(--home-line);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 32px;
}

.timeline-date {
  color: var(--home-muted);
  font: 720 13px/1.2 var(--lr-mono, monospace);
}

.timeline-card {
  padding: 24px;
  border: 1px solid var(--home-line);
  border-radius: 10px;
  background: #101114;
}

.timeline-card::before {
  content: "";
  position: absolute;
  left: 91px;
  top: 6px;
  width: 9px;
  height: 9px;
  border: 1px solid #d8dbe1;
  border-radius: 50%;
  background: var(--home-bg);
}

.timeline-card h2 {
  margin: 0;
  color: var(--home-text);
  font-size: 24px;
  line-height: 1.22;
}

.timeline-card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.timeline-card li {
  position: relative;
  padding-left: 18px;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.65;
}

.timeline-card li::before {
  content: "";
  position: absolute;
  top: .75em;
  left: 0;
  width: 6px;
  height: 1px;
  background: var(--home-dim);
}

.support-float {
  position: fixed;
  right: 20px;
  bottom: 96px;
  z-index: 45;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  border: 1px solid #343740;
  border-radius: 10px;
  background: rgba(16, 17, 20, .92);
  color: var(--home-text);
  box-shadow: 0 14px 38px rgba(0, 0, 0, .34);
  backdrop-filter: blur(14px);
  transition: width 160ms ease, background 160ms ease, border-color 160ms ease;
}

.support-float svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-float span {
  flex: 0 0 auto;
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  color: var(--home-text);
  font-size: 13px;
  font-weight: 720;
  transition: max-width 160ms ease, opacity 120ms ease;
}

.support-float:hover,
.support-float:focus-visible {
  width: 112px;
  border-color: #50545f;
  background: rgba(22, 23, 27, .96);
}

.support-float:hover span,
.support-float:focus-visible span {
  max-width: 62px;
  opacity: 1;
}

.faq-list {
  border: 1px solid var(--home-line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--home-panel);
}

.faq-list details {
  border-bottom: 1px solid var(--home-line-soft);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  color: var(--home-text);
  cursor: pointer;
  font-weight: 720;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--home-dim);
  font: 600 22px/1 var(--lr-mono, monospace);
}

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

.faq-list p {
  max-width: 860px;
  padding: 0 22px 22px;
}

.faq-more {
  margin-top: 18px;
}

.home-footer {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 48px;
  padding: 56px 0 28px;
  border-top: 1px solid var(--home-line-soft);
  color: var(--home-dim);
  font-size: 13px;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-brand .brand {
  height: 36px;
  justify-content: start;
  align-items: center;
  line-height: 0;
}

.footer-brand .brand-wordmark,
.footer-brand .brand-wordmark-img {
  display: block;
}

.footer-brand .brand-wordmark-img {
  width: 112px;
  height: 32px;
  object-fit: contain;
}

.footer-brand .brand-wordmark {
  color: var(--home-text);
  font-size: 19px;
  font-weight: 760;
}

.footer-brand p {
  max-width: 220px;
  margin: 0;
  color: var(--home-muted);
  line-height: 1.65;
}

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

.footer-columns nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-columns h2 {
  margin: 0 0 4px;
  color: var(--home-text);
  font-size: 13px;
  font-weight: 760;
}

.footer-columns a,
.footer-columns button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--home-muted);
  font: inherit;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
}

.footer-columns [data-language-option] {
  font-size: 12px;
  line-height: 1.35;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--home-line-soft);
}

.home-footer a:hover,
.home-footer button:hover,
.home-footer button.is-active {
  color: var(--home-text);
}

@media (max-width: 920px) {
  .home-hero,
  .home-section,
  .home-footer,
  .download-main,
  .info-main {
    width: min(100% - 32px, 720px);
  }

  .home-hero {
    min-height: auto;
    padding-top: 64px;
  }

  .download-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 64px 0 56px;
  }

  .download-hero__copy {
    min-height: auto;
    display: block;
  }

  .download-hero__copy .home-actions {
    margin-top: 32px;
  }

  .section-head--split,
  .outcome-layout {
    grid-template-columns: 1fr;
  }

  .download-check-grid,
  .download-steps,
  .info-grid,
  .info-grid--four,
  .contact-choice-grid,
  .contact-panel-layout,
  .field-grid,
  .about-visual,
  .workflow {
    grid-template-columns: 1fr;
  }

  .info-section__head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .timeline::before {
    left: 8px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 28px;
  }

  .timeline-card::before {
    left: 4px;
  }

  .outcome-list,
  .outcome-visual--image {
    aspect-ratio: auto;
    height: auto;
    min-height: auto;
  }

  .outcome-visual--image img {
    height: auto;
  }

  .outcome-demo-row {
    min-height: 150px;
  }

  .addon-strip {
    grid-template-columns: 1fr 1fr;
  }

  .home-footer {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .official-home .official-nav {
    height: auto;
    min-height: 56px;
    padding: 10px 16px;
    align-items: center;
    flex-wrap: wrap;
  }

  .official-home .official-nav .brand {
    height: 34px;
  }

  .official-home .official-nav .brand-wordmark-img {
    width: 108px;
    height: 28px;
  }

  .official-home .brand-divider {
    height: 18px;
    margin: 0 8px;
  }

  .official-home .brand-tagline {
    font-size: 12px;
    transform: translateY(-1px);
  }

  .official-home .language-switcher {
    margin-left: auto;
  }

  .official-home .topnav {
    order: 3;
    flex-basis: 100%;
    width: 100%;
    margin-left: 0;
  }

  .home-hero h1 {
    font-size: 42px;
  }

  .download-hero h1 {
    font-size: 42px;
  }

  .home-section {
    padding: 72px 0;
  }

  .download-section {
    padding: 72px 0;
  }

  .section-head h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .outcome-section .section-head h2 {
    white-space: normal;
  }

  .pricing-table-wrap {
    overflow-x: auto;
  }

  .pricing-table {
    min-width: 860px;
  }

  .download-table {
    min-width: 820px;
  }

  .download-spec-table {
    min-width: 780px;
  }

  .download-card {
    height: auto;
    min-height: auto;
    padding: 0;
  }

  .download-meta-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
  }

  .download-meta-grid div {
    min-height: 96px;
  }

  .addon-strip {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .info-hero {
    padding: 70px 0 52px;
  }

  .info-section {
    padding: 68px 0;
  }

  .support-float {
    right: 16px;
    bottom: 18px;
  }

  .footer-bottom {
    flex-direction: column;
    padding: 24px 0;
  }
}
