:root {
  --navy: #202328;
  --navy-2: #34383f;
  --cyan: #f97316;
  --cyan-2: #ffb15c;
  --red: #ff5a1f;
  --ink: #24211f;
  --muted: #655f58;
  --line: #ddd7ce;
  --mist: #f6f4f0;
  --ice: #fff0e4;
  --paper: #fffdf9;
  --charcoal: #17191d;
  --shadow: 0 18px 54px rgba(23, 25, 29, 0.12);
  --shadow-soft: 0 10px 32px rgba(23, 25, 29, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #15171a 0 420px, #f6f4f0 420px 100%);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.preload-active {
  overflow: hidden;
}

.home-preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #f7f4ef;
  background: #111317;
  transition: visibility 700ms ease, opacity 700ms ease;
}

.home-preloader.is-leaving {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.preloader-glow {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 70%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(249, 115, 22, 0.24), transparent 68%);
  transform: rotate(-18deg);
  animation: preloaderGlow 2.4s ease-in-out both;
}

.preloader-content {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(900px, calc(100% - 40px));
  text-align: center;
}

.preloader-logo-wrap {
  width: min(620px, 88vw);
  padding-bottom: 30px;
  overflow: hidden;
}

.preloader-logo-wrap img {
  width: 100%;
  opacity: 0;
  transform: translateY(45px);
  animation: preloaderReveal 700ms cubic-bezier(0.22, 1, 0.36, 1) 120ms forwards;
}

.preloader-message {
  display: block;
  max-width: 100%;
  margin: 0;
  color: #f7f4ef;
  font: 800 clamp(1.2rem, 4.8vw, 3.85rem)/0.98 "Outfit", sans-serif;
  letter-spacing: 0;
}

.preloader-message span {
  display: block;
  color: inherit;
  font-weight: 800;
  white-space: nowrap;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: translateX(-24px);
  animation: preloaderLineWipe 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.preloader-message .preloader-accent {
  color: #ff9a3d;
}

.preloader-message span:nth-child(1) {
  animation-delay: 480ms;
}

.preloader-message span:nth-child(2) {
  animation-delay: 760ms;
}

.preloader-message span:nth-child(3) {
  animation-delay: 1040ms;
}

.preloader-progress {
  width: 100%;
  height: 2px;
  margin-top: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.preloader-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f97316, #ffb15c);
  transform: translateX(-100%);
  animation: preloaderProgress 2.2s cubic-bezier(0.65, 0, 0.35, 1) 180ms forwards;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 12px clamp(18px, 5vw, 56px);
  color: #fff;
  background: rgba(18, 20, 23, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 70px;
  background: rgba(18, 20, 23, 0.98);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 178px;
  height: 48px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.24));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Outfit", sans-serif;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 12px 11px;
  color: rgba(255, 255, 255, 0.66);
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 11px;
  bottom: 5px;
  left: 11px;
  height: 1px;
  background: #ff9a3d;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.main-nav a:not(.nav-cta):hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav a.is-active {
  color: #fff;
}

.main-nav .nav-cta {
  margin-left: 10px;
  padding: 13px 20px;
  color: #fff;
  border: 1px solid #f97316;
  border-radius: 999px;
  background: #f97316;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.22);
}

.main-nav .nav-cta:hover {
  color: #20150d;
  background: #ffb15c;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 4fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding: 118px clamp(18px, 6vw, 88px) 54px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 100% 92% at 100% -12%, rgba(255, 192, 118, 0.38) 0%, rgba(249, 115, 22, 0.16) 32%, transparent 70%),
    linear-gradient(135deg, rgba(255, 177, 92, 0.03) 8%, rgba(255, 177, 92, 0.1) 48%, rgba(249, 115, 22, 0.06) 76%, transparent 100%),
    linear-gradient(90deg, #0c0e11 0%, #101216 46%, #1a1b1e 100%),
    #17191d;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.02);
  transition: transform 600ms ease;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 194, 122, 0.14) 0%, rgba(249, 115, 22, 0.05) 58%, transparent 94%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 46%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 78px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 177, 92, 0.28), transparent);
  pointer-events: none;
}

.hero::after {
  display: none;
}

.hero-logistics-map {
  position: absolute;
  z-index: 0;
  inset: 78px 0 0;
  overflow: hidden;
  opacity: 0.62;
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 88%, transparent 100%);
}

.hero-logistics-map::before {
  position: absolute;
  inset: 8% -6% -12% 35%;
  background-image:
    linear-gradient(rgba(255, 177, 92, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 177, 92, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  transform: perspective(600px) rotateX(58deg) rotateZ(-10deg);
  transform-origin: center;
  animation: logistics-grid-drift 14s linear infinite;
}

.logistics-route {
  position: absolute;
  height: 1px;
  overflow: hidden;
  border-top: 1px dashed rgba(255, 177, 92, 0.28);
  transform-origin: left;
}

.logistics-route::after {
  display: block;
  width: 16%;
  height: 2px;
  margin-top: -1px;
  background: linear-gradient(90deg, transparent, #f97316, transparent);
  content: "";
  animation: logistics-route-flow 4.4s linear infinite;
}

.route-one {
  top: 22%;
  right: 2%;
  width: 48%;
  transform: rotate(18deg);
}

.route-two {
  top: 57%;
  right: 9%;
  width: 42%;
  transform: rotate(-15deg);
}

.route-two::after {
  animation-delay: -1.6s;
}

.route-three {
  right: 28%;
  bottom: 14%;
  width: 34%;
  transform: rotate(27deg);
}

.route-three::after {
  animation-delay: -2.8s;
}

.logistics-node {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(255, 177, 92, 0.72);
  border-radius: 50%;
  background: #201712;
  box-shadow: 0 0 0 7px rgba(249, 115, 22, 0.06), 0 0 20px rgba(249, 115, 22, 0.35);
  animation: logistics-node-pulse 2.4s ease-in-out infinite;
}

.node-one { top: 19%; right: 44%; }
.node-two { top: 39%; right: 12%; animation-delay: -0.7s; }
.node-three { right: 46%; bottom: 24%; animation-delay: -1.3s; }
.node-four { right: 15%; bottom: 13%; animation-delay: -1.9s; }

.logistics-packet {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(255, 177, 92, 0.65);
  border-radius: 2px;
  background: rgba(249, 115, 22, 0.22);
  box-shadow: 0 0 16px rgba(249, 115, 22, 0.34);
}

.packet-one {
  top: 15%;
  right: 29%;
  animation: logistics-float-one 7s ease-in-out infinite;
}

.packet-two {
  top: 48%;
  right: 4%;
  animation: logistics-float-two 8s ease-in-out infinite;
}

.packet-three {
  right: 38%;
  bottom: 8%;
  animation: logistics-float-one 9s ease-in-out -3s infinite reverse;
}

@keyframes logistics-grid-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 54px 54px, 54px 54px; }
}

@keyframes logistics-route-flow {
  from { transform: translateX(-110%); }
  to { transform: translateX(700%); }
}

@keyframes logistics-node-pulse {
  0%, 100% { transform: scale(0.8); opacity: 0.45; }
  50% { transform: scale(1.15); opacity: 1; }
}

@keyframes logistics-float-one {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  50% { transform: translate(38px, 28px) rotate(90deg); }
}

@keyframes logistics-float-two {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  50% { transform: translate(-42px, 34px) rotate(-90deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0;
  margin: 0;
  color: #fff;
  animation: riseIn 720ms ease both;
}

.hero-slides {
  position: relative;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease, visibility 520ms ease;
}

.hero-slide:not(.is-active) {
  position: absolute;
  inset: 0;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: #ffe0bf;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.hero .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan-2);
  box-shadow: 0 0 18px rgba(255, 177, 92, 0.7);
}

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

h1,
h2,
h3,
.brand,
.button,
.main-nav {
  font-family: "Outfit", sans-serif;
}

h1 {
  max-width: 15ch;
  margin-bottom: 24px;
  color: #f7f4ef;
  font-size: 3.75rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
}

.hero h1 {
  max-width: none;
}

.hero-statement {
  max-width: 14ch;
  margin-bottom: 0;
  font-size: 3.85rem;
  line-height: 0.98;
  font-weight: 800;
}

.hero-statement span {
  color: #ff9a3d;
}

.hero-industry-rotator {
  position: relative;
  display: grid;
  gap: 7px;
  min-height: 76px;
  max-width: 570px;
  margin-top: 26px;
  padding: 0 0 12px 24px;
  border-bottom: 1px solid rgba(255, 177, 92, 0.25);
  font-family: "Outfit", sans-serif;
}

.hero-industry-rotator::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 12px;
  left: 0;
  width: 3px;
  background: #f97316;
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.5);
}

.hero-industry-rotator span {
  color: rgba(247, 244, 239, 0.5);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-industry-rotator strong {
  color: #ffb15c;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.1;
  transition: opacity 320ms ease, transform 320ms ease, filter 320ms ease;
}

.hero-industry-rotator strong.is-changing {
  opacity: 0;
  filter: blur(3px);
  transform: translateX(14px);
}

.hero-copy {
  max-width: 500px;
  color: rgba(239, 235, 229, 0.72);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-width: 210px;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 7px 6px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:not(:has(svg))::after {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0;
  content: "→";
  transition: transform 220ms ease, background 220ms ease;
}

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

.button.primary {
  color: #fff;
  border-color: #f97316;
  background: #f97316;
  box-shadow: 0 16px 36px rgba(249, 115, 22, 0.24);
}

.button.primary:not(:has(svg))::after {
  color: #f97316;
  background: #fff0e4;
}

.button.secondary {
  color: var(--ink);
  border-color: rgba(36, 33, 31, 0.16);
  background: transparent;
}

.button.secondary:not(:has(svg))::after {
  color: #fff;
  background: #24272c;
}

.button:hover::after {
  transform: translateX(3px);
}

.button.full {
  width: 100%;
}

.hero-actions .button {
  min-width: 220px;
  min-height: 66px;
  justify-content: space-between;
  gap: 24px;
  padding: 7px 8px 7px 26px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: none;
  transition:
    color 220ms ease,
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.hero-actions .button svg {
  width: 52px;
  height: 52px;
  padding: 15px;
  flex: 0 0 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  border-radius: 50%;
  transition: transform 220ms ease, background 220ms ease;
}

.hero-actions .button.primary {
  color: #fff;
  border-color: #f97316;
  background: #f97316;
  box-shadow: 0 16px 38px rgba(249, 115, 22, 0.24);
}

.hero-actions .button.primary svg {
  color: #f97316;
  background: #fff0e4;
}

.hero-actions .button.secondary {
  min-width: 210px;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.88);
  border-color: transparent;
  background: transparent;
}

.hero-actions .button.secondary svg {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.hero-actions .button:hover {
  transform: translateY(-3px);
}

.hero-actions .button.primary:hover {
  background: #ff8a24;
  box-shadow: 0 20px 44px rgba(249, 115, 22, 0.34);
}

.hero-actions .button.secondary:hover {
  color: #fff;
  border-color: transparent;
  background: transparent;
}

.hero-actions .button.secondary:hover svg {
  color: #20150d;
  background: #ffb15c;
}

.hero-actions .button:hover svg {
  transform: translateX(3px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 0 24px;
  overflow: hidden;
  width: fit-content;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  color: #fff7ee;
  font-size: 0.8rem;
  font-weight: 800;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
  animation: none;
}

.hero-proof svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #ff9a3d;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-proof span:last-child {
  border-right: 0;
}

.hero-proof span:nth-child(2) {
  animation-delay: 0.25s;
}

.hero-proof span:nth-child(3) {
  animation-delay: 0.5s;
}

.hero-proof span:nth-child(4) {
  animation-delay: 0.75s;
}

.hero-proof span:nth-child(5) {
  animation-delay: 1s;
}

.hero-carousel-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 10px;
  margin-top: 28px;
}

.hero-dot {
  display: grid;
  min-height: 58px;
  padding: 11px 13px;
  place-items: start;
  color: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.hero-dot strong {
  color: var(--cyan-2);
  font: 800 0.75rem/1 "Outfit", sans-serif;
}

.hero-dot span {
  margin-top: 8px;
  font: 800 0.88rem/1 "Outfit", sans-serif;
}

.hero-dot:hover,
.hero-dot.is-active {
  color: #fff;
  border-color: rgba(255, 177, 92, 0.46);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.26), rgba(255, 255, 255, 0.08));
  transform: translateY(-2px);
}

.hero-showcase {
  position: relative;
  isolation: isolate;
  z-index: 1;
  align-self: center;
  justify-self: end;
  width: min(484px, 100%);
  padding: 14px;
  color: #fff;
  border: 1px solid rgba(255, 177, 92, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(22, 24, 27, 0.34), rgba(16, 18, 21, 0.22)),
    rgba(20, 22, 25, 0.18);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.07),
    inset 0 -1px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px) saturate(1.06);
  animation: dashboardIn 860ms ease 160ms both;
}

.hero-showcase::after {
  position: absolute;
  inset: -18px;
  z-index: -1;
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: 12px;
  content: "";
  animation: console-breathe 4s ease-in-out infinite;
}

@keyframes console-breathe {
  0%, 100% { opacity: 0.25; transform: scale(0.985); }
  50% { opacity: 0.75; transform: scale(1.01); }
}

.hero-showcase::before {
  display: none;
}

.locker-console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}

.locker-console-head div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.locker-console-head .locker-site-meta {
  align-items: center;
}

.locker-site-meta > span:last-child {
  display: grid;
  gap: 4px;
  align-content: center;
}

.locker-console-head strong {
  font: 800 0.98rem/1 "Outfit", sans-serif;
}

.locker-site-meta small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.56rem;
  font-weight: 700;
  white-space: nowrap;
}

.locker-console-head .uptime-meta {
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 4px;
}

.uptime-meta small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.54rem;
  font-weight: 700;
  white-space: nowrap;
}

.locker-console-head .meta-line {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}

.locker-console-head .meta-line svg {
  width: 0.68rem;
  height: 0.68rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.86;
}

.locker-console-head .pulse {
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.62);
  animation-name: pulseGreen;
}

.uptime-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  color: #bbf7d0;
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.1);
  font-size: 0.5rem;
  font-weight: 900;
  text-transform: uppercase;
}

.locker-bank-shell {
  position: relative;
  isolation: isolate;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.locker-status-legend {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 7px;
  padding-top: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.locker-status-legend > div {
  display: grid;
  gap: 5px;
}

.locker-status-legend > div + div {
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.locker-status-legend > div > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.48rem;
  font-weight: 800;
  text-transform: uppercase;
}

.locker-status-legend > div > span b {
  color: #fff;
  font-size: 0.62rem;
}

.locker-status-legend > div > span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 7px rgba(34, 197, 94, 0.72);
}

.locker-status-legend .occupied > span::before {
  background: #f97316;
  box-shadow: 0 0 7px rgba(249, 115, 22, 0.72);
}

.locker-status-legend .overstay > span::before {
  background: #ef4444;
  box-shadow: 0 0 7px rgba(239, 68, 68, 0.72);
}

.locker-status-legend small {
  display: flex;
  justify-content: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.43rem;
  font-weight: 700;
}

.locker-status-legend small b {
  display: inline-grid;
  width: 16px;
  height: 16px;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  font-size: 0.62rem;
}

.locker-status-legend small span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.62rem;
  white-space: nowrap;
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  min-height: 620px;
  padding: 148px clamp(18px, 6vw, 88px) 72px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.2), transparent 42%),
    linear-gradient(135deg, #17191d 0%, #262a30 62%, #111316 100%);
}

.lockera-process {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f8f7f4 0%, #efede8 100%);
}

.process-backdrop {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(36, 33, 31, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 33, 31, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 80%, transparent);
}

.lockera-process::before,
.lockera-process::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.lockera-process::before {
  top: 11%;
  right: -8%;
  width: 42%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.48), transparent);
  transform: rotate(-18deg);
}

.lockera-process::after {
  bottom: 10%;
  left: -8%;
  width: 38%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(36, 33, 31, 0.2), transparent);
  transform: rotate(-18deg);
}

.lockera-process .section-heading {
  max-width: 850px;
}

.lockera-process .section-heading h2 {
  max-width: 780px;
  margin-inline: auto;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 54px;
}

.process-grid::before {
  position: absolute;
  top: 48px;
  right: 8%;
  left: 8%;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.5), transparent);
  content: "";
  transform-origin: left;
  animation: process-line 2.2s ease-out both;
}

.process-grid article {
  position: relative;
  min-height: 370px;
  padding: 20px 22px 24px;
  overflow: hidden;
  border: 1px solid rgba(36, 33, 31, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.66)),
    #fff;
  box-shadow: 0 22px 50px rgba(36, 33, 31, 0.09);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.process-grid article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #ffb15c 46%, transparent);
  content: "";
}

.process-grid article::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(249, 115, 22, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 18px rgba(249, 115, 22, 0.035),
    0 0 0 38px rgba(249, 115, 22, 0.025);
  content: "";
  transition: transform 400ms ease;
}

.process-grid article:hover {
  transform: translateY(-10px);
  border-color: rgba(249, 115, 22, 0.42);
  box-shadow: 0 30px 70px rgba(36, 33, 31, 0.15);
}

.process-grid article:hover::after {
  transform: scale(1.16);
}

.process-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 54px;
}

.process-number,
.process-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
}

.process-number {
  color: #fff;
  background: #f97316;
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.26);
  font-size: 0.8rem;
  font-weight: 900;
}

.process-icon {
  color: #f97316;
  border: 1px solid rgba(249, 115, 22, 0.18);
  background: rgba(249, 115, 22, 0.07);
  transition: color 250ms ease, background 250ms ease, transform 250ms ease;
}

.process-grid article:hover .process-icon {
  color: #fff;
  background: #24272c;
  transform: rotate(-7deg) scale(1.08);
}

.process-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-grid small {
  display: block;
  margin-bottom: 8px;
  color: #f97316;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-grid h3 {
  margin: 0 0 15px;
  color: #24211f;
  font-size: 1.7rem;
  line-height: 1;
}

.process-grid p {
  margin: 0;
  color: #706b66;
  font-size: 0.92rem;
  line-height: 1.65;
}

.process-card-line {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  height: 1px;
  overflow: hidden;
  background: rgba(36, 33, 31, 0.09);
}

.process-card-line::after {
  display: block;
  width: 42%;
  height: 100%;
  background: #f97316;
  content: "";
  animation: process-scan 3.8s ease-in-out infinite;
}

@keyframes process-line {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes process-scan {
  0%, 100% { transform: translateX(-110%); }
  50% { transform: translateX(240%); }
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 96px;
  background: linear-gradient(180deg, transparent, rgba(246, 244, 240, 0.92));
}

.page-hero-content,
.page-hero-panel {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 13ch;
  margin-bottom: 20px;
  font-size: 4.8rem;
}

.page-hero p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.65;
}

.page-hero-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 177, 92, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.page-hero-panel strong,
.page-hero-panel span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.page-hero-panel strong {
  color: #fff;
}

.page-hero-panel span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.page-band {
  padding: clamp(76px, 8vw, 118px) clamp(18px, 6vw, 88px);
  background: #f6f4f0;
}

.page-band.alt {
  background: linear-gradient(180deg, #fffaf5 0%, #ece8df 100%);
}

.page-band.dark {
  color: #fff;
  background: #17191d;
}

.page-band.dark .section-heading h2,
.page-band.dark .section-heading p {
  color: #fff;
}

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

.page-card {
  min-height: 220px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(36, 33, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.page-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.page-card.dark {
  color: #fff;
  border-color: rgba(255, 177, 92, 0.2);
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.22), transparent 44%),
    var(--charcoal);
}

.page-card h3 {
  margin-bottom: 12px;
  color: inherit;
  font-size: 1.2rem;
  line-height: 1.25;
}

.page-card p,
.page-card li {
  color: var(--muted);
  line-height: 1.62;
}

.page-card.dark p,
.page-card.dark li {
  color: rgba(255, 255, 255, 0.74);
}

.page-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.split-visual {
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: 8px;
  background: #111316;
  box-shadow: var(--shadow);
}

.split-visual img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.process-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
  counter-reset: pageProcess;
}

.process-list div {
  position: relative;
  padding: 20px 22px 20px 78px;
  border: 1px solid rgba(36, 33, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 30px rgba(23, 25, 29, 0.06);
  counter-increment: pageProcess;
}

.process-list div::before {
  content: "0" counter(pageProcess);
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  width: 38px;
  height: 34px;
  place-items: center;
  color: #22160d;
  font: 800 0.82rem/1 "Outfit", sans-serif;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan-2), var(--cyan));
}

.process-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.05rem;
}

.process-list span {
  color: var(--muted);
  line-height: 1.58;
}

.dashboard-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.dashboard-head strong {
  font-family: "Outfit", sans-serif;
}

.dashboard-head small {
  margin-left: auto;
  color: var(--cyan-2);
  font-weight: 800;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cyan-2);
  box-shadow: 0 0 0 0 rgba(255, 177, 92, 0.55);
  animation: pulse 1.8s ease-out infinite;
}

.locker-visual {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(18, minmax(0, 1fr));
  grid-auto-flow: row;
  position: relative;
  isolation: isolate;
  gap: 2px 3px;
  width: 100%;
  aspect-ratio: 3 / 2;
  margin-inline: auto;
  padding: 8px;
  overflow: visible;
  border: 2px solid #292d31;
  border-radius: 2px;
  background: #34393e;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.08),
    0 10px 18px rgba(0, 0, 0, 0.2);
  transform: none;
  transform-origin: center;
}

.locker-visual::before {
  display: none;
}

.locker-visual::after {
  display: none;
}

.locker-visual span {
  position: relative;
  z-index: 1;
  min-height: 0;
  border: 1px solid #292e32;
  border-radius: 1px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 48%),
    linear-gradient(180deg, #4d5257, #3d4247);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.06),
    inset 0 -1px rgba(0, 0, 0, 0.52);
  transform-style: preserve-3d;
}

.locker-visual span::before {
  content: attr(data-door);
  position: absolute;
  top: 4px;
  left: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.36rem;
  font-weight: 800;
  letter-spacing: 0;
  opacity: 1;
}

.locker-visual [data-door="S01"] { grid-area: 1 / 1 / 3 / 2; }
.locker-visual [data-door="S02"] { grid-area: 3 / 1 / 5 / 2; }
.locker-visual [data-door="S03"] { grid-area: 5 / 1 / 7 / 2; }
.locker-visual [data-door="S04"] { grid-area: 7 / 1 / 9 / 2; }
.locker-visual [data-door="S05"] { grid-area: 9 / 1 / 11 / 2; }
.locker-visual [data-door="L01"] { grid-area: 11 / 1 / 19 / 2; }

.locker-visual [data-door="M01"] { grid-area: 1 / 2 / 4 / 3; }
.locker-visual [data-door="M02"] { grid-area: 4 / 2 / 7 / 3; }
.locker-visual [data-door="S06"] { grid-area: 7 / 2 / 9 / 3; }
.locker-visual [data-door="S07"] { grid-area: 9 / 2 / 11 / 3; }
.locker-visual [data-door="S08"] { grid-area: 11 / 2 / 13 / 3; }
.locker-visual [data-door="L02"] { grid-area: 13 / 2 / 19 / 3; }

.locker-visual [data-door="S09"] { grid-area: 1 / 3 / 3 / 4; }
.locker-visual [data-door="S10"] { grid-area: 3 / 3 / 5 / 4; }
.locker-visual [data-door="S11"] { grid-area: 5 / 3 / 7 / 4; }
.locker-visual [data-door="S12"] { grid-area: 7 / 3 / 9 / 4; }
.locker-visual [data-door="M03"] { grid-area: 9 / 3 / 12 / 4; }
.locker-visual [data-door="L03"] { grid-area: 12 / 3 / 19 / 4; }

.locker-visual [data-door="S13"] { grid-area: 1 / 4 / 3 / 5; }
.locker-visual [data-door="S14"] { grid-area: 3 / 4 / 5 / 5; }
.locker-visual [data-door="S15"] { grid-area: 5 / 4 / 7 / 5; }
.locker-visual [data-door="S16"] { grid-area: 7 / 4 / 9 / 5; }
.locker-visual [data-door="S17"] { grid-area: 9 / 4 / 11 / 5; }
.locker-visual [data-door="L04"] { grid-area: 11 / 4 / 19 / 5; }

.locker-visual [data-door="M04"] { grid-area: 1 / 5 / 4 / 6; }
.locker-visual [data-door="M05"] { grid-area: 4 / 5 / 7 / 6; }
.locker-visual [data-door="S18"] { grid-area: 7 / 5 / 9 / 6; }
.locker-visual [data-door="S19"] { grid-area: 9 / 5 / 11 / 6; }
.locker-visual [data-door="S20"] { grid-area: 11 / 5 / 13 / 6; }
.locker-visual [data-door="L05"] { grid-area: 13 / 5 / 19 / 6; }

.locker-visual [data-door="S21"] { grid-area: 1 / 6 / 3 / 7; }
.locker-visual [data-door="S22"] { grid-area: 3 / 6 / 5 / 7; }
.locker-visual [data-door="S23"] { grid-area: 5 / 6 / 7 / 7; }
.locker-visual [data-door="S24"] { grid-area: 7 / 6 / 9 / 7; }
.locker-visual [data-door="M06"] { grid-area: 9 / 6 / 12 / 7; }
.locker-visual [data-door="L06"] { grid-area: 12 / 6 / 19 / 7; }

.locker-visual .display-door i {
  display: none;
}

.locker-visual span::after {
  content: "";
  position: absolute;
  top: 48%;
  right: 8%;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #34d26f;
  box-shadow:
    0 0 9px rgba(52, 210, 111, 0.9),
    inset 0 0 2px rgba(255, 255, 255, 0.38);
  transform: translateY(-50%);
}

.locker-visual .occupied {
  border-color: #292e32;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 48%),
    linear-gradient(180deg, #4d5257, #3d4247);
}

.locker-visual .occupied::after {
  background: #f97316;
  box-shadow: 0 0 9px rgba(249, 115, 22, 0.76);
}

.locker-visual .overstay {
  border-color: #292e32;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 48%),
    linear-gradient(180deg, #4d5257, #3d4247);
}

.locker-visual .overstay::after {
  background: #ef4444;
  box-shadow: 0 0 9px rgba(239, 68, 68, 0.82);
}

.locker-visual .door-cycle {
  z-index: 2;
  animation: doorOpenClose 2.25s ease-in-out both;
}

.locker-visual .live-focus {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.3),
    0 0 18px rgba(255, 255, 255, 0.3);
}

.dashboard-events {
  position: absolute;
  z-index: 5;
  top: var(--notification-top, 68px);
  right: 14px;
  left: 14px;
  min-height: 61px;
  margin: 0;
  pointer-events: none;
}

.dashboard-events p {
  position: absolute;
  inset: 0 auto auto 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px;
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 7px 9px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  background: rgba(20, 22, 25, 0.48);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.06),
    0 8px 20px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  font-size: 0.74rem;
  line-height: 1.3;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px) scale(0.9);
  filter: blur(3px);
  transition:
    opacity 360ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 360ms ease,
    visibility 0s linear 420ms;
}

.dashboard-events.popup-left p {
  left: 0;
  right: auto;
}

.dashboard-events.popup-center p {
  left: 50%;
  right: auto;
  transform: translate(-50%, -16px) scale(0.9);
}

.dashboard-events.popup-center p.is-active {
  transform: translate(-50%, 0) scale(1);
}

.dashboard-events.popup-right p {
  right: 0;
  left: auto;
}

.dashboard-events p.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition-delay: 0s;
}

.dashboard-events.popup-center p.is-active {
  transform: translate(-50%, 0) scale(1);
}

.dashboard-events p span {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.dashboard-events p strong {
  color: #fff;
  font-size: 0.76rem;
}

.dashboard-events p em {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.58rem;
  font-style: normal;
}

.dashboard-events p > i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, #ff9a3d, #e75c0e);
  box-shadow: 0 5px 12px rgba(249, 115, 22, 0.28);
}

.dashboard-events .event-allotted > i,
.dashboard-events .event-received > i {
  background: linear-gradient(145deg, #ff9a3d, #e75c0e);
  box-shadow: 0 5px 12px rgba(249, 115, 22, 0.28);
}

.dashboard-events .event-otp > i,
.dashboard-events .event-network > i {
  background: linear-gradient(145deg, #38bdf8, #0369a1);
  box-shadow: 0 5px 12px rgba(14, 165, 233, 0.28);
}

.dashboard-events .event-opened > i,
.dashboard-events .event-picked > i {
  background: linear-gradient(145deg, #4ade80, #15803d);
  box-shadow: 0 5px 12px rgba(34, 197, 94, 0.28);
}

.dashboard-events .event-overstay > i,
.dashboard-events .event-tamper > i {
  background: linear-gradient(145deg, #fb7185, #be123c);
  box-shadow: 0 5px 12px rgba(239, 68, 68, 0.28);
}

.dashboard-events .event-battery > i {
  background: linear-gradient(145deg, #facc15, #a16207);
  box-shadow: 0 5px 12px rgba(234, 179, 8, 0.28);
}

.dashboard-events .event-closed > i {
  background: linear-gradient(145deg, #94a3b8, #475569);
  box-shadow: 0 5px 12px rgba(100, 116, 139, 0.28);
}

.dashboard-events svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, calc(100% - 40px));
  margin: -48px auto 0;
  overflow: hidden;
  background: #1e2126;
  border: 1px solid rgba(255, 177, 92, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.2);
}

.metrics div {
  min-height: 132px;
  padding: 22px 24px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, background 180ms ease;
}

.metrics div:hover {
  transform: translateY(-4px);
  background: #2d3036;
}

.metrics div:last-child {
  border-right: 0;
}

.metrics strong {
  display: block;
  margin-bottom: 9px;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.1;
}

.metric-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metrics span {
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.45;
}

.section {
  padding: clamp(82px, 8vw, 124px) clamp(18px, 6vw, 88px);
  position: relative;
  overflow: hidden;
}

main section {
  scroll-margin-top: 86px;
}

.section-heading {
  max-width: 820px;
}

.section-heading::before {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-2));
}

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

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

.section-heading.light h2,
.section-heading.light p {
  color: #fff;
}

.section-heading h2,
.cta h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 3.45rem;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
}

.section-heading p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.product-suite {
  color: #fff;
  background:
    radial-gradient(ellipse 70% 65% at 100% 0%, rgba(249, 115, 22, 0.2), transparent 62%),
    linear-gradient(180deg, #15171a 0%, #202328 100%);
}

.section-anchor {
  position: absolute;
  top: 0;
  left: 0;
}

.platform-intro {
  display: block;
}

.product-suite .section-heading {
  max-width: 860px;
}

.product-suite .section-heading h2 {
  color: #f7f4ef;
}

.product-suite .section-heading p {
  color: rgba(247, 244, 239, 0.66);
}

.feature-value-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.feature-value-strip span {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 8px;
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.55);
  background: #1c1f23;
  font-size: 0.78rem;
}

.feature-value-strip strong {
  color: #ff9a3d;
  font: 800 1.05rem/1.15 "Outfit", sans-serif;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.product-card {
  position: relative;
  display: grid;
  min-height: 190px;
  align-content: start;
  padding: 22px 72px 22px 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(12, 14, 17, 0.24);
  box-shadow: none;
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.product-card .feature-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  margin: 0;
  border-radius: 7px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.product-card .feature-icon svg {
  width: 21px;
  height: 21px;
}

.product-card:hover .feature-icon {
  transform: translateY(-2px) rotate(-4deg);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.18);
}

.product-card.featured {
  grid-column: span 2;
  color: #fff;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(255, 177, 92, 0.24), transparent 58%),
    linear-gradient(145deg, rgba(249, 115, 22, 0.2), rgba(255, 255, 255, 0.055)),
    rgba(12, 14, 17, 0.36);
  border-color: rgba(255, 177, 92, 0.32);
}

.product-grid .product-card:nth-child(6),
.product-grid .product-card:nth-child(7),
.product-grid .product-card:nth-child(8) {
  grid-column: span 2;
}

.product-grid .product-card:nth-child(9) {
  grid-column: 1 / -1;
  min-height: 170px;
}

.product-grid .product-card:nth-child(6) {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(255, 177, 92, 0.16), transparent 58%),
    linear-gradient(145deg, rgba(249, 115, 22, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(12, 14, 17, 0.34);
}

.product-grid .product-card:nth-child(7) {
  background:
    radial-gradient(ellipse at 0% 100%, rgba(255, 177, 92, 0.15), transparent 58%),
    linear-gradient(145deg, rgba(249, 115, 22, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(12, 14, 17, 0.34);
}

.product-grid .product-card:nth-child(8) {
  background:
    radial-gradient(ellipse at 100% 100%, rgba(255, 177, 92, 0.13), transparent 58%),
    linear-gradient(145deg, rgba(249, 115, 22, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(12, 14, 17, 0.34);
}

.product-grid .product-card:nth-child(9) {
  background:
    linear-gradient(90deg, rgba(249, 115, 22, 0.16), transparent 42%),
    rgba(12, 14, 17, 0.34);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 177, 92, 0.9), transparent 72%);
  opacity: 0.5;
  transition: opacity 220ms ease;
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 177, 92, 0.38);
  background:
    linear-gradient(180deg, rgba(255, 177, 92, 0.09), rgba(255, 255, 255, 0.04)),
    rgba(12, 14, 17, 0.3);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
}

.product-card:hover::after {
  opacity: 1;
}

.product-card h3 {
  max-width: 24ch;
  margin-bottom: 8px;
  color: #f7f4ef;
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.product-card p {
  max-width: 58ch;
  margin-bottom: 0;
  color: rgba(247, 244, 239, 0.62);
  font-size: 0.88rem;
  line-height: 1.55;
}

.product-card .card-label {
  margin: 0 0 9px;
  color: #ffb15c;
  font: 800 0.7rem/1 "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-card.featured h3 {
  color: #fff;
  font-size: 1.65rem;
  line-height: 1.1;
}

.product-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.product-card.featured .card-label {
  color: var(--cyan-2);
}

.tech-card,
.contact-form {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 245, 0.84)),
    var(--paper);
  border: 1px solid rgba(36, 33, 31, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.tech-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  opacity: 0.55;
  transition: opacity 240ms ease;
}

.tech-card:hover,
.solution-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(23, 25, 29, 0.13);
  border-color: rgba(249, 115, 22, 0.42);
}

.tech-card:hover::after {
  opacity: 1;
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(23, 25, 29, 0.12);
}

.feature-icon svg,
.tech-icon svg,
.solution-grid svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon.cyan {
  background: var(--cyan);
}

.feature-icon.navy {
  background: var(--navy);
}

.feature-icon.red {
  background: var(--red);
}

.feature-icon.teal {
  background: linear-gradient(135deg, var(--cyan), #b45309);
}

.advantage-lead h3,
.solution-grid h3,
.tech-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.advantage-lead p,
.solution-grid p,
.tech-card p,
.cta p,
.site-footer p,
.hardware-strip span {
  color: var(--muted);
  line-height: 1.62;
}

.advantages {
  background:
    linear-gradient(180deg, #181a1e 0%, #24272c 100%);
}

.advantages .section-heading h2 {
  color: #fff;
}

.advantages .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.advantage-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 5vw, 64px);
  margin-top: 42px;
}

.advantage-lead {
  padding: clamp(28px, 4vw, 42px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.28), rgba(255, 255, 255, 0.06)),
    #101215;
  border: 1px solid rgba(255, 177, 92, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.advantage-lead h3 {
  color: #fff;
  font-size: 2.1rem;
}

.advantage-lead p {
  color: rgba(255, 255, 255, 0.78);
}

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

.advantage-list div {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-left: 3px solid var(--cyan);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.advantage-list div:hover {
  transform: translateX(4px);
  border-color: rgba(255, 177, 92, 0.42);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.advantage-list strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 1.06rem;
}

.advantage-list span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.solutions {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f8f7f4 0%, #efede8 100%);
}

.solutions::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(36, 33, 31, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 33, 31, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 82%, transparent);
  content: "";
}

.solutions::after {
  position: absolute;
  z-index: -1;
  top: 13%;
  right: -9%;
  width: 45%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.48), transparent);
  content: "";
  transform: rotate(-18deg);
}

.solutions .eyebrow {
  color: #f97316;
}

.solutions .section-heading h2 {
  color: #24211f;
}

.solutions .section-heading p {
  color: #706b66;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 14px;
  margin-top: 48px;
}

.solution-grid article {
  position: relative;
  min-height: 0;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(36, 33, 31, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.7)),
    #fff;
  box-shadow: 0 18px 44px rgba(36, 33, 31, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.solution-grid article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #ffb15c 48%, transparent);
  content: "";
}

.solution-grid article::after {
  position: absolute;
  right: -58px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 22px rgba(249, 115, 22, 0.035),
    0 0 0 44px rgba(249, 115, 22, 0.018);
  content: "";
  transition: transform 300ms ease;
}

.solution-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(249, 115, 22, 0.38);
  background: #fff;
  box-shadow: 0 26px 60px rgba(36, 33, 31, 0.14);
}

.solution-grid article:hover::after {
  transform: scale(1.18);
}

.solution-card-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.solution-card-head > span {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, #f97316, #ff9a3d);
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.2);
}

.solution-card-head > span svg {
  width: 25px;
  height: 25px;
}

.solution-grid h3 {
  margin: 1px 0 5px;
  color: #24211f;
  font-size: 1.18rem;
}

.solution-grid p {
  margin: 0;
  color: #77716b;
  font-size: 0.86rem;
  line-height: 1.5;
}

.solution-grid ul {
  display: grid;
  gap: 8px;
  margin: 0 0 17px;
  padding: 0;
  list-style: none;
}

.solution-grid li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #706b66;
  font-size: 0.84rem;
  line-height: 1.35;
}

.solution-grid li::before {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: #f97316;
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
  content: "";
}

.solution-card-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 0;
  padding-top: 15px;
  border-top: 1px solid rgba(36, 33, 31, 0.1);
}

.solution-card-result strong {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  color: #c94f08;
  border: 1px solid rgba(249, 115, 22, 0.24);
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  box-shadow: 0 7px 18px rgba(249, 115, 22, 0.09);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
}

.solution-card-result svg {
  width: 17px;
  height: 17px;
  color: rgba(36, 33, 31, 0.4);
  transition: color 180ms ease, transform 180ms ease;
}

.solution-grid article:hover .solution-card-result svg {
  color: #f97316;
  transform: translateX(3px);
}

.solutions-followup {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 48px;
  text-align: center;
}

.solutions-followup p {
  margin: 0;
  color: #706b66;
}

.solutions-followup a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.solutions-followup a svg {
  width: 46px;
  height: 46px;
  padding: 13px;
  flex: 0 0 46px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  border-radius: 50%;
  background: #fff0e4;
  transition: transform 180ms ease;
}

.solutions-followup a:hover svg {
  transform: translateX(4px);
}

.case-studies {
  background:
    linear-gradient(180deg, #202328, #17191d);
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.case-study-grid article {
  display: grid;
  align-content: start;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.case-study-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.42);
  background: rgba(255, 255, 255, 0.075);
}

.case-study-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.case-study-top span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  background: #f97316;
}

.case-study-top svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-study-top small {
  color: #ff9a3d;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-study-grid h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.25;
}

.case-study-grid p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.62;
}

.case-study-grid strong {
  align-self: end;
  width: fit-content;
  margin-top: auto;
  padding-top: 15px;
  color: #ff9a3d;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}

.faq-section {
  background:
    linear-gradient(180deg, rgba(249, 115, 22, 0.035), transparent 45%),
    #17191d;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 1180px;
  margin: 48px auto 0;
}

.faq-list details {
  height: fit-content;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 180ms ease, background 180ms ease;
}

.faq-list details[open] {
  border-color: rgba(249, 115, 22, 0.38);
  background: rgba(255, 255, 255, 0.07);
}

.faq-list summary {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.12);
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: #ff9a3d;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.65;
}

.technology {
  background:
    linear-gradient(180deg, #f6f4f0 0%, #e8e4dc 100%);
}

.tech-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 16px;
  margin-top: 44px;
}

.tech-card {
  min-height: 212px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.tech-card.large {
  grid-row: span 2;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(249, 115, 22, 0.24), transparent 44%),
    var(--charcoal);
}

.tech-card.large h3 {
  color: #fff;
  font-size: 2.05rem;
}

.tech-card.large p {
  color: rgba(255, 255, 255, 0.76);
}

.tech-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(249, 115, 22, 0.28);
  border-radius: 8px;
  background: rgba(249, 115, 22, 0.1);
}

.tech-card.large .tech-icon {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
}

.hardware {
  background:
    linear-gradient(180deg, #fff 0%, #f5f1ea 100%);
}

.hardware-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 44px auto 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  counter-reset: lockerProcess;
}

.hardware-strip div {
  min-height: 238px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 245, 0.86)),
    var(--paper);
  border: 1px solid rgba(36, 33, 31, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  counter-increment: lockerProcess;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.hardware-strip div::before {
  content: "0" counter(lockerProcess);
  display: inline-flex;
  min-width: 42px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 44px;
  color: #22160d;
  font: 800 0.82rem/1 "Outfit", sans-serif;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan-2), var(--cyan));
}

.hardware-strip div::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  opacity: 0.65;
}

.hardware-strip div:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.42);
  box-shadow: 0 24px 64px rgba(23, 25, 29, 0.13);
}

.hardware-strip strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.2;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.68fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.12), transparent 34%),
    linear-gradient(135deg, #f3f0ea, #ffffff);
}

.cta p {
  max-width: 720px;
  margin-top: 22px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 32px);
  box-shadow: 0 24px 70px rgba(23, 25, 29, 0.12);
}

label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

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

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dashboardIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 177, 92, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 177, 92, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 177, 92, 0);
  }
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.62);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

@keyframes preloaderReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes preloaderLineWipe {
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
  }
}

@keyframes preloaderProgress {
  to {
    transform: translateX(0);
  }
}

@keyframes preloaderGlow {
  0% {
    opacity: 0;
    transform: translate(12%, -10%) rotate(-18deg);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(-18deg);
  }
}

@keyframes doorOpenClose {
  0%,
  12%,
  88%,
  100% {
    transform: perspective(220px) rotateY(0);
    transform-origin: left center;
  }
  36%,
  64% {
    transform: perspective(220px) rotateY(-62deg);
    transform-origin: left center;
    box-shadow: 8px 5px 12px rgba(0, 0, 0, 0.34);
  }
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(249, 115, 22, 0.18);
  border-color: var(--cyan);
}

.get-started {
  position: relative;
  display: grid;
  min-height: 680px;
  place-items: center;
  padding: clamp(90px, 10vw, 150px) 20px;
  overflow: hidden;
  color: #f7f4ef;
  background: linear-gradient(180deg, #17191d, #202328);
}

.get-started-glow {
  position: absolute;
  width: min(800px, 90vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.13);
  filter: blur(130px);
}

.get-started-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}

.get-started-label {
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 16px;
  color: #ff9a3d;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.1);
  font: 700 0.84rem/1 "Outfit", sans-serif;
}

.get-started h2 {
  margin: 0 0 24px;
  font-size: clamp(2.5rem, 5vw, 4.15rem);
  line-height: 1.04;
  font-weight: 800;
}

.get-started-line {
  display: block;
  white-space: nowrap;
}

.get-started-line.accent {
  color: #ff9a3d;
}

.get-started-content > p:not(.get-started-label) {
  max-width: 680px;
  margin: 0 auto 38px;
  color: rgba(247, 244, 239, 0.62);
  font-size: 1.18rem;
  line-height: 1.7;
}

.get-started-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 42px;
}

.get-started-actions a {
  display: inline-flex;
  min-width: 210px;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 7px 6px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.get-started-actions a:hover {
  transform: translateY(-3px);
}

.get-started-actions svg {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  padding: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  border-radius: 50%;
  transition: transform 220ms ease, background 220ms ease;
}

.get-started-primary {
  color: #fff;
  border-color: #f97316;
  background: #f97316;
  box-shadow: 0 0 34px rgba(249, 115, 22, 0.36);
}

.get-started-primary svg {
  color: #f97316;
  background: #fff0e4;
}

.get-started-secondary {
  color: #fff;
  background: transparent;
}

.get-started-secondary svg {
  background: rgba(255, 255, 255, 0.12);
}

.get-started-actions a:hover svg {
  transform: translateX(3px);
}

.get-started-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  color: rgba(247, 244, 239, 0.56);
  font-size: 0.86rem;
}

.get-started-trust span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.get-started-trust svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #ff9a3d;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  position: relative;
  scroll-margin-top: 92px;
  padding: 78px clamp(18px, 6vw, 88px) 28px;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.025), transparent),
    #111317;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 177, 92, 0.56), transparent);
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(360px, 1.35fr) minmax(280px, 0.95fr) minmax(250px, 0.8fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
  padding: 0 0 48px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.footer-logo img {
  display: block;
  width: clamp(170px, 15vw, 220px);
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(249, 115, 22, 0.12));
}

.site-footer p {
  max-width: 360px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.65;
}

.footer-brand {
  display: grid;
  gap: 18px;
  padding-right: 12px;
}

.footer-brand p {
  max-width: 460px;
}

.footer-contact-column,
.footer-social-column {
  display: grid;
  align-content: start;
  gap: 20px;
  padding-left: clamp(20px, 3vw, 42px);
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-contact-column h2,
.footer-social-column h2 {
  margin: 0;
  color: #f7f4ef;
  font-size: 1.1rem;
}

.footer-social-column p {
  margin: 0;
  font-size: 0.88rem;
}

.footer-column {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding-left: 0;
  border-left: 0;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: #f7f4ef;
  font-size: 1.05rem;
  line-height: 1.2;
}

.footer-column a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover,
.footer-links a:hover {
  color: #f97316;
  transform: translateX(3px);
}

.footer-contact {
  display: grid;
  gap: 11px;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.84rem;
  line-height: 1.45;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 2px;
  fill: none;
  stroke: #f97316;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--cyan-2);
  border: 1px solid rgba(255, 177, 92, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  color: #22160d;
  background: var(--cyan-2);
  transform: translateY(-2px);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.social-links span {
  font: 800 0.78rem/1 "Outfit", sans-serif;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 0;
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.52);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.84rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer-links a {
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 500;
  transition: color 180ms ease, transform 180ms ease;
}

@media (max-width: 1040px) {
  .site-header {
    padding-inline: 28px;
  }

  .hero {
    grid-template-columns: minmax(0, 6fr) minmax(0, 4fr);
    gap: 28px;
    padding-inline: 28px;
  }

  h1 {
    font-size: 4.15rem;
  }

  .page-hero h1 {
    font-size: 4.4rem;
  }

  .section-heading h2,
  .cta h2 {
    font-size: 3rem;
  }

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

  .product-grid,
  .process-grid,
  .solution-grid,
  .case-study-grid,
  .faq-list,
  .tech-layout,
  .page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card.featured {
    grid-row: auto;
    grid-column: span 2;
  }

  .advantage-layout,
  .split-panel,
  .page-hero,
  .cta {
    grid-template-columns: 1fr;
  }

  .tech-card.large {
    grid-row: auto;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 28px;
  }

}

@media (max-width: 760px) {
  .site-header {
    inset: 0 0 auto;
    min-height: 68px;
    padding: 10px 14px;
    border-radius: 0;
  }

  .brand {
    width: 148px;
    height: 42px;
  }

  .nav-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #fff;
    border: 1px solid rgba(255, 177, 92, 0.3);
    border-radius: 8px;
    background: #24272c;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    padding: 12px;
    color: #fff;
    background: rgba(23, 25, 29, 0.98);
    border: 1px solid rgba(255, 177, 92, 0.16);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
  }

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

  .main-nav a {
    border-radius: 8px;
  }

  .main-nav a:not(.nav-cta)::after {
    display: none;
  }

  .main-nav .nav-cta {
    margin: 6px 0 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
    padding: 104px 18px 44px;
  }

  .page-hero {
    min-height: auto;
    padding: 112px 18px 58px;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  .page-hero-panel {
    padding: 12px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(255, 177, 92, 0.08), transparent 48%);
  }

  .hero::before {
    inset: 84px 12px 24px;
  }

  .hero::after {
    height: 76px;
  }

  h1 {
    max-width: 12ch;
    font-size: 3.05rem;
    line-height: 0.96;
  }

  .section-heading h2,
  .cta h2 {
    font-size: 2.25rem;
    line-height: 1.08;
  }

  .hero-showcase {
    padding: 12px;
  }

  .locker-console-head {
    align-items: center;
    gap: 12px;
  }

  .locker-bank-shell {
    padding-top: 10px;
  }

  .locker-visual {
    gap: 2px;
    width: 100%;
    padding: 7px 6px 14px;
  }

  .locker-visual span {
    min-height: 0;
  }

  .locker-visual .display-door i {
    width: 20px;
    height: 10px;
  }

  .locker-status-legend {
    gap: 5px;
  }

  .locker-status-legend small {
    font-size: 0.39rem;
  }

  .dashboard-events {
    min-height: 62px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-statement {
    max-width: 12ch;
    font-size: 3rem;
  }

  .hero-industry-rotator {
    min-height: 82px;
    padding-left: 18px;
  }

  .hero-industry-rotator strong {
    font-size: 1.2rem;
  }

  .hero-carousel-controls {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .hero-dot {
    min-height: 54px;
    padding: 10px;
  }

  .hero-dot span {
    font-size: 0.76rem;
  }

  .metrics,
  .feature-value-strip,
  .product-grid,
  .process-grid,
  .solution-grid,
  .case-study-grid,
  .faq-list,
  .tech-layout,
  .hardware-strip,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    gap: 12px;
  }

  .process-grid::before {
    display: none;
  }

  .process-grid article {
    min-height: 330px;
  }

  .metrics {
    margin-top: -28px;
  }

  .metrics div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .section {
    padding: 68px 18px;
  }

  .page-band {
    padding: 68px 18px;
  }

  .section-heading.center {
    text-align: left;
  }

  .product-grid,
  .solution-grid,
  .tech-layout,
  .hardware-strip {
    margin-top: 34px;
  }

  .product-card,
  .solution-grid article,
  .tech-card,
  .hardware-strip div,
  .page-card {
    min-height: auto;
    padding: 24px;
  }

  .product-card.featured,
  .product-grid .product-card:nth-child(6),
  .product-grid .product-card:nth-child(7),
  .product-grid .product-card:nth-child(8),
  .product-grid .product-card:nth-child(9) {
    grid-column: auto;
  }

  .split-visual img {
    min-height: 240px;
  }

  .feature-icon,
  .tech-icon,
  .hardware-strip strong {
    margin-bottom: 26px;
  }

  .contact-form {
    padding: 18px;
  }

  .get-started {
    min-height: auto;
    padding: 82px 18px;
  }

  .get-started h2 {
    font-size: 1.85rem;
  }

  .get-started-actions {
    display: grid;
  }

  .get-started-actions a {
    width: 100%;
  }

  .get-started-trust {
    display: grid;
    justify-content: start;
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }

  .site-footer {
    padding-top: 48px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    row-gap: 34px;
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-column {
    min-height: auto;
    padding: 26px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-left: 0;
  }

  .footer-contact-column,
  .footer-social-column {
    padding: 26px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-left: 0;
  }

  .footer-bottom {
    display: grid;
    gap: 16px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 400px) {
  .get-started h2 {
    font-size: 1.55rem;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.72rem;
  }

  .hero-statement {
    font-size: 2.7rem;
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .section-heading h2,
  .cta h2 {
    font-size: 2rem;
  }

  .metrics strong {
    font-size: 1.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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