:root {
  --ink: #10151d;
  --ink-soft: #3e4652;
  --paper: #ffffff;
  --paper-soft: #f1f4f7;
  --line: #d8dee6;
  --charcoal: #0b1017;
  --charcoal-2: #171d26;
  --cyan: #38c8ec;
  --cyan-dark: #007f9f;
  --coral: #ff745c;
  --lime: #b8f54a;
  --green: #18a66d;
  --shadow: 0 22px 60px rgba(11, 16, 23, 0.16);
  --content: 1180px;
  color-scheme: light;
  font-family: Aptos, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-synthesis: none;
  letter-spacing: 0;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body,
button,
a,
input,
select,
textarea {
  font-family: inherit;
}

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

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 4px;
  font-weight: 700;
}

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

.section-inner {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 72px;
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(11, 16, 23, 0.08);
}

.header-inner {
  width: min(calc(100% - 48px), 1320px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 19px;
  font-weight: 760;
  line-height: 1;
}

.brand img {
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 650;
}

.site-nav > a:not(.nav-email) {
  position: relative;
  padding: 26px 0 23px;
}

.site-nav > a:not(.nav-email)::after {
  content: "";
  position: absolute;
  inset: auto 0 17px;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav > a:hover::after {
  transform: scaleX(1);
}

.nav-email {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 17px;
  border: 1px solid currentColor;
  border-radius: 5px;
}

.site-header:not(.is-scrolled) .nav-email:hover {
  color: var(--charcoal);
  background: var(--paper);
}

.site-header.is-scrolled .nav-email:hover {
  color: var(--paper);
  background: var(--charcoal);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -7px;
}

.nav-toggle-lines::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--paper);
  background: var(--charcoal);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  background: rgba(4, 8, 13, 0.62);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--content));
  margin: 106px auto 96px;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow-dark {
  color: var(--cyan-dark);
}

.hero h1 {
  margin: 0;
  max-width: 100%;
  font-size: 78px;
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-summary {
  max-width: 600px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 23px;
  line-height: 1.42;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 740;
  line-height: 1.2;
  text-align: center;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  color: var(--charcoal);
  background: var(--cyan);
}

.button-primary:hover {
  background: #75ddf5;
}

.button-secondary {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(11, 16, 23, 0.28);
}

.button-secondary:hover {
  border-color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
}

.development-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.development-note span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - var(--content)) / 2));
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 680;
  text-transform: uppercase;
}

.scroll-arrow {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
}

.scroll-arrow::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.workflow-band {
  padding: 74px 0;
  color: var(--ink);
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line);
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.4fr);
  gap: 72px;
  align-items: end;
}

.section-heading h2,
.products-heading h2,
.contact-layout h2 {
  margin: 0;
  font-size: 46px;
  font-weight: 740;
  line-height: 1.08;
  letter-spacing: 0;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #aeb8c4;
}

.workflow-steps li {
  position: relative;
  padding: 19px 8px 0 0;
}

.workflow-steps li::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--cyan-dark);
}

.workflow-steps span,
.workflow-steps strong {
  display: block;
}

.workflow-steps span {
  color: #697584;
  font-size: 11px;
}

.workflow-steps strong {
  margin-top: 4px;
  font-size: 14px;
}

.capabilities-band {
  padding: 92px 0 98px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.capabilities-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  column-gap: 72px;
  align-items: end;
}

.capabilities-intro .eyebrow {
  grid-column: 1 / -1;
}

.capabilities-intro h2 {
  margin: 0;
  max-width: 760px;
  font-size: 46px;
  font-weight: 740;
  line-height: 1.08;
  letter-spacing: 0;
}

.capabilities-intro > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 62px;
  border-top: 1px solid var(--line);
}

.capability-grid article {
  min-width: 0;
  padding: 30px 34px 0 0;
}

.capability-grid article + article {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.capability-grid span {
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 760;
}

.capability-grid h3 {
  margin: 12px 0 0;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
}

.capability-grid p {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.products {
  background: var(--paper);
}

.products-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  column-gap: 72px;
  padding-top: 104px;
  padding-bottom: 72px;
}

.products-heading .eyebrow {
  grid-column: 1 / -1;
}

.products-heading p:last-child {
  align-self: end;
  margin: 0;
  max-width: 520px;
  color: var(--ink-soft);
  font-size: 18px;
}

.product-row {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
  padding: 92px 0;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
  gap: 86px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.product-row-reverse .product-copy {
  grid-column: 2;
}

.product-row-reverse .product-visual {
  grid-column: 1;
  grid-row: 1;
}

.product-copy {
  position: relative;
  min-width: 0;
}

.product-number {
  position: absolute;
  top: -42px;
  left: 0;
  color: #aeb7c1;
  font-size: 12px;
  font-weight: 760;
}

.product-platform {
  margin: 0 0 10px;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.product-copy h3 {
  margin: 0;
  font-size: 40px;
  font-weight: 750;
  line-height: 1.08;
}

.product-copy > p:not(.product-platform) {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.58;
}

.product-points {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.product-points li {
  position: relative;
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 620;
}

.product-points li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 20px;
  width: 8px;
  height: 2px;
  background: var(--coral);
}

.product-cta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 24px;
  color: var(--cyan-dark);
  font-size: 14px;
  font-weight: 760;
}

.product-cta:hover {
  color: var(--coral);
}

.product-visual {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid #cfd6df;
  border-radius: 8px;
  background: var(--paper-soft);
}

.product-icon {
  position: absolute;
  z-index: 3;
  width: 112px;
  height: 112px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(11, 16, 23, 0.2));
}

.capture-icon {
  top: 28px;
  right: 28px;
}

.production-icon {
  right: 28px;
  bottom: 28px;
  border-radius: 8px;
}

.mock-window,
.browser-shell,
.pos-terminal {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: #151b24;
  box-shadow: var(--shadow);
}

.mock-topbar,
.browser-bar {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  color: #aeb8c6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #202733;
}

.mock-topbar > span,
.browser-bar > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #657181;
}

.mock-topbar > span:first-child,
.browser-bar > i:first-child {
  background: var(--coral);
}

.mock-topbar > b {
  margin-left: 7px;
  font-size: 10px;
  font-weight: 650;
}

.capture-visual {
  background: #dfe7ef;
}

.capture-window {
  left: 7%;
  right: 12%;
  top: 13%;
  bottom: 11%;
}

.capture-workspace {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 12px;
  height: calc(100% - 100px);
  padding: 13px;
}

.viewfinder {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #080c11;
  border: 1px solid #384251;
}

.viewfinder::before {
  content: "";
  position: absolute;
  inset: 14% 24%;
  background: #323c49;
  border-radius: 50% 50% 46% 46%;
}

.scan-frame {
  position: relative;
  z-index: 1;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  color: var(--paper);
  border: 2px solid var(--cyan);
  font-size: 12px;
  font-weight: 760;
}

.scan-frame::before,
.scan-frame::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: var(--lime);
}

.scan-frame::before {
  top: -4px;
  left: -4px;
  border-top: 4px solid var(--lime);
  border-left: 4px solid var(--lime);
}

.scan-frame::after {
  right: -4px;
  bottom: -4px;
  border-right: 4px solid var(--lime);
  border-bottom: 4px solid var(--lime);
}

.camera-status {
  position: absolute;
  left: 10px;
  bottom: 9px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #c5ced9;
  font-size: 8px;
}

.camera-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

.subject-data {
  padding: 14px;
  background: #202733;
  border: 1px solid #384251;
}

.subject-data small,
.subject-data strong {
  display: block;
}

.subject-data small {
  color: #8e99a8;
  font-size: 8px;
}

.subject-data strong {
  margin: 5px 0 16px;
  color: var(--paper);
  font-size: 12px;
}

.data-line {
  width: 74%;
  height: 6px;
  margin-bottom: 10px;
  background: #4c5868;
}

.data-line.wide {
  width: 100%;
  background: #3a90a8;
}

.data-line.short {
  width: 46%;
}

.filmstrip {
  height: 50px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  padding: 8px 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0f141b;
}

.filmstrip i {
  display: block;
  background: #3d4856;
  border: 1px solid #586677;
}

.filmstrip i:nth-child(3) {
  border-color: var(--cyan);
}

.production-visual {
  background: #edf1f5;
}

.production-window {
  left: 8%;
  right: 8%;
  top: 9%;
  bottom: 12%;
}

.production-body {
  height: calc(100% - 36px);
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 14px;
  padding: 14px;
}

.module-list {
  display: grid;
  gap: 8px;
}

.module {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 8px;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  color: #bdc7d2;
  background: #202733;
  border-left: 2px solid transparent;
  font-size: 9px;
}

.module.active {
  border-color: var(--cyan);
  background: #26313f;
}

.module i {
  width: 7px;
  height: 7px;
  background: var(--lime);
}

.module b {
  color: #8090a3;
  font-size: 8px;
}

.production-summary {
  padding: 14px;
  background: #202733;
}

.summary-heading {
  display: flex;
  justify-content: space-between;
  color: var(--paper);
  font-size: 9px;
}

.summary-heading span {
  color: var(--cyan);
}

.progress {
  height: 8px;
  margin-top: 12px;
  overflow: hidden;
  background: #3d4755;
  border-radius: 2px;
}

.progress i {
  display: block;
  width: 82%;
  height: 100%;
  background: var(--cyan);
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}

.metric-grid div {
  padding: 12px 8px;
  background: #151b24;
}

.metric-grid b,
.metric-grid small {
  display: block;
}

.metric-grid b {
  color: var(--paper);
  font-size: 15px;
}

.metric-grid small {
  margin-top: 3px;
  color: #8793a2;
  font-size: 7px;
}

.scanner-visual {
  background: #e8edf1;
}

.scanner-app-icon {
  position: absolute;
  z-index: 3;
  top: 32px;
  left: 38px;
  width: 136px;
  height: 136px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.phone-shell {
  position: absolute;
  top: 8%;
  right: 12%;
  width: 43%;
  height: 84%;
  padding: 10px;
  border: 3px solid #232b36;
  border-radius: 34px;
  background: #090d12;
  box-shadow: var(--shadow);
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 11px;
  left: 50%;
  width: 34%;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 8px;
  background: #090d12;
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  padding: 31px 14px 14px;
  border-radius: 24px;
  color: var(--ink);
  background: var(--paper);
}

.phone-title small,
.phone-title strong {
  display: block;
}

.phone-title small {
  color: #707b89;
  font-size: 8px;
}

.phone-title strong {
  margin-top: 2px;
  font-size: 14px;
}

.scan-list {
  display: grid;
  gap: 7px;
  margin-top: 17px;
}

.scan-list > div {
  display: grid;
  grid-template-columns: 20px 1fr 16px;
  gap: 7px;
  align-items: center;
  min-height: 38px;
  padding: 0 8px;
  border: 1px solid #dce2e8;
  border-radius: 5px;
  font-size: 8px;
}

.scan-list i {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--paper);
  background: var(--charcoal-2);
  border-radius: 50%;
  font-style: normal;
}

.scan-list b {
  color: var(--green);
}

.scan-button {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: 48px;
  height: 48px;
  transform: translateX(-50%);
  border: 2px solid var(--cyan-dark);
  border-radius: 50%;
}

.scan-button span {
  position: absolute;
  inset: 10px;
  border: 2px solid var(--cyan-dark);
}

.pos-visual {
  background: #dde5eb;
}

.pos-terminal {
  inset: 8% 7% 10%;
  color: var(--ink);
  background: #f7f9fb;
}

.pos-header {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  color: var(--paper);
  background: var(--charcoal-2);
}

.pos-header strong {
  font-size: 13px;
}

.pos-header span {
  color: #aab5c1;
  font-size: 9px;
}

.pos-body {
  height: calc(100% - 48px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.pos-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  padding: 14px;
  background: #e7ecf1;
}

.pos-gallery i {
  position: relative;
  display: block;
  overflow: hidden;
  background: #aab5c0;
  border: 2px solid transparent;
}

.pos-gallery i::before {
  content: "";
  position: absolute;
  inset: 16% 27%;
  background: #6f7b88;
  border-radius: 50% 50% 44% 44%;
}

.pos-gallery i:first-child {
  border-color: var(--cyan-dark);
}

.pos-order {
  padding: 18px;
  background: var(--paper);
}

.pos-order > small,
.pos-order > strong {
  display: block;
}

.pos-order > small {
  color: #75808e;
  font-size: 8px;
}

.pos-order > strong {
  margin: 3px 0 15px;
  font-size: 13px;
}

.order-line,
.order-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid #e0e5ea;
  font-size: 9px;
}

.order-total {
  margin-top: 5px;
  font-size: 10px;
}

.pos-review {
  display: block;
  width: 100%;
  min-height: 34px;
  margin-top: 12px;
  border: 0;
  border-radius: 4px;
  color: var(--charcoal);
  background: var(--cyan);
  font-size: 9px;
  font-weight: 760;
  line-height: 34px;
  text-align: center;
}

.proofing-visual {
  background: #e8edf2;
}

.browser-shell {
  inset: 10% 7%;
  color: var(--ink);
  background: var(--paper);
}

.browser-bar span {
  margin-left: 7px;
  color: #aab4c0;
  font-size: 9px;
}

.proofing-body {
  padding: 22px;
}

.proofing-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.proofing-heading small,
.proofing-heading strong {
  display: block;
}

.proofing-heading small {
  color: #7a8490;
  font-size: 9px;
}

.proofing-heading strong {
  margin-top: 2px;
  font-size: 16px;
}

.proofing-heading > b {
  color: var(--cyan-dark);
  font-size: 14px;
}

.proof-progress {
  height: 7px;
  margin: 13px 0 20px;
  background: #e0e5eb;
}

.proof-progress i {
  width: 75%;
  background: var(--cyan-dark);
}

.group-row {
  display: grid;
  grid-template-columns: 42px 1fr 10px;
  gap: 10px;
  align-items: center;
  min-height: 45px;
  border-top: 1px solid #e2e7ec;
  font-size: 10px;
}

.group-row > span {
  font-size: 12px;
  font-weight: 760;
}

.group-row > strong {
  font-weight: 620;
}

.group-row > i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.status-ok {
  background: var(--green);
}

.status-review {
  background: var(--coral);
}

.contact-band {
  padding: 92px 0;
  color: var(--paper);
  background: var(--charcoal);
  border-top: 8px solid var(--cyan);
}

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

.contact-layout h2 {
  max-width: 780px;
}

.contact-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #aeb8c4;
  font-size: 18px;
}

.contact-copy .contact-privacy {
  margin-top: 28px;
  max-width: 540px;
  padding-top: 22px;
  color: #8290a0;
  font-size: 14px;
  border-top: 1px solid #303946;
}

.contact-form {
  position: relative;
  padding: 32px;
  background: var(--charcoal-2);
  border: 1px solid #303946;
  border-radius: 8px;
}

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

.form-grid + .form-grid,
.form-grid + .form-field,
.contact-form > .form-field {
  margin-top: 18px;
}

.form-field {
  min-width: 0;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: #dce3eb;
  font-size: 13px;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  display: block;
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #8d9bab;
  border-radius: 4px;
}

.form-field input,
.form-field select {
  min-height: 46px;
  padding: 10px 12px;
}

.form-field textarea {
  min-height: 132px;
  padding: 11px 12px;
  resize: vertical;
  line-height: 1.5;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: var(--cyan);
}

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

.contact-form-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 22px;
}

.contact-submit {
  min-width: 154px;
  color: var(--charcoal);
  background: var(--cyan);
  border: 0;
}

.contact-submit:hover:not(:disabled) {
  background: var(--paper);
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.58;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #aeb8c4;
  font-size: 14px;
}

.form-status[data-state="success"],
.form-status[data-state="ready"] {
  color: #7be0b3;
}

.form-status[data-state="error"] {
  color: #ff9f8f;
}

.contact-retry {
  width: fit-content;
  padding: 0;
  color: var(--cyan);
  background: transparent;
  border: 0;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-noscript {
  margin: 18px 0 0;
  color: #ff9f8f;
  font-size: 14px;
}

.faq-band {
  padding: 100px 0;
  background: var(--paper-soft);
}

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

.faq-heading h2 {
  margin: 14px 0 0;
  font-size: 40px;
  line-height: 1.1;
}

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

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

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 740;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--cyan-dark);
  font-size: 24px;
  font-weight: 400;
  line-height: 0.8;
}

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

.faq-list p {
  max-width: 670px;
  margin: -4px 40px 20px 0;
  color: var(--ink-soft);
}

.site-footer {
  padding: 30px 0;
  color: #aab4c0;
  background: #070a0f;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-brand {
  color: var(--paper);
  font-size: 16px;
}

.footer-inner p {
  margin: 0;
  font-size: 12px;
}

.footer-inner p:last-child {
  text-align: right;
}

@media (max-width: 1050px) {
  .hero h1 {
    font-size: 64px;
  }

  .workflow-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .products-heading p:last-child {
    max-width: 700px;
  }

  .product-row,
  .product-row-reverse {
    grid-template-columns: minmax(280px, 0.82fr) minmax(430px, 1.18fr);
    gap: 48px;
  }

  .product-row-reverse .product-copy {
    grid-column: 2;
  }

  .product-copy h3 {
    font-size: 34px;
  }

  .scanner-app-icon {
    left: 24px;
    width: 112px;
    height: 112px;
  }
}

@media (max-width: 820px) {
  .site-header,
  .site-header.is-scrolled {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border-color: var(--line);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 24px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    color: var(--ink);
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 24px rgba(11, 16, 23, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a:not(.nav-email) {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav > a:not(.nav-email)::after {
    display: none;
  }

  .nav-email {
    margin-top: 14px;
    justify-content: center;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-media {
    object-position: 62% center;
  }

  .hero-shade {
    background: rgba(4, 8, 13, 0.68);
  }

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

  .hero-summary {
    font-size: 20px;
  }

  .hero-scroll {
    display: none;
  }

  .section-heading h2,
  .products-heading h2,
  .capabilities-intro h2,
  .faq-heading h2,
  .contact-layout h2 {
    font-size: 38px;
  }

  .capabilities-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .capabilities-intro .eyebrow {
    margin-bottom: 0;
  }

  .product-row,
  .product-row-reverse {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 78px 0;
  }

  .product-row .product-copy,
  .product-row .product-visual,
  .product-row-reverse .product-copy,
  .product-row-reverse .product-visual {
    grid-column: 1;
    grid-row: auto;
  }

  .product-row-reverse .product-copy {
    grid-row: 1;
  }

  .product-visual {
    width: 100%;
    max-width: 680px;
    margin-inline: auto;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

}

@media (max-width: 580px) {
  .section-inner,
  .header-inner,
  .hero-inner,
  .product-row {
    width: min(calc(100% - 32px), var(--content));
  }

  .site-header {
    height: 64px;
  }

  .site-nav {
    top: 64px;
  }

  .brand {
    gap: 9px;
    font-size: 17px;
  }

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

  .hero {
    min-height: 82svh;
  }

  .hero-inner {
    margin-top: 92px;
    margin-bottom: 64px;
  }

  .hero-media {
    object-position: 67% center;
  }

  .hero-shade {
    background: rgba(4, 8, 13, 0.7);
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1;
  }

  .hero-summary {
    margin-top: 18px;
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .faq-band {
    padding: 72px 0;
  }

  .button {
    width: 100%;
  }

  .workflow-band {
    padding: 60px 0;
  }

  .section-heading h2,
  .products-heading h2,
  .capabilities-intro h2,
  .faq-heading h2,
  .contact-layout h2 {
    font-size: 32px;
    line-height: 1.12;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
    border-top: 0;
    border-left: 1px solid #aeb8c4;
  }

  .workflow-steps li {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    padding: 10px 0 10px 18px;
  }

  .workflow-steps li::before {
    top: 50%;
    left: -4px;
    transform: translateY(-50%);
  }

  .workflow-steps strong {
    margin: 0;
  }

  .products-heading {
    padding-top: 76px;
    padding-bottom: 52px;
  }

  .products-heading p:last-child,
  .product-copy > p:not(.product-platform),
  .contact-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .capabilities-band {
    padding: 68px 0 72px;
  }

  .capabilities-intro > p:last-child {
    font-size: 16px;
  }

  .capability-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .capability-grid article,
  .capability-grid article + article {
    padding: 24px 0 28px;
    border-left: 0;
  }

  .capability-grid article + article {
    border-top: 1px solid var(--line);
  }

  .product-row,
  .product-row-reverse {
    padding: 70px 0;
  }

  .product-copy h3 {
    font-size: 30px;
  }

  .product-visual {
    min-height: 310px;
    aspect-ratio: auto;
  }

  .capture-window {
    left: 4%;
    right: 4%;
    top: 20%;
    bottom: 8%;
  }

  .capture-icon,
  .production-icon {
    width: 76px;
    height: 76px;
  }

  .capture-icon {
    top: 12px;
    right: 16px;
  }

  .production-icon {
    right: 14px;
    bottom: 12px;
  }

  .production-window {
    left: 4%;
    right: 4%;
  }

  .production-body {
    grid-template-columns: 1fr;
  }

  .production-summary {
    display: none;
  }

  .scanner-app-icon {
    top: 18px;
    left: 18px;
    width: 82px;
    height: 82px;
    border-radius: 18px;
  }

  .phone-shell {
    right: 8%;
    width: 58%;
  }

  .pos-terminal,
  .browser-shell {
    inset: 6%;
  }

  .pos-body {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .proofing-body {
    padding: 16px;
  }

  .contact-band {
    padding: 70px 0;
  }

  .contact-form {
    padding: 22px;
  }

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

  .contact-form-footer {
    gap: 12px;
  }

  .contact-submit {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-inner p:last-child {
    text-align: left;
  }
}

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

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