@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  --brand: #673ab7;
  --brand-dark: #4c268f;
  --brand-deep: #2a124d;
  --brand-soft: #f1ebfb;
  --brand-border: #ddd0f2;
  --secondary: #9575cd;
  --ink: #191525;
  --ink-soft: #393443;
  --muted: #6f6a79;
  --subtle: #9a96a3;
  --line: #e9e6ee;
  --canvas: #f7f7fa;
  --surface: #ffffff;
  --surface-muted: #f0f1f5;
  --green: #168862;
  --green-soft: #e9f7f1;
  --amber: #b96813;
  --amber-soft: #fff3e4;
  --red: #c84152;
  --red-soft: #fff0f2;
  --blue: #2872c7;
  --blue-soft: #ebf4ff;
  --shadow: 0 1px 2px rgba(31, 18, 54, 0.05), 0 8px 24px rgba(31, 18, 54, 0.06);
  --max: 1180px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--canvas);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-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;
}

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

h1,
h2,
h3,
h4 {
  line-height: 1.14;
  letter-spacing: 0;
}

p:last-child {
  margin-bottom: 0;
}

:focus-visible {
  outline: 3px solid #b69ce1;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #fff;
  background: var(--brand-deep);
  border-radius: 6px;
  transform: translateY(-150%);
}

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section--white {
  background: var(--surface);
}

.section--ink {
  color: #fff;
  background: var(--brand-deep);
}

.section--tight {
  padding: 56px 0;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.section--ink .eyebrow {
  color: #cdbbec;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 16px;
  font-size: 40px;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.section--ink .section-heading p {
  color: #d8d0e3;
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

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

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

.button--secondary {
  color: var(--brand-dark);
  background: #fff;
  border-color: var(--brand-border);
}

.button--secondary:hover {
  background: var(--brand-soft);
}

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

.button--ghost-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
}

.button[disabled] {
  opacity: 0.62;
  cursor: wait;
  transform: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand-dark);
  font-weight: 720;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 4px 18px rgba(31, 18, 54, 0.05);
}

.nav {
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-size: 23px;
  font-weight: 820;
}

.brand img {
  width: 38px;
  height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--brand);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.merchant-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 680;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.hero {
  min-height: calc(100vh - var(--header-height) - 70px);
  min-height: calc(100svh - var(--header-height) - 70px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #1e1d20;
}

.hero__media,
.hero__media picture,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  z-index: 0;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero__media img {
  object-fit: cover;
  object-position: center;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(660px, 58%);
  padding: 84px 0 112px;
}

.hero__label {
  margin-bottom: 20px;
  color: #dfd2f3;
  font-size: 14px;
  font-weight: 750;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 20px;
  font-size: 72px;
  font-weight: 830;
}

.hero__lead {
  max-width: 610px;
  margin-bottom: 30px;
  color: #f0edf3;
  font-size: 21px;
  line-height: 1.55;
}

.hero__actions,
.page-hero__actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__note {
  margin-top: 22px;
  color: #cbc4d0;
  font-size: 13px;
}

.hero__screen {
  position: absolute;
  z-index: 2;
  right: 9.3%;
  top: 38.5%;
  width: 20.8%;
  aspect-ratio: 1.62;
  overflow: hidden;
  background: #f7f7fa;
  border-radius: 5px;
  transform: perspective(1000px) rotateY(-2deg) rotateZ(-0.4deg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.mini-pos {
  height: 100%;
  display: grid;
  grid-template-columns: 19% 1fr 28%;
  color: #25202e;
  background: #f7f7fa;
  font-size: 7px;
}

.mini-pos__side {
  padding: 9px 5px;
  color: #fff;
  background: var(--brand-deep);
}

.mini-pos__brand {
  margin-bottom: 11px;
  font-size: 8px;
  font-weight: 800;
}

.mini-pos__nav {
  padding: 5px;
  margin-bottom: 4px;
  border-radius: 2px;
  opacity: 0.72;
}

.mini-pos__nav.is-active {
  background: var(--brand);
  opacity: 1;
}

.mini-pos__catalog {
  padding: 7px;
}

.mini-pos__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  font-weight: 800;
}

.mini-pos__products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.mini-pos__product {
  min-height: 38px;
  padding: 5px;
  background: #fff;
  border: 1px solid #e9e6ee;
  border-radius: 3px;
}

.mini-pos__product span {
  display: block;
  margin-top: 12px;
  font-weight: 700;
}

.mini-pos__cart {
  padding: 7px;
  background: #fff;
  border-left: 1px solid #e9e6ee;
}

.mini-pos__cart h3 {
  margin-bottom: 8px;
  font-size: 8px;
}

.mini-pos__line {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid #eeeaf2;
}

.mini-pos__pay {
  margin-top: 10px;
  padding: 6px 4px;
  color: #fff;
  text-align: center;
  background: var(--brand);
  border-radius: 2px;
  font-weight: 800;
}

.trust-band {
  color: var(--ink);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.trust-band__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.trust-band__title {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
  text-transform: uppercase;
}

.trust-band__items {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.trust-band__items span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-band__items span::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--green);
  border-radius: 50%;
}

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

.workflow-step {
  min-height: 250px;
  position: relative;
  padding: 32px;
  border-right: 1px solid var(--line);
}

.workflow-step:last-child {
  border-right: 0;
}

.workflow-step__number {
  display: block;
  margin-bottom: 42px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
}

.workflow-step h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.workflow-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: 72px;
}

.split-feature + .split-feature {
  margin-top: 96px;
}

.split-feature--reverse .split-feature__copy {
  order: 2;
}

.split-feature h2 {
  margin-bottom: 18px;
  font-size: 40px;
}

.split-feature__copy > p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink-soft);
}

.check-list .icon {
  width: 19px;
  height: 19px;
  padding: 3px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
}

.product-shot {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-shot__bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: var(--muted);
  background: #fbfbfc;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
}

.product-shot__dots {
  display: flex;
  gap: 5px;
}

.product-shot__dots i {
  width: 7px;
  height: 7px;
  display: block;
  background: #d6d2dc;
  border-radius: 50%;
}

.pos-ui {
  min-height: 390px;
  display: grid;
  grid-template-columns: 116px 1fr 184px;
  color: #2a2531;
  background: var(--canvas);
  font-size: 10px;
}

.pos-ui__rail {
  padding: 16px 10px;
  color: #fff;
  background: var(--brand-deep);
}

.pos-ui__identity {
  padding-bottom: 14px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.pos-ui__identity strong,
.pos-ui__identity span {
  display: block;
}

.pos-ui__identity span {
  margin-top: 3px;
  color: #cfc3dc;
  font-size: 8px;
}

.pos-ui__nav-item {
  padding: 8px;
  margin-bottom: 4px;
  border-radius: 4px;
  opacity: 0.72;
}

.pos-ui__nav-item.is-active {
  background: var(--brand);
  opacity: 1;
}

.pos-ui__catalog {
  padding: 16px;
}

.pos-ui__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.pos-ui__toolbar strong {
  font-size: 14px;
}

.pos-ui__search {
  width: 120px;
  padding: 7px 9px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.pos-ui__categories {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.pos-ui__categories span {
  padding: 6px 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.pos-ui__categories .is-active {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.pos-ui__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.pos-product {
  min-height: 82px;
  position: relative;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.pos-product__color {
  height: 27px;
  margin-bottom: 8px;
  background: var(--brand-soft);
  border-radius: 3px;
}

.pos-product:nth-child(2n) .pos-product__color {
  background: var(--green-soft);
}

.pos-product:nth-child(3n) .pos-product__color {
  background: var(--amber-soft);
}

.pos-product strong,
.pos-product span {
  display: block;
}

.pos-product span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
}

.pos-ui__cart {
  padding: 16px 12px;
  background: #fff;
  border-left: 1px solid var(--line);
}

.pos-ui__cart h3 {
  margin-bottom: 14px;
  font-size: 14px;
}

.cart-line {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.cart-line span {
  color: var(--muted);
  font-size: 8px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  font-size: 12px;
  font-weight: 800;
}

.cart-pay {
  padding: 9px;
  margin-top: 14px;
  color: #fff;
  text-align: center;
  background: var(--brand);
  border-radius: 4px;
  font-weight: 800;
}

.admin-ui {
  min-height: 390px;
  display: grid;
  grid-template-columns: 128px 1fr;
  color: #2a2531;
  background: var(--canvas);
  font-size: 9px;
}

.admin-ui__side {
  padding: 17px 10px;
  color: #fff;
  background: var(--brand-deep);
}

.admin-ui__logo {
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 820;
}

.admin-ui__nav {
  padding: 8px;
  margin-bottom: 4px;
  border-radius: 4px;
  opacity: 0.7;
}

.admin-ui__nav.is-active {
  background: var(--brand);
  opacity: 1;
}

.admin-ui__main {
  padding: 18px;
}

.admin-ui__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.admin-ui__header strong {
  font-size: 15px;
}

.branch-select {
  padding: 7px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.admin-stat {
  padding: 11px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.admin-stat span,
.admin-stat strong {
  display: block;
}

.admin-stat span {
  color: var(--muted);
}

.admin-stat strong {
  margin-top: 7px;
  font-size: 14px;
}

.admin-content-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
}

.admin-panel {
  padding: 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.admin-panel h3 {
  margin-bottom: 10px;
  font-size: 11px;
}

.admin-row {
  display: grid;
  grid-template-columns: 1fr 0.7fr auto;
  gap: 7px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.admin-row:last-child {
  border-bottom: 0;
}

.status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 3px 6px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 4px;
  font-weight: 750;
}

.status--amber {
  color: var(--amber);
  background: var(--amber-soft);
}

.event-row {
  display: grid;
  grid-template-columns: 7px 1fr;
  gap: 7px;
  padding: 7px 0;
}

.event-row i {
  width: 7px;
  height: 7px;
  margin-top: 4px;
  background: var(--green);
  border-radius: 50%;
}

.event-row span {
  display: block;
  color: var(--muted);
  font-size: 8px;
}

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

.feature-item {
  min-height: 200px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-item__label {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 790;
}

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

.feature-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.sync-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 70px;
  align-items: center;
}

.sync-layout h2 {
  margin-bottom: 18px;
  font-size: 40px;
}

.sync-layout p {
  color: #d8d0e3;
  font-size: 18px;
}

.sync-console {
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.sync-console__header {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  background: #f8f7fa;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 750;
}

.sync-console__body {
  padding: 14px 16px;
}

.sync-command {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.sync-command:last-child {
  border-bottom: 0;
}

.sync-command strong {
  font-size: 12px;
}

.sync-command small {
  display: block;
  color: var(--muted);
}

.sync-command__id {
  color: var(--subtle);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.cta-band {
  padding: 68px 0;
  color: #fff;
  background: var(--brand);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-band h2 {
  max-width: 680px;
  margin-bottom: 10px;
  font-size: 36px;
}

.cta-band p {
  margin-bottom: 0;
  color: #eee7f8;
}

.site-footer {
  padding: 64px 0 24px;
  color: #d7d1dc;
  background: #18131f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 44px;
}

.site-footer .brand {
  margin-bottom: 18px;
  color: #fff;
}

.footer-intro {
  max-width: 360px;
  color: #aaa3b2;
}

.footer-col h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 14px;
}

.footer-links {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  margin-top: 52px;
  color: #8e8796;
  border-top: 1px solid #342c3c;
  font-size: 13px;
}

.page-hero {
  padding: 92px 0 72px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
  align-items: center;
  gap: 64px;
}

.page-hero h1 {
  margin-bottom: 18px;
  font-size: 56px;
}

.page-hero__lead {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 19px;
}

.page-hero--compact {
  padding: 76px 0 58px;
}

.page-hero--compact .page-hero__inner {
  max-width: 760px;
}

.page-hero--compact h1 {
  font-size: 48px;
}

.detail-band {
  padding: 72px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.detail-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

.detail-grid h2 {
  font-size: 34px;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.detail-list article {
  min-height: 150px;
  padding: 24px 24px 24px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list article:nth-child(odd) {
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.detail-list article:nth-child(even) {
  padding-left: 28px;
}

.detail-list h3 {
  margin-bottom: 9px;
  font-size: 18px;
}

.detail-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
  gap: 54px;
  align-items: start;
}

.form-panel,
.contact-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.form-panel {
  padding: 34px;
}

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

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

.field label,
.field-hint,
.field-error {
  display: block;
}

.field label {
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.required {
  color: var(--red);
}

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cbc7d1;
  border-radius: 6px;
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--brand);
  outline: 3px solid var(--brand-soft);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--red);
}

.field-hint,
.field-error {
  margin-top: 6px;
  font-size: 12px;
}

.field-hint {
  color: var(--muted);
}

.field-error {
  color: var(--red);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.form-consent {
  color: var(--muted);
  font-size: 12px;
}

.form-consent a {
  color: var(--brand-dark);
  text-decoration: underline;
}

.form-status {
  display: none;
  padding: 14px 16px;
  margin: 0 0 20px;
  border-radius: 6px;
  font-size: 14px;
}

.form-status.is-visible {
  display: block;
}

.form-status--success {
  color: #0d6144;
  background: var(--green-soft);
  border: 1px solid #b8e3d2;
}

.form-status--error {
  color: #9e2638;
  background: var(--red-soft);
  border: 1px solid #efc2c9;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.security-check {
  min-height: 118px;
  padding-top: 4px;
}

.security-check__status {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.security-check__indicator {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  background: var(--amber);
  border-radius: 50%;
}

.security-check__status[data-state="ready"] {
  color: #0d6144;
}

.security-check__status[data-state="ready"] .security-check__indicator {
  background: var(--green);
}

.security-check__status[data-state="expired"],
.security-check__status[data-state="unavailable"] {
  color: #9e2638;
}

.security-check__status[data-state="expired"] .security-check__indicator,
.security-check__status[data-state="unavailable"] .security-check__indicator {
  background: var(--red);
}

.security-check__status[data-state="submitting"] .security-check__indicator {
  background: var(--blue);
}

.contact-panel {
  overflow: hidden;
}

.contact-panel__main {
  padding: 30px;
}

.contact-panel h2 {
  margin-bottom: 12px;
  font-size: 24px;
}

.contact-panel p {
  color: var(--muted);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-method {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px;
  background: var(--canvas);
  border-radius: 6px;
}

.contact-method .icon {
  width: 20px;
  height: 20px;
  margin: auto;
  color: var(--brand);
}

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

.contact-method span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.contact-panel__note {
  padding: 22px 30px;
  color: #e9e1f3;
  background: var(--brand-deep);
  font-size: 13px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: 60px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 96px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-nav strong {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
}

.legal-nav a {
  display: block;
  padding: 6px 0;
  color: var(--muted);
  font-size: 13px;
}

.legal-copy h2 {
  margin: 42px 0 14px;
  font-size: 26px;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy h3 {
  margin: 26px 0 10px;
  font-size: 18px;
}

.legal-copy p,
.legal-copy li {
  color: var(--ink-soft);
}

.legal-copy a {
  color: var(--brand-dark);
  text-decoration: underline;
}

.legal-note {
  padding: 16px;
  color: #6f5117;
  background: var(--amber-soft);
  border-left: 4px solid var(--amber);
}

.hero--pos-first {
  min-height: calc(100svh - var(--header-height) - 76px);
  align-items: stretch;
}

.hero--pos-first .hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(25, 20, 32, 0.72);
}

.hero--pos-first .hero__media img {
  object-position: center;
}

.hero-pos-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(580px, 1.38fr);
  align-items: center;
  gap: 42px;
  padding-top: 54px;
  padding-bottom: 54px;
}

.hero--pos-first .hero__content {
  width: auto;
  padding: 0;
}

.hero--pos-first h1 {
  max-width: 620px;
  font-size: 58px;
  line-height: 1.03;
}

.hero--pos-first .hero__lead {
  max-width: 560px;
  font-size: 19px;
}

.hero-product-frame {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(15, 9, 25, 0.34);
}

.hero-product-frame picture,
.hero-product-frame img,
.capture-frame picture,
.capture-frame img {
  display: block;
  width: 100%;
}

.hero-product-frame img,
.capture-frame img {
  height: auto;
}

.billing-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(560px, 1.32fr);
  align-items: center;
  gap: 54px;
}

.billing-copy h2,
.showcase-copy h2,
.product-detail-copy h2,
.resilient-layout h2,
.admin-companion h2,
.pos-product-hero h1 {
  margin-bottom: 18px;
  font-size: 42px;
  line-height: 1.12;
}

.billing-copy > p:not(.eyebrow),
.showcase-copy > p:not(.eyebrow),
.product-detail-copy > p:not(.eyebrow),
.resilient-layout > div > p:not(.eyebrow),
.admin-companion p,
.pos-product-hero__copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
}

.capture-frame {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(31, 18, 54, 0.1);
}

.capture-frame figcaption {
  padding: 11px 14px;
  color: var(--ink-soft);
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}

.capture-frame--phone {
  width: min(100%, 390px);
  margin-inline: auto;
}

.workflow-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.workflow-strip article {
  min-width: 0;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.workflow-strip article:last-child {
  border-right: 0;
}

.workflow-strip span {
  display: block;
  margin-bottom: 36px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
}

.workflow-strip h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.workflow-strip p {
  color: var(--ink-soft);
  font-size: 14px;
}

.dual-showcase {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 56px;
}

.dual-showcase > div {
  min-width: 0;
}

.showcase-copy {
  min-height: 194px;
  margin-bottom: 26px;
}

.showcase-copy h2 {
  font-size: 34px;
}

.resilient-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(580px, 1.28fr);
  align-items: center;
  gap: 52px;
}

.section--ink .resilient-layout p,
.section--ink .product-detail-copy > p:not(.eyebrow) {
  color: #cfd3dc;
}

.operational-points {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.operational-points span {
  color: #cfd3dc;
  font-size: 14px;
}

.operational-points strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 15px;
}

.resilient-captures {
  position: relative;
  padding: 0 0 76px;
}

.resilient-captures .capture-frame--register {
  position: absolute;
  right: -18px;
  bottom: 0;
  width: 48%;
}

.admin-companion {
  padding: 68px 0;
  background: #f0f1f5;
  border-block: 1px solid var(--line);
}

.admin-companion__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
}

.admin-companion h2 {
  max-width: 760px;
  font-size: 36px;
}

.admin-companion p {
  max-width: 780px;
}

.admin-companion__actions {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}

.pos-product-hero {
  padding: 70px 0 82px;
  overflow: hidden;
  background: #f0f1f5;
}

.pos-product-hero__copy {
  max-width: 820px;
  margin-bottom: 42px;
}

.pos-product-hero h1 {
  max-width: 920px;
  font-size: 54px;
}

.capture-frame--hero {
  box-shadow: 0 24px 52px rgba(31, 18, 54, 0.14);
}

.product-detail-row {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(390px, 1.18fr);
  align-items: center;
  gap: 64px;
}

.product-detail-row--reverse .product-detail-copy {
  order: 2;
}

.product-detail-copy {
  max-width: 530px;
}

.product-detail-row .capture-frame--phone {
  justify-self: center;
}

.capture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.breadcrumb {
  padding: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumb li + li::before {
  margin-right: 8px;
  color: var(--subtle);
  content: "/";
}

.seo-hero {
  padding: 58px 0 70px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.seo-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  align-items: center;
  gap: 64px;
}

.seo-hero h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: 52px;
}

.seo-hero__lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 19px;
}

.seo-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 26px 0 0;
  color: var(--ink-soft);
  list-style: none;
  font-size: 14px;
  font-weight: 650;
}

.seo-proof li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.seo-proof li::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--green);
  border-radius: 50%;
}

.region-layout,
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: 72px;
}

.prose-section + .prose-section {
  padding-top: 54px;
  margin-top: 54px;
  border-top: 1px solid var(--line);
}

.prose-section h2,
.article-body h2 {
  margin-bottom: 16px;
  font-size: 34px;
}

.prose-section h3,
.article-body h3 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.prose-section p,
.article-body p,
.article-body li {
  color: var(--ink-soft);
  font-size: 17px;
}

.seo-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.seo-sidebar h2 {
  margin-bottom: 12px;
  font-size: 22px;
}

.seo-sidebar p {
  color: var(--muted);
  font-size: 14px;
}

.seo-sidebar .button {
  width: 100%;
}

.capability-links,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.capability-link,
.resource-card {
  min-width: 0;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.capability-link:hover,
.resource-card:hover {
  border-color: var(--brand-border);
}

.capability-link span,
.resource-card__type,
.article-meta dt {
  color: var(--brand);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.capability-link h3,
.resource-card h2 {
  margin: 10px 0 8px;
  font-size: 21px;
}

.capability-link p,
.resource-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

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

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

.faq-list summary {
  color: var(--ink);
  font-weight: 720;
  cursor: pointer;
}

.faq-list p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
}

.resource-search {
  max-width: 620px;
  margin: 30px auto 0;
}

.resource-search label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 700;
}

.resource-search input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.resource-search small {
  color: var(--muted);
  font-weight: 500;
}

.resource-card[hidden] {
  display: none;
}

.article-header {
  max-width: 900px;
}

.article-header h1 {
  margin-bottom: 20px;
  font-size: 50px;
}

.article-header > p {
  max-width: 780px;
  color: var(--muted);
  font-size: 19px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 34px;
  margin: 28px 0 0;
}

.article-meta div {
  display: grid;
  gap: 3px;
}

.article-meta dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.article-body > picture img {
  width: 100%;
  margin-bottom: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-body ul,
.article-body ol {
  padding-left: 24px;
}

.article-body li + li {
  margin-top: 9px;
}

.related-links {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.related-links a {
  color: var(--brand-dark);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .seo-hero__grid {
    grid-template-columns: 1fr;
  }

  .seo-hero__grid .capture-frame {
    max-width: 820px;
  }

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

  .nav-links {
    gap: 18px;
  }

  .merchant-link span {
    display: none;
  }

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

  .hero__screen {
    display: none;
  }

  .hero-pos-layout,
  .billing-layout,
  .resilient-layout {
    grid-template-columns: 1fr;
  }

  .hero-pos-layout {
    gap: 30px;
  }

  .hero--pos-first .hero__content {
    max-width: 720px;
  }

  .hero-product-frame {
    width: min(100%, 820px);
    max-height: 410px;
  }

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

  .workflow-strip article:nth-child(2) {
    border-right: 0;
  }

  .workflow-strip article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .dual-showcase {
    grid-template-columns: 0.78fr 1.22fr;
    gap: 34px;
  }

  .resilient-layout {
    gap: 40px;
  }

  .split-feature,
  .sync-layout,
  .page-hero__grid,
  .detail-grid {
    gap: 44px;
  }

  .pos-ui {
    grid-template-columns: 96px 1fr 150px;
  }

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

  .footer-col:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 820px) {
  .region-layout,
  .article-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .seo-sidebar {
    position: static;
  }

  .seo-hero h1,
  .article-header h1 {
    font-size: 42px;
  }

  :root {
    --header-height: 66px;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading h2,
  .split-feature h2,
  .sync-layout h2 {
    font-size: 34px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    z-index: 95;
    inset: var(--header-height) 0 auto;
    display: none;
    align-items: stretch;
    padding: 20px;
    margin: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 30px rgba(31, 18, 54, 0.12);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 8px;
  }

  .nav-actions .button {
    display: none;
  }

  .merchant-link span {
    display: inline;
  }

  .hero {
    min-height: calc(100vh - var(--header-height) - 46px);
    min-height: calc(100svh - var(--header-height) - 46px);
    align-items: center;
  }

  .hero--pos-first {
    min-height: auto;
  }

  .hero-pos-layout {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .hero__media img {
    object-position: 63% center;
    opacity: 0.62;
  }

  .hero__content {
    width: 100%;
    padding: 52px 0 44px;
  }

  .hero--pos-first .hero__content {
    padding: 0;
  }

  .hero--pos-first h1 {
    font-size: 50px;
  }

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

  .hero__lead {
    max-width: 620px;
  }

  .trust-band__inner,
  .cta-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-band__inner {
    padding: 22px 0;
  }

  .workflow-grid,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .billing-layout,
  .dual-showcase,
  .resilient-layout,
  .product-detail-row,
  .capture-grid,
  .admin-companion__inner {
    grid-template-columns: 1fr;
  }

  .billing-layout,
  .product-detail-row {
    gap: 38px;
  }

  .product-detail-row--reverse .product-detail-copy {
    order: 0;
  }

  .showcase-copy {
    min-height: 0;
  }

  .admin-companion__actions {
    align-items: flex-start;
  }

  .workflow-step {
    border-bottom: 1px solid var(--line);
  }

  .workflow-step:nth-child(2) {
    border-right: 0;
  }

  .workflow-step:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .split-feature,
  .sync-layout,
  .page-hero__grid,
  .detail-grid,
  .demo-layout {
    grid-template-columns: 1fr;
  }

  .split-feature--reverse .split-feature__copy {
    order: 0;
  }

  .page-hero__grid {
    gap: 42px;
  }

  .page-hero h1 {
    font-size: 48px;
  }

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

  .footer-brand,
  .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .legal-nav {
    position: static;
  }
}

@media (max-width: 600px) {
  .seo-hero {
    padding: 42px 0 50px;
  }

  .seo-hero__grid {
    gap: 32px;
  }

  .seo-hero h1,
  .article-header h1 {
    font-size: 36px;
  }

  .seo-hero__lead,
  .article-header > p {
    font-size: 17px;
  }

  .capability-links,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .prose-section h2,
  .article-body h2 {
    font-size: 28px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2,
  .split-feature h2,
  .sync-layout h2 {
    font-size: 29px;
  }

  .section-heading p,
  .split-feature__copy > p,
  .sync-layout p {
    font-size: 16px;
  }

  .nav {
    gap: 10px;
  }

  .brand {
    font-size: 21px;
  }

  .brand img {
    width: 35px;
    height: 35px;
  }

  .merchant-link span {
    display: none;
  }

  .hero__media img {
    object-position: 66% center;
    opacity: 0.5;
  }

  .hero--pos-first .hero__media img {
    opacity: 1;
  }

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

  .hero--pos-first h1 {
    font-size: 40px;
  }

  .hero--pos-first .hero__lead {
    font-size: 17px;
  }

  .hero__lead {
    font-size: 18px;
  }

  .hero__label {
    margin-bottom: 14px;
  }

  .hero__note {
    margin-top: 14px;
  }

  .hero__actions .button,
  .page-hero__actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .trust-band__items {
    display: grid;
    gap: 12px;
  }

  .workflow-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

  .workflow-strip article,
  .workflow-strip article:nth-child(2),
  .workflow-strip article:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-strip article:last-child {
    border-bottom: 0;
  }

  .workflow-strip span {
    margin-bottom: 20px;
  }

  .billing-copy h2,
  .showcase-copy h2,
  .product-detail-copy h2,
  .resilient-layout h2,
  .admin-companion h2,
  .pos-product-hero h1 {
    font-size: 29px;
  }

  .hero-pos-layout {
    gap: 24px;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .hero-product-frame {
    margin-right: -42%;
    width: 138%;
    max-height: 190px;
  }

  .resilient-captures {
    padding-bottom: 54px;
  }

  .resilient-captures .capture-frame--register {
    right: -8px;
    width: 60%;
  }

  .pos-product-hero {
    padding: 54px 0 62px;
  }

  .capture-frame--hero {
    width: 136%;
  }

  .workflow-step,
  .workflow-step:nth-child(2),
  .workflow-step:last-child {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-step:last-child {
    border-bottom: 0;
  }

  .workflow-step__number {
    margin-bottom: 26px;
  }

  .split-feature + .split-feature {
    margin-top: 68px;
  }

  .product-shot {
    overflow-x: auto;
  }

  .pos-ui,
  .admin-ui {
    width: 650px;
  }

  .sync-layout {
    gap: 38px;
  }

  .sync-console {
    overflow-x: auto;
  }

  .sync-console__header,
  .sync-console__body {
    min-width: 480px;
  }

  .cta-band {
    padding: 52px 0;
  }

  .cta-band h2 {
    font-size: 29px;
  }

  .page-hero,
  .page-hero--compact {
    padding: 62px 0 50px;
  }

  .page-hero h1,
  .page-hero--compact h1 {
    font-size: 39px;
  }

  .page-hero__lead {
    font-size: 17px;
  }

  .detail-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .detail-list article,
  .detail-list article:nth-child(odd),
  .detail-list article:nth-child(even) {
    padding: 22px 0;
    border-right: 0;
  }

  .form-panel {
    padding: 22px 18px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

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

  .footer-brand,
  .footer-col:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

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