:root {
  --ink: #061b34;
  --ink-soft: #173652;
  --navy: #062f5d;
  --navy-deep: #031b34;
  --cyan: #00a6d6;
  --cyan-dark: #007fa8;
  --green: #55b83f;
  --lime: #9bd93c;
  --coral: #f06449;
  --paper: #ffffff;
  --mist: #f3f7f9;
  --mist-strong: #e9f0f3;
  --line: #d6e1e6;
  --muted: #556777;
  --muted-light: #768693;
  --danger: #c83f3f;
  --warning: #d18a1d;
  --success: #2f8e4c;
  --shadow-sm: 0 8px 24px rgba(6, 27, 52, 0.08);
  --shadow-lg: 0 22px 70px rgba(6, 27, 52, 0.16);
  --content: 1240px;
  --header-height: 74px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(0, 166, 214, 0.42);
  outline-offset: 3px;
}

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

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

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

.section {
  padding: 92px 0;
}

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

.section-mist {
  background: var(--mist);
}

.section-dark {
  background: var(--navy-deep);
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  background: var(--cyan);
  content: "";
}

.section-dark .eyebrow,
.page-hero .eyebrow {
  color: #7fdef3;
}

.section-title {
  max-width: 760px;
  margin: 0;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.section-intro {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-dark .section-intro {
  color: #b9c9d5;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 46px;
}

.section-heading-row .section-intro {
  max-width: 470px;
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid rgba(6, 47, 93, 0.11);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(calc(100% - 40px), var(--content));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-link img {
  width: 196px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.nav-link::after {
  position: absolute;
  right: 14px;
  bottom: 3px;
  left: 14px;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--cyan);
  content: "";
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.btn-primary {
  background: var(--cyan);
  color: var(--navy-deep);
}

.btn-primary:hover {
  background: #2bbce2;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: var(--navy);
}

.btn-outline {
  border-color: rgba(6, 27, 52, 0.24);
  background: transparent;
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--cyan-dark);
  color: var(--cyan-dark);
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan-dark);
  font-weight: 800;
}

.hero {
  position: relative;
  height: calc(100svh - 116px);
  min-height: 560px;
  max-height: 760px;
  overflow: hidden;
  background-color: #eef3f4;
  background-image: url("../images/checkout-environment.webp");
  background-position: center center;
  background-size: cover;
}

.hero::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 52%;
  background: rgba(255, 255, 255, 0.9);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 76px;
}

.hero-copy {
  width: min(620px, 51%);
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 68px;
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--cyan-dark);
}

.hero-lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: #385063;
  font-size: 20px;
  line-height: 1.55;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: #3d5365;
  font-size: 13px;
  font-weight: 700;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof span::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(85, 184, 63, 0.14);
  content: "";
}

.hero-rail {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  min-height: 76px;
  background: rgba(3, 27, 52, 0.96);
  color: #fff;
}

.hero-rail-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.rail-item {
  min-width: 0;
  padding: 0 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.rail-item:first-child {
  border-left: 0;
}

.rail-label {
  display: block;
  color: #8da7b9;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.rail-value {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  overflow: hidden;
  color: #f4fbff;
  font-size: 14px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(85, 184, 63, 0.14);
}

.status-dot.cyan {
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(0, 166, 214, 0.14);
}

.status-dot.amber {
  background: #f0a938;
  box-shadow: 0 0 0 5px rgba(240, 169, 56, 0.14);
}

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

.trust-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.trust-title {
  max-width: 250px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.trust-items {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
}

.trust-index {
  display: inline-grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cyan-dark);
  font-size: 10px;
  font-weight: 900;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.outcome {
  min-height: 250px;
  padding: 34px;
  background: #fff;
}

.outcome-number {
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 900;
}

.outcome h3 {
  margin: 42px 0 12px;
  font-size: 24px;
  line-height: 1.18;
}

.outcome p {
  margin: 0;
  color: var(--muted);
}

.product-band {
  position: relative;
  overflow: hidden;
}

.product-band::after {
  position: absolute;
  right: -9%;
  bottom: -140px;
  width: 520px;
  height: 260px;
  border: 38px solid rgba(0, 166, 214, 0.12);
  content: "";
  transform: skewX(-32deg);
  pointer-events: none;
}

.product-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 68px;
  align-items: center;
}

.product-copy h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.08;
}

.product-copy > p {
  margin: 20px 0 0;
  color: #b9c9d5;
  font-size: 17px;
}

.product-tabs {
  display: grid;
  gap: 6px;
  margin-top: 30px;
}

.product-tab {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #aac0cf;
  text-align: left;
}

.product-tab[aria-selected="true"] {
  color: #fff;
}

.product-tab-index {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.product-tab strong {
  display: block;
  font-size: 15px;
}

.product-tab small {
  display: block;
  margin-top: 3px;
  color: #7f9aac;
  font-size: 12px;
}

.product-window {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border: 1px solid #254861;
  border-radius: 8px;
  background: #071f38;
  box-shadow: var(--shadow-lg);
}

.product-window-topbar {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-bottom: 1px solid #254861;
  background: #0a3158;
}

.product-brand {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

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

.product-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #bfe4ca;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.pos-preview {
  display: grid;
  min-height: 454px;
  grid-template-columns: 1.05fr 0.95fr;
}

.receipt-pane {
  padding: 16px;
  border-right: 1px solid #254861;
  background: #f4f7f8;
  color: var(--ink);
}

.receipt-meta,
.preview-row,
.totals-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.receipt-meta {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-items {
  display: grid;
  gap: 1px;
  margin-top: 9px;
  background: var(--line);
}

.preview-row {
  min-height: 58px;
  padding: 9px 10px;
  background: #fff;
}

.preview-item-name {
  display: block;
  font-size: 12px;
  font-weight: 800;
}

.preview-item-code {
  display: block;
  color: var(--muted-light);
  font-size: 9px;
}

.preview-price {
  font-size: 12px;
  font-weight: 900;
}

.receipt-total {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 2px solid var(--ink);
}

.totals-row {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.totals-row.grand {
  margin-top: 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.action-pane {
  display: flex;
  flex-direction: column;
  padding: 14px;
  background: #0b2742;
}

.scan-box {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border: 1px solid #315975;
  border-radius: 4px;
  background: #fff;
  color: #5b6d7a;
  font-size: 11px;
}

.scan-box span:last-child {
  color: var(--cyan-dark);
  font-weight: 900;
}

.key-grid {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(54px, 1fr);
  gap: 7px;
  margin-top: 10px;
}

.key {
  display: grid;
  place-items: center;
  border: 1px solid #315975;
  border-radius: 4px;
  background: #123957;
  color: #dbe9f1;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.key.accent {
  border-color: #00a6d6;
  background: #007fa8;
  color: #fff;
}

.key.success {
  border-color: #55b83f;
  background: #2f7e42;
  color: #fff;
}

.preview-toast {
  position: absolute;
  right: 16px;
  bottom: 16px;
  max-width: 280px;
  padding: 11px 13px;
  border-left: 4px solid var(--cyan);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  color: var(--ink);
  font-size: 11px;
  font-weight: 750;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-window[data-mode="control"] .preview-toast,
.product-window[data-mode="recovery"] .preview-toast {
  opacity: 1;
  transform: translateY(0);
}

.product-window[data-mode="control"] .preview-toast::before {
  content: "Lane 07 requested manager approval";
}

.product-window[data-mode="recovery"] .preview-toast {
  border-left-color: var(--green);
}

.product-window[data-mode="recovery"] .preview-toast::before {
  content: "Queued sale synchronized successfully";
}

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

.capability-card {
  min-height: 248px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.capability-card:hover {
  transform: translateY(-3px);
  border-color: #a9dce9;
  box-shadow: var(--shadow-sm);
}

.capability-card .card-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #a9dce9;
  border-radius: 6px;
  background: #edfafd;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 900;
}

.capability-card h3 {
  margin: 34px 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

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

.architecture-band {
  background: #eff5f6;
}

.architecture-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 50px;
  border-top: 1px solid #bfcfd5;
}

.architecture-step {
  position: relative;
  padding: 38px 44px 0 0;
}

.architecture-step::before {
  position: absolute;
  top: -7px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 3px solid #eff5f6;
  border-radius: 50%;
  background: var(--cyan-dark);
  box-shadow: 0 0 0 1px var(--cyan-dark);
  content: "";
}

.architecture-step h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

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

.security-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 76px;
  align-items: start;
}

.security-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid #2a4b63;
  background: #2a4b63;
}

.security-item {
  min-height: 174px;
  padding: 24px;
  background: var(--navy-deep);
}

.security-item strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 16px;
}

.security-item p {
  margin: 0;
  color: #a9bdca;
  font-size: 13px;
}

.security-note {
  margin-top: 28px;
  padding-left: 16px;
  border-left: 3px solid var(--cyan);
  color: #9db3c1;
  font-size: 13px;
}

.cta-band {
  background: var(--cyan);
  color: var(--navy-deep);
}

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

.cta-inner h2 {
  max-width: 720px;
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
}

.cta-inner p {
  max-width: 650px;
  margin: 12px 0 0;
  color: #123d55;
}

.site-footer {
  background: #03172c;
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.65fr);
  gap: 48px;
  padding: 64px 0 46px;
}

.footer-brand img {
  width: 210px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 360px;
  margin: 20px 0 0;
  color: #91a8b8;
  font-size: 14px;
}

.footer-column h3 {
  margin: 0 0 16px;
  color: #7fdef3;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: #c4d2db;
  font-size: 14px;
}

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

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #7790a1;
  font-size: 12px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 82px;
  background: var(--navy-deep);
  color: #fff;
}

.page-hero::after {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 560px;
  height: 300px;
  border: 52px solid rgba(0, 166, 214, 0.16);
  content: "";
  transform: skewX(-34deg);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: end;
}

.page-hero h1 {
  margin: 0;
  font-size: 58px;
  font-weight: 850;
  line-height: 1.04;
}

.page-hero-copy {
  max-width: 500px;
  margin: 0;
  color: #b8c9d4;
  font-size: 18px;
}

.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.page-hero-meta span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #c9d8e1;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.filter-bar {
  position: sticky;
  top: var(--header-height);
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.filter-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
}

.filter-btn,
.segmented-btn {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.filter-btn[aria-pressed="true"],
.segmented-btn[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

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

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

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

.feature-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.feature-code {
  color: var(--cyan-dark);
  font-size: 11px;
  font-weight: 900;
}

.feature-tag {
  padding: 4px 7px;
  border-radius: 3px;
  background: #edf5f7;
  color: #506976;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-card h2,
.feature-card h3 {
  margin: 46px 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

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

.feature-card ul {
  display: grid;
  gap: 6px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 12px;
  list-style: none;
}

.feature-card li::before {
  margin-right: 7px;
  color: var(--green);
  content: "\2713";
  font-weight: 900;
}

.lifecycle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 50px;
  border-top: 1px solid #bfcfd5;
}

.lifecycle-step {
  position: relative;
  padding: 38px 30px 0 0;
}

.lifecycle-step::before {
  position: absolute;
  top: -8px;
  left: 0;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan-dark);
  box-shadow: 0 0 0 5px #eff5f6;
  content: "";
}

.lifecycle-step h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.lifecycle-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.assurance-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}

.assurance-principles {
  display: grid;
  border-top: 1px solid #31526a;
}

.assurance-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid #31526a;
}

.assurance-row span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
}

.assurance-row strong {
  display: block;
  margin-bottom: 5px;
}

.assurance-row p {
  margin: 0;
  color: #a8bcc9;
  font-size: 13px;
}

.form-page {
  background: var(--mist);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 28px;
  align-items: start;
}

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

.form-panel,
.contact-form-panel {
  padding: 34px;
}

.form-section + .form-section {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.form-section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.form-section-number {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.form-section-heading h2,
.form-section-heading h3 {
  margin: 0;
  font-size: 20px;
}

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

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

.field {
  display: grid;
  gap: 7px;
}

.field label,
.field-label {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

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

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #bfccd3;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  outline: 0;
}

.field input,
.field select {
  height: 48px;
  padding: 0 13px;
}

.field textarea {
  min-height: 128px;
  padding: 12px 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cyan-dark);
  box-shadow: 0 0 0 3px rgba(0, 166, 214, 0.12);
}

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

.field-hint,
.field-error {
  margin: 0;
  color: var(--muted-light);
  font-size: 11px;
}

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

.stepper {
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  gap: 6px;
}

.stepper button {
  border: 1px solid #bfccd3;
  border-radius: 4px;
  background: #f7fafb;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}

.stepper input {
  text-align: center;
  font-weight: 800;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice label {
  min-height: 82px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink-soft);
  cursor: pointer;
}

.choice label::before {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #aebdc5;
  border-radius: 3px;
  color: #fff;
  content: "";
}

.choice input:checked + label {
  border-color: var(--cyan-dark);
  background: #eefafd;
}

.choice input:checked + label::before {
  border-color: var(--cyan-dark);
  background: var(--cyan-dark);
  content: "\2713";
  font-size: 12px;
  font-weight: 900;
}

.choice strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
}

.choice small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 12px;
}

.checkbox-line input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--cyan-dark);
}

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

.form-status {
  min-height: 24px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
}

.form-status.error {
  color: var(--danger);
}

.form-status.success {
  color: var(--success);
}

.summary-panel {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  overflow: hidden;
}

.summary-head {
  padding: 26px;
  background: var(--navy-deep);
  color: #fff;
}

.summary-head span {
  color: #7fdef3;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.summary-head h2 {
  margin: 8px 0 0;
  font-size: 26px;
}

.summary-body {
  padding: 24px 26px 28px;
}

.summary-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.summary-row dt {
  color: var(--muted);
}

.summary-row dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  text-align: right;
}

.profile-meter {
  height: 7px;
  margin: 24px 0 8px;
  overflow: hidden;
  border-radius: 3px;
  background: var(--mist-strong);
}

.profile-meter span {
  display: block;
  width: 24%;
  height: 100%;
  background: var(--cyan-dark);
  transition: width 180ms ease;
}

.summary-caption {
  color: var(--muted);
  font-size: 11px;
}

.summary-note {
  margin: 22px 0 0;
  padding: 14px;
  border-left: 3px solid var(--green);
  background: #f2f9f1;
  color: #395b3c;
  font-size: 12px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
  align-items: start;
}

.contact-routes {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.contact-route {
  padding: 26px;
  background: #fff;
}

.contact-route span {
  color: var(--cyan-dark);
  font-size: 11px;
  font-weight: 900;
}

.contact-route h2,
.contact-route h3 {
  margin: 22px 0 8px;
  font-size: 20px;
}

.contact-route p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-note {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #cfe3c9;
  border-radius: 6px;
  background: #f3f9f1;
  color: #3d5f40;
  font-size: 12px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 22px 42px 22px 0;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 18px;
  right: 0;
  color: var(--cyan-dark);
  content: "+";
  font-size: 24px;
  font-weight: 500;
}

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

.faq-list p {
  max-width: 820px;
  margin: -5px 0 22px;
  color: var(--muted);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(3, 23, 44, 0.72);
}

.modal.is-open {
  display: grid;
}

.modal-dialog {
  width: min(100%, 540px);
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  background: var(--navy-deep);
  color: #fff;
}

.modal-head h2 {
  margin: 0;
  font-size: 20px;
}

.modal-close {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: transparent;
  color: #fff;
  font-size: 22px;
}

.modal-body {
  padding: 26px;
}

.modal-body p {
  margin: 0;
  color: var(--muted);
}

.confirmation-id {
  margin: 20px 0;
  padding: 18px;
  border: 1px dashed #9ec7d2;
  background: #f0fafc;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .nav-actions .btn-outline {
    display: none;
  }

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

  .hero::before {
    width: 62%;
  }

  .hero-copy {
    width: 59%;
  }

  .product-layout,
  .security-layout,
  .assurance-layout {
    grid-template-columns: 1fr;
  }

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

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

  .footer-main {
    grid-template-columns: 1.2fr repeat(3, 0.6fr);
    gap: 28px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 66px;
  }

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

  .section {
    padding: 72px 0;
  }

  .section-title,
  .product-copy h2 {
    font-size: 40px;
  }

  .section-heading-row,
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-link img {
    width: 168px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    display: none;
    width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    align-content: start;
    align-items: stretch;
    padding: 20px 18px;
    overflow-y: auto;
    background: #fff;
    box-shadow: 0 16px 28px rgba(3, 27, 52, 0.12);
  }

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

  .nav-link {
    min-height: 54px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

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

  .hero {
    height: auto;
    min-height: 680px;
    max-height: none;
    background-position: 62% center;
  }

  .hero::before {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
  }

  .hero-content {
    min-height: 680px;
    align-items: flex-start;
    padding-top: 84px;
    padding-bottom: 154px;
  }

  .hero-copy {
    width: 100%;
    max-width: 620px;
  }

  .hero h1 {
    max-width: 590px;
    font-size: 48px;
  }

  .hero-rail-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 8px 0;
  }

  .rail-item {
    padding: 9px 16px;
  }

  .rail-item:nth-child(3) {
    border-left: 0;
  }

  .trust-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 0;
  }

  .trust-items {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

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

  .product-window {
    min-height: 460px;
  }

  .pos-preview {
    min-height: 414px;
  }

  .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .architecture-steps,
  .lifecycle {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 44px;
  }

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

  .summary-panel {
    position: static;
  }

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

@media (max-width: 620px) {
  .section {
    padding: 60px 0;
  }

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

  .section-title,
  .product-copy h2,
  .cta-inner h2 {
    font-size: 34px;
  }

  .section-intro {
    font-size: 16px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    min-height: 720px;
    padding-top: 62px;
    padding-bottom: 190px;
  }

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

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

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

  .hero-actions .btn,
  .form-actions .btn {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    gap: 10px;
  }

  .hero-rail-inner {
    grid-template-columns: 1fr;
  }

  .hero-rail {
    position: absolute;
  }

  .rail-item {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 0;
  }

  .rail-label,
  .rail-value {
    margin: 0;
  }

  .trust-items,
  .capability-grid,
  .feature-grid,
  .security-list,
  .architecture-steps,
  .lifecycle,
  .field-grid,
  .choice-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .product-window {
    min-height: 620px;
  }

  .pos-preview {
    min-height: 574px;
    grid-template-columns: 1fr;
  }

  .receipt-pane {
    border-right: 0;
    border-bottom: 1px solid #254861;
  }

  .action-pane {
    min-height: 270px;
  }

  .page-hero {
    padding: 70px 0 64px;
  }

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

  .filter-inner {
    min-height: 0;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
    overflow-x: visible;
  }

  .form-panel,
  .contact-form-panel {
    padding: 22px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ===== Kalina parent-brand site ===== */

:root {
  --pro-green: #58b947;
  --pro-green-dark: #2f7e3c;
  --pro-coral: #d85e49;
  --pro-gold: #d49a2a;
  --pro-graphite: #243544;
  --pro-cloud: #edf3f5;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(6, 27, 52, 0.08);
}

.brand-link img {
  width: 178px;
}

.brand-link img.product-brand-logo-pos {
  width: 236px;
}

.brand-link img.product-brand-logo-erp {
  width: 210px;
}

.nav-product {
  position: relative;
}

.nav-product-toggle {
  border: 0;
  background: transparent;
}

.nav-chevron {
  width: 7px;
  height: 7px;
  margin: -3px 0 0 7px;
  transform: rotate(45deg);
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.product-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: none;
  width: 430px;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.nav-product.is-open .product-menu-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.product-menu-link {
  min-height: 126px;
  padding: 22px;
  border-left: 4px solid transparent;
}

.product-menu-link + .product-menu-link {
  border-left-width: 1px;
  border-left-color: var(--line);
}

.product-menu-link:hover,
.product-menu-link:focus-visible {
  background: var(--mist);
}

.product-menu-link.pos {
  border-top: 4px solid var(--cyan);
}

.product-menu-link.erp {
  border-top: 4px solid var(--pro-green);
}

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

.product-menu-link strong {
  margin-bottom: 8px;
  font-size: 17px;
}

.product-menu-link span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.nav-toggle {
  position: relative;
  gap: 4px;
  flex-direction: column;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-project-link {
  display: none;
}

.company-hero,
.product-hero {
  position: relative;
  min-height: 540px;
  height: calc(100svh - 118px);
  max-height: 720px;
  isolation: isolate;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.company-hero {
  background-image: url('../images/erp-operations-environment.webp');
}

.product-hero.pos {
  background-image: url('../images/checkout-environment.webp');
  background-position: center 58%;
}

.product-hero.erp {
  background-image: url('../images/erp-operations-environment.webp');
}

.company-hero::before,
.product-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(3, 24, 47, 0.73);
  content: '';
}

.company-hero-inner,
.product-hero-inner {
  min-height: inherit;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 58px;
  padding-bottom: 70px;
}

.hero-statement {
  max-width: 800px;
}

.hero-statement .eyebrow {
  color: #8be2f3;
}

.hero-statement h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: 66px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-statement .company-tagline {
  max-width: 690px;
  margin: 24px 0 0;
  color: #d6e4ec;
  font-size: 21px;
  line-height: 1.55;
}

.hero-statement .hero-actions {
  margin-top: 32px;
}

.hero-statement .hero-proof {
  color: #d6e4ec;
}

.hero-statement .hero-proof span::before {
  background: var(--pro-green);
}

.hero-statement .btn-outline {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(3, 24, 47, 0.28);
  color: #fff;
}

.hero-statement .btn-outline:hover {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.hero-tail {
  min-height: 42px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.hero-tail-inner {
  min-height: 42px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
}

.hero-tail strong {
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
}

.hero-tail-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-tail-list span {
  padding: 10px 18px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.company-intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.company-intro-copy {
  columns: 2;
  column-gap: 44px;
  color: var(--muted);
  font-size: 17px;
}

.company-intro-copy p {
  margin: 0 0 20px;
  break-inside: avoid;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.product-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-panel-media {
  position: relative;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: var(--navy-deep);
}

.product-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-panel-media::after {
  position: absolute;
  inset: 0;
  background: rgba(3, 27, 52, 0.16);
  content: '';
}

.product-panel-body {
  padding: 30px;
  border-top: 5px solid var(--cyan);
}

.product-panel.erp .product-panel-body {
  border-top-color: var(--pro-green);
}

.product-panel-logo {
  width: auto;
  max-width: 260px;
  height: 55px;
  object-fit: contain;
  object-position: left center;
}

.product-panel h3 {
  margin: 24px 0 10px;
  font-size: 26px;
  line-height: 1.15;
}

.product-panel p {
  min-height: 78px;
  margin: 0;
  color: var(--muted);
}

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

.text-link {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.text-link::after {
  margin-left: 8px;
  content: '\2192';
}

.text-link:hover {
  color: var(--cyan-dark);
}

.erp .text-link:hover {
  color: var(--pro-green-dark);
}

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

.service-column {
  padding: 36px 34px 36px 0;
}

.service-column + .service-column {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.service-number {
  display: block;
  margin-bottom: 28px;
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 800;
}

.service-column:nth-child(2) .service-number {
  color: var(--pro-green-dark);
}

.service-column:nth-child(3) .service-number {
  color: var(--pro-coral);
}

.service-column h3 {
  margin: 0 0 12px;
  font-size: 25px;
}

.service-column p {
  margin: 0;
  color: var(--muted);
}

.operating-thread {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 48px;
}

.thread-step {
  position: relative;
  padding: 36px 26px 0 0;
  border-top: 3px solid var(--line);
}

.thread-step::before {
  position: absolute;
  top: -8px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan);
  content: '';
}

.thread-step:nth-child(3)::before,
.thread-step:nth-child(4)::before,
.thread-step:nth-child(5)::before {
  background: var(--pro-green);
  box-shadow: 0 0 0 1px var(--pro-green);
}

.thread-step span,
.thread-step strong {
  display: block;
}

.thread-step span {
  margin-bottom: 8px;
  color: var(--muted-light);
  font-size: 12px;
  font-weight: 800;
}

.thread-step strong {
  font-size: 17px;
  line-height: 1.3;
}

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

.bridge-product {
  padding: 36px 0;
}

.bridge-product img {
  width: auto;
  max-width: 320px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.bridge-product p {
  max-width: 480px;
  margin: 20px 0 0;
  color: var(--muted);
}

.bridge-arrow {
  width: 80px;
  height: 2px;
  position: relative;
  background: var(--line);
}

.bridge-arrow::after {
  position: absolute;
  top: -5px;
  right: 0;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border-top: 2px solid var(--line);
  border-right: 2px solid var(--line);
  content: '';
}

.product-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: #a8dff0;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-kicker::before {
  width: 30px;
  height: 3px;
  background: var(--cyan);
  content: '';
}

.product-hero.erp .product-kicker::before {
  background: var(--pro-green);
}

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

.product-subnav {
  position: sticky;
  top: var(--header-height);
  z-index: 900;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
}

.product-subnav-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 28px;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-subnav-inner::-webkit-scrollbar {
  display: none;
}

.product-subnav strong {
  margin-right: auto;
  color: var(--ink);
  font-size: 14px;
}

.product-subnav a {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.product-subnav a:hover,
.product-subnav a[aria-current="page"] {
  color: var(--cyan-dark);
}

.product-subnav.erp a:hover,
.product-subnav.erp a[aria-current="page"] {
  color: var(--pro-green-dark);
}

.role-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.role-outcome {
  padding-top: 24px;
  border-top: 4px solid var(--cyan);
}

.role-outcome:nth-child(2) {
  border-top-color: var(--pro-green);
}

.role-outcome:nth-child(3) {
  border-top-color: var(--pro-coral);
}

.role-outcome h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.role-outcome p {
  margin: 0;
  color: var(--muted);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.3fr);
  gap: 44px;
  align-items: stretch;
}

.story-tabs {
  display: grid;
  align-content: start;
  gap: 8px;
}

.story-tab {
  min-height: 78px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  text-align: left;
}

.story-tab[aria-selected="true"] {
  border-color: var(--cyan);
  box-shadow: inset 4px 0 0 var(--cyan);
}

.erp-story .story-tab[aria-selected="true"] {
  border-color: var(--pro-green);
  box-shadow: inset 4px 0 0 var(--pro-green);
}

.story-tab-index {
  color: var(--muted-light);
  font-size: 12px;
  font-weight: 800;
}

.story-tab strong,
.story-tab small {
  display: block;
}

.story-tab small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.story-stage {
  min-height: 460px;
  overflow: hidden;
  border: 1px solid #254861;
  border-radius: 6px;
  background: #071e36;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.story-stage-top {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  border-bottom: 1px solid #254861;
  background: #0b2944;
}

.story-stage-top strong {
  font-size: 15px;
}

.story-stage-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #a8c0d0;
  font-size: 12px;
  font-weight: 700;
}

.story-stage-status::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pro-green);
  box-shadow: 0 0 0 4px rgba(88, 185, 71, 0.12);
  content: '';
}

.story-stage-body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 402px;
}

.story-primary {
  padding: 32px;
  border-right: 1px solid #254861;
}

.story-primary h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.15;
}

.story-primary > p {
  max-width: 530px;
  margin: 16px 0 26px;
  color: #a8c0d0;
}

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

.signal-row {
  min-height: 46px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 0 14px;
  border-left: 3px solid var(--cyan);
  background: #0d2b46;
}

.erp-story .signal-row {
  border-left-color: var(--pro-green);
}

.signal-row span {
  color: #d6e4ec;
  font-size: 13px;
}

.signal-row strong {
  color: #fff;
  font-size: 12px;
}

.story-secondary {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 30px;
  background: #061a30;
}

.story-metric {
  padding-bottom: 18px;
  border-bottom: 1px solid #254861;
}

.story-metric:last-child {
  border-bottom: 0;
}

.story-metric span,
.story-metric strong {
  display: block;
}

.story-metric span {
  color: #89a7ba;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.story-metric strong {
  margin-top: 6px;
  font-size: 18px;
}

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

.capability-band-row {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 56px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.capability-band-row h3 {
  margin: 0;
  font-size: 24px;
}

.capability-band-row p {
  margin: 0 0 18px;
  color: var(--muted);
}

.capability-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 14px;
}

.capability-list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--cyan);
  content: '';
}

.erp-page .capability-list li::before {
  background: var(--pro-green);
}

.platform-scope {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 44px;
  background: #27465f;
}

.scope-cell {
  min-height: 170px;
  padding: 26px;
  background: var(--navy-deep);
}

.scope-cell span {
  display: block;
  margin-bottom: 18px;
  color: #7fdef3;
  font-size: 12px;
  font-weight: 800;
}

.scope-cell h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 20px;
}

.scope-cell p {
  margin: 0;
  color: #b9c9d5;
  font-size: 14px;
}

.service-hero-mark {
  max-width: 680px;
}

.service-hero-mark img {
  width: 300px;
  margin-bottom: 34px;
}

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

.engagement-row {
  display: grid;
  grid-template-columns: 110px 0.65fr 1.35fr;
  gap: 34px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.engagement-row > span {
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 800;
}

.engagement-row h3,
.engagement-row p {
  margin: 0;
}

.engagement-row h3 {
  font-size: 22px;
}

.engagement-row p {
  color: var(--muted);
}

.page-hero.company-page {
  background: var(--navy-deep);
}

.page-hero.company-page::after {
  background: var(--cyan);
}

.page-hero.erp-page-hero::after {
  background: var(--pro-green);
}

.page-hero.company-page h1 {
  max-width: 900px;
}

.form-product-note {
  padding: 18px 20px;
  border-left: 4px solid var(--cyan);
  background: var(--mist);
  color: var(--muted);
  font-size: 14px;
}

.footer-brand-word {
  display: block;
  margin-bottom: 18px;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}

.footer-product-links {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}

.footer-product-links a {
  color: #8dddf0;
  font-size: 13px;
  font-weight: 800;
}

.company-domain {
  color: #8dddf0;
}

@media (max-width: 1040px) {
  .hero-statement h1 {
    font-size: 56px;
  }

  .company-intro {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

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

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

@media (max-width: 860px) {
  .brand-link img {
    width: 154px;
  }

  .brand-link img.product-brand-logo-pos {
    width: 220px;
  }

  .brand-link img.product-brand-logo-erp {
    width: 195px;
  }

  .nav-product {
    width: 100%;
  }

  .nav-product-toggle {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-product-toggle::after {
    display: none;
  }

  .nav-product-toggle:focus-visible {
    outline-offset: -3px;
  }

  .mobile-project-link {
    display: inline-flex;
    margin-top: 12px;
    justify-content: center;
    gap: 8px;
    border: 0;
    background: var(--navy-deep);
    color: #fff;
  }

  .mobile-project-link::after {
    display: none;
  }

  .product-menu-panel {
    position: static;
    width: 100%;
    transform: none;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
  }

  .nav-product.is-open .product-menu-panel {
    grid-template-columns: 1fr;
  }

  .product-menu-link {
    min-height: 90px;
  }

  .product-menu-link + .product-menu-link {
    border-left: 4px solid transparent;
    border-top: 1px solid var(--line);
  }

  .product-menu-link.pos,
  .product-menu-link.erp {
    border-left-color: var(--cyan);
    border-top-width: 1px;
  }

  .product-menu-link.erp {
    border-left-color: var(--pro-green);
  }

  .company-hero,
  .product-hero {
    height: auto;
    min-height: 610px;
    max-height: none;
  }

  .company-hero-inner,
  .product-hero-inner {
    min-height: 610px;
    padding-top: 62px;
    padding-bottom: 66px;
  }

  .hero-statement h1,
  .product-hero .hero-statement h1 {
    font-size: 48px;
  }

  .hero-tail-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 14px;
  }

  .hero-tail-list {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-tail-list span:nth-child(odd) {
    border-left: 0;
  }

  .product-showcase,
  .role-outcomes {
    grid-template-columns: 1fr;
  }

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

  .service-column,
  .service-column + .service-column {
    padding: 30px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .service-column:first-child {
    border-top: 0;
  }

  .operating-thread {
    grid-template-columns: 1fr;
  }

  .thread-step {
    padding: 18px 0 18px 32px;
    border-top: 0;
    border-left: 3px solid var(--line);
  }

  .thread-step::before {
    top: 24px;
    left: -8px;
  }

  .product-bridge {
    grid-template-columns: 1fr;
  }

  .bridge-arrow {
    width: 2px;
    height: 50px;
    margin-left: 26px;
  }

  .bridge-arrow::after {
    top: auto;
    right: -4px;
    bottom: 0;
    transform: rotate(135deg);
  }

  .capability-band-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .engagement-row {
    grid-template-columns: 70px 1fr;
  }

  .engagement-row p {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .company-hero,
  .product-hero {
    min-height: 570px;
  }

  .company-hero-inner,
  .product-hero-inner {
    min-height: 570px;
    padding-top: 44px;
    padding-bottom: 48px;
  }

  .hero-statement h1,
  .product-hero .hero-statement h1 {
    font-size: 40px;
    line-height: 1.06;
  }

  .hero-statement .company-tagline {
    font-size: 17px;
  }

  .hero-statement .hero-proof {
    display: none;
  }

  .hero-tail-list {
    grid-template-columns: 1fr;
  }

  .hero-tail-list span,
  .hero-tail-list span:nth-child(odd) {
    border-top: 1px solid var(--line);
    border-left: 0;
    text-align: left;
  }

  .company-intro-copy {
    columns: 1;
  }

  .product-panel-body {
    padding: 24px;
  }

  .product-panel p {
    min-height: 0;
  }

  .product-panel-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .product-subnav strong {
    display: none;
  }

  .story-tabs,
  .platform-scope,
  .capability-list {
    grid-template-columns: 1fr;
  }

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

  .story-primary {
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid #254861;
  }

  .story-secondary {
    padding: 24px;
  }

  .story-primary h3 {
    font-size: 25px;
  }

  .engagement-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .engagement-row p {
    grid-column: auto;
  }
}
