:root {
  --paper: #f5f7fb;
  --paper-soft: #fff;
  --white: #fff;
  --ink: #101827;
  --ink-soft: #202b3d;
  --muted: #626c7b;
  --line: #dde3ee;
  --line-dark: rgba(255, 255, 255, .16);
  --blue: #5067e8;
  --blue-dark: #3046bd;
  --violet: #6d4be7;
  --apricot: #efae6a;
  --red: #dc143c;
  --navy: #0b1323;
  --navy-2: #111c31;
  --shadow: 0 24px 60px rgba(16, 24, 39, .14);
  --font-sans: Inter, Arial, sans-serif;
  --shell: min(1240px, calc(100vw - 48px));
  --section-space: 42px;
  --content-gap: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

::selection {
  color: #fff;
  background: var(--blue);
}

:focus-visible {
  outline: 3px solid rgba(83, 108, 240, .42);
  outline-offset: 3px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(83, 108, 240, .24);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-text {
  padding-inline: 20px;
  border-color: #d9e0ec;
  border-radius: 6px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 8px 22px rgba(16, 24, 39, .06);
}

.button-text:hover {
  color: var(--blue-dark);
  border-color: rgba(80, 103, 232, .36);
  background: #fff;
}

.kicker,
.eyebrow {
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.kicker-light {
  color: #aebcff;
}

.section {
  padding-block: var(--section-space);
}

.section-heading {
  max-width: 680px;
}

.section-heading-wide {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .55fr);
  column-gap: 80px;
}

.section-heading-wide .kicker {
  grid-column: 1 / -1;
}

.section-heading h2,
.editor-copy h2,
.sync-copy h2,
.origin-copy h2,
.contact-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: 1.04;
}

.section-heading > p:last-child,
.editor-lead,
.sync-lead,
.origin-copy > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 8px 32px rgba(16, 24, 39, .055);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  width: 112px;
  flex: 0 0 112px;
  align-items: center;
}

.brand svg {
  width: 112px;
  height: auto;
}

.brand-logo-motion {
  --brand-animation-delay: .5s;
  display: block;
  overflow: visible;
}

.brand-logo-letters {
  fill: var(--blue);
  animation: brandLogoLetters .48s ease calc(var(--brand-animation-delay) + .16s) backwards;
}

.brand-logo-letters .brand-logo-ink {
  fill: var(--ink);
}

.brand-logo-device {
  stroke: var(--blue);
}

.brand-logo-tablet {
  --brand-path-length: 221;
  stroke-dasharray: var(--brand-path-length);
  animation: brandLogoDraw .7s cubic-bezier(.35, 0, .2, 1) var(--brand-animation-delay) backwards;
}

.brand-logo-dot {
  fill: var(--blue);
  transform-box: fill-box;
  transform-origin: center;
  animation: brandLogoDot .2s cubic-bezier(.2, 1.5, .4, 1) calc(var(--brand-animation-delay) + .68s) backwards;
}

@keyframes brandLogoDraw {
  from { stroke-dashoffset: var(--brand-path-length); }
}

@keyframes brandLogoLetters {
  from { opacity: 0; }
}

@keyframes brandLogoDot {
  from { opacity: 0; scale: .4; }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  margin-left: auto;
}

.site-nav a {
  position: relative;
  margin-inline: -8px;
  padding: 7px 8px;
  border-radius: 6px;
  color: #364052;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--blue-dark);
  background: rgba(80, 103, 232, .08);
}

.mobile-nav-action {
  display: none;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #626c7b;
  font-size: 12px;
  font-weight: 800;
}

.lang-button {
  display: inline-flex;
  min-width: 44px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 5px;
  border: 0;
  border-radius: 6px;
  color: #626c7b;
  background: transparent;
  white-space: nowrap;
  cursor: pointer;
}

.lang-button:hover {
  background: rgba(80, 103, 232, .08);
}

.lang-button.is-active {
  color: var(--ink);
}

.lang-separator {
  color: #a4acb9;
}

.lang-flag {
  width: 16px;
  height: 11px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(16, 24, 39, .16);
}

.lang-flag-pl {
  border: 1px solid rgba(11, 19, 35, .3);
  border-radius: 1px;
  background: linear-gradient(to bottom, #fff 0 50%, #dc143c 50% 100%);
  background-clip: padding-box;
  box-shadow: none;
}

.login-link {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.header-demo {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 16px;
  border-radius: 5px;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  transition: opacity .2s ease, transform .2s ease, background-color .2s ease;
}

.site-header.cta-visible .header-demo {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-demo:hover {
  background: var(--blue-dark);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
}

.menu-button span {
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .2s ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: max(12px, calc(var(--section-space) - 20px)) 0 var(--section-space);
  background:
    radial-gradient(circle at 82% 18%, rgba(80, 103, 232, .15), transparent 31%),
    radial-gradient(circle at 8% 88%, rgba(109, 75, 231, .07), transparent 27%),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: -160px;
  right: -160px;
  width: 500px;
  height: 500px;
  border: 0;
  border-radius: 50%;
  background: rgba(80, 103, 232, .055);
  filter: blur(18px);
  content: "";
}

.hero-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, .9fr) minmax(560px, 1.1fr);
  gap: clamp(48px, 6vw, 92px);
}

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

.hero-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 14px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

.flag-pl {
  display: inline-block;
  width: 22px;
  height: 14px;
  border: 1px solid rgba(11, 19, 35, .3);
  border-radius: 1px;
  background: linear-gradient(to bottom, #fff 0, #fff 50%, var(--red) 50%, var(--red) 100%);
  background-clip: padding-box;
}

.android-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(80, 103, 232, .1);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
}

.android-badge img {
  display: block;
  width: 18px;
  height: 18px;
}

.hero h1 {
  max-width: 660px;
  margin-bottom: 28px;
  font-size: clamp(48px, 5.25vw, 75px);
  font-weight: 600;
  letter-spacing: -.067em;
  line-height: .99;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 32px;
  color: #4f596a;
  font-size: 19px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 0;
}

.hero-product {
  position: relative;
  min-height: 610px;
}

.product-window {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 0;
  width: 75%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 12px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.product-topbar {
  display: grid;
  height: 46px;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  padding: 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: #b6bfd1;
  font-size: 10px;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i,
.browser-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4a566c;
}

.window-dots i:nth-child(2),
.browser-bar i:nth-child(2) {
  background: #6c7890;
}

.window-dots i:nth-child(3),
.browser-bar i:nth-child(3) {
  background: #8994a8;
}

.product-body {
  display: grid;
  min-height: 425px;
  grid-template-columns: 58px 1fr;
}

.product-rail {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 17px;
  padding-top: 20px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  background: #0e192c;
}

.product-rail img {
  margin-bottom: 10px;
  opacity: .8;
}

.rail-item {
  width: 20px;
  height: 4px;
  border-radius: 4px;
  background: #48546a;
}

.rail-item.is-current {
  background: #8093ff;
}

.campaign-ui {
  padding: 24px;
}

.campaign-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.campaign-heading div {
  display: flex;
  flex-direction: column;
}

.campaign-heading small,
.target-label {
  margin-bottom: 3px;
  color: #7d899f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.campaign-heading strong {
  color: #fff;
  font-size: 16px;
}

.ready-badge {
  padding: 4px 8px;
  border: 1px solid rgba(128, 147, 255, .35);
  border-radius: 4px;
  color: #b7c2ff;
  background: rgba(80, 103, 232, .12);
  font-size: 9px;
  font-weight: 700;
}

.campaign-preview {
  position: relative;
  display: flex;
  height: 132px;
  justify-content: flex-end;
  flex-direction: column;
  margin-bottom: 20px;
  overflow: hidden;
  padding: 17px;
  border-radius: 7px;
  color: #fff;
  background: #564ee1;
}

.campaign-preview::before,
.campaign-preview::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.campaign-preview::before {
  top: -44px;
  right: -25px;
  width: 148px;
  height: 148px;
  background: var(--apricot);
}

.campaign-preview::after {
  top: 23px;
  right: 88px;
  width: 70px;
  height: 70px;
  border: 20px solid #1d2552;
}

.campaign-preview small,
.campaign-preview strong {
  position: relative;
  z-index: 2;
}

.campaign-preview small {
  margin-bottom: 3px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .15em;
}

.campaign-preview strong {
  font-size: 19px;
  letter-spacing: -.04em;
}

.campaign-preview i,
.campaign-preview b {
  position: absolute;
  z-index: 1;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #e95786;
}

.campaign-preview i {
  right: 26px;
  bottom: -32px;
}

.campaign-preview b {
  right: 140px;
  bottom: -50px;
  background: #8da0ff;
}

.target-label {
  margin-bottom: 8px;
}

.target-row {
  display: flex;
  min-height: 37px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #d9deea;
  font-size: 10px;
}

.target-row > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.target-row i {
  width: 7px;
  height: 7px;
  border: 2px solid #8da0ff;
  border-radius: 2px;
}

.target-row b {
  color: #8fa0b8;
  font-size: 8px;
  font-weight: 600;
}

.publish-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  color: #7f8da4;
  font-size: 9px;
}

.publish-row button {
  padding: 7px 13px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--blue);
  font-size: 9px;
  font-weight: 700;
}

.delivery-path {
  position: absolute;
  z-index: 1;
  top: 330px;
  left: 57%;
  width: 28%;
  height: 118px;
  border-top: 1px solid rgba(83, 108, 240, .5);
  border-right: 1px solid rgba(83, 108, 240, .5);
  border-radius: 0 28px 0 0;
}

.delivery-path span {
  position: absolute;
  top: -4px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8799ff;
  box-shadow: 0 0 0 6px rgba(83, 108, 240, .14);
  animation: pathPulse 4.2s ease-in-out infinite;
}

.hero-screens {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 24px;
  display: flex;
  align-items: flex-end;
  gap: 9px;
}

.hero-screen {
  position: relative;
  width: 118px;
  height: 205px;
  overflow: hidden;
  border: 8px solid #111827;
  border-radius: 10px;
  background: #111827;
  box-shadow: 0 18px 35px rgba(16, 24, 39, .2);
}

.screen-two {
  height: 232px;
}

.screen-three {
  height: 218px;
}

.screen-ad {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  overflow: hidden;
  padding: 13px 10px;
  color: #fff;
  opacity: 0;
  animation: screenCycle 12s infinite;
}

.screen-ad::before,
.screen-ad::after,
.screen-ad span {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.screen-ad small,
.screen-ad strong {
  position: relative;
  z-index: 2;
}

.screen-ad small {
  margin-bottom: 3px;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .14em;
}

.screen-ad strong {
  font-size: 13px;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.ad-one {
  background: #564ee1;
}

.ad-one::before {
  top: 12px;
  right: -18px;
  width: 92px;
  height: 92px;
  background: var(--apricot);
}

.ad-one::after {
  top: 45px;
  left: -16px;
  width: 72px;
  height: 72px;
  border: 16px solid #1d2552;
}

.ad-one span {
  top: 83px;
  right: 8px;
  width: 49px;
  height: 49px;
  background: #e95786;
}

.ad-two {
  background: #e7b86c;
  animation-delay: 4s;
}

.ad-two::before {
  top: 15px;
  right: 15px;
  width: 75px;
  height: 75px;
  background: #3d2624;
}

.ad-two::after {
  top: 61px;
  left: 8px;
  width: 56px;
  height: 56px;
  background: #fff0d6;
}

.ad-two span {
  top: 3px;
  left: -35px;
  width: 100px;
  height: 100px;
  border: 18px solid #b13f31;
}

.ad-three {
  background: #123a4b;
  animation-delay: 8s;
}

.ad-three::before {
  top: -5px;
  left: 25px;
  width: 68px;
  height: 122px;
  border-radius: 40px 40px 0 0;
  background: #6d4be7;
}

.ad-three::after {
  top: 48px;
  left: -23px;
  width: 83px;
  height: 83px;
  background: #db7754;
}

.ad-three span {
  top: 22px;
  right: -28px;
  width: 80px;
  height: 80px;
  border: 16px solid #f2cc85;
}

/* Outcome story */
.outcomes {
  background: var(--paper-soft);
}

.outcome-list {
  display: grid;
  gap: 20px;
  margin-top: var(--section-space);
}

.outcome-row {
  display: grid;
  min-height: 318px;
  align-items: center;
  grid-template-columns: 90px minmax(260px, .75fr) minmax(420px, 1.25fr);
  gap: 44px;
  padding: 42px 48px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(16, 24, 39, .065);
}

.outcome-number {
  align-self: start;
  padding-top: 12px;
  color: #626c7b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.outcome-copy {
  max-width: 400px;
}

.outcome-copy h3 {
  margin-bottom: 13px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.12;
}

.outcome-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.outcome-ui {
  position: relative;
  width: min(100%, 530px);
  min-height: 210px;
  justify-self: end;
  overflow: hidden;
  border: 1px solid #dce0e8;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(16, 24, 39, .08);
}

.mini-window-title,
.schedule-head,
.status-head {
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid #e7e9ee;
  color: #394356;
  font-size: 11px;
  font-weight: 700;
}

.mini-window-title b {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 4px;
  color: #fff;
  background: var(--blue);
}

.media-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  padding: 16px 18px 11px;
}

.media-thumbs span {
  height: 83px;
  border-radius: 5px;
}

.thumb-a {
  background: linear-gradient(145deg, #7565ef 0 52%, #efae6a 52% 100%);
}

.thumb-b {
  background: radial-gradient(circle at 68% 35%, #e65b84 0 22%, transparent 23%), #17294e;
}

.thumb-c {
  background: linear-gradient(30deg, #596ff0 0 48%, #f1dfac 49% 100%);
}

.media-file {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 18px;
  padding: 8px 10px;
  border: 1px solid #e6e8ed;
  border-radius: 4px;
  color: #4f5b6d;
  font-size: 9px;
}

.media-file i {
  width: 9px;
  height: 11px;
  border: 1px solid #8490a2;
}

.media-file b {
  margin-left: auto;
  color: var(--blue);
}

.schedule-head b {
  color: #8b93a0;
  font-size: 9px;
  font-weight: 600;
}

.schedule-days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  padding: 15px 18px 10px;
}

.schedule-days span {
  display: grid;
  height: 30px;
  place-items: center;
  border: 1px solid #e5e8ee;
  border-radius: 4px;
  color: #7a8391;
  font-size: 8px;
}

.schedule-days .today {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.timeline {
  position: relative;
  height: 40px;
  margin: 4px 18px;
}

.timeline::before {
  position: absolute;
  top: 19px;
  right: 0;
  left: 0;
  height: 1px;
  background: #dfe3ea;
  content: "";
}

.timeline i,
.timeline b,
.timeline em {
  position: absolute;
  top: 14px;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}

.timeline i { left: 18%; }
.timeline b { left: 47%; }
.timeline em { left: 78%; }

.schedule-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 2px 18px;
  padding: 10px 12px;
  border-left: 3px solid var(--blue);
  border-radius: 0 4px 4px 0;
  background: #f2f4ff;
  color: #44506a;
  font-size: 9px;
}

.schedule-item span {
  color: #8d95a3;
}

.schedule-item strong {
  font-weight: 600;
}

.status-device {
  display: grid;
  min-height: 68px;
  align-items: center;
  grid-template-columns: 34px 1fr 24px;
  gap: 10px;
  margin: 12px 16px;
  padding: 8px 12px;
  border: 1px solid #e5e8ee;
  border-radius: 5px;
}

.status-device > i {
  width: 28px;
  height: 28px;
  border: 5px solid #172033;
  border-radius: 4px;
  background: #677df1;
}

.status-device span {
  display: flex;
  flex-direction: column;
}

.status-device strong {
  color: #3f4a5d;
  font-size: 9px;
  font-weight: 700;
}

.status-device small {
  color: #9299a4;
  font-size: 8px;
}

.status-device > b {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-dark);
  background: #edf0ff;
  font-size: 9px;
}

/* Editor */
.editor-section {
  overflow: hidden;
  background: var(--paper);
}

.editor-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(310px, .65fr) minmax(620px, 1.35fr);
  gap: 72px;
}

.editor-copy {
  position: relative;
  z-index: 2;
}

.feature-lines {
  display: grid;
  gap: 10px;
  margin: var(--content-gap) 0 0;
  padding: 0;
  list-style: none;
}

.feature-lines li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .76);
}

.feature-lines li > span {
  color: #626c7b;
  font-size: 10px;
  font-weight: 700;
}

.feature-lines strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.feature-lines p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.editor-shot {
  position: relative;
  width: 840px;
  margin: 0;
}

.shot-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px 18px;
  color: #626c7b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.browser-frame {
  overflow: hidden;
  border: 1px solid #d8dbe2;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 28px 64px rgba(16, 24, 39, .16);
}

.browser-bar {
  display: grid;
  height: 38px;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  padding: 0 14px;
  border-bottom: 1px solid #e1e4e9;
  background: #f6f7f9;
}

.browser-bar span {
  display: flex;
  gap: 5px;
}

.browser-bar b {
  color: #626c7b;
  font-size: 8px;
  font-weight: 600;
}

.editor-shot img {
  width: 100%;
  height: auto;
}

.editor-shot figcaption {
  max-width: 650px;
  margin: 14px 0 0 18px;
  color: #626c7b;
  font-size: 10px;
}

/* Sync */
.sync-section {
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.sync-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(320px, .72fr) minmax(560px, 1.28fr);
  gap: 88px;
}

.sync-copy h2 {
  color: #fff;
}

.sync-lead {
  color: #b6bfd0;
}

.plain-checks {
  display: grid;
  gap: 9px;
  margin: var(--content-gap) 0;
  padding: 0;
  list-style: none;
}

.plain-checks li {
  position: relative;
  padding: 13px 16px 13px 40px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .055);
  color: #d5dbea;
  font-size: 13px;
}

.plain-checks li::before {
  position: absolute;
  top: 24px;
  left: 18px;
  width: 8px;
  height: 4px;
  border-bottom: 1.5px solid #91a2ff;
  border-left: 1.5px solid #91a2ff;
  content: "";
  transform: rotate(-45deg);
}

.sync-demo {
  position: relative;
}

.sync-controls {
  display: inline-flex;
  margin: 0 0 18px 18px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  background: rgba(255, 255, 255, .05);
}

.sync-controls button {
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 4px;
  color: #9ea9bb;
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.sync-controls button.is-active {
  color: var(--navy);
  background: #fff;
}

.sync-wall {
  position: relative;
  width: 100%;
  aspect-ratio: 1.55;
  overflow: hidden;
  border: 13px solid #050a13;
  border-radius: 8px;
  background: #111b30;
  box-shadow: 0 36px 80px rgba(0, 0, 0, .36);
}

.panorama-art,
.repeat-grid {
  position: absolute;
  inset: 0;
  transition: opacity .35s ease, transform .45s ease;
}

.panorama-art {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  overflow: hidden;
  padding: 9%;
  background:
    radial-gradient(circle at 78% 23%, #f0b064 0 11%, transparent 11.3%),
    radial-gradient(circle at 60% 80%, #536cf0 0 25%, transparent 25.3%),
    #142342;
}

.panorama-art::before {
  position: absolute;
  top: -28%;
  left: 39%;
  width: 38%;
  height: 150%;
  border-radius: 50%;
  background: #596fe7;
  content: "";
  transform: rotate(24deg);
}

.panorama-art::after {
  position: absolute;
  top: -35%;
  left: 49%;
  width: 13%;
  height: 160%;
  background: #e15979;
  content: "";
  transform: rotate(24deg);
}

.panorama-art small,
.panorama-art strong {
  position: relative;
  z-index: 2;
  max-width: 48%;
}

.panorama-art small {
  margin-bottom: 8px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .2em;
}

.panorama-art strong {
  font-size: clamp(22px, 3vw, 40px);
  letter-spacing: -.05em;
  line-height: .98;
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
}

.orbit-a {
  top: 10%;
  right: 5%;
  width: 220px;
  height: 220px;
}

.orbit-b {
  top: -20%;
  right: 24%;
  width: 310px;
  height: 310px;
}

.repeat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  padding: 0;
  opacity: 0;
  transform: scale(.97);
}

.repeat-grid > div {
  position: relative;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  overflow: hidden;
  padding: 10%;
  background: #744fe0;
}

.repeat-grid > div::before {
  position: absolute;
  top: -12%;
  right: -7%;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--apricot);
  content: "";
}

.repeat-grid > div::after {
  position: absolute;
  top: 25%;
  left: -12%;
  width: 54%;
  aspect-ratio: 1;
  border: 13px solid #17214c;
  border-radius: 50%;
  content: "";
}

.repeat-grid small,
.repeat-grid strong {
  position: relative;
  z-index: 2;
}

.repeat-grid small {
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .15em;
}

.repeat-grid strong {
  font-size: 15px;
  letter-spacing: -.04em;
}

.sync-wall[data-mode="repeat"] .panorama-art {
  opacity: 0;
  transform: scale(1.03);
}

.sync-wall[data-mode="repeat"] .repeat-grid {
  opacity: 1;
  transform: scale(1);
}

.wall-bezel {
  position: absolute;
  z-index: 4;
  background: #050a13;
}

.wall-bezel-v {
  top: 0;
  bottom: 0;
  left: calc(50% - 7px);
  width: 14px;
}

.wall-bezel-h {
  top: calc(50% - 7px);
  right: 0;
  left: 0;
  height: 14px;
}

.wall-scan {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  width: 25%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
  animation: wallScan 4.5s ease-in-out infinite;
}

.sync-state {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 18px 0;
  color: #aeb8cb;
  font-size: 10px;
}

.sync-state b {
  margin-left: auto;
  color: #78859c;
  font-weight: 600;
  letter-spacing: .1em;
}

/* Use cases */
.usecases {
  background: var(--paper-soft);
}

.usecases-heading {
  max-width: 750px;
}

.usecase-tabs {
  display: flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  gap: 6px;
  overflow-x: auto;
  margin-top: var(--content-gap);
  padding: 6px;
  border-radius: 12px;
  background: #eef1f7;
  scrollbar-width: none;
}

.usecase-tabs::-webkit-scrollbar {
  display: none;
}

.usecase-tabs button {
  position: relative;
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  color: #626c7b;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.usecase-tabs button::after {
  display: none;
}

.usecase-tabs button[aria-selected="true"] {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 20px rgba(80, 103, 232, .22);
}

.usecase-panels {
  padding-top: var(--content-gap);
}

.usecase-panel {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(480px, 1.15fr) minmax(310px, .85fr);
  gap: 78px;
  animation: panelIn .42s ease both;
}

.usecase-panel[hidden] {
  display: none;
}

.poster-shell {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 12px solid #101827;
  border-radius: 8px;
  background: #111827;
  box-shadow: 0 28px 55px rgba(16, 24, 39, .17);
}

.poster-shell::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 16, 29, .74), rgba(10, 16, 29, .06) 70%);
  content: "";
}

.poster-shell img {
  width: 100%;
  height: 100%;
  min-height: 496px;
  object-fit: cover;
}

.poster-image-retail {
  object-position: 58% center;
}

.poster-copy {
  position: absolute;
  z-index: 2;
  bottom: 11%;
  left: 8%;
  display: flex;
  max-width: 54%;
  flex-direction: column;
  color: #fff;
}

.poster-copy small {
  margin-bottom: 10px;
  color: #ffd3da;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
}

.poster-copy strong {
  margin-bottom: 8px;
  font-size: clamp(30px, 4.2vw, 55px);
  letter-spacing: -.055em;
  line-height: .95;
}

.poster-copy span {
  font-size: 12px;
}

.poster-copy-light small {
  color: #f7d9a1;
}

.poster-copy-retail small {
  color: #ffd0e0;
}

.poster-copy-safety small {
  color: #c4ccff;
}

.poster-copy-hotel small {
  color: #b8c4ff;
}

.poster-copy-healthcare small {
  color: #d5e2ff;
}

.poster-copy-fitness small {
  color: #bdd0ff;
}

.poster-copy-automotive small {
  color: #ffd1bd;
}

.poster-copy-education small {
  color: #ffe2a3;
}

.poster-copy-wellness small {
  color: #ffd0e0;
}

.poster-label {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  padding: 7px 9px;
  border-radius: 3px;
  color: #fff;
  background: rgba(10, 16, 29, .7);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.usecase-copy {
  max-width: 430px;
}

.usecase-index {
  margin-bottom: var(--content-gap);
  color: #626c7b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

.usecase-copy h3 {
  margin-bottom: 17px;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.usecase-copy > p:not(.usecase-index) {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.usecase-copy ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.usecase-copy li {
  position: relative;
  padding: 13px 16px 13px 36px;
  border-radius: 10px;
  background: #f2f5fb;
  color: #485264;
  font-size: 13px;
}

.usecase-copy li::before {
  position: absolute;
  top: 21px;
  left: 17px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

/* Poland */
.origin-section {
  padding-block: var(--section-space);
  color: #fff;
  background: var(--navy);
}

.origin-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(270px, .62fr) minmax(560px, 1.38fr);
  gap: 90px;
}

.origin-mark {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 390px;
  aspect-ratio: 1.2;
  grid-template-rows: 1fr 1fr;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 30px 65px rgba(0, 0, 0, .3);
}

.origin-mark span:first-child {
  background: #fff;
}

.origin-mark span:nth-child(2) {
  background: var(--red);
}

.origin-mark b {
  position: absolute;
  top: 50%;
  right: 8%;
  bottom: 0;
  display: flex;
  align-items: center;
  padding-top: .08em;
  color: #fff;
  font-size: clamp(74px, 10vw, 134px);
  font-weight: 700;
  letter-spacing: -.09em;
  line-height: 1;
  mix-blend-mode: normal;
  text-shadow: 0 10px 28px rgba(91, 3, 22, .28);
}

.origin-copy .kicker {
  color: #aebcff;
}

.origin-copy h2 {
  max-width: 700px;
  color: #fff;
}

.origin-copy > p {
  max-width: 720px;
  color: #b9c1d0;
}

.origin-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: var(--content-gap);
}

.origin-points p {
  margin: 0;
  padding: 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .055);
}

.origin-points strong,
.origin-points span {
  display: block;
}

.origin-points strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
}

.origin-points span {
  color: #8f9bb0;
  font-size: 11px;
  line-height: 1.55;
}

/* Pricing */
.pricing-section {
  background: #edf1f8;
}

.pricing-heading {
  margin-bottom: var(--content-gap);
}

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

.pricing-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px;
  border-radius: 16px;
  background: #fff;
  font-family: var(--font-sans);
  box-shadow: 0 16px 42px rgba(16, 24, 39, .07);
}

.pricing-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  color: #697487;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pricing-card-head p {
  margin: 0;
  text-align: right;
}

.pricing-card h3 {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pricing-price strong {
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: 1;
}

.pricing-price span {
  color: #697487;
  font-size: 11px;
  font-weight: 600;
}

.pricing-plan-note {
  align-self: flex-start;
  margin: 16px 0 0;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: #edf0ff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .03em;
}

.pricing-plan-discount {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 7px 16px rgba(80, 103, 232, .18);
}

.pricing-card ul {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding: 11px 12px 11px 34px;
  border-radius: 9px;
  background: #f3f6fb;
  color: #4e596b;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.5;
}

.pricing-card li::before {
  position: absolute;
  top: 17px;
  left: 15px;
  width: 7px;
  height: 4px;
  border-bottom: 1.5px solid var(--blue);
  border-left: 1.5px solid var(--blue);
  content: "";
  transform: rotate(-45deg);
}

.pricing-terms {
  max-width: 900px;
  margin: 18px auto 0;
  color: #677286;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.65;
  text-align: center;
}

/* FAQ */
.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(300px, .7fr) minmax(520px, 1.3fr);
  gap: 100px;
}

.faq-layout .section-heading h2 {
  font-size: clamp(34px, 3.4vw, 48px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding: 9px 13px;
  border-radius: 8px;
  color: var(--blue-dark);
  background: #edf0ff;
  font-size: 13px;
  font-weight: 700;
}

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

.faq-list details {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 24, 39, .055);
}

.faq-list summary {
  position: relative;
  padding: 22px 58px 22px 24px;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 34px;
  right: 24px;
  width: 14px;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: transform .2s ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 680px;
  margin: -3px 60px 23px 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Contact */
.contact-section {
  padding-block: var(--section-space);
  color: #fff;
  background: #121b2c;
}

.contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(340px, .82fr) minmax(520px, 1.18fr);
  gap: 90px;
}

.contact-copy h2 {
  max-width: 620px;
  margin-bottom: 0;
  color: #fff;
}

.contact-form {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .28);
}

.form-head {
  display: flex;
  align-items: center;
  margin-bottom: 26px;
}

.form-head h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.035em;
}

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

.field-grid label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #566071;
  font-size: 10px;
  font-weight: 700;
}

.field-grid label > span {
  letter-spacing: .04em;
  text-transform: uppercase;
}

.field-wide {
  grid-column: 1 / -1;
}

.field-grid input,
.field-grid select,
.field-grid textarea {
  width: 100%;
  border: 1px solid #dfe2e8;
  border-radius: 5px;
  color: var(--ink);
  background: #fbfbfc;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field-grid input,
.field-grid select {
  height: 46px;
  padding: 0 12px;
}

.field-grid textarea {
  min-height: 98px;
  padding: 12px;
  resize: vertical;
}

.field-grid input:focus,
.field-grid select:focus,
.field-grid textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(83, 108, 240, .12);
}

.field-grid label.has-error input {
  border-color: #cf3e51;
  box-shadow: 0 0 0 3px rgba(207, 62, 81, .09);
}

.form-submit {
  width: 100%;
  margin-top: 22px;
  justify-content: space-between;
}

.form-privacy {
  max-width: 650px;
  margin: 14px 0 0;
  color: #6f798a;
  font-size: 11px;
  line-height: 1.6;
}

.form-privacy a {
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(65, 86, 211, .35);
  text-underline-offset: 3px;
}

.form-privacy + .form-submit {
  margin-top: 14px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: .68;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-status {
  min-height: 16px;
  margin: 10px 0 0;
  color: #cf3e51;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
}

.form-status.is-error {
  color: #cf3e51;
}

.form-status.is-success {
  color: #267158;
}

/* Footer */
.site-footer {
  color: #bbc3d0;
  background: #080e19;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr .75fr;
  gap: 70px;
  padding-block: var(--section-space);
}

.footer-brand img {
  width: 112px;
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p,
.footer-action p {
  max-width: 310px;
  margin: 0;
  color: #7f8a9c;
  font-size: 12px;
}

.footer-main nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 11px 28px;
}

.footer-main nav a,
.footer-action a {
  color: #d7dce5;
  font-size: 12px;
  font-weight: 600;
}

.footer-main nav a:hover,
.footer-action a:hover {
  color: #fff;
}

.footer-action a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 11px;
  border-bottom: 0;
}

.footer-bottom {
  width: 100%;
  background: #0d1523;
}

.footer-bottom-inner {
  display: grid;
  min-height: 72px;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  color: #98a3b5;
  font-size: 10px;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
}

.footer-legal a {
  color: inherit;
}

.footer-legal a:hover {
  color: #fff;
}

.made-in {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.made-in .flag-pl {
  width: 18px;
  height: 12px;
  border: 0;
  border-radius: 0;
}

@keyframes screenCycle {
  0%, 28% { opacity: 1; transform: translateY(0); }
  34%, 100% { opacity: 0; transform: translateY(-8px); }
}

@keyframes pathPulse {
  0%, 16% { left: 0; top: -4px; opacity: 0; }
  22% { opacity: 1; }
  58% { left: calc(100% - 4px); top: -4px; }
  76% { left: calc(100% - 4px); top: calc(100% - 4px); opacity: 1; }
  82%, 100% { left: calc(100% - 4px); top: calc(100% - 4px); opacity: 0; }
}

@keyframes wallScan {
  0%, 18% { left: -28%; opacity: 0; }
  25% { opacity: 1; }
  72% { opacity: 1; }
  82%, 100% { left: 108%; opacity: 0; }
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 40px, 1080px);
  }

  .site-nav {
    gap: 17px;
  }

  .site-nav a {
    font-size: 12px;
  }

  .header-tools {
    gap: 12px;
  }

  .header-demo {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, .88fr) minmax(500px, 1.12fr);
    gap: 42px;
  }

  .hero-product {
    min-height: 570px;
  }

  .product-window {
    width: 78%;
  }

  .hero-screen {
    width: 104px;
    height: 185px;
  }

  .screen-two { height: 208px; }
  .screen-three { height: 196px; }

  .outcome-row {
    grid-template-columns: 60px minmax(240px, .7fr) minmax(380px, 1.3fr);
    gap: 30px;
  }

  .editor-layout {
    grid-template-columns: minmax(300px, .7fr) minmax(560px, 1.3fr);
    gap: 45px;
  }

  .editor-shot {
    width: 760px;
  }

  .sync-layout {
    gap: 55px;
  }

  .usecase-panel {
    gap: 52px;
  }

  .poster-shell {
    min-height: 450px;
  }

  .poster-shell img {
    min-height: 426px;
  }
}

@media (max-width: 980px) {
  :root {
    --section-space: 34px;
    --content-gap: 28px;
  }

  html {
    scroll-padding-top: 72px;
  }

  .header-inner {
    min-height: 70px;
  }

  .site-nav {
    position: absolute;
    z-index: 95;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 28px 24px 36px;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition: opacity .2s ease, transform .2s ease, visibility 0s;
  }

  .header-tools {
    margin-left: auto;
  }

  .site-nav a {
    display: flex;
    min-height: 54px;
    align-items: center;
    margin: 0;
    padding: 0 18px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(16, 24, 39, .045);
    font-size: 18px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a.mobile-nav-action {
    display: flex;
    margin-top: 14px;
    justify-content: center;
    border: 1px solid var(--ink);
    border-radius: 5px;
    font-size: 14px;
  }

  .site-nav a.mobile-nav-primary {
    color: #fff;
    border-color: var(--blue);
    background: var(--blue);
  }

  .login-link,
  .header-demo {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

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

  .hero-product {
    width: min(100%, 720px);
    min-height: 585px;
    margin-inline: auto;
  }

  .section-heading-wide {
    display: block;
  }

  .section-heading-wide > p:last-child {
    max-width: 620px;
  }

  .outcome-list {
    margin-top: var(--section-space);
  }

  .outcome-row {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 24px;
    padding-block: 46px;
  }

  .outcome-ui {
    width: 100%;
    max-width: 650px;
    grid-column: 2;
    justify-self: start;
  }

  .editor-layout,
  .sync-layout,
  .origin-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .editor-copy {
    max-width: 680px;
  }

  .editor-shot {
    width: calc(100vw - 20px);
    max-width: 900px;
  }

  .sync-copy {
    max-width: 680px;
  }

  .sync-demo {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .usecase-panel {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .pricing-card:last-child {
    grid-column: 1 / -1;
    width: calc((100% - 14px) / 2);
    justify-self: center;
  }

  .poster-shell {
    min-height: 520px;
  }

  .poster-shell img {
    min-height: 496px;
  }

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

  .usecase-index {
    margin-bottom: 24px;
  }

  .origin-mark {
    max-width: 460px;
  }

  .faq-layout .section-heading {
    max-width: 650px;
  }

  .contact-copy {
    max-width: 700px;
  }

  .contact-form {
    max-width: 720px;
  }

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

  .footer-action {
    grid-column: 2;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 32px);
    --section-space: 26px;
    --content-gap: 24px;
  }

  body {
    font-size: 15px;
  }

  .header-inner {
    gap: 16px;
  }

  .brand,
  .brand svg {
    width: 98px;
    flex-basis: 98px;
  }

  .lang-switch {
    gap: 3px;
  }

  .lang-button {
    min-width: 40px;
    padding-inline: 3px;
  }

  .hero {
    background: none;
  }

  .hero h1 {
    font-size: clamp(42px, calc(3vw + 27px), 48px);
    line-height: 1;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .button-text {
    border: 1px solid var(--line);
    border-radius: 6px;
  }

  .hero-product {
    min-height: 480px;
  }

  .product-window {
    top: 0;
    width: 88%;
  }

  .product-body {
    min-height: 350px;
    grid-template-columns: 44px 1fr;
  }

  .product-rail {
    gap: 14px;
  }

  .campaign-ui {
    padding: 17px;
  }

  .campaign-preview {
    height: 105px;
  }

  .hero-screens {
    right: -2px;
    bottom: 8px;
    gap: 5px;
  }

  .hero-screen {
    width: 78px;
    height: 145px;
    border-width: 5px;
    border-radius: 7px;
  }

  .screen-two { height: 165px; }
  .screen-three { height: 153px; }

  .screen-ad {
    padding: 9px 7px;
  }

  .screen-ad strong {
    font-size: 10px;
  }

  .delivery-path {
    top: 270px;
    left: 63%;
    height: 93px;
  }

  .section-heading h2,
  .editor-copy h2,
  .sync-copy h2,
  .origin-copy h2,
  .contact-copy h2 {
    font-size: clamp(34px, 10.8vw, 46px);
  }

  .section-heading > p:last-child,
  .editor-lead,
  .sync-lead,
  .origin-copy > p {
    font-size: 16px;
  }

  .outcome-row {
    display: block;
    min-height: 0;
    padding: 32px 24px;
  }

  .outcome-number {
    display: block;
    margin-bottom: 18px;
    padding: 0;
  }

  .outcome-copy {
    margin-bottom: 28px;
  }

  .outcome-copy h3 {
    font-size: 25px;
  }

  .outcome-ui {
    min-height: 205px;
  }

  .editor-shot {
    width: 100%;
    min-width: 0;
  }

  .shot-label,
  .editor-shot figcaption {
    margin-left: 4px;
  }

  .editor-shot img {
    width: 760px;
    max-width: none;
  }

  .browser-frame {
    border-radius: 7px 0 0 7px;
    overflow-x: auto;
  }

  .sync-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-left: 0;
  }

  .sync-wall {
    border-width: 8px;
  }

  .wall-bezel-v {
    left: calc(50% - 4px);
    width: 8px;
  }

  .wall-bezel-h {
    top: calc(50% - 4px);
    height: 8px;
  }

  .repeat-grid {
    gap: 8px;
  }

  .sync-state {
    margin-inline: 2px;
  }

  .usecase-tabs {
    margin-right: 0;
    margin-left: 0;
    padding: 6px;
  }

  .usecase-tabs button {
    padding-inline: 18px;
  }

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

  .pricing-card,
  .pricing-card:last-child {
    grid-column: auto;
    width: auto;
  }

  .pricing-card {
    padding: 24px 20px;
  }

  .poster-shell {
    min-height: 440px;
    border-width: 8px;
  }

  .poster-shell img {
    min-height: 424px;
  }

  .poster-copy {
    max-width: 74%;
  }

  .poster-copy strong {
    font-size: clamp(34px, 11vw, 48px);
  }

  .editor-layout,
  .sync-layout,
  .origin-layout,
  .faq-layout,
  .contact-layout {
    gap: 32px;
  }

  .origin-points {
    grid-template-columns: 1fr;
  }

  .origin-points p {
    padding: 16px;
    border: 0;
  }

  .contact-form {
    padding: 24px 19px;
  }

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

  .field-wide {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-action {
    grid-column: auto;
  }

  .footer-bottom-inner {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 20px;
  }

  .footer-legal {
    justify-self: start;
    flex-wrap: wrap;
    gap: 8px 18px;
  }
}

@media (max-width: 420px) {
  :root {
    --shell: calc(100% - 26px);
  }

  .header-inner {
    min-height: 66px;
  }

  .site-nav {
    height: calc(100vh - 66px);
    height: calc(100dvh - 66px);
  }

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

  .hero-product {
    min-height: 440px;
  }

  .product-window {
    width: 94%;
  }

  .product-body {
    min-height: 330px;
  }

  .campaign-preview {
    height: 90px;
  }

  .target-row {
    min-height: 33px;
  }

  .hero-screen {
    width: 67px;
    height: 126px;
  }

  .screen-two { height: 144px; }
  .screen-three { height: 134px; }

  .screen-ad small {
    display: none;
  }

  .delivery-path {
    top: 250px;
  }

  .poster-shell {
    min-height: 385px;
  }

  .poster-shell img {
    min-height: 369px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .brand-logo-tablet {
    stroke-dasharray: none;
  }

  .screen-ad.ad-one {
    opacity: 1;
  }

  .screen-ad:not(.ad-one) {
    opacity: 0;
  }

  .wall-scan,
  .delivery-path span {
    display: none;
  }
}
