/* ALMC Commerce — connected retail editorial system */
:root {
  --almc-commerce-paper: #f6f8fc;
  --almc-commerce-white: #fff;
  --almc-commerce-ink: #10131a;
  --almc-commerce-muted: #5c6575;
  --almc-commerce-blue: #175cff;
  --almc-commerce-orange: #ff6433;
  --almc-commerce-mint: #2dd4bf;
  --almc-commerce-navy: #0b1220;
  --almc-commerce-line: #dce2eb;
  --almc-commerce-radius: 28px;
  --almc-commerce-shadow: 0 30px 80px rgba(11, 18, 32, .12);
  --almc-commerce-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --almc-commerce-body: Manrope, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-padding-top: 90px; }
body { margin: 0; }
body.almc-commerce-site {
  overflow-x: clip;
  background: var(--almc-commerce-paper);
  color: var(--almc-commerce-ink);
  font-family: var(--almc-commerce-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

.almc-commerce-site img { display: block; max-width: 100%; }
.almc-commerce-site svg { display: block; }
:where(.almc-commerce-site) a { color: inherit; }
.almc-commerce-site button,
.almc-commerce-site input,
.almc-commerce-site textarea { font: inherit; }
.almc-commerce-site :focus-visible { outline: 3px solid #fff; outline-offset: 0; box-shadow: 0 0 0 6px var(--almc-commerce-ink) !important; }
.almc-commerce-svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.almc-commerce-shell,
.almc-commerce-container { width: min(100% - 40px, 1220px); margin-inline: auto; }
.almc-commerce-section { position: relative; padding: 112px 0; }
.almc-commerce-h2,
.almc-commerce-page-h1 {
  margin: 0;
  font-family: var(--almc-commerce-display);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .98;
  text-wrap: balance;
}
.almc-commerce-h2 { max-width: 920px; font-size: clamp(2.45rem, 5vw, 5.25rem); }
.almc-commerce-page-h1 { max-width: 980px; font-size: clamp(3.2rem, 7vw, 7.4rem); }
.almc-commerce-lead { max-width: 760px; margin: 24px 0 0; color: var(--almc-commerce-muted); font-size: clamp(1.03rem, 1.7vw, 1.24rem); line-height: 1.65; }
.almc-commerce-kicker,
.almc-commerce-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  color: var(--almc-commerce-blue);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .15em;
  line-height: 1.3;
  text-transform: uppercase;
}
.almc-commerce-kicker > span { width: 26px; height: 2px; background: currentColor; }
.almc-commerce-kicker--light { color: var(--almc-commerce-mint); }
.almc-commerce-section-head { margin-bottom: 54px; }
.almc-commerce-section-head--split,
.almc-commerce-section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  gap: 80px;
  align-items: end;
}
.almc-commerce-section-head--split .almc-commerce-lead,
.almc-commerce-section-heading--split .almc-commerce-lead { margin: 0; }

.almc-commerce-skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--almc-commerce-ink);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
}
.almc-commerce-skip-link:focus { transform: none; }
.almc-commerce-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Navigation */
.almc-commerce-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(16, 19, 26, .09);
  background: rgba(246, 248, 252, .88);
  backdrop-filter: blur(18px);
}
.almc-commerce-nav { min-height: 76px; }
.almc-commerce-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--almc-commerce-ink);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -.025em;
  text-decoration: none;
}
.almc-commerce-brand strong { font-weight: 800; }
.almc-commerce-brand__mark {
  display: grid;
  width: 31px;
  height: 31px;
  padding: 6px;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 2px;
  border-radius: 9px;
  background: var(--almc-commerce-ink);
}
.almc-commerce-brand__mark span { display: block; border-radius: 2px; background: var(--almc-commerce-white); }
.almc-commerce-brand__mark span:nth-child(1) { height: 42%; }
.almc-commerce-brand__mark span:nth-child(2) { height: 72%; background: var(--almc-commerce-mint); }
.almc-commerce-brand__mark span:nth-child(3) { height: 100%; background: var(--almc-commerce-orange); }
.almc-commerce-nav__links,
.almc-commerce-nav-links { display: flex; align-items: center; gap: 6px; margin: 0; padding: 0; list-style: none; }
.almc-commerce-nav__link,
.almc-commerce-nav-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #454e5d;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease;
}
.almc-commerce-nav__link:hover,
.almc-commerce-nav__link.almc-commerce-is-current { background: #fff; color: var(--almc-commerce-ink); }
.almc-commerce-nav__link.almc-commerce-is-current::before { width: 6px; height: 6px; margin-right: 7px; border-radius: 50%; background: var(--almc-commerce-blue); content: ''; }
.almc-commerce-nav__cta,
.almc-commerce-nav-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--almc-commerce-ink);
  color: #fff;
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease;
}
.almc-commerce-nav__cta:hover { background: var(--almc-commerce-blue); transform: translateY(-2px); }
.almc-commerce-nav__cta svg,
.almc-commerce-nav-cta svg { width: 18px; height: 18px; }
.almc-commerce-mobile-nav { display: none; }

/* Buttons */
.almc-commerce-hero-actions,
.almc-commerce-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.almc-commerce-btn {
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease;
}
.almc-commerce-btn svg { width: 19px; height: 19px; }
.almc-commerce-btn-primary { background: var(--almc-commerce-blue); color: #fff; box-shadow: 0 12px 30px rgba(23, 92, 255, .22); }
.almc-commerce-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(23, 92, 255, .3); }
.almc-commerce-btn-ghost { border-color: #cbd3df; background: transparent; color: var(--almc-commerce-ink); }
.almc-commerce-btn-ghost:hover { border-color: var(--almc-commerce-ink); background: var(--almc-commerce-ink); color: #fff; transform: translateY(-3px); }
.almc-commerce-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: var(--almc-commerce-blue);
  font-weight: 800;
  text-decoration: none;
}
.almc-commerce-text-link svg { width: 20px; height: 20px; transition: transform .2s ease; }
.almc-commerce-text-link:hover svg { transform: translateX(5px); }

/* Home hero */
.almc-commerce-hero {
  overflow: hidden;
  padding: 76px 0 0;
  background-image:
    linear-gradient(rgba(16, 19, 26, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 19, 26, .045) 1px, transparent 1px);
  background-size: 48px 48px;
}
.almc-commerce-hero__grid {
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 1fr) minmax(440px, .96fr);
  gap: 64px;
  align-items: center;
  padding-bottom: 86px;
}
.almc-commerce-hero__copy { position: relative; z-index: 2; }
.almc-commerce-hero__title {
  max-width: 810px;
  margin: 0;
  font-family: var(--almc-commerce-display);
  font-size: clamp(3.55rem, 6.25vw, 6.65rem);
  font-weight: 700;
  letter-spacing: -.068em;
  line-height: .9;
  text-wrap: balance;
}
.almc-commerce-hero__lead { max-width: 690px; color: #3e4755; }
.almc-commerce-proof-list {
  display: grid;
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  color: #404957;
  font-size: .9rem;
  font-weight: 700;
  list-style: none;
}
.almc-commerce-proof-list li { display: flex; align-items: center; gap: 9px; }
.almc-commerce-proof-list svg { width: 20px; height: 20px; padding: 3px; border-radius: 50%; background: #d9fff6; color: #087f70; }
.almc-commerce-hero__media { position: relative; min-width: 0; }
.almc-commerce-hero__image-wrap {
  overflow: hidden;
  aspect-ratio: .88;
  border: 8px solid #fff;
  border-radius: 170px 28px 28px 28px;
  background: #dfe7f4;
  box-shadow: var(--almc-commerce-shadow);
  transform: rotate(1.5deg);
}
.almc-commerce-hero__image-wrap picture,
.almc-commerce-hero__image-wrap img { width: 100%; height: 100%; }
.almc-commerce-hero__image-wrap img { object-fit: cover; object-position: 57% center; }
.almc-commerce-hero__status {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(16, 19, 26, .08);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 45px rgba(11, 18, 32, .16);
  backdrop-filter: blur(12px);
}
.almc-commerce-hero__status small { display: block; color: #697386; font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.almc-commerce-hero__status strong { display: block; font-size: .82rem; line-height: 1.3; }
.almc-commerce-hero__status--reservation { top: 15%; left: -42px; padding: 14px 18px; border-radius: 999px; }
.almc-commerce-status-dot { width: 10px; height: 10px; border: 3px solid #bff8eb; border-radius: 50%; background: #0aab89; box-shadow: 0 0 0 6px rgba(45, 212, 191, .16); }
.almc-commerce-hero__status--stock { right: -30px; bottom: 15%; padding: 15px 17px; border-radius: 18px; }
.almc-commerce-hero__status--stock > svg { width: 30px; height: 30px; padding: 6px; border-radius: 9px; background: #e5edff; color: var(--almc-commerce-blue); }
.almc-commerce-hero__status--stock > b { margin-left: 10px; color: #9f3215; font-family: ui-monospace, monospace; }
.almc-commerce-hero__marquee {
  overflow: hidden;
  width: 100%;
  min-height: 58px;
  border-top: 1px solid rgba(255,255,255,.1);
  background: var(--almc-commerce-ink);
  color: #fff;
}
.almc-commerce-hero__marquee-track {
  display: flex;
  width: max-content;
  min-height: 58px;
  align-items: center;
  font-family: var(--almc-commerce-display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: almcCommerceMarquee 24s linear infinite;
}
.almc-commerce-hero__marquee-group { display: flex; flex: none; min-width: 100vw; align-items: center; justify-content: space-around; gap: 24px; padding-right: 24px; }
.almc-commerce-hero__marquee span { white-space: nowrap; }
.almc-commerce-hero__marquee i { width: 7px; height: 7px; border-radius: 50%; background: var(--almc-commerce-orange); }

/* Connected flow — signature scroll scene */
.almc-commerce-flow { padding: 140px 0; background: #fff; }
.almc-commerce-flow__intro { max-width: 920px; }
.almc-commerce-flow__intro .almc-commerce-lead { max-width: 780px; }
.almc-commerce-flow__layout {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(560px, 1.28fr);
  gap: 70px;
  align-items: start;
}
.almc-commerce-flow__stages { margin: 0; padding: 0; list-style: none; }
.almc-commerce-flow__stages li {
  position: relative;
  display: grid;
  min-height: 42vh;
  padding-left: 18px;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-content: center;
  border-top: 1px solid var(--almc-commerce-line);
  color: #5c6575;
  transition: color .3s ease, background-color .3s ease;
}
.almc-commerce-flow__stages li::before { position: absolute; top: 22%; bottom: 22%; left: 0; width: 4px; border-radius: 999px; background: var(--almc-commerce-orange); content: ''; opacity: 0; transform: scaleY(.25); transition: opacity .3s ease, transform .3s ease; }
.almc-commerce-flow__stages li:last-child { border-bottom: 1px solid var(--almc-commerce-line); }
.almc-commerce-flow__stages li > span { padding-top: 7px; color: #5c6575; font: 700 .72rem/1 ui-monospace, monospace; letter-spacing: .1em; }
.almc-commerce-flow__stages h3 { margin: 0 0 12px; color: inherit; font-family: var(--almc-commerce-display); font-size: clamp(1.8rem, 3vw, 3rem); letter-spacing: -.045em; line-height: 1; }
.almc-commerce-flow__stages p { max-width: 460px; margin: 0; font-size: .96rem; }
.almc-commerce-flow__stages li.almc-commerce-is-active { color: var(--almc-commerce-ink); }
.almc-commerce-flow__stages li.almc-commerce-is-active > span { color: #9f3215; }
.almc-commerce-flow__stages li.almc-commerce-is-active::before { opacity: 1; transform: scaleY(1); }
.almc-commerce-flow__canvas {
  position: sticky;
  top: 116px;
  overflow: hidden;
  min-height: 630px;
  border-radius: 34px;
  background: var(--almc-commerce-navy);
  box-shadow: 0 34px 90px rgba(11, 18, 32, .2);
  isolation: isolate;
}
.almc-commerce-flow__glow {
  position: absolute;
  z-index: -1;
  top: -120px;
  right: -100px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: #134bd0;
  filter: blur(120px);
  opacity: .5;
  transition: transform .9s cubic-bezier(.2,.8,.2,1), opacity .6s ease;
}
.almc-commerce-flow__route { position: absolute; inset: 9% 5%; width: 90%; height: 82%; }
.almc-commerce-flow__route path { fill: none; vector-effect: non-scaling-stroke; }
.almc-commerce-flow__route-base { stroke: rgba(45, 212, 191, .24); stroke-width: 2; stroke-dasharray: 8 10; }
.almc-commerce-flow__route-progress {
  stroke: url(#almc-commerce-route-gradient);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: .82;
  filter: drop-shadow(0 0 6px rgba(45, 212, 191, .7));
  transition: stroke-dashoffset .85s cubic-bezier(.2,.8,.2,1);
}
.almc-commerce-flow__stage-status { position: absolute; z-index: 8; top: 20px; right: 20px; min-width: 150px; max-width: 230px; min-height: 44px; padding: 10px 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; background: rgba(11,18,32,.76); color: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.2); backdrop-filter: blur(12px); }
.almc-commerce-flow__stage-status span { display: none; align-items: center; gap: 10px; }
.almc-commerce-flow__stage-status small { color: var(--almc-commerce-orange); font: 800 .67rem/1 ui-monospace,monospace; letter-spacing: .08em; }
.almc-commerce-flow__stage-status strong { font-family: var(--almc-commerce-display); font-size: .9rem; line-height: 1.1; }
.almc-commerce-flow__canvas[data-almc-commerce-active-stage="1"] [data-almc-commerce-flow-status="1"],
.almc-commerce-flow__canvas[data-almc-commerce-active-stage="2"] [data-almc-commerce-flow-status="2"],
.almc-commerce-flow__canvas[data-almc-commerce-active-stage="3"] [data-almc-commerce-flow-status="3"],
.almc-commerce-flow__canvas[data-almc-commerce-active-stage="4"] [data-almc-commerce-flow-status="4"] { display: flex; }
.almc-commerce-device,
.almc-commerce-flow__event { transition: transform .55s cubic-bezier(.2,.8,.2,1), opacity .45s ease; }
.almc-commerce-device--phone {
  position: absolute;
  top: 48px;
  left: 44px;
  width: 202px;
  height: 365px;
  overflow: hidden;
  padding: 12px;
  border: 5px solid #29334a;
  border-radius: 32px;
  background: #fff;
  color: #111827;
  transform: rotate(-4deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, .3);
}
.almc-commerce-device__bar { display: flex; height: 28px; align-items: center; justify-content: space-between; font-size: .52rem; font-weight: 900; letter-spacing: .08em; }
.almc-commerce-device__bar i { width: 8px; height: 8px; border-radius: 50%; background: var(--almc-commerce-orange); }
.almc-commerce-device__bar b { color: #adb5c2; }
.almc-commerce-device__hero { height: 118px; border-radius: 15px; background: #dbe5f8; box-shadow: inset 0 -45px 0 #b6c9ed; }
.almc-commerce-device__product { display: flex; gap: 9px; align-items: center; padding: 13px 2px 8px; }
.almc-commerce-device__product > span { width: 33px; height: 33px; border-radius: 9px; background: var(--almc-commerce-orange); }
.almc-commerce-device__product small { display: block; color: #8b93a1; font: 600 .44rem/1.2 ui-monospace, monospace; }
.almc-commerce-device__product strong { display: block; max-width: 115px; overflow: hidden; font-size: .62rem; text-overflow: ellipsis; white-space: nowrap; }
.almc-commerce-device__sizes { display: flex; gap: 6px; margin: 6px 0 10px; }
.almc-commerce-device__sizes i { display: grid; width: 26px; height: 26px; place-items: center; border: 1px solid #d6dce5; border-radius: 7px; font: 700 .48rem/1 ui-monospace, monospace; }
.almc-commerce-device__sizes i:nth-child(2) { border-color: var(--almc-commerce-blue); background: var(--almc-commerce-blue); color: #fff; }
.almc-commerce-device__reserve { position: relative; display: grid; overflow: hidden; min-height: 37px; place-items: center; border-radius: 9px; background: var(--almc-commerce-ink); color: #fff; font-size: .58rem; font-weight: 800; }
.almc-commerce-device__reserve::after { position: absolute; inset: 0; background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,.34) 50%, transparent 75%); content: ''; transform: translateX(-125%); }
.almc-commerce-flow__event {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  background: rgba(20, 31, 53, .95);
  color: #fff;
  box-shadow: 0 18px 35px rgba(0,0,0,.25);
  opacity: .16;
  transform: translateY(18px) scale(.94);
}
.almc-commerce-flow__event > span { color: var(--almc-commerce-mint); font: 700 .62rem/1 ui-monospace, monospace; }
.almc-commerce-flow__event svg { width: 28px; height: 28px; padding: 6px; border-radius: 9px; background: rgba(45,212,191,.13); color: var(--almc-commerce-mint); }
.almc-commerce-flow__event small { display: block; color: #8996ad; font: 600 .5rem/1.3 ui-monospace, monospace; }
.almc-commerce-flow__event strong { display: block; max-width: 150px; font-size: .68rem; }
.almc-commerce-flow__event--reserve { top: 210px; left: 250px; }
.almc-commerce-flow__event--stock { top: 320px; left: 350px; }
.almc-commerce-flow__event--stock > b { margin-left: 10px; color: var(--almc-commerce-orange); font: 700 .62rem/1 ui-monospace, monospace; }
.almc-commerce-device--pos {
  position: absolute;
  right: 34px;
  bottom: 42px;
  width: 335px;
  height: 232px;
  overflow: hidden;
  border: 5px solid #263149;
  border-radius: 22px;
  background: #f4f7fb;
  box-shadow: 0 28px 58px rgba(0, 0, 0, .34);
  opacity: .18;
  transform: translateY(34px) rotate(2deg);
}
.almc-commerce-device__pos-top { display: flex; height: 39px; align-items: center; justify-content: space-between; padding: 0 12px; background: #fff; font-size: .48rem; font-weight: 800; }
.almc-commerce-device__pos-top i { display: inline-block; width: 7px; height: 7px; margin-right: 5px; border-radius: 50%; background: var(--almc-commerce-mint); }
.almc-commerce-device__pos-top b { color: #087f70; }
.almc-commerce-device__pos-body { display: grid; grid-template-columns: 1.1fr .9fr; gap: 10px; padding: 12px; }
.almc-commerce-device__tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.almc-commerce-device__tiles i { min-height: 70px; border-radius: 8px; background: #d9e2f2; }
.almc-commerce-device__tiles i:nth-child(2) { background: #ffe0d6; }
.almc-commerce-device__tiles i:nth-child(3) { background: #cdf8ed; }
.almc-commerce-device__receipt { padding: 9px; border-radius: 9px; background: #fff; font-size: .43rem; }
.almc-commerce-device__receipt small { color: #778191; font-family: ui-monospace, monospace; }
.almc-commerce-device__receipt div { display: flex; justify-content: space-between; margin-top: 13px; border-bottom: 1px dashed #d6dce5; padding-bottom: 6px; }
.almc-commerce-device__receipt strong { display: grid; min-height: 30px; margin-top: 14px; place-items: center; border-radius: 6px; background: var(--almc-commerce-blue); color: #fff; font-size: .48rem; }
.almc-commerce-flow__pulse { position: absolute; z-index: 4; width: 14px; height: 14px; border: 3px solid var(--almc-commerce-navy); border-radius: 50%; background: var(--almc-commerce-mint); box-shadow: 0 0 0 7px rgba(45,212,191,.15); opacity: .2; transform: scale(.78); }
.almc-commerce-flow__pulse--one { top: 20%; left: 22%; }
.almc-commerce-flow__pulse--two { top: 35%; left: 39%; }
.almc-commerce-flow__pulse--three { top: 52%; left: 57%; }
.almc-commerce-flow__pulse--four { right: 15%; bottom: 20%; }
.almc-commerce-flow__canvas[data-almc-commerce-active-stage="2"] .almc-commerce-flow__event--reserve,
.almc-commerce-flow__canvas[data-almc-commerce-active-stage="3"] .almc-commerce-flow__event--reserve,
.almc-commerce-flow__canvas[data-almc-commerce-active-stage="4"] .almc-commerce-flow__event--reserve,
.almc-commerce-flow__canvas[data-almc-commerce-active-stage="3"] .almc-commerce-flow__event--stock,
.almc-commerce-flow__canvas[data-almc-commerce-active-stage="4"] .almc-commerce-flow__event--stock,
.almc-commerce-flow__canvas[data-almc-commerce-active-stage="4"] .almc-commerce-device--pos { opacity: 1; transform: none; }
.almc-commerce-flow__canvas[data-almc-commerce-active-stage="1"] .almc-commerce-flow__route-progress { stroke-dashoffset: .82; }
.almc-commerce-flow__canvas[data-almc-commerce-active-stage="2"] .almc-commerce-flow__route-progress { stroke-dashoffset: .57; }
.almc-commerce-flow__canvas[data-almc-commerce-active-stage="3"] .almc-commerce-flow__route-progress { stroke-dashoffset: .29; }
.almc-commerce-flow__canvas[data-almc-commerce-active-stage="4"] .almc-commerce-flow__route-progress { stroke-dashoffset: 0; }
.almc-commerce-flow__canvas[data-almc-commerce-active-stage="1"] .almc-commerce-device--phone { transform: translateY(-4px) rotate(-3deg) scale(1.015); }
.almc-commerce-flow__canvas[data-almc-commerce-active-stage="2"] .almc-commerce-device__reserve::after { animation: almcCommerceReserveTap .72s cubic-bezier(.2,.8,.2,1); }
.almc-commerce-flow__canvas[data-almc-commerce-active-stage="3"] .almc-commerce-flow__event--stock > b { animation: almcCommerceStockTick .62s cubic-bezier(.2,.8,.2,1); }
.almc-commerce-flow__canvas[data-almc-commerce-active-stage="4"] .almc-commerce-device__receipt strong { animation: almcCommerceReceiptDone .68s cubic-bezier(.2,.8,.2,1); }
.almc-commerce-flow__canvas[data-almc-commerce-active-stage="2"] .almc-commerce-flow__glow { transform: translate(-90px, 80px) scale(.92); }
.almc-commerce-flow__canvas[data-almc-commerce-active-stage="3"] .almc-commerce-flow__glow { opacity: .62; transform: translate(-170px, 150px) scale(.88); }
.almc-commerce-flow__canvas[data-almc-commerce-active-stage="4"] .almc-commerce-flow__glow { opacity: .72; transform: translate(-230px, 230px) scale(1.05); }
.almc-commerce-flow__canvas[data-almc-commerce-active-stage="1"] .almc-commerce-flow__pulse--one,
.almc-commerce-flow__canvas[data-almc-commerce-active-stage="2"] .almc-commerce-flow__pulse--two,
.almc-commerce-flow__canvas[data-almc-commerce-active-stage="3"] .almc-commerce-flow__pulse--three,
.almc-commerce-flow__canvas[data-almc-commerce-active-stage="4"] .almc-commerce-flow__pulse--four { animation: almcCommerceNodePulse .82s cubic-bezier(.2,.8,.2,1); opacity: 1; transform: scale(1); }
.almc-commerce-flow__canvas[data-almc-commerce-active-stage="4"] .almc-commerce-device--phone { opacity: .45; transform: translateX(-8px) rotate(-4deg) scale(.96); }

/* Offline section */
.almc-commerce-offline { overflow: hidden; background: var(--almc-commerce-navy); color: #fff; }
.almc-commerce-offline::after { position: absolute; right: -10%; bottom: -45%; width: 540px; height: 540px; border: 1px solid rgba(45,212,191,.18); border-radius: 50%; content: ''; box-shadow: 0 0 0 80px rgba(45,212,191,.035), 0 0 0 160px rgba(45,212,191,.025); }
.almc-commerce-offline__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.almc-commerce-offline .almc-commerce-lead { color: #a9b5c9; }
.almc-commerce-offline__signal { position: relative; z-index: 2; }
.almc-commerce-offline__rings { position: relative; display: grid; width: 210px; height: 210px; margin: 0 auto 42px; place-items: center; }
.almc-commerce-offline__rings span { position: absolute; inset: 0; border: 1px solid rgba(45,212,191,.28); border-radius: 50%; }
.almc-commerce-offline__rings span:nth-child(2) { inset: 32px; }
.almc-commerce-offline__rings span:nth-child(3) { inset: 64px; }
.almc-commerce-offline__rings svg { width: 42px; height: 42px; color: var(--almc-commerce-mint); }
.almc-commerce-offline__signal ol { margin: 0; padding: 0; list-style: none; }
.almc-commerce-offline__signal li { display: grid; grid-template-columns: 38px 1fr; gap: 16px; padding: 17px 0; border-top: 1px solid rgba(255,255,255,.12); color: #d9e1ed; font-size: .9rem; }
.almc-commerce-offline__signal li span { color: var(--almc-commerce-mint); font: 700 .65rem/1.6 ui-monospace, monospace; }

/* Setup steps */
.almc-commerce-steps { background: #fff; }
.almc-commerce-steps__list { margin: 0; padding: 0; border-top: 1px solid var(--almc-commerce-line); list-style: none; }
.almc-commerce-steps__list li { display: grid; grid-template-columns: 82px 1fr 44px; gap: 24px; align-items: center; padding: 30px 0; border-bottom: 1px solid var(--almc-commerce-line); }
.almc-commerce-steps__number { color: #9f3215; font: 700 .78rem/1 ui-monospace, monospace; letter-spacing: .1em; }
.almc-commerce-steps h3 { margin: 0 0 6px; font-family: var(--almc-commerce-display); font-size: clamp(1.35rem,2.3vw,2rem); letter-spacing: -.035em; }
.almc-commerce-steps p { max-width: 740px; margin: 0; color: var(--almc-commerce-muted); }
.almc-commerce-steps li > svg { width: 30px; height: 30px; padding: 6px; border: 1px solid var(--almc-commerce-line); border-radius: 50%; transition: transform .25s ease, background-color .25s ease, color .25s ease; }
.almc-commerce-steps li:hover > svg { background: var(--almc-commerce-ink); color: #fff; transform: translateX(6px); }

/* Feature bento */
.almc-commerce-features { background: var(--almc-commerce-paper); }
.almc-commerce-bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.almc-commerce-feature {
  grid-column: span 3;
  min-height: 260px;
  padding: 25px;
  border: 1px solid var(--almc-commerce-line);
  border-radius: 22px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.almc-commerce-feature:hover { z-index: 2; border-color: #b8c4d6; box-shadow: 0 20px 45px rgba(11,18,32,.09); transform: translateY(-5px); }
.almc-commerce-feature--wide { grid-column: span 6; }
.almc-commerce-feature--tall { grid-row: span 2; min-height: 534px; }
.almc-commerce-feature:nth-child(1),
.almc-commerce-feature:nth-child(8) { background: var(--almc-commerce-blue); color: #fff; }
.almc-commerce-feature:nth-child(4),
.almc-commerce-feature:nth-child(12) { background: var(--almc-commerce-navy); color: #fff; }
.almc-commerce-feature:nth-child(6) { background: #d9fff6; }
.almc-commerce-feature__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 72px; }
.almc-commerce-feature--tall .almc-commerce-feature__top { margin-bottom: 230px; }
.almc-commerce-feature__top > span { color: currentColor; font: 700 .68rem/1 ui-monospace, monospace; opacity: .6; }
.almc-commerce-feature__top svg { width: 38px; height: 38px; padding: 9px; border-radius: 12px; background: rgba(23,92,255,.09); color: var(--almc-commerce-blue); }
.almc-commerce-feature:nth-child(1) svg,
.almc-commerce-feature:nth-child(4) svg,
.almc-commerce-feature:nth-child(8) svg,
.almc-commerce-feature:nth-child(12) svg { background: rgba(255,255,255,.12); color: #fff; }
.almc-commerce-feature h3 { margin: 0 0 10px; font-family: var(--almc-commerce-display); font-size: 1.35rem; letter-spacing: -.035em; line-height: 1.05; }
.almc-commerce-feature p { margin: 0; color: inherit; font-size: .88rem; opacity: .92; }

/* Cases / photography */
.almc-commerce-cases { background: #fff; }
.almc-commerce-cases__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 82px; align-items: center; }
.almc-commerce-cases__image { position: relative; }
.almc-commerce-cases__image picture { display: block; overflow: hidden; aspect-ratio: 4/5; border-radius: 30px 110px 30px 30px; }
.almc-commerce-cases__image img { width: 100%; height: 100%; object-fit: cover; }
.almc-commerce-cases__stamp { position: absolute; right: -24px; bottom: 38px; display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-radius: 12px; background: #9f3215; color: #fff; font: 800 .7rem/1 var(--almc-commerce-body); letter-spacing: .08em; text-transform: uppercase; transform: rotate(-3deg); box-shadow: 0 18px 35px rgba(159,50,21,.28); }
.almc-commerce-cases__stamp svg { width: 20px; height: 20px; }
.almc-commerce-case-list { margin-top: 40px; border-top: 1px solid var(--almc-commerce-line); }
.almc-commerce-case-list article { display: grid; grid-template-columns: 45px 1fr; padding: 24px 0; border-bottom: 1px solid var(--almc-commerce-line); }
.almc-commerce-case-list article > span { grid-row: span 2; color: #9f3215; font: 700 .68rem/1.5 ui-monospace, monospace; }
.almc-commerce-case-list h3 { margin: 0 0 7px; font-family: var(--almc-commerce-display); font-size: 1.35rem; letter-spacing: -.035em; }
.almc-commerce-case-list p { margin: 0; color: var(--almc-commerce-muted); font-size: .92rem; }

/* Fiscal chain */
.almc-commerce-fiscal { background: #edf2fb; }
.almc-commerce-fiscal-chain { display: grid; margin: 74px 0 0; padding: 0; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #bdc8d9; border-bottom: 1px solid #bdc8d9; list-style: none; }
.almc-commerce-fiscal-chain li { position: relative; min-height: 270px; padding: 25px 28px; border-right: 1px solid #bdc8d9; }
.almc-commerce-fiscal-chain li:last-child { border-right: 0; }
.almc-commerce-fiscal-chain li::after { position: absolute; z-index: 2; top: 44%; right: -11px; width: 22px; height: 22px; border: 1px solid #bdc8d9; border-radius: 50%; background: #edf2fb; content: '→'; font: 700 12px/20px ui-monospace, monospace; text-align: center; }
.almc-commerce-fiscal-chain li:last-child::after { display: none; }
.almc-commerce-fiscal-chain span { color: #788396; font: 700 .68rem/1 ui-monospace, monospace; }
.almc-commerce-fiscal-chain svg { width: 48px; height: 48px; margin: 56px 0 24px; color: var(--almc-commerce-blue); }
.almc-commerce-fiscal-chain p { margin: 0; color: #364052; font-size: .88rem; }

/* Hardware */
.almc-commerce-hardware { background: #fff; }
.almc-commerce-hardware__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 86px; align-items: center; }
.almc-commerce-hardware__options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.almc-commerce-hardware__options article { min-height: 440px; padding: 28px; border: 1px solid var(--almc-commerce-line); border-radius: 24px; background: var(--almc-commerce-paper); }
.almc-commerce-hardware__options article:nth-child(2) { margin-top: 58px; background: var(--almc-commerce-ink); color: #fff; }
.almc-commerce-hardware__options article > span { color: #8993a3; font: 700 .68rem/1 ui-monospace, monospace; }
.almc-commerce-hardware__options article > svg { width: 70px; height: 70px; margin: 105px 0 36px; padding: 16px; border-radius: 20px; background: #dfe8f8; color: var(--almc-commerce-blue); }
.almc-commerce-hardware__options article:nth-child(2) > svg { background: rgba(45,212,191,.14); color: var(--almc-commerce-mint); }
.almc-commerce-hardware h3 { margin: 0 0 12px; font-family: var(--almc-commerce-display); font-size: 1.55rem; letter-spacing: -.04em; line-height: 1.05; }
.almc-commerce-hardware__options p { margin: 0; color: inherit; font-size: .9rem; opacity: .72; }

/* FAQ */
.almc-commerce-faq { background: var(--almc-commerce-paper); }
.almc-commerce-faq__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.almc-commerce-faq__intro,
.almc-commerce-faq__heading { position: sticky; top: 120px; }
.almc-commerce-faq__list,
.almc-commerce-faq-list { border-top: 1px solid var(--almc-commerce-line); }
.almc-commerce-faq__list details,
.almc-commerce-faq-list__item { border-bottom: 1px solid var(--almc-commerce-line); }
.almc-commerce-faq__list summary,
.almc-commerce-faq-list__item summary { display: grid; min-height: 88px; grid-template-columns: 42px 1fr 28px; gap: 14px; align-items: center; cursor: pointer; font-family: var(--almc-commerce-display); font-size: 1.12rem; font-weight: 700; letter-spacing: -.025em; list-style: none; }
.almc-commerce-faq__list summary::-webkit-details-marker,
.almc-commerce-faq-list__item summary::-webkit-details-marker { display: none; }
.almc-commerce-faq__list summary > span:first-child,
.almc-commerce-faq-list__number { color: var(--almc-commerce-blue); font: 700 .66rem/1 ui-monospace, monospace; letter-spacing: .08em; }
.almc-commerce-faq__list summary b { position: relative; width: 24px; height: 24px; border: 1px solid #cbd3df; border-radius: 50%; }
.almc-commerce-faq__list summary b::before,
.almc-commerce-faq__list summary b::after { position: absolute; top: 11px; left: 6px; width: 10px; height: 1px; background: currentColor; content: ''; }
.almc-commerce-faq__list summary b::after { transform: rotate(90deg); transition: transform .2s ease; }
.almc-commerce-faq__list details[open] summary b::after { transform: rotate(0); }
.almc-commerce-faq__list details > p,
.almc-commerce-faq-list__answer p { max-width: 700px; margin: -4px 42px 28px 56px; color: var(--almc-commerce-muted); }
.almc-commerce-faq-list__item summary svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform .2s ease; }
.almc-commerce-faq-list__item[open] summary svg { transform: rotate(180deg); }

/* Demo form */
.almc-commerce-demo,
.almc-commerce-demo-section { overflow: hidden; background: #9f3215; color: #fff; }
.almc-commerce-demo__grid,
.almc-commerce-demo-section__inner { display: grid; grid-template-columns: .76fr 1.24fr; gap: 78px; align-items: start; }
.almc-commerce-demo__intro,
.almc-commerce-demo-section__heading { position: sticky; top: 120px; }
.almc-commerce-demo .almc-commerce-lead,
.almc-commerce-demo-section .almc-commerce-lead { color: rgba(255,255,255,.78); }
.almc-commerce-demo__ticket { width: 260px; margin-top: 64px; padding: 24px; border-radius: 12px 12px 24px 24px; background: #fff; color: var(--almc-commerce-ink); box-shadow: 0 25px 60px rgba(110,28,5,.24); transform: rotate(-4deg); }
.almc-commerce-demo__ticket svg { width: 38px; height: 38px; margin-bottom: 24px; color: var(--almc-commerce-blue); }
.almc-commerce-demo__ticket span { display: block; color: #8a94a3; font: 700 .6rem/1.3 ui-monospace, monospace; }
.almc-commerce-demo__ticket strong { display: block; margin-top: 8px; font-family: var(--almc-commerce-display); font-size: 1.25rem; line-height: 1.05; }
.almc-commerce-form {
  padding: 38px;
  border-radius: 28px;
  background: #fff;
  color: var(--almc-commerce-ink);
  box-shadow: 0 32px 80px rgba(108, 29, 9, .22);
}
.almc-commerce-form-required-hint { margin: 0 0 24px; color: #5d6674; font-size: .78rem; }
.almc-commerce-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 21px; }
.almc-commerce-field { min-width: 0; }
.almc-commerce-field-full { grid-column: 1 / -1; }
.almc-commerce-field label { display: block; margin-bottom: 8px; color: #303846; font-size: .78rem; font-weight: 800; }
.almc-commerce-optional { color: #5d6674; font-weight: 500; }
.almc-commerce-input {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #ccd4e0;
  border-radius: 11px;
  outline: 0;
  background: #f9fbfe;
  color: var(--almc-commerce-ink);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.almc-commerce-textarea { min-height: 118px; resize: vertical; }
.almc-commerce-input:focus { border-color: var(--almc-commerce-blue); background: #fff; box-shadow: 0 0 0 4px rgba(23,92,255,.12); }
.almc-commerce-input-invalid { border-color: #c92f27; }
.almc-commerce-field-error { display: flex; align-items: center; gap: 7px; margin-top: 7px; color: #b72520; font-size: .76rem; font-weight: 700; }
.almc-commerce-field-error__icon { width: 16px; height: 16px; }
.almc-commerce-consent { margin-top: 4px; padding-top: 22px; border-top: 1px solid #e0e5ed; }
.almc-commerce-form-privacy { margin: 0 0 14px; color: #4d5664; font-size: .8rem; }
.almc-commerce-consent-check { display: grid; grid-template-columns: 24px 1fr; gap: 10px; align-items: start; }
.almc-commerce-consent-check label { margin: 1px 0 0; line-height: 1.55; }
.almc-commerce-consent-check a,
.almc-commerce-form-legal a { color: var(--almc-commerce-blue); font-weight: 700; }
.almc-commerce-checkbox { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--almc-commerce-blue); }
.almc-commerce-form-legal { margin-top: 18px; padding: 18px; border-radius: 12px; background: #f0f4f9; color: #626c7c; font-size: .7rem; line-height: 1.55; }
.almc-commerce-form-legal p { margin: 0 0 8px; }
.almc-commerce-form-legal p:last-child { margin: 0; }
.almc-commerce-form-legal-title { color: var(--almc-commerce-ink); font-weight: 800; }
.almc-commerce-form-submit { margin-top: 24px; border: 0; }
.almc-commerce-hp { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* Shared page heroes and TOCs */
.almc-commerce-page-hero { overflow: hidden; padding: 100px 0 72px; border-bottom: 1px solid var(--almc-commerce-line); background: #fff; }
.almc-commerce-page-hero__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .48fr); gap: 80px; align-items: end; }
.almc-commerce-page-hero__title { max-width: 920px; }
.almc-commerce-page-intro { max-width: 760px; }
.almc-commerce-page-hero--functions { background: var(--almc-commerce-paper); }
.almc-commerce-page-hero--pricing { background: #dce8ff; }
.almc-commerce-page-hero--editorial { background: #fff8f3; }
.almc-commerce-toc { padding: 24px; border: 1px solid var(--almc-commerce-line); border-radius: 20px; background: rgba(255,255,255,.82); }
.almc-commerce-toc__label { margin-bottom: 16px; }
.almc-commerce-toc__links { display: grid; gap: 4px; }
.almc-commerce-toc__link { display: grid; min-height: 43px; grid-template-columns: 34px 1fr; gap: 10px; align-items: center; padding: 4px 10px; border-radius: 9px; color: #4b5565; font-size: .8rem; font-weight: 700; text-decoration: none; transition: background-color .2s ease, color .2s ease; }
.almc-commerce-toc__link:hover { background: #eef3fb; color: var(--almc-commerce-blue); }
.almc-commerce-toc__number { color: #99a3b2; font: 700 .61rem/1 ui-monospace, monospace; }
.almc-commerce-toc--editorial { margin-top: 62px; padding: 18px 24px; }
.almc-commerce-toc--editorial .almc-commerce-toc__links { display: grid; grid-template-columns: repeat(6, 1fr); }
.almc-commerce-toc--editorial .almc-commerce-toc__label { margin-bottom: 12px; }
.almc-commerce-page-hero__scale { position: relative; min-height: 230px; }
.almc-commerce-page-hero__scale svg { position: absolute; inset: auto 0 18px; width: 100%; fill: none; stroke: var(--almc-commerce-blue); stroke-width: 3; }
.almc-commerce-page-hero__scale circle { fill: var(--almc-commerce-orange); stroke: #fff; stroke-width: 4; }
.almc-commerce-page-hero__scale > span { position: absolute; width: 110px; height: 72px; border: 1px solid rgba(23,92,255,.25); border-radius: 12px; background: rgba(255,255,255,.55); }
.almc-commerce-page-hero__scale > span:nth-child(1) { bottom: 0; left: 0; }
.almc-commerce-page-hero__scale > span:nth-child(2) { right: 28%; bottom: 42px; }
.almc-commerce-page-hero__scale > span:nth-child(3) { top: 0; right: 0; }

/* Functions chapters */
.almc-commerce-chapter { --almc-commerce-chapter-accent: var(--almc-commerce-blue); border-bottom: 1px solid var(--almc-commerce-line); background: #fff; }
.almc-commerce-chapter:nth-child(even) { background: var(--almc-commerce-paper); }
.almc-commerce-chapter--mint { --almc-commerce-chapter-accent: #006b5c; }
.almc-commerce-chapter--coral { --almc-commerce-chapter-accent: #9f3215; }
.almc-commerce-chapter--navy { --almc-commerce-chapter-accent: var(--almc-commerce-navy); }
.almc-commerce-chapter__grid { display: grid; grid-template-columns: 58px minmax(0, .96fr) minmax(390px, .8fr); gap: 54px; align-items: center; }
.almc-commerce-chapter__rail { align-self: stretch; border-right: 1px solid var(--almc-commerce-line); color: var(--almc-commerce-chapter-accent); font: 700 .7rem/1 ui-monospace, monospace; }
.almc-commerce-chapter__rail span { position: sticky; top: 120px; }
.almc-commerce-chapter__kicker { color: var(--almc-commerce-chapter-accent); }
.almc-commerce-chapter__title { font-size: clamp(2.2rem, 4vw, 4.5rem); }
.almc-commerce-chapter__lead { color: #333c4b; }
.almc-commerce-feature-list { margin: 34px 0 0; padding: 0; list-style: none; }
.almc-commerce-feature-list li { display: grid; grid-template-columns: 25px 1fr; gap: 12px; padding: 11px 0; border-top: 1px solid var(--almc-commerce-line); color: #505a6a; font-size: .84rem; }
.almc-commerce-feature-list__check { width: 20px; height: 20px; fill: none; stroke: var(--almc-commerce-chapter-accent); stroke-width: 1.6; }
.almc-commerce-chapter__visual { position: relative; display: grid; min-height: 500px; place-items: center; overflow: hidden; border-radius: 30px; background: var(--almc-commerce-navy); }
.almc-commerce-chapter--mint .almc-commerce-chapter__visual { background: #d8fff4; }
.almc-commerce-chapter--coral .almc-commerce-chapter__visual { background: #ffe1d7; }
.almc-commerce-chapter--navy .almc-commerce-chapter__visual { background: #dce7ff; }

.almc-commerce-pos-screen { width: 82%; overflow: hidden; border: 5px solid #27324b; border-radius: 18px; background: #f5f7fb; box-shadow: 0 30px 60px rgba(0,0,0,.3); transform: rotate(-2deg); }
.almc-commerce-pos-screen__bar { display: flex; gap: 5px; padding: 10px; background: #fff; }
.almc-commerce-pos-screen__bar span { width: 7px; height: 7px; border-radius: 50%; background: #ccd4e1; }
.almc-commerce-pos-screen__body { display: grid; grid-template-columns: 1.15fr .85fr; gap: 10px; padding: 12px; }
.almc-commerce-pos-screen__products { display: grid; grid-template-columns: repeat(2,1fr); gap: 7px; }
.almc-commerce-pos-screen__products span { min-height: 62px; border-radius: 8px; background: #dce6f6; }
.almc-commerce-pos-screen__products span:nth-child(2n) { background: #ffe0d6; }
.almc-commerce-pos-screen__ticket { display: grid; gap: 9px; padding: 10px; border-radius: 8px; background: #fff; }
.almc-commerce-pos-screen__ticket > span { height: 5px; border-radius: 9px; background: #dce2eb; }
.almc-commerce-pos-screen__ticket > strong { height: 28px; border-radius: 6px; background: var(--almc-commerce-blue); }
.almc-commerce-pos-screen__ticket svg { width: 32px; fill: var(--almc-commerce-ink); }

.almc-commerce-catalog-grid { display: grid; width: 78%; grid-template-columns: repeat(2,1fr); gap: 10px; transform: rotate(2deg); }
.almc-commerce-catalog-grid__product { padding: 10px; border-radius: 13px; background: #fff; box-shadow: 0 15px 30px rgba(11,18,32,.1); }
.almc-commerce-catalog-grid__photo { display: block; height: 105px; border-radius: 8px; background: #dbe5f8; }
.almc-commerce-catalog-grid__product:nth-child(2) .almc-commerce-catalog-grid__photo { background: #ffd8cb; }
.almc-commerce-catalog-grid__product:nth-child(3) .almc-commerce-catalog-grid__photo { background: #c8f5ea; }
.almc-commerce-catalog-grid__line { display: block; width: 72%; height: 6px; margin: 11px 0; border-radius: 5px; background: #cfd7e4; }
.almc-commerce-catalog-grid__variants { display: flex; gap: 5px; }
.almc-commerce-catalog-grid__variants i { width: 12px; height: 12px; border-radius: 50%; background: var(--almc-commerce-blue); }
.almc-commerce-catalog-grid__variants i:nth-child(2) { background: var(--almc-commerce-orange); }
.almc-commerce-catalog-grid__variants i:nth-child(3) { background: var(--almc-commerce-mint); }
.almc-commerce-catalog-grid__stock { float: right; width: 36px; height: 6px; margin-top: -9px; border-radius: 5px; background: #9aa4b3; }

.almc-commerce-team-orbit { position: relative; display: grid; width: 350px; height: 350px; place-items: center; border: 1px dashed rgba(255,100,51,.35); border-radius: 50%; }
.almc-commerce-team-orbit__terminal { display: grid; width: 150px; height: 150px; place-items: center; border-radius: 34px; background: #fff; box-shadow: 0 24px 55px rgba(120,37,10,.15); }
.almc-commerce-team-orbit__terminal svg { width: 64px; fill: none; stroke: var(--almc-commerce-orange); stroke-width: 2; }
.almc-commerce-team-orbit__terminal span { display: flex; gap: 7px; }
.almc-commerce-team-orbit__terminal i { width: 8px; height: 8px; border-radius: 50%; background: var(--almc-commerce-orange); }
.almc-commerce-team-orbit__person { position: absolute; display: grid; width: 68px; height: 68px; place-items: center; border: 5px solid #ffe1d7; border-radius: 50%; background: #fff; }
.almc-commerce-team-orbit__person svg { width: 34px; fill: none; stroke: var(--almc-commerce-orange); stroke-width: 1.7; }
.almc-commerce-team-orbit__person--1 { top: -15px; left: 140px; }
.almc-commerce-team-orbit__person--2 { top: 140px; right: -15px; }
.almc-commerce-team-orbit__person--3 { bottom: -15px; left: 140px; }
.almc-commerce-team-orbit__person--4 { top: 140px; left: -15px; }

.almc-commerce-report-chart { width: 80%; padding: 26px; border-radius: 18px; background: #fff; box-shadow: 0 30px 60px rgba(11,18,32,.14); }
.almc-commerce-report-chart__header { display: flex; justify-content: space-between; }
.almc-commerce-report-chart__header span,
.almc-commerce-report-chart__header strong { width: 40%; height: 8px; border-radius: 8px; background: #d6ddea; }
.almc-commerce-report-chart__header strong { width: 22%; background: #c5d7ff; }
.almc-commerce-report-chart__bars { display: flex; height: 180px; align-items: end; gap: 10px; margin: 35px 0 18px; border-bottom: 1px solid #d7deea; }
.almc-commerce-report-chart__bars i { flex: 1; height: 42%; border-radius: 7px 7px 0 0; background: var(--almc-commerce-blue); }
.almc-commerce-report-chart__bars i:nth-child(2) { height: 58%; }
.almc-commerce-report-chart__bars i:nth-child(3) { height: 48%; }
.almc-commerce-report-chart__bars i:nth-child(4) { height: 76%; background: var(--almc-commerce-orange); }
.almc-commerce-report-chart__bars i:nth-child(5) { height: 68%; }
.almc-commerce-report-chart__bars i:nth-child(6) { height: 88%; }
.almc-commerce-report-chart__bars i:nth-child(7) { height: 95%; background: var(--almc-commerce-mint); }
.almc-commerce-report-chart__metrics { display: flex; gap: 9px; }
.almc-commerce-report-chart__metrics span { width: 30%; height: 7px; border-radius: 7px; background: #d6ddea; }

.almc-commerce-shop-phone { position: relative; width: 240px; height: 420px; overflow: hidden; padding: 15px; border: 6px solid #25324a; border-radius: 38px; background: #fff; transform: rotate(4deg); box-shadow: 0 32px 65px rgba(0,0,0,.28); }
.almc-commerce-shop-phone__speaker { width: 65px; height: 5px; margin: 0 auto 13px; border-radius: 4px; background: #ccd4df; }
.almc-commerce-shop-phone__hero { height: 135px; border-radius: 16px; background: #d9e4f8; }
.almc-commerce-shop-phone__products { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 11px; }
.almc-commerce-shop-phone__products span { height: 150px; border-radius: 13px; background: #ffe1d6; }
.almc-commerce-shop-phone__products span:nth-child(2) { background: #d3f9f0; }
.almc-commerce-shop-phone__confirmation { position: absolute; right: 15px; bottom: 16px; display: grid; width: 68px; height: 68px; place-items: center; border-radius: 50%; background: var(--almc-commerce-blue); box-shadow: 0 14px 28px rgba(23,92,255,.3); }
.almc-commerce-shop-phone__confirmation svg { width: 35px; fill: none; stroke: #fff; stroke-width: 1.7; }

.almc-commerce-store-network { position: relative; width: 420px; height: 310px; }
.almc-commerce-store-network__lines { position: absolute; inset: 15px 0; width: 100%; fill: none; stroke: rgba(7,139,120,.35); stroke-width: 2; stroke-dasharray: 7 8; }
.almc-commerce-store-network__hub,
.almc-commerce-store-network__node { position: absolute; display: grid; place-items: center; border-radius: 20px; background: #fff; box-shadow: 0 18px 40px rgba(11,18,32,.12); }
.almc-commerce-store-network__hub { top: 100px; left: 165px; width: 90px; height: 90px; }
.almc-commerce-store-network__hub svg { width: 45px; fill: none; stroke: #078b78; stroke-width: 1.7; }
.almc-commerce-store-network__node { width: 62px; height: 62px; border-radius: 16px; }
.almc-commerce-store-network__node svg { width: 30px; fill: none; stroke: #078b78; stroke-width: 1.7; }
.almc-commerce-store-network__node--1 { top: 0; left: 30px; }
.almc-commerce-store-network__node--2 { top: 0; right: 30px; }
.almc-commerce-store-network__node--3 { bottom: 0; left: 30px; }
.almc-commerce-store-network__node--4 { right: 30px; bottom: 0; }

/* Pricing */
.almc-commerce-plan-stage { background: var(--almc-commerce-paper); }
.almc-commerce-section-heading { margin-bottom: 62px; }
.almc-commerce-plan-stage__receipts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 17px; align-items: start; }
.almc-commerce-plan-receipt { position: relative; display: flex; overflow: hidden; min-height: 540px; flex-direction: column; padding: 36px 24px 30px; border: 1px solid #cdd5e1; border-radius: 18px 18px 30px 30px; background: #fff; box-shadow: 0 20px 55px rgba(11,18,32,.07); }
.almc-commerce-plan-receipt--free { border-color: rgba(7,139,120,.42); background: linear-gradient(155deg,#effff9 0%,#fff 52%); box-shadow: 0 24px 60px rgba(7,139,120,.12); }
.almc-commerce-plan-receipt--free .almc-commerce-plan-receipt__name { color: #067563; }
.almc-commerce-plan-receipt--free .almc-commerce-plan-receipt__cta { background: #067563; }
.almc-commerce-plan-receipt--2 { margin-top: -24px; border: 2px solid var(--almc-commerce-blue); box-shadow: 0 28px 65px rgba(23,92,255,.15); }
.almc-commerce-plan-receipt--3 { margin-top: 24px; background: var(--almc-commerce-navy); color: #fff; }
.almc-commerce-plan-receipt__perforation { position: absolute; top: -7px; left: 0; width: 100%; height: 14px; background: radial-gradient(circle at 7px 7px, transparent 6px, currentColor 6.5px) 0 0/14px 14px; color: var(--almc-commerce-paper); }
.almc-commerce-plan-receipt__header { display: flex; align-items: start; justify-content: space-between; }
.almc-commerce-plan-receipt__index { color: #8d97a6; font: 700 .67rem/1 ui-monospace, monospace; }
.almc-commerce-plan-receipt__name { margin: 0; font-family: var(--almc-commerce-display); font-size: clamp(1.55rem,2.15vw,2.1rem); letter-spacing: -.045em; }
.almc-commerce-plan-receipt__rule { margin: 28px 0; border-top: 1px dashed #bfc8d5; }
.almc-commerce-plan-limits { margin: 0; padding: 0; list-style: none; }
.almc-commerce-plan-limits li { display: grid; grid-template-columns: 42px 1fr; gap: 13px; align-items: center; padding: 16px 0; border-bottom: 1px solid rgba(128,141,160,.25); font-weight: 700; }
.almc-commerce-plan-limits svg { width: 38px; height: 38px; padding: 7px; border: 1px solid rgba(128,141,160,.35); border-radius: 10px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.almc-commerce-plan-receipt__footer { margin-top: auto; padding-top: 28px; }
.almc-commerce-plan-receipt__barcode { display: block; width: 70%; height: 26px; margin: 0 auto 24px; opacity: .25; background: repeating-linear-gradient(90deg, currentColor 0 2px, transparent 2px 5px, currentColor 5px 6px, transparent 6px 10px); }
.almc-commerce-plan-receipt__cta { width: 100%; }
.almc-commerce-manifest { display: grid; margin-top: 72px; padding: 38px; grid-template-columns: .65fr 1.35fr; gap: 50px; border-radius: 26px; background: #fff; }
.almc-commerce-manifest__heading svg { width: 64px; margin-bottom: 24px; fill: none; stroke: var(--almc-commerce-blue); stroke-width: 1.7; }
.almc-commerce-manifest__heading h3 { margin: 0; font-family: var(--almc-commerce-display); font-size: 2rem; letter-spacing: -.04em; line-height: 1.05; }
.almc-commerce-manifest__list { display: grid; margin: 0; padding: 0; grid-template-columns: 1fr 1fr; column-gap: 34px; list-style: none; }
.almc-commerce-manifest__list li { display: grid; grid-template-columns: 35px 1fr; gap: 10px; padding: 15px 0; border-top: 1px solid var(--almc-commerce-line); font-size: .86rem; }
.almc-commerce-manifest__number { color: #9f3215; font: 700 .65rem/1.6 ui-monospace, monospace; }
.almc-commerce-manifest__more { grid-column: 2; margin: 0; color: var(--almc-commerce-muted); font-size: .85rem; }
.almc-commerce-manifest__more a { display: inline-flex; align-items: center; gap: 7px; margin-left: 8px; color: var(--almc-commerce-blue); font-weight: 800; }
.almc-commerce-manifest__more svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.almc-commerce-hardware-scene { position: relative; min-height: 520px; border-radius: 30px; background: #e3ebf8; }
.almc-commerce-hardware-scene svg { fill: none; stroke: currentColor; stroke-width: 1.7; }
.almc-commerce-hardware-scene__monitor { position: absolute; top: 85px; left: 60px; width: 280px; height: 210px; padding: 22px; border: 8px solid #1e293b; border-radius: 18px; background: #fff; box-shadow: 0 28px 55px rgba(11,18,32,.18); }
.almc-commerce-hardware-scene__monitor::after { position: absolute; top: 202px; left: 111px; width: 48px; height: 80px; border-bottom: 10px solid #1e293b; background: #1e293b; content: ''; }
.almc-commerce-hardware-scene__monitor span { display: block; height: 75px; border-radius: 10px; background: #d6e3fb; }
.almc-commerce-hardware-scene__monitor i { display: inline-block; width: 28%; height: 48px; margin: 14px 2% 0 0; border-radius: 8px; background: #ffe0d6; }
.almc-commerce-hardware-scene__printer { position: absolute; right: 40px; bottom: 58px; width: 150px; height: 120px; border-radius: 18px; background: var(--almc-commerce-navy); color: #fff; box-shadow: 0 22px 42px rgba(11,18,32,.25); }
.almc-commerce-hardware-scene__printer span { position: absolute; top: -68px; left: 28px; width: 94px; height: 80px; background: #fff; }
.almc-commerce-hardware-scene__printer svg { width: 75px; margin: 25px auto; }
.almc-commerce-hardware-scene__scanner { position: absolute; right: 78px; top: 75px; color: var(--almc-commerce-orange); }
.almc-commerce-hardware-scene__scanner svg { width: 70px; }
.almc-commerce-hardware-scene__power { position: absolute; bottom: 35px; left: 55px; color: var(--almc-commerce-blue); }
.almc-commerce-hardware-scene__power svg { width: 75px; }

/* Editorial / VeriFactu */
.almc-commerce-chain-diagram { display: flex; align-items: center; justify-content: center; }
.almc-commerce-chain-diagram__record { display: grid; width: 70px; height: 92px; place-items: center; border: 1px solid #d8cabb; border-radius: 8px; background: #fff; box-shadow: 0 12px 25px rgba(76,45,22,.08); }
.almc-commerce-chain-diagram__record i { display: block; width: 35px; height: 4px; border-radius: 5px; background: #d9cfc5; }
.almc-commerce-chain-diagram__record strong { color: #9f3215; font: 700 .65rem/1 ui-monospace, monospace; }
.almc-commerce-chain-diagram > svg { width: 35px; fill: none; stroke: #aa9079; stroke-width: 1.5; }
.almc-commerce-article { background: #fff; }
.almc-commerce-article__section { border-bottom: 1px solid var(--almc-commerce-line); }
.almc-commerce-article__grid { display: grid; grid-template-columns: 70px minmax(0, .9fr) minmax(320px, .62fr); gap: 55px; align-items: center; }
.almc-commerce-article__rail { align-self: stretch; border-right: 1px solid var(--almc-commerce-line); }
.almc-commerce-article__rail span { display: block; margin-bottom: 18px; color: #9f3215; font: 700 .68rem/1 ui-monospace, monospace; }
.almc-commerce-article__rail i { display: block; width: 1px; height: calc(100% - 40px); background: var(--almc-commerce-line); }
.almc-commerce-article__copy { max-width: 690px; }
.almc-commerce-article__copy .almc-commerce-h2 { font-size: clamp(2.25rem, 4vw, 4.3rem); }
.almc-commerce-article__body { max-width: 68ch; margin: 26px 0 0; color: #566071; }
.almc-commerce-article__visual { display: grid; min-height: 410px; place-items: center; border-radius: 26px; background: #f2f5fa; }
.almc-commerce-record-stack { position: relative; width: 250px; height: 250px; }
.almc-commerce-record-stack__item { position: absolute; display: grid; width: 210px; height: 130px; padding: 20px; grid-template-columns: 1fr 28px; gap: 8px; border: 1px solid #ccd4df; border-radius: 14px; background: #fff; box-shadow: 0 15px 35px rgba(11,18,32,.08); }
.almc-commerce-record-stack__item--1 { top: 0; left: 0; }
.almc-commerce-record-stack__item--2 { top: 55px; left: 22px; }
.almc-commerce-record-stack__item--3 { top: 110px; left: 44px; }
.almc-commerce-record-stack__item span { color: var(--almc-commerce-blue); font: 700 .65rem/1 ui-monospace, monospace; }
.almc-commerce-record-stack__item i { grid-column: 1; height: 5px; border-radius: 5px; background: #dce2ea; }
.almc-commerce-record-stack__item svg { grid-row: 1 / span 3; grid-column: 2; width: 25px; fill: none; stroke: #078b78; stroke-width: 2; }
.almc-commerce-rule-document { position: relative; }
.almc-commerce-rule-document__sheet { width: 190px; fill: #fff; stroke: #273349; stroke-width: 1.5; filter: drop-shadow(0 22px 25px rgba(11,18,32,.12)); }
.almc-commerce-rule-document__shield { position: absolute; right: -40px; bottom: -25px; width: 78px; fill: #d8fff5; stroke: #078b78; stroke-width: 2; }
.almc-commerce-hash-chain { display: flex; align-items: center; }
.almc-commerce-hash-chain__node { display: grid; width: 82px; height: 100px; place-items: center; border-radius: 14px; background: var(--almc-commerce-navy); color: #fff; box-shadow: 0 18px 32px rgba(11,18,32,.18); }
.almc-commerce-hash-chain__node strong { color: var(--almc-commerce-mint); font: 800 .9rem/1 ui-monospace, monospace; }
.almc-commerce-hash-chain__node i { width: 40px; height: 4px; border-radius: 5px; background: #4c5970; }
.almc-commerce-hash-chain > svg { width: 35px; fill: none; stroke: var(--almc-commerce-orange); stroke-width: 2; }
.almc-commerce-qr-ticket { width: 230px; padding: 27px; border-radius: 14px 14px 26px 26px; background: #fff; box-shadow: 0 24px 50px rgba(11,18,32,.12); }
.almc-commerce-qr-ticket__line { display: block; width: 100%; height: 6px; margin-bottom: 12px; border-radius: 6px; background: #dce2eb; }
.almc-commerce-qr-ticket__line--short { width: 60%; margin: 18px auto 0; }
.almc-commerce-qr-ticket svg { width: 100px; margin: 28px auto; fill: var(--almc-commerce-ink); }
.almc-commerce-choose-checklist { width: 78%; padding: 24px; border-radius: 18px; background: #fff; box-shadow: 0 22px 45px rgba(11,18,32,.1); }
.almc-commerce-choose-checklist span { display: flex; gap: 15px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--almc-commerce-line); }
.almc-commerce-choose-checklist span:last-child { border-bottom: 0; }
.almc-commerce-choose-checklist svg { width: 27px; fill: none; stroke: #078b78; stroke-width: 1.7; }
.almc-commerce-choose-checklist i { display: block; width: 70%; height: 7px; border-radius: 7px; background: #dce2eb; }
.almc-commerce-faq--editorial { background: #fff8f3; }

/* Next step, secondary demo and thanks */
.almc-commerce-next-step { padding: 55px 0; background: var(--almc-commerce-blue); color: #fff; }
.almc-commerce-next-step--quiet { background: var(--almc-commerce-paper); color: var(--almc-commerce-ink); }
.almc-commerce-next-step__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.almc-commerce-next-step .almc-commerce-lead { margin: 0; color: inherit; }
.almc-commerce-next-step:not(.almc-commerce-next-step--quiet) .almc-commerce-btn-ghost { border-color: rgba(255,255,255,.45); color: #fff; }
.almc-commerce-next-step__link svg,
.almc-commerce-plan-receipt__cta svg,
.almc-commerce-hardware__copy .almc-commerce-btn svg,
.almc-commerce-thanks__actions svg { fill: none; stroke: currentColor; stroke-width: 1.8; }
.almc-commerce-demo-section__inner > .almc-commerce-form { min-width: 0; }
.almc-commerce-thanks { min-height: calc(100vh - 76px); display: grid; place-items: center; background: #dce8ff; }
.almc-commerce-thanks__inner { display: grid; grid-template-columns: .65fr 1.35fr; gap: 90px; align-items: center; }
.almc-commerce-thanks__receipt { position: relative; width: min(100%, 360px); min-height: 470px; padding: 48px; border-radius: 18px 18px 35px 35px; background: #fff; box-shadow: 0 30px 75px rgba(23,92,255,.16); transform: rotate(-3deg); }
.almc-commerce-thanks__perforation { position: absolute; top: -8px; left: 0; width: 100%; height: 16px; background: radial-gradient(circle at 8px 8px, transparent 7px, #dce8ff 7.5px) 0 0/16px 16px; }
.almc-commerce-thanks__check { width: 95px; margin: 20px auto 65px; fill: none; stroke: #078b78; stroke-width: 2; }
.almc-commerce-thanks__receipt > span { display: block; height: 8px; margin: 17px 0; border-radius: 8px; background: #dce2eb; }
.almc-commerce-thanks__receipt > span:nth-of-type(2) { width: 72%; }
.almc-commerce-thanks__receipt > span:nth-of-type(3) { width: 45%; }
.almc-commerce-thanks__barcode { height: 45px; margin-top: 65px; opacity: .35; background: repeating-linear-gradient(90deg, #10131a 0 2px, transparent 2px 6px, #10131a 6px 7px, transparent 7px 11px); }
.almc-commerce-thanks__copy .almc-commerce-page-h1 { max-width: 850px; }

/* Footer / mobile CTA */
.almc-commerce-footer { padding: 72px 0 28px; background: var(--almc-commerce-navy); color: #fff; }
.almc-commerce-footer__grid { display: grid; grid-template-columns: 1.1fr .8fr .7fr; gap: 45px; }
.almc-commerce-brand--light { color: #fff; }
.almc-commerce-brand--light .almc-commerce-brand__mark { background: #fff; }
.almc-commerce-brand--light .almc-commerce-brand__mark span { background: var(--almc-commerce-navy); }
.almc-commerce-brand--light .almc-commerce-brand__mark span:nth-child(2) { background: var(--almc-commerce-mint); }
.almc-commerce-brand--light .almc-commerce-brand__mark span:nth-child(3) { background: var(--almc-commerce-orange); }
.almc-commerce-footer-legal-entity { margin: 22px 0 0; color: #8e9ab0; font-size: .76rem; }
.almc-commerce-footer ul { margin: 0; padding: 0; list-style: none; }
.almc-commerce-footer__legal ul { display: grid; gap: 8px; }
.almc-commerce-footer a { color: #aeb9ca; font-size: .8rem; text-decoration: none; }
.almc-commerce-footer a:hover { color: #fff; }
.almc-commerce-footer__languages { display: flex; flex-wrap: wrap; align-content: start; gap: 6px; }
.almc-commerce-footer__languages a { display: inline-flex; min-height: 38px; align-items: center; padding: 0 10px; border: 1px solid #28354d; border-radius: 999px; }
.almc-commerce-footer__languages a.almc-commerce-is-current { border-color: var(--almc-commerce-mint); color: var(--almc-commerce-mint); }
.almc-commerce-footer__bottom { grid-column: 1 / -1; margin-top: 32px; padding-top: 22px; border-top: 1px solid #233049; color: #7f8ca3; font-size: .72rem; }
.almc-commerce-sticky-cta { display: none; }

/* Progressive motion: content is visible until JS explicitly enables it. */
.almc-commerce-motion-ready [data-almc-commerce-reveal] { opacity: 0; transform: translateY(28px); }
.almc-commerce-motion-ready [data-almc-commerce-reveal].almc-commerce-is-in { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.almc-commerce-low-motion .almc-commerce-hero__marquee-track,
.almc-commerce-page-hidden .almc-commerce-hero__marquee-track { animation-play-state: paused; }
.almc-commerce-low-motion .almc-commerce-flow__stages li { color: var(--almc-commerce-ink); }
.almc-commerce-low-motion .almc-commerce-flow__stages li > span { color: #9f3215; }
.almc-commerce-low-motion .almc-commerce-flow__route-signal { display: none; }
.almc-commerce-low-motion .almc-commerce-flow__route-progress { stroke-dashoffset: 0; }

@keyframes almcCommerceMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

@keyframes almcCommerceNodePulse {
  0% { transform: scale(.45); opacity: .2; }
  58% { transform: scale(1.65); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes almcCommerceReserveTap {
  0% { transform: translateX(-125%); }
  100% { transform: translateX(125%); }
}

@keyframes almcCommerceStockTick {
  0% { transform: scale(.72); opacity: .25; }
  65% { transform: scale(1.18); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes almcCommerceReceiptDone {
  0% { transform: translateY(10px); opacity: .2; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 1080px) {
  .almc-commerce-nav__links { display: none; }
  .almc-commerce-mobile-nav { display: block; position: relative; }
  .almc-commerce-mobile-nav__summary { display: flex; min-height: 44px; align-items: center; gap: 10px; padding: 0 12px; border: 1px solid var(--almc-commerce-line); border-radius: 999px; cursor: pointer; font-size: .78rem; font-weight: 800; list-style: none; }
  .almc-commerce-mobile-nav__summary::-webkit-details-marker { display: none; }
  .almc-commerce-mobile-nav__close-label { display: none; }
  .almc-commerce-mobile-nav[open] .almc-commerce-mobile-nav__open-label { display: none; }
  .almc-commerce-mobile-nav[open] .almc-commerce-mobile-nav__close-label { display: inline; }
  .almc-commerce-mobile-nav__lines { position: relative; width: 18px; height: 12px; border-top: 2px solid; border-bottom: 2px solid; }
  .almc-commerce-mobile-nav__lines::after { position: absolute; top: 4px; left: 0; width: 18px; border-top: 2px solid; content: ''; }
  .almc-commerce-mobile-nav__panel { position: absolute; top: 54px; right: 0; display: grid; width: min(330px, calc(100vw - 40px)); padding: 16px; border: 1px solid var(--almc-commerce-line); border-radius: 18px; background: #fff; box-shadow: var(--almc-commerce-shadow); }
  .almc-commerce-mobile-nav__panel .almc-commerce-nav-link.almc-commerce-is-current { background: #eaf0ff; color: var(--almc-commerce-blue); }
  .almc-commerce-mobile-nav__panel .almc-commerce-nav-cta { margin-top: 10px; justify-content: center; }
  .almc-commerce-hero__grid { grid-template-columns: minmax(0,1fr) minmax(380px,.8fr); gap: 38px; }
  .almc-commerce-hero__title { font-size: clamp(3.5rem, 7vw, 5.7rem); }
  .almc-commerce-flow__layout { grid-template-columns: 310px minmax(520px,1fr); gap: 38px; }
  .almc-commerce-flow__canvas { min-height: 580px; }
  .almc-commerce-device--phone { left: 25px; }
  .almc-commerce-flow__event--reserve { left: 210px; }
  .almc-commerce-flow__event--stock { left: 270px; }
  .almc-commerce-device--pos { right: 22px; width: 305px; }
  .almc-commerce-feature { grid-column: span 4; }
  .almc-commerce-feature--wide { grid-column: span 8; }
  .almc-commerce-feature--tall { grid-column: span 4; }
  .almc-commerce-chapter__grid { grid-template-columns: 40px minmax(0,1fr); }
  .almc-commerce-chapter__visual { grid-column: 2; min-height: 450px; }
  .almc-commerce-article__grid { grid-template-columns: 45px minmax(0,1fr); }
  .almc-commerce-article__visual { grid-column: 2; min-height: 360px; }
  .almc-commerce-toc--editorial .almc-commerce-toc__links { grid-template-columns: repeat(3,1fr); }
  .almc-commerce-plan-stage__receipts { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .almc-commerce-plan-receipt--2,
  .almc-commerce-plan-receipt--3 { margin-top: 0; }
}

@media (max-width: 920px) {
  .almc-commerce-section { padding: 84px 0; }
  .almc-commerce-section-head--split,
  .almc-commerce-section-heading--split,
  .almc-commerce-page-hero__inner,
  .almc-commerce-offline__grid,
  .almc-commerce-cases__grid,
  .almc-commerce-hardware__grid,
  .almc-commerce-faq__grid,
  .almc-commerce-demo__grid,
  .almc-commerce-demo-section__inner,
  .almc-commerce-thanks__inner { grid-template-columns: 1fr; gap: 46px; }
  .almc-commerce-header .almc-commerce-nav__cta { display: none; }
  .almc-commerce-hero { padding-top: 52px; }
  .almc-commerce-hero__grid { min-height: 0; grid-template-columns: 1fr; gap: 50px; }
  .almc-commerce-hero__title { max-width: 720px; font-size: clamp(3.4rem, 12vw, 6.1rem); }
  .almc-commerce-hero__media { width: min(100%, 620px); margin-inline: auto; }
  .almc-commerce-hero__image-wrap { aspect-ratio: 1.15; border-radius: 100px 24px 24px 24px; }
  .almc-commerce-hero__status--reservation { left: 10px; }
  .almc-commerce-hero__status--stock { right: 10px; }
  .almc-commerce-flow__layout { grid-template-columns: 1fr; }
  .almc-commerce-flow__stages { display: grid; gap: 12px; }
  .almc-commerce-flow__stages li { min-height: 0; padding: 25px 0; }
  .almc-commerce-flow__canvas { position: relative; top: auto; min-height: 600px; grid-row: 1; }
  .almc-commerce-flow__stages { grid-row: 2; }
  .almc-commerce-feature { grid-column: span 6; }
  .almc-commerce-feature--wide,
  .almc-commerce-feature--tall { grid-column: span 6; grid-row: auto; min-height: 300px; }
  .almc-commerce-feature--tall .almc-commerce-feature__top { margin-bottom: 72px; }
  .almc-commerce-cases__image { width: min(100%, 620px); }
  .almc-commerce-cases__image picture { aspect-ratio: 4/3; border-radius: 24px 90px 24px 24px; }
  .almc-commerce-fiscal-chain { grid-template-columns: 1fr 1fr; }
  .almc-commerce-fiscal-chain li:nth-child(2) { border-right: 0; }
  .almc-commerce-fiscal-chain li:nth-child(2)::after { display: none; }
  .almc-commerce-fiscal-chain li:nth-child(-n+2) { border-bottom: 1px solid #bdc8d9; }
  .almc-commerce-hardware__options article:nth-child(2) { margin-top: 30px; }
  .almc-commerce-faq__intro,
  .almc-commerce-faq__heading,
  .almc-commerce-demo__intro,
  .almc-commerce-demo-section__heading { position: static; }
  .almc-commerce-demo__ticket { display: none; }
  .almc-commerce-page-hero__scale { display: none; }
  .almc-commerce-toc { margin-top: 12px; }
  .almc-commerce-plan-stage__receipts { grid-template-columns: 1fr; gap: 18px; }
  .almc-commerce-plan-receipt,
  .almc-commerce-plan-receipt--2,
  .almc-commerce-plan-receipt--3 { min-height: 430px; margin-top: 0; }
  .almc-commerce-manifest { grid-template-columns: 1fr; }
  .almc-commerce-manifest__more { grid-column: 1; }
  .almc-commerce-hardware-scene { min-height: 480px; }
  .almc-commerce-thanks__receipt { margin-inline: auto; }
  .almc-commerce-footer__grid { grid-template-columns: 1fr 1fr; }
  .almc-commerce-footer__bottom { grid-column: 1 / -1; }
  .almc-commerce-sticky-cta { position: fixed; z-index: 45; right: 14px; bottom: 14px; left: 14px; display: block; padding: 8px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(11,18,32,.88); backdrop-filter: blur(14px); }
  .almc-commerce-sticky-cta { visibility: hidden; opacity: 0; pointer-events: none; transform: translateY(24px); transition: visibility 0s linear .25s, opacity .25s ease, transform .25s ease; }
  .almc-commerce-sticky-cta.almc-commerce-is-visible { visibility: visible; opacity: 1; pointer-events: auto; transform: none; transition-delay: 0s; }
  .almc-commerce-sticky-cta .almc-commerce-btn { width: 100%; min-height: 48px; }
  .almc-commerce-footer { padding-bottom: 110px; }
}

@media (max-width: 620px) {
  .almc-commerce-shell,
  .almc-commerce-container { width: min(100% - 28px, 1220px); }
  .almc-commerce-section { padding: 70px 0; }
  .almc-commerce-h2 { font-size: clamp(2.35rem, 11vw, 3.75rem); }
  .almc-commerce-page-h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .almc-commerce-nav { min-height: 68px; }
  .almc-commerce-brand { font-size: .9rem; }
  .almc-commerce-brand__mark { width: 28px; height: 28px; }
  .almc-commerce-hero__grid { padding-bottom: 58px; }
  .almc-commerce-hero__title { font-size: clamp(3rem, 15.2vw, 4.6rem); }
  .almc-commerce-actions { display: grid; }
  .almc-commerce-actions .almc-commerce-btn { width: 100%; }
  .almc-commerce-hero__media { width: calc(100% + 8px); margin-left: -4px; }
  .almc-commerce-hero__image-wrap { aspect-ratio: .94; border-width: 5px; border-radius: 75px 20px 20px 20px; transform: none; }
  .almc-commerce-hero__image-wrap img { object-position: 62% center; }
  .almc-commerce-hero__status--reservation { top: 18px; left: -2px; }
  .almc-commerce-hero__status--stock { right: -2px; bottom: 20px; }
  .almc-commerce-flow__canvas { min-height: 520px; border-radius: 24px; }
  .almc-commerce-device--phone { top: 28px; left: 18px; width: 158px; height: 300px; border-width: 4px; border-radius: 25px; }
  .almc-commerce-device__hero { height: 86px; }
  .almc-commerce-flow__event--reserve { top: 165px; left: 142px; }
  .almc-commerce-flow__event--stock { top: 260px; left: 100px; }
  .almc-commerce-flow__event { padding: 9px; }
  .almc-commerce-device--pos { right: 14px; bottom: 28px; width: 265px; height: 190px; }
  .almc-commerce-device__tiles i { min-height: 52px; }
  .almc-commerce-flow__pulse { display: none; }
  .almc-commerce-steps__list li { grid-template-columns: 48px 1fr; }
  .almc-commerce-steps li > svg { display: none; }
  .almc-commerce-bento { grid-template-columns: 1fr; }
  .almc-commerce-feature,
  .almc-commerce-feature--wide,
  .almc-commerce-feature--tall { grid-column: 1; min-height: 260px; }
  .almc-commerce-feature__top,
  .almc-commerce-feature--tall .almc-commerce-feature__top { margin-bottom: 70px; }
  .almc-commerce-cases__stamp { right: 10px; bottom: 14px; }
  .almc-commerce-fiscal-chain { grid-template-columns: 1fr; }
  .almc-commerce-fiscal-chain li { min-height: 230px; border-right: 0; border-bottom: 1px solid #bdc8d9; }
  .almc-commerce-fiscal-chain li::after { display: none; }
  .almc-commerce-fiscal-chain li:last-child { border-bottom: 0; }
  .almc-commerce-fiscal-chain svg { margin-top: 42px; }
  .almc-commerce-hardware__options { grid-template-columns: 1fr; }
  .almc-commerce-hardware__options article,
  .almc-commerce-hardware__options article:nth-child(2) { min-height: 360px; margin: 0; }
  .almc-commerce-hardware__options article > svg { margin-top: 70px; }
  .almc-commerce-faq__list summary,
  .almc-commerce-faq-list__item summary { grid-template-columns: 34px 1fr 24px; min-height: 80px; font-size: 1rem; }
  .almc-commerce-faq__list details > p,
  .almc-commerce-faq-list__answer p { margin-right: 0; margin-left: 48px; }
  .almc-commerce-form { padding: 24px 18px; border-radius: 20px; }
  .almc-commerce-form-grid { grid-template-columns: 1fr; }
  .almc-commerce-field-full { grid-column: 1; }
  .almc-commerce-page-hero { padding-top: 72px; }
  .almc-commerce-toc--editorial .almc-commerce-toc__links { grid-template-columns: 1fr 1fr; }
  .almc-commerce-chapter__grid,
  .almc-commerce-article__grid { grid-template-columns: 1fr; gap: 35px; }
  .almc-commerce-chapter__rail,
  .almc-commerce-article__rail { display: none; }
  .almc-commerce-chapter__visual,
  .almc-commerce-article__visual { grid-column: 1; min-height: 370px; }
  .almc-commerce-team-orbit { width: 280px; height: 280px; }
  .almc-commerce-team-orbit__person--1,
  .almc-commerce-team-orbit__person--3 { left: 106px; }
  .almc-commerce-team-orbit__person--2,
  .almc-commerce-team-orbit__person--4 { top: 106px; }
  .almc-commerce-store-network { width: 320px; transform: scale(.85); }
  .almc-commerce-store-network__hub { left: 115px; }
  .almc-commerce-manifest { padding: 26px 20px; }
  .almc-commerce-manifest__list { grid-template-columns: 1fr; }
  .almc-commerce-hardware-scene { min-height: 390px; }
  .almc-commerce-hardware-scene__monitor { top: 55px; left: 24px; width: 230px; height: 180px; }
  .almc-commerce-hardware-scene__monitor::after { top: 172px; left: 90px; }
  .almc-commerce-hardware-scene__printer { right: 20px; bottom: 35px; }
  .almc-commerce-hardware-scene__scanner { top: 55px; right: 28px; }
  .almc-commerce-hardware-scene__power { bottom: 22px; left: 20px; }
  .almc-commerce-chain-diagram { transform: scale(.78); transform-origin: center; }
  .almc-commerce-next-step__inner { align-items: stretch; flex-direction: column; }
  .almc-commerce-next-step__link { text-align: center; }
  .almc-commerce-thanks__receipt { min-height: 390px; }
  .almc-commerce-footer__grid { grid-template-columns: 1fr; }
  .almc-commerce-footer__bottom { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .almc-commerce-motion-ready [data-almc-commerce-reveal],
  .almc-commerce-motion-ready [data-almc-commerce-reveal] { opacity: 1; transform: none; }
  .almc-commerce-hero__marquee { transform: none; }
}

@media print {
  .almc-commerce-header,
  .almc-commerce-sticky-cta,
  .almc-commerce-footer { display: none !important; }
  .almc-commerce-section { padding: 30px 0; }
  body.almc-commerce-site { background: #fff; color: #000; }
}
