@charset "UTF-8";

:root {
  --ink: #09191d;
  --ink-soft: #132b31;
  --paper: #f3f7f6;
  --paper-deep: #e5eeeb;
  --white: #ffffff;
  --text: #142122;
  --muted: #586566;
  --line: #cfd4cf;
  --line-dark: rgba(255, 255, 255, 0.18);
  --mint: #55ddb9;
  --mint-pale: #ddf8f0;
  --mint-ink: #0b6552;
  --cyan: #68d4e7;
  --sky: #67aef5;
  --amber: #ff9e68;
  --danger: #b73d32;
  --shell: 1240px;
  --header-height: 70px;
  --radius-small: 6px;
  --radius: 12px;
  --radius-large: 18px;
  --shadow: 0 24px 60px -32px rgba(3, 37, 44, 0.42), 0 12px 28px -22px rgba(0, 0, 0, 0.28);
  --font: "Aptos", "Segoe UI Variable Text", "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font);
}

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

a {
  color: inherit;
}

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

button,
select {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  color: inherit;
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3rem, 5vw, 5.3rem);
}

h2 {
  font-size: clamp(2.15rem, 3.5vw, 3.75rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

::selection {
  color: var(--ink);
  background: var(--mint);
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.kicker {
  margin-bottom: 14px;
  color: var(--mint-ink);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.kicker--light {
  color: #8be5ce;
}

.section {
  padding: clamp(64px, 7vw, 96px) 0;
}

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

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

.section--gradient-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 16% 18%, rgba(85, 221, 185, 0.2), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(103, 174, 245, 0.18), transparent 30%),
    linear-gradient(135deg, #07181c 0%, #102c33 56%, #0b1c2b 100%);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(260px, 0.3fr);
  gap: 28px 72px;
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.section-heading .kicker {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.section-heading h2 {
  max-width: 13ch;
  margin-bottom: 0;
}

.section-heading > p:last-child {
  max-width: 40ch;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.section-heading--compact h2 {
  max-width: 15ch;
}

.section-heading--wide h2 {
  max-width: 16ch;
}

.section-heading--light > p:last-child {
  color: #b8cfcd;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(12, 25, 26, 0.09);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(12, 25, 26, 0.08);
}

.site-header__inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
}

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

.brand img {
  width: 154px;
  height: auto;
}

.site-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
}

.site-nav a {
  color: #2f3d3e;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  min-height: 44px;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: #2f3d3e;
  font-size: 0.92rem;
  font-weight: 750;
  list-style: none;
  cursor: pointer;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary span {
  color: var(--mint-ink);
  font-size: 1rem;
  transition: transform 160ms ease;
}

.nav-dropdown[open] summary span {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 4;
  width: min(620px, calc(100vw - 40px));
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 10px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(12, 25, 26, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 30px 70px -34px rgba(3, 37, 44, 0.52), 0 16px 32px -24px rgba(0, 0, 0, 0.32);
  transform: translateX(-50%);
}

.nav-dropdown__menu a {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 12px 14px;
  border-radius: 8px;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a[aria-current="page"] {
  color: var(--ink);
  background: linear-gradient(135deg, var(--mint-pale), #eaf4ff);
}

.nav-dropdown__menu strong {
  font-size: 0.95rem;
}

.nav-dropdown__menu small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

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

.menu-button {
  display: none;
  min-height: 44px;
  padding: 8px 10px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
}

.menu-button__label {
  font-size: 0.82rem;
  font-weight: 800;
}

.menu-button__icon {
  width: 22px;
  display: grid;
  gap: 5px;
}

.menu-button__icon i {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

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

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

/* Buttons and links */
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button--header {
  min-height: 44px;
  padding: 10px 16px;
  color: var(--white);
  background: linear-gradient(135deg, #0b2429, #123943);
}

.button--header:hover,
.button--dark:hover {
  background: var(--mint-ink);
}

.button--accent {
  color: #082e26;
  background: linear-gradient(135deg, var(--mint) 0%, var(--cyan) 100%);
  box-shadow: 0 18px 34px -22px rgba(85, 221, 185, 0.8);
}

.button--accent:hover {
  background: linear-gradient(135deg, #6be6c4 0%, #78dded 100%);
  box-shadow: 0 20px 38px -20px rgba(85, 221, 185, 0.92);
}

.button--outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
}

.button--outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--mint-ink);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

/* Home hero */
.home-hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-rows: 1fr auto;
  align-content: center;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 18%, rgba(85, 221, 185, 0.25), transparent 28%),
    radial-gradient(circle at 14% 90%, rgba(103, 174, 245, 0.18), transparent 30%),
    radial-gradient(circle at 95% 92%, rgba(255, 158, 104, 0.1), transparent 20%),
    linear-gradient(135deg, #07171a 0%, #102d32 58%, #0b1c2a 100%);
  padding: clamp(30px, 4.4vh, 52px) 0 clamp(22px, 3vh, 34px);
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.home-hero__copy {
  padding-bottom: 0;
}

.home-hero h1 {
  max-width: 11.8ch;
  margin-bottom: clamp(16px, 2.4vh, 24px);
  font-size: clamp(3.25rem, min(5vw, 8.6vh), 5.6rem);
  line-height: 0.96;
}

.home-hero__lead {
  max-width: 52ch;
  margin-bottom: clamp(20px, 3vh, 30px);
  color: #c7d3d2;
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
}

.home-hero__note {
  max-width: 60ch;
  margin: clamp(16px, 2.4vh, 22px) 0 0;
  color: #94a8a6;
  font-size: 0.92rem;
}

.system-figure {
  position: relative;
  width: min(100%, 610px);
  justify-self: end;
  margin: 0;
  padding: 10px 10px 8px;
  background: linear-gradient(135deg, rgba(223, 248, 241, 0.96), rgba(225, 239, 250, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.26);
}

.system-figure picture {
  display: block;
}

.system-figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 7px;
}

.system-figure figcaption {
  display: flex;
  gap: 6px 14px;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 11px 5px 2px;
  color: var(--ink);
}

.system-figure figcaption span {
  color: #456361;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-figure figcaption strong {
  font-size: 0.88rem;
}

.capability-strip {
  position: relative;
  z-index: 2;
  min-height: 66px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  margin-top: clamp(22px, 3.4vh, 34px);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-small);
  backdrop-filter: blur(12px);
}

.capability-strip > p {
  align-self: stretch;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0 24px;
  color: #092c28;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.capability-strip__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-self: stretch;
}

.capability-strip__links a {
  min-width: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 750;
  transition: background 160ms ease;
}

.capability-strip__links a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.capability-strip__links a span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-hero + .section {
  padding-top: clamp(64px, 7vw, 96px);
}

/* Intro */
.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.75fr);
  gap: clamp(46px, 9vw, 120px);
  align-items: start;
}

.split-intro h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.split-intro__body > p {
  margin-bottom: 34px;
  color: #394748;
  font-size: 1.13rem;
}

.definition-list {
  margin: 0;
  border-top: 1px solid #bfc5c0;
}

.definition-list > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #bfc5c0;
}

.definition-list dt {
  color: var(--mint-ink);
  font-weight: 800;
}

.definition-list dd {
  margin: 0;
  color: #435151;
}

/* Solutions */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.solution-card {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 38px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 84% 8%, rgba(255, 255, 255, 0.2), transparent 30%);
  pointer-events: none;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px -34px rgba(3, 37, 44, 0.7), 0 18px 36px -24px rgba(0, 0, 0, 0.4);
}

.solution-card--retail {
  background: linear-gradient(135deg, #0b2528 0%, #0c6c60 100%);
}

.solution-card--warehouse {
  background: linear-gradient(135deg, #112534 0%, #266ea2 100%);
}

.solution-card--hotel {
  background: linear-gradient(135deg, #123033 0%, #2b8e94 100%);
}

.solution-card--manufacturing {
  background: linear-gradient(135deg, #162735 0%, #486d8f 70%, #a76d50 140%);
}

.solution-card__number {
  position: relative;
  margin-bottom: auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.solution-card h3 {
  position: relative;
  margin: 34px 0 10px;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.solution-card p {
  position: relative;
  max-width: 42ch;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.solution-card strong {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

/* Technology */
.technology-stories {
  display: grid;
  gap: 12px;
}

.technology-story {
  min-height: 164px;
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  background: linear-gradient(110deg, rgba(7, 24, 28, 0.78), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(255, 255, 255, 0.16);
  scroll-margin-top: calc(var(--header-height) + 24px);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.technology-story:target {
  background: linear-gradient(110deg, rgba(20, 73, 70, 0.9), rgba(103, 174, 245, 0.14));
  border-color: var(--mint);
  transform: translateX(5px);
}

.technology-story__copy > span {
  display: block;
  margin-bottom: 14px;
  color: var(--mint);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.technology-story h3 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.technology-story p {
  margin: 0;
  color: #aec4c2;
}

.signal-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  color: #c5d7d5;
  font-size: 0.86rem;
  text-align: center;
}

.signal-flow span,
.signal-flow strong {
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-small);
}

.signal-flow strong {
  color: #082c29;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  border-color: transparent;
}

.signal-flow i {
  padding: 0 8px;
  color: var(--mint);
  font-style: normal;
}

/* Project steps */
.project-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-steps li {
  min-height: 230px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.project-steps li:last-child {
  border-right: 0;
}

.project-steps span {
  display: block;
  margin-bottom: 40px;
  color: var(--mint-ink);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.project-steps h3 {
  margin-bottom: 14px;
}

.project-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

/* About */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1fr);
  gap: clamp(48px, 9vw, 118px);
}

.about-copy h2 {
  max-width: 12ch;
  margin-bottom: 24px;
}

.about-copy > p:not(.kicker) {
  max-width: 54ch;
  color: #445152;
  font-size: 1.05rem;
}

.about-copy__limit {
  padding-top: 22px;
  border-top: 1px solid #c5cac5;
  font-weight: 700;
}

.people-list {
  align-self: end;
  border-top: 1px solid #bdc3be;
}

.person {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #bdc3be;
}

.person img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  filter: saturate(0.85);
}

.person h3 {
  margin-bottom: 4px;
  font-size: 1.23rem;
}

.person p {
  margin-bottom: 7px;
  color: var(--muted);
}

.person a {
  color: var(--mint-ink);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
  text-underline-offset: 4px;
}

/* Contact */
.contact-section {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(104, 212, 231, 0.2), transparent 30%),
    radial-gradient(circle at 92% 88%, rgba(255, 158, 104, 0.12), transparent 26%),
    linear-gradient(135deg, #0a554d 0%, #0c6b66 48%, #17465b 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1fr);
  gap: clamp(48px, 8vw, 108px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.contact-copy h2 {
  max-width: 10ch;
  margin-bottom: 20px;
}

.contact-copy > p:not(.kicker) {
  max-width: 44ch;
  color: #c8e0da;
  font-size: 1.06rem;
}

.contact-direct {
  display: grid;
  gap: 4px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.contact-direct span {
  color: #a8c9c0;
  font-size: 0.84rem;
}

.contact-direct a {
  font-weight: 750;
  overflow-wrap: anywhere;
  text-underline-offset: 4px;
}

.lead-form {
  padding: clamp(24px, 4vw, 42px);
  color: var(--text);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.form-grid label:not(.consent) {
  display: grid;
  gap: 7px;
}

.form-grid label > span:first-child {
  font-size: 0.88rem;
  font-weight: 750;
}

.form-grid__wide {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--text);
  background: #fbfcfa;
  border: 1px solid #bfc8c3;
  border-radius: var(--radius-small);
}

.lead-form textarea {
  min-height: 148px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--mint-ink);
  box-shadow: 0 0 0 4px rgba(82, 209, 176, 0.18);
  outline: 0;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: #536061;
  font-size: 0.86rem;
}

.consent input {
  min-height: 0;
  margin-top: 3px;
}

.consent a {
  color: var(--mint-ink);
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

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

.form-actions p {
  max-width: 32ch;
  margin: 0;
  color: #697576;
  font-size: 0.8rem;
  line-height: 1.4;
}

/* Footer */
.site-footer {
  color: #bac7c6;
  background: var(--ink);
}

.site-footer__top {
  min-height: 154px;
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-dark);
}

.site-footer__top strong {
  color: var(--white);
  font-size: 1.05rem;
}

.site-footer__top p {
  margin: 4px 0 0;
}

.footer-brand img {
  width: 168px;
  height: auto;
}

.footer-brand p {
  max-width: 42ch;
}

.site-footer nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--white);
  font-weight: 700;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 4px;
}

.site-footer__bottom {
  min-height: 70px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  color: #8fa09e;
  font-size: 0.84rem;
}

/* Back to top */
.back-to-top {
  position: fixed;
  z-index: 40;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #082c29;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  box-shadow: 0 18px 40px -16px rgba(3, 31, 33, 0.8);
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  box-shadow: 0 20px 48px -14px rgba(85, 221, 185, 0.88);
}

/* Sector pages */
.solution-page {
  --sector-a: #55ddb9;
  --sector-b: #67aef5;
  --sector-deep: #0d6257;
  --sector-pale: #ddf8f0;
  --sector-glow: rgba(85, 221, 185, 0.26);
}

.solution-page--warehouse {
  --sector-a: #6ec7ff;
  --sector-b: #8275ed;
  --sector-deep: #215f92;
  --sector-pale: #e6f2ff;
  --sector-glow: rgba(91, 172, 246, 0.3);
}

.solution-page--hotel {
  --sector-a: #ffc273;
  --sector-b: #df7ca8;
  --sector-deep: #9a563c;
  --sector-pale: #fff1e0;
  --sector-glow: rgba(255, 174, 104, 0.28);
}

.solution-page--manufacturing {
  --sector-a: #9c8cff;
  --sector-b: #5bd8c5;
  --sector-deep: #5c50a7;
  --sector-pale: #eeeafd;
  --sector-glow: rgba(145, 123, 246, 0.28);
}

.page-hero {
  padding: clamp(48px, 6vw, 78px) 0 clamp(54px, 6.5vw, 86px);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 22%, var(--sector-glow, rgba(85, 221, 185, 0.24)), transparent 30%),
    radial-gradient(circle at 14% 88%, rgba(103, 174, 245, 0.16), transparent 30%),
    linear-gradient(135deg, #07171a 0%, #102d32 58%, #0b1c2a 100%);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.42fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.page-hero h1 {
  max-width: 13ch;
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 5.4vw, 5.6rem);
  line-height: 0.96;
}

.page-hero__lead {
  max-width: 58ch;
  margin-bottom: 30px;
  color: #c6d2d1;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.sector-visual {
  position: relative;
  min-height: 310px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  padding: 26px;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(145deg, var(--sector-a), var(--sector-b));
  border-radius: var(--radius);
  box-shadow: 0 30px 70px -34px rgba(0, 0, 0, 0.7);
}

.sector-visual::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 82%);
}

.sector-visual > * {
  position: relative;
  z-index: 1;
}

.sector-visual__header,
.sector-visual__event {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.sector-visual__header {
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sector-visual__header strong {
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  font-size: 0.68rem;
}

.sector-visual__event {
  min-height: 54px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(7, 23, 26, 0.88);
  border-radius: var(--radius-small);
  font-size: 0.82rem;
}

.sector-visual__event strong {
  text-align: right;
}

.retail-shelf {
  display: grid;
  gap: 20px;
  align-content: center;
  padding: 10px 8px 0;
}

.retail-shelf > div {
  min-height: 58px;
  display: flex;
  gap: 9px;
  align-items: end;
  padding: 0 8px 8px;
  border-bottom: 5px solid rgba(6, 42, 40, 0.72);
}

.retail-shelf span {
  width: 18%;
  height: 42px;
  background: rgba(255, 255, 255, 0.86);
  border: 2px solid rgba(8, 46, 44, 0.25);
  border-radius: 4px 4px 1px 1px;
}

.retail-shelf span:nth-child(2n) {
  height: 50px;
}

.retail-shelf .is-low {
  height: 22px;
  background: #ffbf69;
}

.retail-shelf .is-empty {
  height: 42px;
  background: transparent;
  border-style: dashed;
}

.warehouse-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 8px;
  align-items: center;
}

.warehouse-flow span {
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 51, 79, 0.22);
  border-radius: var(--radius-small);
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
}

.warehouse-flow b {
  display: block;
  color: var(--sector-deep);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.warehouse-flow i {
  color: rgba(7, 25, 40, 0.7);
  font-style: normal;
  font-weight: 900;
}

.hotel-assets {
  display: grid;
  gap: 8px;
  align-content: center;
}

.hotel-assets span {
  min-height: 48px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(85, 42, 35, 0.18);
  border-radius: var(--radius-small);
}

.hotel-assets .is-review {
  background: #fff0d8;
  border-color: #cc754a;
}

.hotel-assets em {
  color: var(--sector-deep);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 800;
}

.component-checks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  align-content: center;
}

.component-checks span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(58, 44, 111, 0.18);
  border-radius: var(--radius-small);
  font-weight: 850;
}

.component-checks i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #137867;
  border-radius: 50%;
  font-size: 0.72rem;
  font-style: normal;
}

.scope-note {
  padding: 22px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.scope-note__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: baseline;
}

.scope-note strong {
  color: var(--sector-deep, var(--mint-ink));
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scope-note p {
  max-width: 86ch;
  margin: 0;
  color: #445152;
}

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

.use-case {
  display: grid;
  grid-template-columns: 80px minmax(220px, 0.65fr) minmax(0, 1fr);
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.use-case__number {
  color: var(--sector-deep, var(--mint-ink));
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.use-case h3 {
  max-width: 17ch;
  margin-bottom: 0;
}

.use-case__details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.use-case__details div {
  padding-left: 16px;
  border-left: 2px solid var(--paper-deep);
}

.use-case__details strong {
  display: block;
  margin-bottom: 6px;
  color: var(--sector-deep, var(--mint-ink));
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.use-case__details p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.concept-image {
  margin: 56px 0 0;
}

.concept-image img {
  width: 100%;
  max-height: min(56vh, 560px);
  object-fit: cover;
  background: var(--paper);
}

.concept-image figcaption {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 12px 0;
  color: var(--muted);
  font-size: 0.84rem;
  border-bottom: 1px solid var(--line);
}

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

.project-fit > div {
  padding: clamp(28px, 5vw, 54px);
  background: var(--white);
}

.project-fit > div:last-child {
  background: var(--paper);
}

.project-fit h3 {
  margin-bottom: 22px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.project-fit ul {
  margin: 0;
  padding-left: 20px;
}

.project-fit li + li {
  margin-top: 10px;
}

.project-fit--privacy > div:last-child {
  color: var(--white);
  background: var(--ink);
}

.page-cta {
  text-align: center;
  background: var(--sector-pale, var(--mint-pale));
}

.page-cta h2 {
  max-width: 15ch;
  margin: 0 auto 22px;
}

.page-cta p {
  max-width: 58ch;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 1.04rem;
}

/* Privacy, thank-you and errors */
.text-page {
  min-height: 65vh;
  padding: clamp(70px, 10vw, 132px) 0;
  background: var(--paper);
}

.text-page__content {
  max-width: 780px;
}

.text-page h1 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

.text-page h2 {
  margin: 44px 0 14px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.text-page p,
.text-page li {
  color: #445152;
}

.text-page a {
  color: var(--mint-ink);
  text-underline-offset: 4px;
}

.status-page {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  place-items: center;
  padding: 60px 20px;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.status-page__inner {
  max-width: 720px;
}

.status-page__code {
  display: block;
  margin-bottom: 18px;
  color: var(--mint);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.status-page h1 {
  margin-bottom: 20px;
}

.status-page p {
  margin-bottom: 30px;
  color: #bdcbca;
  font-size: 1.08rem;
}

/* Interactive 404 */
.not-found-page {
  min-height: 100%;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 22%, rgba(85, 221, 185, 0.14), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(103, 174, 245, 0.15), transparent 28%),
    linear-gradient(135deg, #061719 0%, #0c292c 58%, #0b1d2d 100%);
  overflow-x: hidden;
}

.not-found-header {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(5, 21, 23, 0.72);
  backdrop-filter: blur(14px);
}

.not-found-header__inner {
  min-height: 80px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.not-found-brand {
  display: inline-flex;
  align-items: center;
}

.not-found-brand img {
  width: 168px;
  height: auto;
}

.not-found-event {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: #aac5c2;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.not-found-event i {
  width: 8px;
  height: 8px;
  background: #ffb76d;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 183, 109, 0.12);
}

.not-found-main {
  position: relative;
  isolation: isolate;
}

.not-found-main::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 92%);
}

.not-found-layout {
  min-height: calc(100svh - 81px);
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1.02fr);
  gap: clamp(46px, 6vw, 104px);
  align-items: center;
  padding-block: clamp(28px, 4vh, 48px);
}

.not-found-copy {
  max-width: 620px;
}

.not-found-copy h1 {
  max-width: 8ch;
  margin: 0 0 20px;
  font-size: clamp(5rem, min(8.4vw, 13vh), 8.2rem);
  line-height: 0.88;
  letter-spacing: -0.065em;
}

.not-found-lead {
  max-width: 590px;
  margin: 0;
  color: #c5d7d5;
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  line-height: 1.6;
}

.not-found-actions {
  margin-top: 28px;
}

.not-found-route-label {
  margin: 34px 0 12px;
  color: #8faeaa;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.not-found-solutions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-small);
  overflow: hidden;
}

.not-found-solutions a {
  min-height: 50px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
  border-bottom: 2px solid var(--mint);
  font-size: 0.86rem;
  font-weight: 800;
  transition: opacity 220ms ease, background 180ms ease, transform 180ms ease;
}

.not-found-solutions a:nth-child(2) {
  border-bottom-color: #6ec7ff;
}

.not-found-solutions a:nth-child(3) {
  border-bottom-color: #ffc273;
}

.not-found-solutions a:nth-child(4) {
  border-bottom-color: #9c8cff;
}

.not-found-solutions a:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.not-found-solutions a:nth-child(-n + 2) {
  border-bottom-width: 1px;
}

.not-found-solutions a:hover,
.not-found-solutions a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.not-found-solutions span {
  color: var(--mint);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.js .not-found-solutions a {
  opacity: 0.72;
}

.js .not-found-solutions.is-detected a {
  opacity: 1;
}

.page-scanner {
  width: min(100%, 650px);
  justify-self: end;
  display: grid;
  gap: 12px;
  padding: 18px;
  background: linear-gradient(150deg, rgba(20, 58, 61, 0.96), rgba(14, 37, 48, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 34px 80px -38px rgba(0, 0, 0, 0.82);
}

.page-scanner__header {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.page-scanner__header span {
  display: block;
  margin-bottom: 4px;
  color: #7fa5a1;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.page-scanner__header h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.page-scanner__header > strong {
  padding: 8px 10px;
  color: #173937;
  background: #b7c8c6;
  border-radius: 999px;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-scanner.is-scanning .page-scanner__header > strong {
  color: #07352e;
  background: var(--mint);
}

.page-scanner.is-detected .page-scanner__header > strong {
  color: #4d2f12;
  background: #ffbd77;
}

.scanner-field {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 42%, rgba(85, 221, 185, 0.14), transparent 24%),
    linear-gradient(135deg, rgba(5, 26, 29, 0.94), rgba(12, 40, 51, 0.94));
  border: 1px solid rgba(126, 197, 191, 0.22);
  border-radius: var(--radius-small);
}

.scanner-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(100, 210, 202, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 210, 202, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.84), transparent 96%);
}

.scanner-line {
  position: absolute;
  z-index: 4;
  top: -4px;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, var(--mint) 20%, var(--cyan) 80%, transparent);
  box-shadow: 0 0 22px rgba(85, 221, 185, 0.78);
}

.page-scanner.is-scanning .scanner-line {
  opacity: 1;
  animation: scanner-sweep 1.05s ease-in-out;
}

.scanner-reader {
  position: absolute;
  z-index: 2;
  left: 10%;
  bottom: 12%;
  width: 82px;
  height: 116px;
}

.scanner-reader__mast,
.scanner-reader__head,
.scanner-reader__base {
  position: absolute;
  display: block;
  background: linear-gradient(145deg, #aee9dc, #54bcae);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.scanner-reader__mast {
  left: 35px;
  bottom: 17px;
  width: 10px;
  height: 76px;
  border-radius: 5px;
}

.scanner-reader__head {
  top: 3px;
  left: 11px;
  width: 60px;
  height: 34px;
  border-radius: 8px;
  transform: rotate(-9deg);
  box-shadow: 0 8px 22px rgba(85, 221, 185, 0.2);
}

.scanner-reader__head::after {
  position: absolute;
  top: 8px;
  right: 7px;
  width: 10px;
  height: 10px;
  background: #0a4b46;
  border-radius: 50%;
  content: "";
}

.scanner-reader__base {
  left: 13px;
  bottom: 4px;
  width: 56px;
  height: 16px;
  border-radius: 50%;
}

.scanner-rings {
  position: absolute;
  z-index: 1;
  left: calc(10% + 40px);
  bottom: calc(12% + 76px);
  width: 2px;
  height: 2px;
}

.scanner-rings i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(85, 221, 185, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.25);
  animation: scanner-ring 2.8s ease-out infinite;
}

.scanner-rings i:nth-child(2) {
  animation-delay: 0.9s;
}

.scanner-rings i:nth-child(3) {
  animation-delay: 1.8s;
}

.page-scanner.is-near .scanner-rings i {
  border-color: rgba(85, 221, 185, 0.76);
  animation-duration: 1.35s;
}

.lost-page-tag {
  position: absolute;
  z-index: 5;
  top: 30%;
  right: 16%;
  width: 104px;
  height: 78px;
  display: grid;
  align-content: space-between;
  padding: 11px 12px;
  color: #082d2a;
  background: linear-gradient(145deg, #e9f7f3, #8ce3d2);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px 8px 8px 22px;
  box-shadow: 0 18px 34px -18px rgba(0, 0, 0, 0.84);
  text-align: left;
  cursor: crosshair;
  animation: lost-tag-drift 5.8s ease-in-out infinite alternate;
}

.lost-page-tag::after {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 9px;
  height: 9px;
  background: #0d7468;
  border-radius: 50%;
  content: "";
}

.lost-page-tag span {
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lost-page-tag strong {
  font-size: 2rem;
  line-height: 0.9;
}

.lost-page-tag:hover,
.lost-page-tag:focus-visible,
.page-scanner.is-near .lost-page-tag {
  animation-play-state: paused;
  box-shadow: 0 0 0 5px rgba(85, 221, 185, 0.13), 0 22px 38px -16px rgba(0, 0, 0, 0.88);
}

.lost-page-tag.is-found {
  animation: lost-tag-found 520ms ease-out;
}

.scanner-coordinate {
  position: absolute;
  z-index: 2;
  color: #68918d;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.scanner-coordinate--top {
  top: 14px;
  left: 14px;
}

.scanner-coordinate--bottom {
  right: 14px;
  bottom: 12px;
}

.scanner-result {
  padding: 12px 14px;
  background: rgba(2, 17, 19, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-small);
}

.scanner-result > p {
  margin: 0 0 10px;
  color: #d6e8e5;
  font-size: 0.82rem;
  font-weight: 750;
}

.scanner-result dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.scanner-result dl > div {
  min-width: 0;
  padding-right: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.scanner-result dl > div + div {
  padding-left: 12px;
}

.scanner-result dl > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.scanner-result dt {
  margin-bottom: 3px;
  color: #739893;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.scanner-result dd {
  margin: 0;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
}

.scan-button {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  color: #082e2b;
  background: linear-gradient(105deg, var(--mint), var(--cyan));
  border: 0;
  border-radius: var(--radius-small);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: filter 160ms ease, transform 160ms ease;
}

.scan-button:hover:not(:disabled) {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.scan-button:disabled {
  cursor: wait;
  filter: saturate(0.65);
}

.scanner-hint {
  margin: -2px 0 0;
  color: #779792;
  font-size: 0.68rem;
  text-align: center;
}

@keyframes scanner-sweep {
  0% { top: -4px; }
  50% { top: calc(100% - 2px); }
  100% { top: -4px; }
}

@keyframes scanner-ring {
  from { opacity: 0.92; transform: translate(-50%, -50%) scale(0.22); }
  to { opacity: 0; transform: translate(-50%, -50%) scale(2.5); }
}

@keyframes lost-tag-drift {
  from { transform: translate3d(0, -5px, 0) rotate(-1.5deg); }
  to { transform: translate3d(-16px, 8px, 0) rotate(1.5deg); }
}

@keyframes lost-tag-found {
  0%, 100% { filter: brightness(1); }
  40% { filter: brightness(1.35); box-shadow: 0 0 0 12px rgba(85, 221, 185, 0.18); }
}

@media (max-width: 1050px) {
  .not-found-layout {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 44px;
    padding-block: 54px 68px;
  }

  .not-found-copy {
    max-width: 760px;
  }

  .not-found-copy h1 {
    font-size: clamp(4.8rem, 13vw, 7.2rem);
  }

  .not-found-solutions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .not-found-solutions a {
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom-width: 2px;
  }

  .not-found-solutions a:last-child {
    border-right: 0;
  }

  .page-scanner {
    width: min(100%, 720px);
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .not-found-header__inner {
    min-height: 68px;
  }

  .not-found-brand img {
    width: 142px;
  }

  .not-found-event {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .not-found-layout {
    gap: 38px;
    padding-block: 44px 56px;
  }

  .not-found-copy h1 {
    font-size: clamp(4rem, 21vw, 6.4rem);
  }

  .not-found-actions {
    align-items: stretch;
  }

  .not-found-actions .button {
    width: 100%;
  }

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

  .not-found-solutions a:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.13);
  }

  .not-found-solutions a:nth-child(even) {
    border-right: 0;
  }

  .not-found-solutions a:nth-child(-n + 2) {
    border-bottom-width: 1px;
  }

  .page-scanner {
    padding: 12px;
  }

  .scanner-field {
    min-height: 290px;
  }
}

@media (max-width: 480px) {
  .not-found-event {
    max-width: none;
    justify-content: flex-end;
    font-size: 0.56rem;
    letter-spacing: 0.07em;
    text-align: right;
    white-space: nowrap;
  }

  .not-found-lead {
    font-size: 1rem;
  }

  .not-found-route-label {
    margin-top: 30px;
  }

  .not-found-solutions a {
    min-height: 48px;
    padding-inline: 11px;
    font-size: 0.78rem;
  }

  .page-scanner__header {
    padding: 4px 2px;
  }

  .scanner-field {
    min-height: 270px;
  }

  .lost-page-tag {
    top: 28%;
    right: 10%;
    width: 94px;
    height: 72px;
  }

  .scanner-result dl {
    gap: 8px;
  }

  .scanner-result dl > div,
  .scanner-result dl > div + div {
    padding-inline: 0 6px;
  }

  .scanner-result dt {
    font-size: 0.52rem;
  }

  .scanner-result dd {
    font-size: 0.68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lost-page-tag,
  .lost-page-tag.is-found,
  .scanner-rings i,
  .page-scanner.is-scanning .scanner-line {
    animation: none !important;
  }
}

/* Responsive */
@media (max-width: 1050px) {
  .site-header__inner {
    gap: 16px;
  }

  .site-nav {
    gap: 14px;
  }

  .site-nav > a,
  .nav-dropdown summary {
    font-size: 0.86rem;
  }

  .home-hero__grid,
  .page-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.66fr);
  }

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

}

@media (max-width: 940px) {
  :root {
    --header-height: 68px;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .brand img {
    width: 138px;
  }

  .button--header {
    display: none;
  }

  .js .menu-button {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-self: end;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .js .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .js .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .js .site-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-bottom: 1px solid #e8ebe7;
  }

  .js .site-nav > a:last-child {
    border-bottom: 0;
  }

  .nav-dropdown summary {
    min-height: 46px;
    justify-content: space-between;
    padding: 8px 10px;
    border-bottom: 1px solid #e8ebe7;
  }

  .nav-dropdown__menu {
    position: static;
    width: auto;
    grid-template-columns: repeat(2, 1fr);
    margin: 4px 0 8px;
    padding: 6px;
    background: var(--paper);
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .nav-dropdown__menu a {
    min-height: 62px;
    border: 0;
  }

  .home-hero__grid,
  .page-hero__grid,
  .split-intro,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 0;
    padding: 52px 0 30px;
  }

  .home-hero__copy {
    padding-bottom: 0;
  }

  .system-figure {
    width: min(520px, 100%);
    justify-self: center;
    margin: 0 auto;
  }

  .technology-story {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-copy {
    position: static;
  }

  .about-layout,
  .contact-layout {
    gap: 48px;
  }

  .use-case {
    grid-template-columns: 58px 1fr;
  }

  .use-case__details {
    grid-column: 2;
  }

  .page-hero__grid {
    gap: 42px;
  }

  .sector-visual {
    width: min(520px, 100%);
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(var(--shell), calc(100% - 24px));
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.35rem);
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading .kicker {
    margin-bottom: 12px;
  }

  .section-heading h2 {
    margin-bottom: 18px;
  }

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

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

  .capability-strip {
    display: block;
    margin-top: 28px;
  }

  .capability-strip > p {
    min-height: 44px;
    padding-inline: 14px;
  }

  .capability-strip__links {
    grid-template-columns: 1fr;
  }

  .capability-strip__links a {
    min-height: 52px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .nav-dropdown__menu {
    grid-template-columns: 1fr;
  }

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

  .solution-card {
    min-height: 230px;
  }

  .technology-story {
    min-height: 0;
    padding: 22px;
    transform: none;
  }

  .signal-flow {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .signal-flow i {
    padding: 0;
    transform: rotate(90deg);
  }

  .project-steps {
    grid-template-columns: 1fr;
  }

  .project-steps li {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-steps li:last-child {
    border-bottom: 0;
  }

  .project-steps span {
    margin-bottom: 30px;
  }

  .person {
    grid-template-columns: 76px 1fr;
    gap: 16px;
  }

  .person img {
    width: 76px;
    height: 76px;
  }

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

  .site-footer__top,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 28px;
  }

  .site-footer nav {
    gap: 12px 18px;
  }

  .page-hero {
    padding: 46px 0 54px;
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .sector-visual {
    min-height: 270px;
    padding: 20px;
  }

  .sector-visual__header,
  .sector-visual__event {
    gap: 10px;
  }

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

  .warehouse-flow {
    gap: 4px;
  }

  .warehouse-flow span {
    min-height: 72px;
    padding: 7px 4px;
    font-size: 0.72rem;
  }

  .back-to-top {
    width: 44px;
    height: 44px;
  }

  .scope-note__inner {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .use-case {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .use-case__details {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .use-case__details div {
    padding: 14px 0 0;
    border-top: 1px solid var(--paper-deep);
    border-left: 0;
  }

  .concept-image figcaption {
    display: block;
  }

  .project-fit {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 941px) and (max-height: 800px) {
  .home-hero {
    padding-top: 28px;
    padding-bottom: 22px;
  }

  .home-hero h1 {
    font-size: clamp(3.2rem, min(4.6vw, 7.2vh), 4.8rem);
  }

  .home-hero__lead {
    margin-bottom: 20px;
    font-size: 1rem;
  }

  .system-figure {
    width: min(100%, 540px);
  }

  .capability-strip {
    min-height: 60px;
    margin-top: 22px;
  }
}

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

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