:root {
  --paper: #ffffff;
  --sand: #f3efe8;
  --sand-deep: #e9e1d5;
  --ink: #171717;
  --ink-soft: #6f6b65;
  --copper: #ad7a48;
  --copper-light: #d8b98f;
  --line: #ded9d2;
  --green: #4f8a68;
  --display: "Outfit", Arial, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --shadow: 0 28px 80px rgba(47, 38, 28, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

small {
  font-size: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  font-size: 16.1px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  padding: 0 clamp(24px, 4vw, 64px);
  border-bottom: 1px solid rgba(222, 217, 210, 0.88);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  width: max-content;
  font-family: var(--display);
  font-size: 29.4px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.brand span {
  color: var(--copper);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 38px);
}

.main-nav a,
.site-footer nav a {
  color: var(--ink-soft);
  font-size: 13.3px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.main-nav a:hover,
.site-footer nav a:hover {
  color: var(--ink);
}

.header-demo {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.header-demo:hover {
  background: var(--ink);
  color: #fff;
}

.header-demo span {
  font-size: 18.7px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(510px, 1.06fr);
  align-items: center;
  gap: clamp(54px, 7vw, 112px);
  min-height: calc(100svh - 78px);
  padding: clamp(74px, 8vw, 126px) max(5vw, calc((100vw - 1440px) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 12%, rgba(173, 122, 72, 0.13), transparent 24%),
    var(--sand);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -250px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(173, 122, 72, 0.16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 700px;
  margin: 22px 0 28px;
  font-family: var(--display);
  font-size: clamp(77.4px, 8vw, 122.9px);
  font-weight: 600;
  letter-spacing: -0.062em;
  line-height: 0.91;
}

.hero h1 em {
  color: var(--copper);
  font-style: normal;
}

.hero-lead {
  max-width: 630px;
  color: var(--ink-soft);
  font-size: clamp(20.1px, 1.7vw, 24.1px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--ink);
  color: #fff;
}

.button-primary:hover {
  background: #2b2b2b;
}

.button-ghost {
  border-color: #cbc3b9;
  background: rgba(255, 255, 255, 0.34);
}

.button-ghost:hover {
  background: #fff;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 38px;
  padding-top: 23px;
  border-top: 1px solid #d9d1c7;
  list-style: none;
}

.hero-facts li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #756f68;
  font-size: 13.3px;
}

.hero-facts span {
  color: var(--copper);
  font-size: 12px;
  font-weight: 700;
}

.hero-visual {
  min-height: 650px;
}

.visual-browser {
  position: absolute;
  top: 12px;
  right: 5%;
  width: min(540px, 86%);
  overflow: hidden;
  border: 1px solid rgba(87, 68, 48, 0.17);
  background: #fff;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.browser-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 45px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: #8a847d;
  font-size: 12px;
  letter-spacing: 0.05em;
}

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

.browser-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c9c2b9;
}

.browser-live {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 11px;
  text-transform: uppercase;
}

.browser-live i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(79, 138, 104, 0.11);
}

.visual-photo {
  position: relative;
  height: 505px;
  overflow: hidden;
  background: #d9cdbd;
}

.visual-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 64%, rgba(20, 16, 12, 0.34));
  content: "";
}

.photo-label {
  position: absolute;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(23, 23, 23, 0.52);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.floating-product {
  position: absolute;
  right: -1%;
  bottom: 33px;
  z-index: 3;
  display: grid;
  grid-template-columns: 66px 1fr 30px;
  align-items: center;
  gap: 14px;
  width: min(330px, 66%);
  padding: 12px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(40, 31, 23, 0.17);
  transform: rotate(-1deg);
}

.floating-product img {
  width: 66px;
  height: 66px;
  object-fit: cover;
}

.floating-product div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.floating-product small {
  color: var(--ink-soft);
  font-size: 13.3px;
}

.floating-product strong {
  font-family: var(--display);
  font-size: 21.3px;
}

.floating-product > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 22.7px;
}

.floating-code {
  position: absolute;
  bottom: 100px;
  left: 0;
  z-index: 2;
  width: min(380px, 70%);
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(47, 38, 28, 0.13);
  transform: rotate(-2deg);
}

.floating-code > div {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}

.floating-code > div span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c7c0b7;
}

.floating-code > div small {
  margin-left: auto;
  color: #938d85;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.floating-code code,
.mini-code,
.snippet-card code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.floating-code code {
  display: block;
  padding: 14px;
  overflow: hidden;
  border: 1px solid #e5e0d9;
  background: #faf8f5;
  color: #785d43;
  font-size: 12px;
  line-height: 1.7;
  white-space: nowrap;
}

.floating-code p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
  color: var(--ink-soft);
  font-size: 12px;
}

.floating-code p i {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #e7f1e9;
  color: var(--green);
  font-style: normal;
  font-weight: 700;
}

.cart-pill {
  position: absolute;
  top: 180px;
  left: -18px;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 18px;
  min-width: 190px;
  padding: 13px 14px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.cart-pill span {
  color: #aaa;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-pill strong {
  grid-column: 1;
  font-family: var(--display);
  font-size: 14.7px;
}

.cart-pill i {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  color: var(--copper-light);
  font-style: normal;
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-strip span {
  padding: 21px 14px;
  border-right: 1px solid var(--line);
  color: #6f6b65;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.capability-strip span:last-child {
  border-right: 0;
}

.section {
  width: min(1220px, calc(100% - 96px));
  margin: 0 auto;
  padding: 118px 0;
}

.section-heading h2,
.demo-copy h2,
.owner-copy h2,
.faq-heading h2,
.final-copy h2 {
  margin-top: 16px;
  font-family: var(--display);
  font-size: clamp(54.7px, 5.9vw, 82.8px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 58px;
}

.split-heading > *,
.demo-section > *,
.owner-section > * {
  min-width: 0;
}

.split-heading > p:not(.eyebrow),
.centered-heading > p:not(.eyebrow),
.demo-copy > p:not(.eyebrow),
.owner-copy > p:not(.eyebrow),
.faq-heading > p:not(.eyebrow),
.final-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 18.7px;
  line-height: 1.75;
}

.launch-showcase {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.42fr);
  overflow: hidden;
  border: 1px solid #d8d0c6;
  background: #fff;
}

.launch-tabs {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.launch-tab {
  display: grid;
  min-width: 0;
  min-height: 96px;
  flex: 1;
  grid-template-columns: 34px minmax(0, 1fr) 22px;
  align-items: start;
  gap: 13px;
  padding: 21px 22px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, flex 240ms ease;
}

.launch-tab:last-child {
  border-bottom: 0;
}

.launch-tab:hover,
.launch-tab.is-active {
  background: var(--sand);
}

.launch-tab.is-active {
  flex: 1.65;
}

.launch-tab-number {
  padding-top: 3px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.launch-tab-copy {
  display: grid;
  min-width: 0;
}

.launch-tab-copy strong {
  font-family: var(--display);
  font-size: 19.3px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.launch-tab-copy > span {
  max-height: 0;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 12.7px;
  line-height: 1.55;
  opacity: 0;
  transition: max-height 220ms ease, margin 220ms ease, opacity 160ms ease;
}

.launch-tab.is-active .launch-tab-copy > span {
  max-height: 82px;
  margin-top: 9px;
  opacity: 1;
}

.launch-tab-sign {
  color: #8b837a;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  text-align: right;
}

.launch-tab.is-active .launch-tab-sign {
  color: var(--copper);
}

.launch-stage {
  display: grid;
  min-width: 0;
  grid-template-rows: 43px 1fr;
  padding: 16px;
  background: var(--ink);
}

.launch-stage-bar {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 3px 12px;
  color: #a9a5a0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.launch-stage-bar > span:first-child {
  display: flex;
  align-items: center;
  gap: 5px;
}

.launch-stage-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #67635f;
}

.launch-stage-bar i:last-of-type {
  margin-right: 8px;
}

.launch-panel {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 560px;
  overflow: hidden;
  place-items: center;
  padding: 0;
  background:
    radial-gradient(circle at 82% 14%, rgba(190, 141, 88, 0.11), transparent 29%),
    linear-gradient(145deg, #faf8f4 0%, #f5f0e9 100%);
  color: var(--ink);
}

.launch-panel::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 23, 23, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 23, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  pointer-events: none;
}

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

.launch-image-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f8f5f0;
}

.launch-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.launch-scene {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

.launch-scene-register {
  display: grid;
  align-content: center;
  place-items: center;
  padding: clamp(26px, 4vw, 52px);
}

.launch-ui-card {
  border: 1px solid #d8d0c6;
  background: #fff;
  box-shadow: 0 24px 70px rgba(47, 38, 28, 0.1);
}

.launch-register-card {
  width: min(460px, 78%);
  padding: 30px;
  transform: translateX(-5%);
}

.launch-register-card > p,
.launch-services-copy > span {
  color: var(--copper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.launch-register-card > strong {
  display: block;
  margin: 6px 0 24px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
}

.launch-register-card label {
  display: grid;
  gap: 3px;
  margin-top: 12px;
  color: #8b847c;
  font-size: 11px;
  font-weight: 600;
}

.launch-register-card label > span {
  min-height: 41px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 13.3px;
  font-weight: 500;
}

.launch-register-card > b {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 0 15px;
  background: var(--ink);
  color: #fff;
  font-family: var(--display);
  font-size: 13.3px;
  font-weight: 600;
}

.launch-register-card > b span {
  color: var(--copper-light);
  font-size: 18px;
}

.launch-result-card {
  position: absolute;
  right: 1%;
  bottom: 5%;
  display: grid;
  min-width: 190px;
  padding: 21px;
  border: 1px solid #d8d0c6;
  background: var(--sand);
  box-shadow: 0 20px 50px rgba(47, 38, 28, 0.14);
}

.launch-result-card > span {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.launch-result-card > strong {
  font-family: var(--display);
  font-size: 34.7px;
  font-weight: 600;
}

.launch-result-card small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 11px;
}

.launch-result-card i,
.launch-service-card small i,
.launch-code-result i {
  color: var(--green);
  font-style: normal;
}

.launch-catalog-card,
.launch-orders-card {
  width: calc(100% - clamp(34px, 5vw, 68px));
  height: auto;
  margin: auto;
}

.launch-catalog-card > header,
.launch-orders-card > header {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.launch-catalog-card header div,
.launch-orders-card header div {
  display: grid;
}

.launch-catalog-card header small,
.launch-orders-card header small {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-catalog-card header strong,
.launch-orders-card header strong {
  font-family: var(--display);
  font-size: 26.7px;
  font-weight: 600;
}

.launch-catalog-card header > span,
.launch-orders-card header > span {
  padding: 8px 11px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.launch-catalog-row {
  display: grid;
  min-height: 82px;
  grid-template-columns: 38px minmax(0, 1fr) 90px 56px;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.launch-catalog-head {
  min-height: 38px;
  grid-template-columns: minmax(0, 1fr) 90px 56px;
  padding-block: 7px;
  color: #918a82;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.launch-catalog-row strong {
  font-size: 13.3px;
}

.launch-catalog-row:not(.launch-catalog-head) > span:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.launch-catalog-row em {
  color: var(--ink-soft);
  font-style: normal;
}

.launch-product-swatch {
  width: 34px;
  height: 42px;
  background: #ddd;
}

.swatch-clay { background: #b97955; }
.swatch-wood { background: #a98962; }
.swatch-sand { background: #ded2bf; }

.launch-catalog-row .stock-in {
  color: var(--green);
}

.launch-catalog-row .stock-out {
  color: #918a82;
}

.launch-catalog-card > footer,
.launch-orders-card > footer {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 22px;
  color: var(--ink-soft);
  font-size: 11px;
}

.launch-catalog-card > footer span:last-child {
  color: var(--copper);
  font-weight: 700;
}

.launch-services-scene {
  display: grid;
  height: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 16px;
  padding: clamp(26px, 4vw, 52px);
}

.launch-services-copy {
  grid-column: 1 / -1;
  max-width: 540px;
  margin-bottom: 8px;
}

.launch-services-copy > strong {
  display: block;
  margin-top: 5px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
}

.launch-services-copy p,
.launch-service-note {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 12.7px;
  line-height: 1.6;
}

.launch-service-card {
  display: grid;
  min-width: 0;
  min-height: 210px;
  align-content: start;
  gap: 0;
  padding: 23px;
  border: 1px solid #d8d0c6;
  background: #fff;
  box-shadow: 0 16px 45px rgba(47, 38, 28, 0.07);
}

.launch-service-brand {
  display: flex;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.launch-service-logo {
  display: flex;
  min-width: 0;
  height: 40px;
  align-items: center;
}

.launch-service-logo img {
  display: block;
  width: auto;
  max-width: 150px;
  max-height: 38px;
  object-fit: contain;
  object-position: left center;
}

.launch-service-logo-cdek img {
  width: 112px;
  max-width: 112px;
  height: auto;
}

.launch-service-kind {
  flex: 0 0 auto;
  padding: 6px 8px;
  background: var(--sand);
  color: #756e67;
  font-size: 9.7px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-service-card label {
  margin-top: 17px;
  color: #8b847c;
  font-size: 11px;
  font-weight: 600;
}

.launch-service-card code {
  margin-top: 4px;
  padding: 9px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
}

.launch-service-card small {
  width: max-content;
  max-width: 100%;
  margin-top: 12px;
  padding: 6px 8px;
  background: #e8f1eb;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
}

.launch-service-note {
  grid-column: 1 / -1;
  margin-top: 0;
  padding-left: 13px;
  border-left: 2px solid var(--copper);
}

.launch-code-scene {
  display: grid;
  height: 100%;
  align-content: center;
  padding: clamp(28px, 5vw, 62px);
}

.launch-code-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 13px;
}

.launch-code-heading span {
  color: var(--copper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.launch-code-heading small {
  color: var(--ink-soft);
  font-size: 12px;
}

.launch-code-block {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #373737;
  background: #202020;
}

.launch-code-block > span,
.launch-code-block code {
  min-height: 88px;
  padding: 27px 12px;
  border-bottom: 1px solid #373737;
  color: #8d8985;
  font-size: 11px;
}

.launch-code-block code {
  overflow-x: auto;
  padding-inline: 5px 22px;
  color: #ebcda9;
  font-size: 12.7px;
  white-space: nowrap;
}

.launch-code-block > :nth-last-child(-n + 2) {
  border-bottom: 0;
}

.launch-code-result {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  border: 1px solid #d8d0c6;
  border-top: 0;
  background: #fff;
}

.launch-code-result span {
  color: var(--ink-soft);
  font-size: 11px;
}

.launch-code-result strong {
  max-width: 280px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  text-align: right;
}

.launch-orders-card {
  align-self: center;
}

.launch-panel.is-active .launch-scene {
  animation: launch-scene-in 260ms ease both;
}

@keyframes launch-scene-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.launch-orders-card header > span {
  background: var(--green);
}

.launch-order {
  display: grid;
  min-height: 82px;
  grid-template-columns: 82px minmax(0, 1fr) 82px 76px;
  align-items: center;
  gap: 13px;
  padding: 12px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.launch-order-head {
  min-height: 40px;
  color: #918a82;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.launch-order em {
  padding: 5px 7px;
  background: #e8f1eb;
  color: var(--green);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
}

.launch-order em.status-paid {
  background: #f2eadf;
  color: var(--copper);
}

.launch-order em.status-sent {
  background: #eceae7;
  color: #746e68;
}

.launch-orders-card > footer strong {
  color: var(--green);
  font-size: 11px;
}

.demo-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(400px, 0.88fr);
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
  min-height: 800px;
  padding: 100px max(6vw, calc((100vw - 1320px) / 2));
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.demo-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 600px;
}

.demo-photo {
  overflow: hidden;
  background: #b79b7e;
}

.demo-photo-large {
  grid-row: 1 / 3;
}

.demo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.demo-photo:hover img {
  transform: scale(1.025);
}

.demo-cart-card {
  position: absolute;
  right: -28px;
  bottom: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 34px;
  min-width: 240px;
  padding: 19px 21px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.demo-cart-card span {
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-cart-card strong {
  grid-column: 1;
  font-family: var(--display);
  font-size: 18.7px;
}

.demo-cart-card i {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  color: var(--copper);
  font-family: var(--display);
  font-size: 21.3px;
  font-style: normal;
  font-weight: 600;
}

.eyebrow-light {
  color: var(--copper-light);
}

.demo-copy h2 {
  max-width: 540px;
}

.demo-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 26px;
  color: #aaa7a2;
}

.demo-checks {
  display: grid;
  margin: 32px 0 34px;
  list-style: none;
}

.demo-checks li {
  position: relative;
  padding: 13px 0 13px 29px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: #d2cfcb;
  font-size: 14.7px;
}

.demo-checks li::before {
  position: absolute;
  left: 0;
  color: var(--copper-light);
  content: "✓";
}

.button-light {
  background: #fff;
  color: var(--ink);
}

.button-light:hover {
  background: var(--sand);
}

.centered-heading {
  max-width: 800px;
  margin: 0 auto 65px;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading > p:not(.eyebrow) {
  max-width: 670px;
  margin: 22px auto 0;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.feature-list {
  border-top: 1px solid var(--line);
}

.feature-list article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list article > span {
  padding-top: 4px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 700;
}

.feature-list h3 {
  margin-bottom: 5px;
  font-family: var(--display);
  font-size: 22.7px;
  font-weight: 600;
}

.feature-list p {
  color: var(--ink-soft);
  font-size: 14.7px;
}

.checkout-preview {
  position: relative;
  padding: 31px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.checkout-preview::before {
  position: absolute;
  inset: 24px -26px -24px 26px;
  z-index: -1;
  border: 1px solid #d6cdc1;
  background: var(--sand);
  content: "";
}

.checkout-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.checkout-top > div {
  display: flex;
  flex-direction: column;
}

.checkout-top small {
  margin-bottom: 4px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.checkout-top strong {
  font-family: var(--display);
  font-size: 29.4px;
  font-weight: 600;
}

.checkout-top > span {
  color: var(--ink-soft);
  font-size: 13.3px;
}

.delivery-option {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  align-items: center;
  gap: 13px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--line);
}

.delivery-option.active {
  border-color: #bd946c;
  background: #fcfaf7;
}

.delivery-option > i {
  width: 14px;
  height: 14px;
  border: 1px solid #aaa39b;
  border-radius: 50%;
}

.delivery-option.active > i {
  border: 4px solid #fff;
  background: var(--copper);
  box-shadow: 0 0 0 1px var(--copper);
}

.delivery-option div {
  display: flex;
  flex-direction: column;
}

.delivery-option strong,
.delivery-option b {
  font-size: 14.7px;
}

.delivery-option b {
  font-weight: 600;
}

.delivery-option small {
  color: var(--ink-soft);
  font-size: 12px;
}

.map {
  position: relative;
  height: 225px;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background-color: #eae7e1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.55) 1px, transparent 1px);
  background-size: 42px 42px;
}

.road {
  position: absolute;
  height: 14px;
  border-top: 3px solid #d7d2ca;
  border-bottom: 3px solid #d7d2ca;
  background: #fff;
}

.road-a { top: 50px; left: -30px; width: 115%; transform: rotate(-9deg); }
.road-b { top: 104px; left: 120px; width: 85%; transform: rotate(64deg); }
.road-c { top: 168px; left: -20px; width: 96%; transform: rotate(7deg); }

.pin {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-family: var(--display);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.14);
}

.pin-cdek { top: 39px; left: 19%; background: #17ad4a; }
.pin-five { top: 75px; right: 14%; background: #5c5c5c; }
.pin-yandex { bottom: 35px; left: 49%; background: #ff4c00; }

.map-card {
  position: absolute;
  right: 13px;
  bottom: 13px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  min-width: 155px;
  padding: 10px 12px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.map-card small {
  color: var(--green);
  font-size: 11px;
}

.map-card strong {
  margin-top: 2px;
  font-size: 13.3px;
}

.checkout-preview > button {
  width: 100%;
  min-height: 47px;
  margin-top: 14px;
  border: 0;
  background: var(--ink);
  color: #fff;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.integrations-section {
  background: var(--sand);
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 22px;
}

.integration-card {
  display: grid;
  overflow: hidden;
  min-height: 399px;
  grid-template-rows: auto 1fr;
  border: 1px solid #d8d0c6;
  background: #fff;
}

.integration-card > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 24px;
  border-bottom: 1px solid var(--line);
}

.integration-card > header span {
  font-family: var(--display);
  font-size: 21.3px;
  font-weight: 600;
}

.integration-card > header small {
  color: #989189;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.provider-list {
  display: grid;
  height: 100%;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.provider-list li {
  display: grid;
  grid-template-columns: minmax(138px, 160px) 1fr;
  align-items: center;
  gap: 18px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
}

.provider-list li:last-child {
  border-bottom: 0;
}

.service-logo,
.payment-logo {
  display: flex;
  min-width: 0;
  align-items: center;
}

.service-logo {
  width: min(160px, 100%);
  min-height: 46px;
}

.service-logo img,
.payment-logo img {
  width: 100%;
  height: 46px;
  object-fit: contain;
  object-position: left center;
}

.provider-list li div {
  display: flex;
  flex-direction: column;
}

.provider-list strong {
  font-family: var(--display);
  font-size: 16.1px;
  font-weight: 600;
}

.provider-list span,
.payment-list span {
  color: var(--ink-soft);
  font-size: 13.3px;
}

.payment-list {
  display: grid;
  height: 100%;
  grid-template-columns: repeat(2, 1fr);
}

.payment-list > div {
  display: grid;
  align-content: center;
  gap: 6px;
  min-height: 154px;
  padding: 19px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.payment-list > div:nth-child(2n) {
  border-right: 0;
}

.payment-list > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.payment-logo {
  width: 100%;
  height: 54px;
}

.payment-logo img {
  max-width: 176px;
  height: 54px;
}

.payment-logo-sbp {
  height: 62px;
}

.payment-logo-sbp img {
  max-width: 128px;
  height: 62px;
}

.payment-list strong {
  font-family: var(--display);
  font-size: 16.1px;
  font-weight: 600;
}

.payment-list span {
  align-self: start;
}

.integrations-disclaimer {
  margin-top: 18px;
  padding: 16px 20px;
  border-left: 3px solid var(--green);
  background: #faf8f5;
  color: #706a64;
  font-size: 13.3px;
  line-height: 1.6;
}

.integration-catalog {
  display: grid;
  gap: 22px;
  margin-top: 52px;
}

.integration-family {
  overflow: hidden;
  border: 1px solid #d8d0c6;
  background: #fff;
}

.integration-family > header {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 21px 24px;
  border-bottom: 1px solid var(--line);
}

.integration-family > header div > span {
  display: block;
  margin-bottom: 2px;
  color: #918a82;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.integration-family > header h3 {
  font-family: var(--display);
  font-size: 26.7px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.integration-family > header > small,
.future-service > small {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  padding: 2px 9px;
  background: var(--sand);
  color: #736c64;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.integration-services {
  display: grid;
  grid-auto-rows: 1fr;
}

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

.integration-services-other {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.future-service {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 196px;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.integration-services .future-service:last-child {
  border-right: 0;
}

.future-service-logo {
  display: flex;
  width: min(190px, calc(100% - 62px));
  height: 48px;
  align-items: center;
}

.future-service-logo img {
  width: 100%;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
}

.future-service-logo-compact {
  width: 82px;
}

.future-service-logo-amocrm {
  position: relative;
  width: 180px;
  height: 48px;
  overflow: hidden;
  background: #fff;
}

.future-service-logo-amocrm img {
  position: absolute;
  top: -94px;
  left: -30px;
  width: 240px;
  max-width: none;
  max-height: none;
  height: 240px;
}

.future-service > div {
  display: grid;
  gap: 3px;
}

.future-service strong {
  font-family: var(--display);
  font-size: 17.3px;
  font-weight: 600;
}

.future-service div span {
  color: var(--ink-soft);
  font-size: 12.7px;
}

.future-service > small {
  position: absolute;
  top: 24px;
  right: 24px;
}

.service-placeholder {
  background: #faf8f5;
}

.placeholder-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #cfc7bc;
  color: #827a71;
  font-size: 24px;
  font-weight: 400;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.audience-card {
  display: flex;
  min-width: 0;
  min-height: 270px;
  flex-direction: column;
  justify-content: space-between;
  padding: 29px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience-card > span {
  color: var(--copper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.audience-card h3 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 25.4px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.audience-card p {
  color: var(--ink-soft);
  font-size: 14.7px;
  line-height: 1.7;
}

.audience-main {
  grid-row: span 2;
  min-height: 540px;
  background:
    linear-gradient(180deg, rgba(23, 23, 23, 0.22), rgba(23, 23, 23, 0.96)),
    url("../demo/assets/ceramics/tea-set.webp") center / cover;
  color: #fff;
}

.audience-main > span {
  color: var(--copper-light);
}

.card-label {
  margin-bottom: 12px;
  color: var(--copper-light) !important;
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-main h3 {
  font-size: 29.4px;
}

.audience-main p {
  color: #c6c2bd;
}

.audience-main small {
  display: inline-block;
  margin-top: 25px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: #e3ded8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.owner-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, 0.85fr);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
  padding: 120px max(6vw, calc((100vw - 1320px) / 2));
  background: #faf9f7;
}

.owner-preview {
  display: block;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.owner-preview > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owner-preview > aside {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 22px;
  padding: 24px 12px;
  background: var(--ink);
}

.owner-preview aside strong {
  margin-bottom: 28px;
  color: #fff;
  font-family: var(--display);
  font-size: 24.1px;
}

.owner-preview aside strong span {
  color: var(--copper-light);
}

.owner-preview aside i {
  width: 21px;
  height: 3px;
  border-radius: 2px;
  background: #646464;
}

.owner-preview aside i.active {
  width: 22px;
  height: 22px;
  border: 6px solid var(--copper-light);
  border-radius: 50%;
  background: transparent;
}

.owner-dashboard {
  min-width: 0;
  padding: 30px;
  overflow: hidden;
}

.owner-dashboard > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.owner-dashboard header > div {
  display: flex;
  flex-direction: column;
}

.owner-dashboard header small {
  color: #969089;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.owner-dashboard header strong {
  font-family: var(--display);
  font-size: 29.4px;
  font-weight: 600;
}

.owner-dashboard header button {
  min-height: 34px;
  padding: 0 13px;
  border: 0;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 25px 0;
}

.stats article {
  display: flex;
  min-height: 100px;
  flex-direction: column;
  padding: 14px;
  background: var(--sand);
}

.stats span {
  color: #8d867e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats strong {
  margin: auto 0 2px;
  font-family: var(--display);
  font-size: 21.3px;
  font-weight: 600;
}

.stats small {
  color: var(--green);
  font-size: 11px;
}

.orders {
  min-width: 480px;
  border: 1px solid var(--line);
}

.order {
  display: grid;
  grid-template-columns: 0.75fr 1.2fr 0.8fr 0.8fr;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.order:last-child {
  border-bottom: 0;
}

.order-head {
  background: #fbfaf8;
  color: #969089;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order em {
  width: max-content;
  padding: 4px 8px;
  border-radius: 12px;
  background: #f4e5ca;
  color: #8c6b34;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.order em.ready { background: #e5f1e8; color: #477957; }
.order em.sent { background: #e7edf4; color: #526c88; }

.owner-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 24px;
}

.owner-copy dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 32px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.owner-copy dl div {
  min-height: 95px;
  padding: 17px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.owner-copy dt {
  font-family: var(--display);
  font-size: 16.1px;
  font-weight: 600;
}

.owner-copy dd {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 13.3px;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 8vw, 120px);
}

.faq-heading > p:not(.eyebrow) {
  max-width: 370px;
  margin-top: 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  padding-bottom: 4px;
  border-bottom: 1px solid #aaa39a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--copper);
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  position: relative;
  padding: 24px 45px 24px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 22.7px;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 3px;
  color: var(--copper);
  content: "+";
  font-family: var(--body);
  font-size: 30.7px;
  font-weight: 400;
}

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

.faq-list details p {
  max-width: 670px;
  padding: 0 50px 24px 0;
  color: var(--ink-soft);
  font-size: 14.7px;
  line-height: 1.7;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
  margin: 0;
  padding: 90px max(5vw, calc((100vw - 1260px) / 2));
  background: var(--ink);
  color: #fff;
}

.final-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 24px 0 31px;
  color: #aaa7a2;
}

.final-copy,
.snippet-card {
  min-width: 0;
}

.snippet-card {
  padding: 26px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.snippet-block + .snippet-block {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.snippet-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.snippet-top small {
  color: var(--copper);
}

.snippet-top b {
  margin-right: 8px;
  color: var(--copper);
  font-weight: 700;
}

.snippet-card code {
  display: block;
  padding: 19px;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: #faf8f5;
  color: #705a47;
  font-size: 12px;
  line-height: 1.8;
  white-space: nowrap;
}

.copy-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 47px;
  margin-top: 12px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.copy-button:hover,
.copy-button.is-copied {
  background: var(--ink);
  color: #fff;
}

.copy-button i {
  color: var(--copper);
  font-size: 18.7px;
  font-style: normal;
}

.pricing-section {
  background: var(--sand);
}

.pricing-progress {
  --pricing-progress: 0%;
  margin-bottom: 42px;
  padding: 28px 32px 24px;
  border: 1px solid #d8d0c6;
  background: #fff;
}

.pricing-progress-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.pricing-client-count > span,
.pricing-progress-status > span {
  display: block;
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-client-count strong {
  display: flex;
  align-items: baseline;
  gap: 9px;
  font-family: var(--display);
}

.pricing-client-count b {
  font-size: 50.7px;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.pricing-client-count small {
  color: var(--ink-soft);
  font-size: 14.7px;
  font-weight: 600;
}

.pricing-progress-status {
  max-width: 430px;
  text-align: right;
}

.pricing-progress-status strong {
  font-family: var(--display);
  font-size: 18.7px;
  font-weight: 600;
}

.pricing-progress-meter {
  margin-top: 24px;
}

.pricing-progress-meter-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 9px;
}

.pricing-progress-meter-heading span {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pricing-progress-meter-heading strong {
  color: var(--green);
  font-family: var(--display);
  font-size: 18.7px;
  font-weight: 600;
  line-height: 1;
}

.pricing-progress-track {
  position: relative;
  height: 24px;
  overflow: hidden;
  border: 1px solid #c8bfb4;
  background: #e9e3db;
  box-shadow: inset 0 1px 2px rgb(45 39 33 / 8%);
}

.pricing-progress-track::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image: linear-gradient(to right, transparent calc(100% - 1px), rgb(44 38 32 / 16%) calc(100% - 1px));
  background-size: 10% 100%;
  content: "";
  pointer-events: none;
}

.pricing-progress-fill {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: var(--pricing-progress);
  min-width: 2px;
  background: linear-gradient(90deg, #174f3e, var(--green));
  transition: width 500ms ease;
}

.pricing-progress-fill::after {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 8px, rgb(255 255 255 / 8%) 8px 13px);
  content: "";
}

.pricing-progress-scale {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 9px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-progress-scale span:last-child {
  text-align: right;
}

.pricing-progress-scale b {
  color: var(--ink);
  font-weight: 700;
}

.pricing-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
}

.pricing-timeline::before {
  display: none;
}

.pricing-tier {
  min-width: 0;
}

.pricing-marker {
  display: block;
  margin: 0 0 10px 2px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-card {
  display: flex;
  min-height: 295px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid #d8d0c6;
  border-top: 4px solid var(--copper-light);
  background: #fff;
}

.pricing-tier-free .pricing-marker {
  color: var(--green);
}

.pricing-tier-free .pricing-card {
  border-top-color: var(--green);
}

.pricing-tier-base .pricing-marker {
  color: var(--ink);
}

.pricing-tier-base .pricing-card {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.pricing-tier.is-current .pricing-card {
  box-shadow: 0 0 0 2px var(--green);
}

.pricing-tier.is-current .pricing-marker::after {
  margin-left: 8px;
  padding: 3px 6px;
  background: var(--green);
  color: #fff;
  content: "Сейчас";
  letter-spacing: 0.08em;
}

.pricing-range {
  color: var(--copper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pricing-tier-free .pricing-range {
  color: var(--green);
}

.pricing-tier-base .pricing-range {
  color: var(--copper-light);
}

.pricing-card h3 {
  margin-top: 10px;
  font-family: var(--display);
  font-size: 26.7px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px 9px;
  margin-top: 28px;
}

.pricing-price strong {
  font-family: var(--display);
  font-size: clamp(44.1px, 3.6vw, 58.7px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.pricing-price span {
  color: var(--ink-soft);
  font-size: 13.3px;
  font-weight: 600;
}

.pricing-tier-base .pricing-price span,
.pricing-tier-base .pricing-description {
  color: #aaa7a2;
}

.pricing-description {
  margin-top: auto;
  padding-top: 24px;
  color: var(--ink-soft);
  font-size: 14.7px;
  line-height: 1.65;
}

.pricing-footnote {
  margin-top: 28px;
  color: #746d65;
  font-size: 13.3px;
  line-height: 1.6;
}

.pricing-footnote span {
  margin-right: 4px;
  color: var(--copper);
  font-weight: 700;
}

.pricing-register-button {
  display: flex;
  width: 100%;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: -18px 0 42px;
  padding: 18px 32px;
  background: var(--ink);
  color: #fff;
  font-family: var(--display);
  font-size: 18.7px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
  transition: background 180ms ease, transform 180ms ease;
}

.pricing-register-button:hover {
  background: var(--green);
  transform: translateY(-2px);
}

.pricing-register-button > span:last-child {
  flex: 0 0 auto;
  color: var(--copper-light);
  font-size: 26.7px;
  font-weight: 400;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  min-height: 125px;
  padding: 28px clamp(24px, 4vw, 64px);
  border-top: 1px solid var(--line);
}

.site-footer > p {
  color: var(--ink-soft);
  font-size: 13.3px;
  text-align: center;
}

.site-footer nav {
  display: flex;
  justify-self: end;
  gap: 21px;
}

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

.reveal {
  opacity: 1;
  transform: none;
}

.has-js .reveal,
.has-js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1260px) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
    gap: 48px;
    padding-inline: 48px;
  }

  .hero h1 {
    font-size: clamp(77.4px, 8vw, 122.9px);
  }

  .cart-pill {
    left: -8px;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 32px 28px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 22px 55px rgba(28, 24, 20, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 13.3px;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 88px 48px 96px;
  }

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

  .hero h1 {
    max-width: 800px;
    font-size: clamp(88.1px, 12vw, 125.5px);
  }

  .hero-visual {
    width: min(760px, 100%);
    margin: 12px auto 0;
  }

  .visual-browser {
    right: 3%;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .split-heading > p:not(.eyebrow) {
    max-width: 690px;
  }

  .launch-showcase {
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  }

  .launch-panel {
    padding: 0;
  }

  .demo-section,
  .owner-section {
    grid-template-columns: 1fr;
  }

  .demo-gallery {
    width: min(760px, 100%);
    margin: 0 auto;
  }

  .demo-copy,
  .owner-copy {
    max-width: 720px;
  }

  .owner-preview {
    order: 2;
    width: min(760px, 100%);
  }

  .owner-copy {
    order: 1;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .snippet-card {
    width: min(760px, 100%);
  }
}

@media (max-width: 820px) {
  .section {
    width: calc(100% - 48px);
    padding: 88px 0;
  }

  .capability-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-strip span:nth-child(2n) {
    border-right: 0;
  }

  .capability-strip span {
    border-bottom: 1px solid var(--line);
  }

  .capability-strip span:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .launch-showcase {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .launch-tabs {
    flex-direction: row;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

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

  .launch-tab,
  .launch-tab.is-active {
    min-height: 148px;
    flex: 0 0 min(320px, 76vw);
    border-right: 1px solid var(--line);
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .launch-tab:last-child {
    border-right: 0;
  }

  .launch-tab-copy > span {
    max-height: 72px;
    margin-top: 9px;
    opacity: 1;
  }

  .launch-stage {
    padding: 14px;
  }

  .launch-panel {
    min-height: 560px;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .feature-list {
    max-width: 650px;
  }

  .checkout-preview {
    width: min(620px, calc(100% - 26px));
  }

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

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

  .integration-services-other .future-service {
    border-bottom: 1px solid var(--line);
  }

  .integration-services-other .future-service:nth-child(2n) {
    border-right: 0;
  }

  .integration-services-other .future-service:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .pricing-progress-copy {
    display: grid;
    gap: 22px;
  }

  .pricing-progress-status {
    max-width: none;
    text-align: left;
  }

  .pricing-timeline {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .pricing-tier,
  .pricing-tier:last-child {
    padding: 0;
  }

  .pricing-marker {
    position: static;
  }

  .pricing-card {
    min-height: 0;
    margin-top: 0;
  }

  .pricing-description {
    margin-top: 0;
  }

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

  .audience-main {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 500px;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 42px;
    text-align: center;
  }

  .footer-brand,
  .site-footer nav {
    justify-self: center;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 68px;
  }

  .site-header {
    min-height: 68px;
    padding-inline: 18px;
  }

  .brand {
    font-size: 25.4px;
  }

  .header-demo {
    min-height: 39px;
    padding-inline: 12px;
    font-size: 11px;
  }

  .menu-toggle {
    width: 39px;
    height: 39px;
  }

  .main-nav {
    top: 68px;
    padding-inline: 20px;
  }

  .hero {
    gap: 46px;
    padding: 64px 20px 70px;
  }

  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .hero h1 {
    margin-block: 18px 22px;
    font-size: clamp(68.1px, 20.1vw, 93.5px);
    line-height: 0.94;
  }

  .hero-lead {
    font-size: 18.7px;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 30px;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding-inline: 16px;
  }

  .hero-facts {
    display: grid;
    gap: 10px;
    margin-top: 30px;
  }

  .hero-visual {
    min-height: 505px;
  }

  .visual-browser {
    top: 0;
    right: 0;
    width: 94%;
  }

  .browser-bar {
    grid-template-columns: 1fr auto;
  }

  .browser-bar > span:nth-child(2) {
    display: none;
  }

  .visual-photo {
    height: 370px;
  }

  .floating-code {
    bottom: 15px;
    width: 86%;
    padding: 14px;
  }

  .floating-code code {
    font-size: 11px;
  }

  .floating-product {
    right: 0;
    bottom: 112px;
    grid-template-columns: 50px 1fr 26px;
    width: 72%;
    gap: 9px;
  }

  .floating-product img {
    width: 50px;
    height: 50px;
  }

  .floating-product > span {
    width: 26px;
    height: 26px;
  }

  .cart-pill {
    top: 118px;
    left: 0;
    min-width: 170px;
  }

  .section {
    width: calc(100% - 40px);
    padding: 75px 0;
  }

  .section-heading h2,
  .demo-copy h2,
  .owner-copy h2,
  .faq-heading h2,
  .final-copy h2 {
    font-size: clamp(50.7px, 14.7vw, 66.8px);
  }

  .split-heading {
    margin-bottom: 38px;
  }

  .launch-stage {
    grid-template-rows: 39px 1fr;
    padding: 10px;
  }

  .launch-stage-bar {
    padding-bottom: 9px;
  }

  .launch-stage-bar > span:first-child {
    overflow: hidden;
    white-space: nowrap;
  }

  .launch-panel {
    min-height: 560px;
    padding: 0;
  }

  .launch-tab,
  .launch-tab.is-active {
    min-height: 144px;
    flex-basis: calc(100vw - 82px);
    padding: 20px;
  }

  .launch-tab-copy strong {
    font-size: 18px;
  }

  .launch-scene-register {
    align-content: center;
    gap: 12px;
    padding: 16px;
  }

  .launch-register-card {
    width: 100%;
    padding: 21px;
    transform: none;
  }

  .launch-register-card > strong {
    margin-bottom: 17px;
    font-size: 24px;
  }

  .launch-result-card {
    position: static;
    width: 100%;
    grid-template-columns: 1fr auto;
    align-items: end;
    padding: 16px 18px;
  }

  .launch-result-card > strong {
    grid-row: span 2;
    font-size: 29.3px;
  }

  .launch-catalog-card > header,
  .launch-orders-card > header {
    min-height: 76px;
    padding-inline: 16px;
  }

  .launch-catalog-card header strong,
  .launch-orders-card header strong {
    font-size: 22px;
  }

  .launch-catalog-row {
    min-height: 76px;
    grid-template-columns: 28px minmax(0, 1fr) 62px 40px;
    gap: 7px;
    padding-inline: 14px;
  }

  .launch-catalog-row > .stock-in,
  .launch-catalog-row > .stock-out {
    font-size: 12px;
    white-space: nowrap;
  }

  .launch-catalog-row em,
  .launch-catalog-head span:last-child {
    display: none;
  }

  .launch-catalog-head {
    min-height: 36px;
    grid-template-columns: minmax(0, 1fr) 68px;
    padding-left: 53px;
  }

  .launch-product-swatch {
    width: 28px;
    height: 36px;
  }

  .launch-services-scene {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 10px;
    padding: 18px;
  }

  .launch-services-copy,
  .launch-service-note {
    grid-column: auto;
  }

  .launch-services-copy > strong {
    font-size: 23px;
  }

  .launch-service-card {
    min-height: 145px;
    padding: 15px;
  }

  .launch-service-brand {
    min-height: 38px;
  }

  .launch-service-logo {
    height: 32px;
  }

  .launch-service-logo img {
    max-width: 132px;
    max-height: 31px;
  }

  .launch-service-logo-cdek img {
    width: 96px;
  }

  .launch-code-heading {
    display: grid;
    gap: 3px;
  }

  .launch-code-block > span,
  .launch-code-block code {
    min-height: 112px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .launch-code-block code {
    overflow-x: visible;
    padding-right: 12px;
    font-size: 11.6px;
    line-height: 1.55;
    overflow-wrap: normal;
    white-space: normal;
  }

  .launch-code-result {
    display: grid;
    gap: 7px;
  }

  .launch-code-result strong {
    font-size: 18px;
    text-align: left;
  }

  .launch-order {
    min-height: 72px;
    grid-template-columns: 62px minmax(0, 1fr) 72px;
    gap: 8px;
    padding-inline: 14px;
  }

  .launch-order > :nth-child(2) {
    display: none;
  }

  .launch-orders-card > footer {
    display: grid;
  }

  .launch-catalog-card,
  .launch-orders-card {
    width: calc(100% - 20px);
  }

  .launch-code-scene {
    padding: 18px;
  }

  .demo-section,
  .owner-section {
    gap: 52px;
    padding: 75px 20px;
  }

  .demo-gallery {
    grid-template-columns: 1fr 0.82fr;
    min-height: 410px;
    gap: 7px;
  }

  .demo-cart-card {
    right: -5px;
    bottom: 20px;
    min-width: 190px;
    padding: 14px;
  }

  .checkout-preview {
    width: 100%;
    padding: 20px;
  }

  .checkout-preview::before {
    display: none;
  }

  .checkout-top strong {
    font-size: 29.4px;
  }

  .delivery-option {
    grid-template-columns: 16px 1fr;
  }

  .delivery-option > b {
    display: none;
  }

  .map {
    height: 195px;
  }

  .integration-card > header {
    padding-inline: 18px;
  }

  .provider-list li {
    grid-template-columns: minmax(98px, 122px) 1fr;
    padding-inline: 18px;
  }

  .payment-list > div,
  .payment-list > div:nth-child(2n) {
    min-height: 125px;
  }

  .integration-family > header {
    min-height: 94px;
    gap: 10px;
    padding-inline: 18px;
  }

  .integration-family > header h3 {
    font-size: 24px;
  }

  .integration-family > header > small {
    max-width: 104px;
    flex: 0 0 auto;
    text-align: center;
  }

  .integration-services-marketplaces,
  .integration-services-other {
    grid-template-columns: 1fr;
  }

  .integration-services .future-service,
  .integration-services-other .future-service:nth-child(2n) {
    min-height: 158px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .integration-services .future-service:last-child,
  .integration-services-other .future-service:nth-last-child(-n + 2):last-child {
    border-bottom: 0;
  }

  .future-service {
    padding: 20px 18px;
  }

  .future-service > small {
    top: 20px;
    right: 18px;
  }

  .pricing-progress {
    padding: 23px 21px 20px;
  }

  .pricing-client-count b {
    font-size: 44.1px;
  }

  .pricing-timeline {
    gap: 16px;
  }

  .pricing-marker {
    font-size: 11px;
  }

  .pricing-card {
    padding: 23px 21px;
  }

  .pricing-price {
    margin-top: 21px;
  }

  .pricing-description {
    padding-top: 20px;
  }

  .pricing-footnote {
    margin-left: 0;
  }

  .pricing-register-button {
    min-height: 72px;
    margin: -10px 0 28px;
    padding: 16px 20px;
    font-size: 16.1px;
  }

  .pricing-register-button > span:last-child {
    font-size: 22.7px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .audience-card,
  .audience-main {
    grid-column: auto;
    min-height: 245px;
    border-left: 1px solid var(--line);
  }

  .audience-main {
    min-height: 470px;
  }

  .owner-preview {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .owner-preview > aside {
    padding-inline: 8px;
  }

  .owner-dashboard {
    padding: 19px 14px;
  }

  .owner-dashboard header button {
    display: none;
  }

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

  .stats article:last-child {
    display: none;
  }

  .orders {
    min-width: 0;
  }

  .order {
    grid-template-columns: 0.8fr 1fr 0.85fr;
    gap: 7px;
    padding-inline: 9px;
  }

  .order > :nth-child(2) {
    display: none;
  }

  .owner-copy dl {
    grid-template-columns: 1fr;
  }

  .final-cta {
    gap: 45px;
    margin: 0;
    padding: 72px 20px;
  }

  .snippet-card {
    padding: 19px;
  }

  .snippet-card code {
    min-height: 76px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .snippet-card code {
    font-size: 11px;
  }

  .faq-list summary {
    font-size: 21.3px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .header-demo span {
    display: none;
  }

  .header-demo {
    padding-inline: 9px;
  }

  .floating-product {
    width: 82%;
  }

  .demo-gallery {
    min-height: 365px;
  }

  .audience-main h3 {
    font-size: clamp(32.3px, 10.4vw, 41.4px);
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: clamp(53.5px, 17.5vw, 62.3px);
  }
}

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

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

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}
