@font-face {
  font-family: "Lazare";
  src: url("../fonts/LazareGrotesk-Regular.woff2") format("woff2");
  font-display: swap;
  font-weight: 500;
}

@font-face {
  font-family: "Lazare";
  src: url("../fonts/LazareGrotesk-Light.woff2") format("woff2");
  font-display: swap;
  font-weight: 300;
}

@font-face {
  font-family: "Magnetik";
  src: url("../fonts/Magnetik-Light.woff2") format("woff2");
  font-display: swap;
  font-weight: 300;
}

@font-face {
  font-family: "Space Mono";
  src: url("../fonts/SpaceMono-Regular.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Super Nugget";
  src: url("../fonts/SuperNugget.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Bakso Menu";
  src: url("../fonts/BaksoMenu.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Overmuch";
  src: url("../fonts/Overmuch.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Keep on Truckin";
  src: url("../fonts/KeeponTruckin.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Golida";
  src: url("../fonts/Golida.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}

:root {
  --ink: #393732;
  --ink-soft: #48453f;
  --paper: #f3f0e8;
  --white: #fbfaf6;
  --line: rgba(37, 35, 31, 0.18);
  --line-light: rgba(255, 252, 244, 0.2);
  --orange: #ff7b29;
  --orange-soft: #f0a66e;
  --sage: #7ea386;
  --sage-deep: #20392e;
  --violet: #6d5b81;
  --violet-deep: #4d405f;
  --red: #bd4e3d;
  --display: "Magnetik", "Lazare", sans-serif;
  --sans: "Golida", "Lazare", sans-serif;
  --mono: "Space Mono", monospace;
  --lead: "Super Nugget", "Lazare", sans-serif;
  --soft-accent: "Keep on Truckin", "Lazare", sans-serif;
  --round-accent: "Bakso Menu", "Lazare", sans-serif;
  --block-accent: "Overmuch", "Lazare", sans-serif;
  --page-pad: clamp(22px, 4vw, 72px);
  --header-height: 66px;
  --header-offset: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.35;
  overflow-x: hidden;
  -ms-overflow-style: none;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--orange);
}

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

button,
input {
  font: inherit;
}

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

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: var(--header-offset) 24px auto;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(18px, 2vw, 30px);
  color: var(--white);
  border: 1px solid transparent;
  transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow .35s ease, top .35s ease;
}

.site-header.is-solid {
  top: 12px;
  color: var(--ink);
  background: rgba(243, 240, 232, 0.9);
  border-color: rgba(37,35,31,.14);
  box-shadow: 0 14px 40px rgba(37,35,31,.08);
  backdrop-filter: blur(22px) saturate(1.1);
}

.brand,
.footer-brand {
  width: clamp(128px, 9.2vw, 158px);
  display: block;
  line-height: 0;
}

.brand img,
.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-header.is-solid .brand img {
  filter: brightness(.62) contrast(1.15);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.2vw, 38px);
}

.site-nav a,
.header-login {
  position: relative;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-trial {
  position: relative;
  min-width: 154px;
  min-height: 44px;
  padding: 13px 20px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.header-trial span {
  position: absolute;
  top: -7px;
  right: -8px;
  padding: 4px 8px;
  color: var(--white);
  background: var(--orange);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transform: rotate(3deg);
}

.site-header.is-solid .header-trial {
  color: var(--white);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: inherit;
  background: transparent;
  border: 0;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

#regia,
#servizio,
#self,
#cameriere,
#controllo,
#analisi {
  scroll-margin-top: var(--header-height);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: auto 1fr auto;
  align-items: end;
  padding: calc(var(--header-height) + var(--header-offset) + 54px) var(--page-pad) 54px;
  color: var(--white);
  background: #34322e;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  z-index: -3;
  inset: 0;
  background: url("../assets/cambusa-restaurant-hero.webp") center center / cover no-repeat;
  animation: hero-scale 16s ease-out both;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
      linear-gradient(90deg, rgba(52, 50, 46, 0.72) 0%, rgba(52, 50, 46, 0.2) 48%, rgba(52, 50, 46, 0.13) 100%),
      linear-gradient(180deg, rgba(52, 50, 46, 0.54) 0%, transparent 28%, rgba(52, 50, 46, 0.82) 100%);
}

@keyframes hero-scale {
  from { transform: scale(1.035); }
  to { transform: scale(1); }
}

.hero-kicker,
.chapter-index,
.manifesto-number,
.section-heading > span,
.closing-kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-kicker {
  grid-column: 1 / -1;
  align-self: start;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  color: rgba(255,255,255,.72);
}

.hero-kicker::before {
  width: 34px;
  height: 1px;
  content: "";
  background: var(--orange);
}

.hero-title {
  align-self: end;
  max-width: 980px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(66px, 8.45vw, 144px);
  font-weight: 300;
  letter-spacing: -0.068em;
  line-height: 0.84;
}

.hero-title em,
.chapter-copy h2 em,
.closing-cta h2 em {
  color: var(--orange-soft);
  font-style: normal;
}

.hero-title em {
  white-space: nowrap;
}

.hero-copy {
  align-self: end;
  max-width: 470px;
  justify-self: end;
  padding: 0 0 12px 20px;
}

.hero-copy > p {
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: clamp(22px, 1.55vw, 28px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -.02em;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform .25s ease, color .25s ease, background .25s ease;
}

.diagonal-arrow {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

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

.text-link {
  display: inline-flex;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.45);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

@media (min-width: 1101px) {
  .site-nav a,
  .header-login {
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .hero-kicker,
  .text-link {
    font-size: 13px;
    font-weight: 700;
  }
}

.hero-status {
  position: absolute;
  top: calc(var(--header-offset) + var(--header-height) + 24px);
  right: var(--page-pad);
  display: grid;
  grid-template-columns: auto auto;
  gap: 2px 10px;
  padding-left: 16px;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.status-dot {
  grid-row: 1 / 3;
  align-self: center;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #79c88b;
  box-shadow: 0 0 0 5px rgba(121,200,139,.14);
}

.hero-status strong {
  color: rgba(255,255,255,.48);
  font-weight: 400;
}

.hero-scroll {
  position: absolute;
  right: var(--page-pad);
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .13em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 45px;
  background: rgba(255,255,255,.48);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes scroll-pulse {
  50% { transform: scaleY(.5); opacity: .45; }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: reveal-in .9s cubic-bezier(.2,.8,.2,1) forwards;
}

.hero-title { animation-delay: .12s; }
.hero-copy { animation-delay: .25s; }
.hero-status { animation-delay: .4s; }

@keyframes reveal-in {
  to { opacity: 1; transform: none; }
}

.manifesto {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 92px var(--page-pad) 70px;
  color: var(--ink);
  background: var(--paper);
}

.manifesto-number {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.manifesto h2 {
  align-self: center;
  margin: 45px 0;
  font-family: var(--display);
  font-size: clamp(68px, 10.4vw, 174px);
  font-weight: 300;
  letter-spacing: -0.068em;
  line-height: 0.81;
}

.manifesto h2 span {
  color: var(--sage);
  font-family: var(--round-accent);
  font-size: .82em;
  letter-spacing: -.025em;
}

.manifesto-bottom {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) 1.25fr;
  gap: 8vw;
  align-items: end;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.manifesto-bottom > p {
  max-width: 560px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(23px, 2vw, 35px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -.025em;
}

.manifesto-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
}

.manifesto-facts div {
  display: flex;
  flex-direction: column;
  min-height: 112px;
  justify-content: space-between;
  padding: 0 24px;
  border-right: 1px solid var(--line);
}

.manifesto-facts strong {
  font-family: var(--display);
  font-size: clamp(42px, 4vw, 72px);
  font-weight: 300;
  line-height: .8;
}

.manifesto-facts span {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.system-map {
  padding: 115px var(--page-pad);
  color: var(--white);
  background: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: .45fr 1fr;
  gap: 6vw;
  align-items: start;
}

.section-heading > span {
  color: rgba(255,255,255,.55);
}

.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 6.4vw, 104px);
  font-weight: 300;
  letter-spacing: -.058em;
  line-height: .93;
}

.system-rail {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: clamp(10px, 2vw, 28px);
  margin-top: 100px;
}

.system-rail article {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--line-light);
  transition: color .25s ease, border-color .25s ease, background .25s ease, opacity .55s ease, transform .55s ease;
}

.system-rail article:hover {
  color: var(--ink);
  background: var(--orange-soft);
  border-color: var(--orange-soft);
}

.system-rail article > span,
.system-rail article small {
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.system-rail article strong {
  font-family: var(--block-accent);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: .035em;
}

.system-rail i {
  width: clamp(10px, 2vw, 30px);
  height: 1px;
  background: rgba(255,255,255,.28);
}

.chapter {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(330px, .76fr) minmax(560px, 1.24fr);
  gap: clamp(56px, 5vw, 100px);
  align-items: center;
  padding: 110px var(--page-pad);
  overflow: hidden;
}

.chapter::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 36vw;
  height: 36vw;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .08;
  pointer-events: none;
}

.chapter-copy,
.chapter-visual {
  position: relative;
  z-index: 1;
}

.chapter-copy {
  max-width: 620px;
}

.chapter-index {
  display: block;
  margin-bottom: 35px;
  opacity: .62;
}

.chapter-copy h2 {
  margin: 0 0 35px;
  font-family: var(--display);
  font-size: clamp(58px, 6vw, 104px);
  font-weight: 300;
  letter-spacing: -.064em;
  line-height: .87;
}

.chapter-service .chapter-copy h2 em {
  font-family: var(--round-accent);
  font-size: .76em;
  letter-spacing: -.015em;
}

.chapter-control .chapter-copy h2 em {
  font-family: "Keep on Truckin", "Lazare", sans-serif;
  font-size: .84em;
  letter-spacing: -.015em;
}

.chapter-stock .chapter-copy h2 em {
  font-family: var(--soft-accent);
  font-size: .76em;
  letter-spacing: -.015em;
}

.chapter-analysis .chapter-copy h2 em {
  font-family: var(--round-accent);
  font-size: .75em;
  letter-spacing: -.018em;
}

.chapter-copy > p {
  max-width: 520px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(21px, 1.55vw, 27px);
  font-weight: 300;
  line-height: 1.14;
  letter-spacing: -.02em;
}

.chapter-list {
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid color-mix(in srgb, currentColor 24%, transparent);
}

.chapter-list li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid color-mix(in srgb, currentColor 24%, transparent);
  font-size: 14px;
}

.chapter-list span {
  font-family: var(--mono);
  font-size: 9px;
  opacity: .5;
}

.chapter-visual {
  width: 100%;
  min-height: min(68vh, 720px);
  padding: clamp(24px, 3vw, 48px);
  border: 0;
  box-shadow: 0 42px 100px rgba(57,55,50,.2), inset 0 1px rgba(255,255,255,.07);
}

.chapter-visual::before {
  content: attr(data-module);
  position: absolute;
  top: -30px;
  right: 0;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .58;
}

.chapter-service {
  color: var(--white);
  background: #3a3833;
}

.chapter-service::after {
  top: -18vw;
  left: 30vw;
}

.service-board {
  display: flex;
  flex-direction: column;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 8%, rgba(240,166,110,.11), transparent 31%),
    linear-gradient(145deg, #4a4741, #3b3934 72%);
}

.board-top,
.stock-dashboard > header,
.analysis-dashboard > header,
.sync-console > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #46bd69;
  box-shadow: 0 0 0 5px rgba(70,189,105,.12);
}

.ticket-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
  padding: 25px 0;
}

.ticket {
  display: flex;
  flex-direction: column;
  min-height: 170px;
  color: var(--ink);
  background: #f4f3ee;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 10px 28px rgba(57,55,50,.14);
  overflow: hidden;
  transition: transform .3s ease;
}

.ticket:hover {
  transform: translateY(-4px);
}

.ticket header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 14px;
  color: #fff;
}

.ticket header strong {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: white;
  border-radius: 50%;
  font-size: 18px;
}

.ticket header span {
  font-family: var(--mono);
  font-size: 9px;
}

.ticket > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 15px 16px 18px;
}

.ticket small {
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(57,55,50,.14);
  font-family: var(--mono);
  font-size: 7px;
  text-transform: uppercase;
}

.ticket b {
  font-size: 12px;
  text-transform: uppercase;
}

.ticket.is-fresh header { background: #2fa64d; }
.ticket.is-warm header { background: #dc872b; }
.ticket.is-late header { background: #c3463c; }

.voice-command {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 2px 1px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.mic-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  border-radius: 50%;
  color: transparent;
  background: var(--orange);
  font-size: 0;
}

.voice-command div {
  display: flex;
  flex-direction: column;
}

.voice-command small {
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
  opacity: .55;
}

.voice-command strong {
  margin-top: 3px;
  font-size: 14px;
  text-transform: uppercase;
}

.chapter-self {
  color: #302a33;
  background: #e8e0ea;
}

.chapter-self::after {
  right: 17vw;
  bottom: -22vw;
  width: 44vw;
  height: 44vw;
}

.chapter-self .chapter-copy h2 em {
  color: #6a5174;
  font-family: var(--round-accent);
  font-size: .76em;
  letter-spacing: -.015em;
}

.self-console {
  display: flex;
  flex-direction: column;
  color: #fdf9ff;
  background:
    radial-gradient(circle at 13% 10%, rgba(214, 188, 224, .16), transparent 31%),
    linear-gradient(145deg, #5d4b66, #3f3445 72%);
  box-shadow: 0 42px 100px rgba(65, 45, 72, .27), inset 0 1px rgba(255, 255, 255, .12);
}

.self-console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

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

.self-console-head small,
.self-console-head strong {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.self-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8ac39a;
  box-shadow: 0 0 0 6px rgba(138, 195, 154, .13);
}

.self-experience {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(150px, .72fr) minmax(230px, 1.1fr) minmax(170px, .82fr);
  gap: 12px;
  align-items: stretch;
  padding-top: 20px;
}

.self-entry-card,
.self-activation,
.self-phone {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, .14);
}

.self-entry-card,
.self-activation {
  display: flex;
  flex-direction: column;
  padding: 16px;
  background: rgba(255, 255, 255, .07);
}

.self-card-index {
  color: rgba(255, 255, 255, .55);
  font-size: 7px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.self-qr {
  width: min(112px, 80%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: auto auto 15px;
  padding: 12px;
  color: #4e3e55;
  background: #fff;
}

.self-qr svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.self-entry-card > small {
  color: rgba(255, 255, 255, .58);
  font-size: 7px;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
}

.self-code {
  margin-top: 6px;
  font-size: clamp(23px, 2.2vw, 34px);
  font-weight: 700;
  letter-spacing: .1em;
  text-align: center;
  white-space: nowrap;
}

.self-entry-card p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, .64);
  font-size: 9px;
  line-height: 1.3;
  text-align: center;
}

.self-phone {
  align-self: center;
  min-height: 455px;
  display: flex;
  flex-direction: column;
  padding: 15px;
  color: #302d2a;
  background: #faf7f1;
  border-color: rgba(255, 255, 255, .6);
  border-radius: 25px;
  box-shadow: 0 18px 42px rgba(29, 19, 33, .27);
}

.self-phone-top,
.self-phone-title,
.self-mode-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.self-phone-top {
  padding: 2px 2px 13px;
  color: #65536d;
  border-bottom: 1px solid #ded5e0;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.self-phone-top b {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #66516f;
  border-radius: 9px;
}

.self-phone-title {
  align-items: flex-start;
  flex-direction: column;
  padding: 18px 1px 13px;
}

.self-phone-title small {
  color: #8a7e8f;
  font-size: 6px;
  letter-spacing: .12em;
}

.self-phone-title strong {
  margin-top: 5px;
  font-size: 19px;
  letter-spacing: -.025em;
}

.self-categories {
  display: flex;
  gap: 5px;
  overflow: hidden;
}

.self-categories span,
.self-categories b {
  min-width: max-content;
  padding: 7px 9px;
  border: 1px solid #ddd5cf;
  border-radius: 8px;
  font-size: 6px;
  text-transform: uppercase;
}

.self-categories b {
  color: #fff;
  background: #66516f;
  border-color: #66516f;
}

.self-dish-list {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.self-dish-list article {
  min-width: 0;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 25px;
  gap: 8px;
  align-items: center;
  min-height: 55px;
  padding: 8px;
  border: 1px solid #e0d8ce;
  background: #fffdf9;
}

.self-dish-list article > span {
  color: #7a6482;
  font-size: 9px;
  font-weight: 800;
}

.self-dish-list article div {
  min-width: 0;
}

.self-dish-list article strong,
.self-dish-list article small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.self-dish-list article strong { font-size: 9px; }
.self-dish-list article small { margin-top: 3px; color: #8e857c; font-size: 6px; }

.self-dish-list article > b {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: #66516f;
  background: #eee7f0;
  border-radius: 8px;
  font-size: 11px;
}

.self-cart {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding: 12px;
  color: #fff;
  background: #66516f;
  border-radius: 11px;
  font-size: 7px;
}

.activation-status {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  padding: 11px;
  color: #3e5e49;
  background: #e5f0e8;
}

.activation-status i {
  width: 34px;
  height: 34px;
  position: relative;
  background: #4f765d;
}

.activation-status i::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 12px;
  width: 7px;
  height: 13px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.activation-status small,
.activation-status strong { display: block; }
.activation-status small { font-size: 6px; letter-spacing: .08em; }
.activation-status strong { margin-top: 3px; font-size: 9px; }

.self-activation ol {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.self-activation li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 9px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.self-activation li > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  font-size: 7px;
}

.self-activation li.is-done > span { background: rgba(255, 255, 255, .12); }
.self-activation li.is-live > span { color: #3e3444; background: #d8bddf; border-color: #d8bddf; }
.self-activation li strong,.self-activation li small { display: block; }
.self-activation li strong { font-size: 9px; }
.self-activation li small { margin-top: 3px; color: rgba(255, 255, 255, .52); font-size: 7px; }

.self-mode-label {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.self-mode-label span { color: rgba(255, 255, 255, .5); font-size: 7px; letter-spacing: .1em; }
.self-mode-label strong { font-size: 11px; }

.chapter-waiter {
  color: #f8f3ea;
  background: #33312d;
}

.chapter-waiter::after {
  left: -15vw;
  top: -18vw;
  width: 43vw;
  height: 43vw;
}

.chapter-waiter .chapter-copy h2 em {
  color: #d5b0de;
  font-family: var(--round-accent);
  font-size: .76em;
  letter-spacing: -.015em;
}

.waiter-console {
  display: flex;
  flex-direction: column;
  color: #332f35;
  background: #f8f5ef;
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 42px 100px rgba(12, 11, 10, .34), inset 0 1px #fff;
}

.waiter-console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid #ddd6cc;
}

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

.waiter-console-head small,
.waiter-console-head strong {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.waiter-console-head small { color: #7c746c; }

.waiter-online {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6fa07e;
  box-shadow: 0 0 0 6px rgba(111, 160, 126, .13);
}

.waiter-workspace {
  flex: 1;
  display: grid;
  grid-template-columns: 106px minmax(250px, 1fr) minmax(190px, .68fr);
  gap: 10px;
  min-height: 470px;
  padding-top: 18px;
}

.waiter-categories,
.waiter-menu,
.waiter-draft {
  min-width: 0;
  border: 1px solid #ddd6cc;
  background: #fffdf9;
}

.waiter-categories {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 13px 9px;
}

.waiter-categories > span {
  padding: 4px 7px 10px;
  color: #8a8177;
  font-size: 7px;
  letter-spacing: .12em;
}

.waiter-categories b {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 9px;
  color: #756d65;
  border: 1px solid transparent;
  font-size: 7px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.waiter-categories b.is-active {
  color: #fff;
  background: #695473;
  border-color: #695473;
}

.waiter-menu {
  display: flex;
  flex-direction: column;
  padding: 14px;
}

.waiter-menu-title,
.waiter-table,
.waiter-draft-title,
.waiter-status,
.waiter-status > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.waiter-menu-title small,
.waiter-menu-title strong,
.waiter-draft-title small,
.waiter-draft-title strong {
  display: block;
}

.waiter-menu-title small,
.waiter-draft-title small {
  color: #958b81;
  font-size: 6px;
  letter-spacing: .12em;
}

.waiter-menu-title strong {
  margin-top: 4px;
  font-size: 17px;
  letter-spacing: -.025em;
}

.waiter-menu-title > span {
  padding: 7px 9px;
  color: #5c4965;
  background: #eee6f0;
  font-size: 6px;
  font-weight: 800;
  text-transform: uppercase;
}

.waiter-dishes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 15px;
}

.waiter-dishes article {
  position: relative;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  padding: 13px 40px 13px 13px;
  border: 1px solid #e0d9cf;
  background: #f9f6f1;
}

.waiter-dishes article.is-selected {
  border-color: #bba8c3;
  background: #f0e9f2;
}

.waiter-dishes small {
  color: #968c82;
  font-size: 6px;
  letter-spacing: .1em;
}

.waiter-dishes strong {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.08;
}

.waiter-dishes span {
  margin-top: auto;
  color: #81776d;
  font-size: 7px;
}

.waiter-dishes b {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #695473;
  font-size: 10px;
}

.waiter-draft {
  display: flex;
  flex-direction: column;
  padding: 14px;
  color: #f8f4fb;
  background: #55455d;
  border-color: #55455d;
}

.waiter-table {
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.waiter-table small,
.waiter-table strong { display: block; }
.waiter-table small { color: rgba(255, 255, 255, .52); font-size: 6px; letter-spacing: .12em; }
.waiter-table strong { margin-top: 2px; font-size: 26px; }
.waiter-table > span { padding: 7px 8px; background: rgba(255, 255, 255, .1); font-size: 7px; }

.waiter-draft-title {
  padding: 16px 0 8px;
}

.waiter-draft-title small { color: rgba(255, 255, 255, .48); }
.waiter-draft-title strong { font-size: 11px; }

.waiter-draft ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.waiter-draft li {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 8px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.waiter-draft li > span {
  font-size: 9px;
  font-weight: 800;
}

.waiter-draft li strong,
.waiter-draft li small { display: block; }
.waiter-draft li strong { font-size: 8px; }
.waiter-draft li small { margin-top: 3px; color: rgba(255, 255, 255, .5); font-size: 6px; }

.waiter-note {
  margin-top: 12px;
  padding: 10px;
  color: #4b3b52;
  background: #dfcbe5;
}

.waiter-note span { font-size: 6px; font-weight: 800; letter-spacing: .1em; }
.waiter-note p { margin: 4px 0 0; font-size: 7px; line-height: 1.3; }

.waiter-draft button {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding: 0 11px;
  border: 0;
  color: #3c333f;
  background: #f0d78f;
  font: inherit;
  font-size: 7px;
}

.waiter-draft button strong { text-transform: uppercase; }

.waiter-status {
  gap: 12px;
  margin-top: 10px;
  padding: 11px 13px;
  color: #3e5e49;
  background: #e3eee6;
}

.waiter-status > div { justify-content: flex-start; gap: 9px; }
.waiter-status i { width: 8px; height: 8px; border-radius: 50%; background: #60916e; box-shadow: 0 0 0 5px rgba(96, 145, 110, .12); }
.waiter-status span small,
.waiter-status span strong { display: block; }
.waiter-status span small { font-size: 6px; letter-spacing: .1em; }
.waiter-status span strong { margin-top: 2px; font-size: 8px; }
.waiter-status > b { font-size: 7px; text-transform: uppercase; }

.chapter-control {
  color: var(--ink);
  background: #ded8cd;
}

.chapter-control::after {
  right: -12vw;
  bottom: -16vw;
}

.chapter-control .chapter-copy h2 em {
  color: #985f37;
}

.trust-note {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 45px;
  padding: 18px;
  border: 1px solid rgba(37,35,31,.24);
}

.trust-note > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--sage-deep);
}

.trust-note p {
  margin: 0;
  font-size: 13px;
}

.trust-note strong {
  display: block;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.sync-console {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(37,35,31,.2);
  box-shadow: 0 42px 90px rgba(45,40,33,.16), inset 0 1px white;
}

.sync-console > header {
  border-bottom-color: var(--line);
}

.sync-console header > div,
.stock-dashboard header > div,
.analysis-dashboard header > div {
  display: flex;
  flex-direction: column;
}

.sync-console header small,
.stock-dashboard header small,
.analysis-dashboard header small {
  margin-bottom: 5px;
  opacity: .55;
}

.sync-console header strong,
.stock-dashboard header strong,
.analysis-dashboard header strong {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 300;
  letter-spacing: -.04em;
}

.sync-online {
  padding: 8px 11px;
  color: #32764c;
  background: #e2efe5;
  border: 1px solid #b8d4bf;
}

.sync-flow {
  margin-top: 24px;
}

.sync-step {
  display: grid;
  grid-template-columns: 45px 1fr 28px;
  gap: 14px;
  align-items: center;
  padding: 21px 2px;
  border-bottom: 1px solid var(--line);
}

.sync-step > span {
  font-family: var(--mono);
  font-size: 9px;
  opacity: .5;
}

.sync-step > div {
  display: flex;
  flex-direction: column;
}

.sync-step strong {
  font-size: 15px;
  text-transform: uppercase;
}

.sync-step small {
  margin-top: 3px;
  opacity: .58;
}

.sync-step i {
  width: 14px;
  height: 14px;
  justify-self: center;
  border: 1px solid rgba(37,35,31,.28);
  border-radius: 50%;
}

.sync-step.complete i {
  width: 28px;
  height: 28px;
  position: relative;
  background: var(--sage);
  border: 0;
}

.sync-step.complete i::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 10px;
  width: 6px;
  height: 11px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.sync-step.active i {
  border-color: var(--orange);
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.local-review {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 15px;
  align-items: end;
  margin-top: 26px;
  padding: 20px;
  color: var(--ink);
  background: linear-gradient(100deg, #f5e4c4, #faefd9);
  border-left: 4px solid #bd7d2b;
}

.local-review > div {
  display: flex;
  flex-direction: column;
}

.local-review small {
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.local-review strong {
  margin-top: 8px;
  font-size: 19px;
}

.local-review p {
  margin: 5px 0 0;
  font-size: 13px;
}

.local-review button {
  min-height: 42px;
  padding: 0 14px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.chapter-stock {
  color: var(--white);
  background: var(--sage-deep);
}

.chapter-stock::after {
  top: -9vw;
  right: 24vw;
}

.chapter-stock .chapter-copy h2 em {
  color: #a8c9ae;
}

.stock-dashboard {
  color: var(--ink);
  background: #edf0e9;
  border-color: rgba(255,255,255,.24);
  box-shadow: 0 42px 90px rgba(6,28,18,.24), inset 0 1px white;
}

.stock-dashboard > header {
  border-bottom-color: rgba(37,35,31,.18);
}

.stock-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin: 21px 0;
}

.stock-kpis article {
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  color: var(--white);
  background: linear-gradient(145deg, #314639, #3d5847);
  border: 1px solid rgba(255,255,255,.13);
}

.stock-kpis small,
.stock-kpis span {
  font-family: var(--mono);
  font-size: 7px;
  text-transform: uppercase;
  opacity: .68;
}

.stock-kpis strong {
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 300;
}

.stock-table {
  border: 1px solid rgba(37,35,31,.16);
}

.stock-table > div {
  display: grid;
  grid-template-columns: 1.4fr .6fr .8fr .6fr;
  gap: 12px;
  padding: 15px 16px;
  border-bottom: 1px solid rgba(37,35,31,.12);
  font-size: 12px;
  transition: background .2s ease;
}

.stock-table > div:not(.table-head):hover {
  background: rgba(255,255,255,.65);
}

.stock-table > div:last-child { border-bottom: 0; }

.stock-table .table-head {
  padding-block: 11px;
  background: #dde3da;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.stock-table b {
  color: #487a56;
}

.feature-suite {
  position: relative;
  padding: 130px var(--page-pad) 140px;
  color: var(--ink);
  background: #dedbd3;
  overflow: hidden;
}

.feature-suite::before {
  content: "";
  position: absolute;
  top: -22vw;
  right: -12vw;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(57,55,50,.1);
  border-radius: 50%;
  pointer-events: none;
}

.feature-suite-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .42fr 1.08fr .5fr;
  gap: clamp(28px, 5vw, 88px);
  align-items: start;
}

.feature-suite-index,
.tool-card-header,
.tool-eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
}

.feature-suite-index {
  padding-top: 9px;
  font-size: 9px;
  letter-spacing: .12em;
  opacity: .58;
}

.feature-suite-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(55px, 6.8vw, 112px);
  font-weight: 300;
  letter-spacing: -.064em;
  line-height: .84;
}

.feature-suite-heading h2 em {
  color: var(--violet);
  font-family: var(--soft-accent);
  font-size: .68em;
  font-style: normal;
  letter-spacing: -.012em;
}

.feature-suite-heading > p {
  max-width: 360px;
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: clamp(18px, 1.35vw, 23px);
  font-weight: 300;
  line-height: 1.13;
  letter-spacing: -.02em;
}

.feature-suite-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  margin-top: 92px;
}

.tool-card {
  position: relative;
  min-height: 610px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.6vw, 42px);
  border: 1px solid rgba(57,55,50,.15);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(50,46,39,.08);
  opacity: 1;
  transform: none;
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
  overflow: hidden;
}

.tool-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: currentColor;
  opacity: .3;
}

.tool-card.in-view {
  opacity: 1;
  transform: none;
}

.tool-card.in-view:hover {
  transform: translateY(-5px);
  box-shadow: 0 38px 90px rgba(50,46,39,.14);
}

.tool-card:nth-child(2) { transition-delay: .08s; }
.tool-card:nth-child(3) { transition-delay: .08s; }
.tool-card:nth-child(4) { transition-delay: .16s; }

.tool-labels,
.tool-haccp {
  grid-column: span 7;
}

.tool-orders,
.tool-sentinel {
  grid-column: span 5;
}

.tool-labels {
  background: #f9f7f1;
}

.tool-orders {
  color: #213b2f;
  background: #dfe9df;
}

.tool-sentinel {
  color: var(--white);
  background:
    radial-gradient(circle at 92% 7%, rgba(255,255,255,.1), transparent 32%),
    var(--violet-deep);
  border-color: rgba(255,255,255,.14);
}

.tool-haccp {
  color: var(--white);
  background: #373530;
  border-color: rgba(255,255,255,.12);
}

.tool-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid currentColor;
  font-size: 8px;
  letter-spacing: .12em;
  opacity: .6;
}

.tool-card-header svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tool-card-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin-top: 40px;
}

.tool-eyebrow {
  display: block;
  margin-bottom: 14px;
  font-size: 8px;
  letter-spacing: .13em;
  opacity: .56;
}

.tool-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 4.4vw, 76px);
  font-weight: 300;
  letter-spacing: -.06em;
  line-height: .85;
}

.tool-orders h3,
.tool-sentinel h3 {
  font-size: clamp(41px, 3.65vw, 65px);
}

.tool-card-copy p {
  max-width: 460px;
  margin: 22px 0 0;
  font-size: 14px;
  line-height: 1.35;
  opacity: .68;
}

.tool-labels .tool-card-copy,
.tool-haccp .tool-card-copy {
  padding-bottom: clamp(36px, 3.4vw, 54px);
}

.label-studio {
  position: relative;
  min-height: 230px;
  margin-top: auto;
  padding: 42px clamp(22px, 3.4vw, 60px) 32px;
  color: var(--ink);
  background: #e7e3da;
  border: 1px solid rgba(57,55,50,.14);
}

.label-studio-toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  border-bottom: 1px solid rgba(57,55,50,.13);
  font-family: var(--mono);
  font-size: 7px;
  text-transform: uppercase;
}

.label-studio-toolbar b {
  color: #3c6d4e;
  font-weight: 400;
}

.label-stage {
  position: relative;
  max-width: 480px;
  margin: 26px auto 0;
  padding: 13px 0 0 20px;
}

.label-measure {
  position: absolute;
  color: rgba(57,55,50,.58);
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.measure-x {
  top: 0;
  left: 20px;
  width: calc(100% - 20px);
  border-top: 1px solid rgba(57,55,50,.3);
  text-align: center;
}

.measure-y {
  bottom: 0;
  left: 0;
  height: calc(100% - 13px);
  display: grid;
  align-items: center;
  border-left: 1px solid rgba(57,55,50,.3);
  writing-mode: vertical-rl;
}

.food-label {
  min-height: 135px;
  padding: 15px;
  background: #fff;
  border: 1px solid #2f2e2a;
  box-shadow: 0 17px 30px rgba(57,55,50,.09);
}

.food-label-top,
.food-label-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 6px;
  text-transform: uppercase;
}

.food-label-top {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
}

.food-label-top b {
  padding: 3px 5px;
  color: white;
  background: var(--ink);
  font-weight: 400;
}

.food-label > strong {
  display: block;
  margin: 15px 0 3px;
  font-family: var(--display);
  font-size: clamp(18px, 1.9vw, 29px);
  font-weight: 300;
  letter-spacing: -.045em;
}

.food-label > small {
  font-size: 7px;
}

.food-label-bottom {
  margin-top: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(57,55,50,.23);
}

.food-label-bottom i {
  width: 63px;
  height: 13px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 1px, transparent 1px 3px, var(--ink) 3px 5px, transparent 5px 7px);
}

.order-sheet {
  margin-top: auto;
  color: var(--ink);
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(33,59,47,.16);
}

.order-sheet-head,
.order-line,
.order-total {
  display: grid;
  align-items: center;
}

.order-sheet-head {
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 17px;
  border-bottom: 1px solid rgba(33,59,47,.15);
  font-family: var(--mono);
  font-size: 7px;
  text-transform: uppercase;
}

.order-sheet-head b {
  color: #396247;
}

.order-line {
  grid-template-columns: 12px 1fr auto;
  gap: 10px;
  min-height: 54px;
  padding: 0 17px;
  border-bottom: 1px solid rgba(33,59,47,.1);
  font-size: 11px;
}

.order-line > i {
  width: 7px;
  height: 7px;
  background: #76a382;
  border-radius: 50%;
}

.order-line > i.status-low {
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,123,41,.1);
}

.order-line b {
  font-family: var(--mono);
  font-size: 8px;
}

.order-total {
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 16px 17px;
  font-family: var(--mono);
  font-size: 7px;
  text-transform: uppercase;
}

.order-total strong {
  padding: 9px 11px;
  color: var(--white);
  background: #2f5841;
  font-weight: 400;
}

.order-total strong i {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-left: 8px;
  font-style: normal;
}

.order-total .diagonal-arrow {
  width: 13px;
  height: 13px;
}

.sentinel-mark {
  position: absolute;
  top: 95px;
  right: clamp(25px, 3vw, 50px);
  width: clamp(80px, 8vw, 126px);
  height: clamp(80px, 8vw, 126px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.sentinel-mark::before,
.sentinel-mark::after {
  content: "";
  position: absolute;
  inset: -15px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;
  animation: sentinel-pulse 3s ease-out infinite;
}

.sentinel-mark::after {
  animation-delay: 1.5s;
}

@keyframes sentinel-pulse {
  0% { transform: scale(.82); opacity: .8; }
  100% { transform: scale(1.35); opacity: 0; }
}

.sentinel-status {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.sentinel-status > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sentinel-live {
  width: 8px;
  height: 8px;
  background: #c7f0d1;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(199,240,209,.09);
}

.sentinel-status small {
  font-family: var(--mono);
  font-size: 7px;
  text-transform: uppercase;
  opacity: .62;
}

.sentinel-status > strong {
  display: flex;
  align-items: end;
  gap: 9px;
  font-family: var(--display);
  font-size: 46px;
  font-weight: 300;
  line-height: .8;
}

.sentinel-status > strong span {
  max-width: 70px;
  font-family: var(--mono);
  font-size: 6px;
  line-height: 1.2;
  text-transform: uppercase;
  opacity: .56;
}

.tool-haccp .tool-card-copy {
  max-width: 660px;
}

.tool-sentinel .tool-card-copy {
  max-width: 76%;
}

.control-manual {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  margin-top: auto;
  color: var(--ink);
  background: #f3f0e8;
  border: 1px solid rgba(255,255,255,.1);
}

.manual-progress {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 25px;
  background: #e6b378;
}

.manual-progress > div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.manual-progress span,
.manual-progress strong {
  font-family: var(--mono);
  font-size: 7px;
  text-transform: uppercase;
}

.manual-progress strong {
  font-family: var(--display);
  font-size: 33px;
  font-weight: 300;
  line-height: .8;
}

.manual-progress > i {
  height: 4px;
  display: block;
  background: rgba(57,55,50,.17);
}

.manual-progress > i b {
  width: 75%;
  height: 100%;
  display: block;
  background: var(--ink);
}

.manual-list {
  padding: 10px 20px;
}

.manual-list > div {
  min-height: 47px;
  display: grid;
  grid-template-columns: 20px 1fr auto;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid rgba(57,55,50,.12);
  font-size: 10px;
}

.manual-list > div:last-child {
  border-bottom: 0;
}

.manual-list i {
  width: 13px;
  height: 13px;
  border: 1px solid rgba(57,55,50,.35);
}

.manual-list .is-done i {
  position: relative;
  background: var(--sage-deep);
  border-color: var(--sage-deep);
}

.manual-list .is-done i::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 4px;
  width: 3px;
  height: 6px;
  border: solid white;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}

.manual-list small {
  font-family: var(--mono);
  font-size: 6px;
  text-transform: uppercase;
  opacity: .55;
}

.manual-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 17px;
  color: var(--white);
  background: #242d28;
  font-family: var(--mono);
  font-size: 7px;
  text-transform: uppercase;
}

.manual-footer b {
  color: #f4bd86;
}

.chapter-analysis {
  color: var(--ink);
  background: var(--orange-soft);
}

.chapter-analysis::after {
  bottom: -12vw;
  left: 28vw;
}

.chapter-analysis .chapter-copy h2 em {
  color: #714425;
}

.analysis-callout {
  display: flex;
  align-items: end;
  gap: 15px;
  margin-top: 46px;
}

.analysis-callout strong {
  font-family: var(--display);
  font-size: clamp(50px, 5vw, 86px);
  font-weight: 300;
  letter-spacing: -.07em;
  line-height: .8;
}

.analysis-callout span {
  max-width: 150px;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.analysis-dashboard {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(37,35,31,.18);
  box-shadow: 0 42px 90px rgba(87,48,22,.18), inset 0 1px white;
}

.analysis-dashboard > header {
  border-bottom-color: var(--line);
}

.analysis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.analysis-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.42);
}

.revenue-card,
.margin-card {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.analysis-grid small {
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
  opacity: .62;
}

.analysis-grid strong {
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 300;
  letter-spacing: -.05em;
}

.analysis-grid article > span {
  font-size: 11px;
}

.positive { color: #3b8153; }

.chart-card {
  grid-column: 1 / -1;
  background: #f8f6ef !important;
}

.chart-card > div {
  display: flex;
  justify-content: space-between;
}

.chart-card > div span {
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.chart-card svg {
  display: block;
  width: 100%;
  height: 180px;
  margin-top: 8px;
  overflow: visible;
}

.chart-card .grid-line {
  fill: none;
  stroke: rgba(37,35,31,.09);
  stroke-width: 1;
}

.chart-card .area { fill: url(#areaFill); }

.chart-card .line {
  fill: none;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.chart-card .revenue { stroke: var(--orange); }
.chart-card .costs { stroke: var(--sage); stroke-dasharray: 7 8; }

.analysis-grid article.alert-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 13px;
  align-items: center;
  color: var(--white);
  background: var(--ink-soft);
  border: 0;
  outline: 0;
  box-shadow: 0 12px 30px rgba(37,35,31,.1);
}

.alert-card > span {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--orange-soft);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 24px;
}

.alert-card > div {
  display: flex;
  flex-direction: column;
}

.analysis-grid .alert-card small {
  color: #f4c59d;
  opacity: 1;
}

.alert-card strong {
  margin-top: 4px;
  color: var(--white);
  font-size: 17px;
  letter-spacing: 0;
}

.alert-card p {
  margin: 3px 0 0;
  color: rgba(255,255,255,.74);
  font-size: 11px;
}

.operations {
  padding: 130px var(--page-pad);
  color: var(--ink);
  background: var(--paper);
}

.light-heading > span { color: rgba(37,35,31,.54); }

.operations-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  gap: 14px;
  margin-top: 80px;
}

.operation-card {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
}

.operation-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--orange-soft);
}

.operation-card.in-view {
  opacity: 1;
  transform: none;
}

.operation-card:nth-child(2) { transition-delay: .08s; }
.operation-card:nth-child(3) { transition-delay: .16s; }

.operation-card:nth-child(2) {
  color: var(--white);
  background: var(--ink);
}

.operation-card:nth-child(2)::before { background: var(--orange); }

.system-rail article {
  opacity: .2;
  transform: translateY(18px);
}

.system-rail article.in-view {
  opacity: 1;
  transform: none;
}

.chapter-visual {
  transform: translateY(35px);
  opacity: .25;
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}

.chapter.in-view .chapter-visual {
  opacity: 1;
  transform: none;
}

.operation-card:nth-child(3) {
  background: #dfe7dc;
}

.operation-card:nth-child(3)::before { background: var(--sage-deep); }

.card-number {
  font-family: var(--mono);
  font-size: 9px;
  opacity: .5;
}

.operation-card h3 {
  margin: auto 0 13px;
  font-family: var(--display);
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 300;
  letter-spacing: -.05em;
  line-height: .9;
}

.operation-card:nth-child(1) h3 {
  font-family: var(--soft-accent);
  font-size: clamp(30px, 2.7vw, 47px);
  letter-spacing: -.015em;
  line-height: .98;
}

.operation-card:nth-child(2) h3 {
  font-family: var(--round-accent);
  font-size: clamp(31px, 2.8vw, 49px);
  letter-spacing: -.018em;
  line-height: 1.1;
}

.operation-card:nth-child(3) h3 {
  font-family: var(--lead);
  font-size: clamp(32px, 2.85vw, 50px);
  letter-spacing: -.018em;
  line-height: .92;
}

.operation-card p {
  max-width: 390px;
  margin: 0;
  font-size: 14px;
  opacity: .68;
}

.mini-calendar {
  margin: 36px 0 20px;
  padding: 18px;
  border: 1px solid var(--line);
}

.mini-calendar header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  font-family: var(--mono);
  font-size: 9px;
}

.week,
.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.week b {
  padding: 8px;
  font-family: var(--mono);
  font-size: 7px;
  text-align: center;
}

.days span {
  position: relative;
  min-height: 58px;
  padding: 9px;
  border: 1px solid rgba(37,35,31,.09);
  font-size: 12px;
}

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

.days .today i {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
}

.pulse-icon {
  position: relative;
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  margin: 50px auto 0;
}

.pulse-icon i {
  position: absolute;
  width: 45%;
  height: 45%;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  animation: pulse 2.4s ease-out infinite;
}

.pulse-icon i:nth-child(2) { animation-delay: .8s; }
.pulse-icon i:nth-child(3) { animation-delay: 1.6s; }

@keyframes pulse {
  0% { transform: scale(.2); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.version-stack {
  position: relative;
  height: 180px;
  margin: 48px 0 0;
}

.version-stack span {
  position: absolute;
  width: 84%;
  padding: 22px;
  color: var(--white);
  background: var(--sage-deep);
  border: 1px solid rgba(255,255,255,.22);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  box-shadow: 0 20px 35px rgba(30,55,43,.12);
}

.version-stack span:nth-child(1) { top: 0; left: 0; }
.version-stack span:nth-child(2) { top: 45px; left: 8%; }
.version-stack span:nth-child(3) { top: 90px; left: 16%; }

.closing-cta {
  position: relative;
  min-height: 90svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 110px var(--page-pad);
  color: var(--white);
  background: var(--ink);
  text-align: center;
  overflow: hidden;
}

.closing-kicker {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.55);
}

.closing-cta h2 {
  position: relative;
  z-index: 1;
  margin: 28px 0;
  font-family: var(--display);
  font-size: clamp(78px, 11vw, 180px);
  font-weight: 300;
  letter-spacing: -.08em;
  line-height: .75;
}

.closing-cta h2 em {
  font-family: var(--soft-accent);
  font-size: .68em;
  letter-spacing: -.01em;
}

.closing-cta p {
  position: relative;
  z-index: 1;
  max-width: 470px;
  margin: 0 0 35px;
  color: rgba(255,255,255,.68);
  font-size: 18px;
}

.button-orange {
  position: relative;
  z-index: 1;
  color: var(--ink);
  background: var(--orange);
}

.closing-orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}

.orbit-one {
  width: min(70vw, 980px);
  height: min(70vw, 980px);
  animation: orbit-float 9s ease-in-out infinite;
}

.orbit-two {
  width: min(42vw, 610px);
  height: min(42vw, 610px);
  border-color: rgba(255,123,41,.25);
  animation: orbit-float 7s ease-in-out infinite reverse;
}

@keyframes orbit-float {
  50% { transform: scale(1.04) translateY(-10px); }
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 20px;
  padding: 55px var(--page-pad);
  color: var(--white);
  background: #302e2a;
  border-top: 1px solid rgba(255,255,255,.13);
}

.site-footer > p {
  margin: 0;
  font-family: var(--display);
  font-size: 20px;
  text-align: center;
}

.footer-links {
  justify-self: end;
  display: flex;
  gap: 20px;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.page-progress {
  position: fixed;
  z-index: 120;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: transparent;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

/* I moduli dimostrativi condividono la stessa voce tipografica delle descrizioni. */
.chapter-visual,
.chapter-visual *,
.chapter-visual::before {
  font-family: var(--display) !important;
}

@media (max-width: 1100px) {
  :root { --page-pad: clamp(20px, 3.5vw, 42px); }

  .site-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .header-actions { margin-right: 60px; }
  .menu-toggle {
    position: fixed;
    z-index: 102;
    top: 15px;
    right: var(--page-pad);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    background: transparent;
  }
  .site-header.is-solid .menu-toggle {
    color: var(--ink);
    background: transparent;
  }

  .site-header.menu-active {
    height: calc(100svh - (var(--header-offset) * 2));
    grid-template-columns: 1fr auto;
    grid-template-rows: var(--header-height) 1fr auto;
    align-items: center;
    color: var(--white);
    background: var(--ink);
  }

  .site-header.menu-active .site-nav {
    grid-column: 1 / -1;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .site-header.menu-active .site-nav a {
    font-family: var(--display);
    font-size: clamp(42px, 9vw, 90px);
    letter-spacing: -.05em;
    text-transform: none;
  }

  .site-header.menu-active .header-actions {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: space-between;
    margin: 0 0 30px;
  }

  .site-header.menu-active .menu-toggle span:first-child { transform: translateY(7px) rotate(45deg); }
  .site-header.menu-active .menu-toggle span:nth-child(2) { opacity: 0; }
  .site-header.menu-active .menu-toggle span:last-child { transform: translateY(-7px) rotate(-45deg); }

  .hero { grid-template-columns: 1fr; }
  .hero-copy { justify-self: start; max-width: 560px; padding: 35px 0 25px; }
  .hero-scroll { display: none; }

  .system-rail {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }

  .system-rail i { display: none; }

  .chapter {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 70px;
    padding-block: 100px;
  }

  .chapter-copy { max-width: 760px; }
  .chapter-visual { min-height: 640px; }

  .feature-suite-heading {
    grid-template-columns: .34fr 1fr;
  }

  .feature-suite-heading > p {
    grid-column: 2;
    max-width: 560px;
    margin-top: 0;
  }

  .feature-suite-grid {
    margin-top: 70px;
  }

  .tool-card {
    min-height: 560px;
  }

  .tool-labels,
  .tool-haccp,
  .tool-orders,
  .tool-sentinel {
    grid-column: span 6;
  }

  .control-manual {
    grid-template-columns: 1fr;
  }

  .manual-list {
    padding-block: 7px;
  }

  .operations-grid { grid-template-columns: 1fr 1fr; }
  .operation-card:first-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root { --header-height: 58px; --header-offset: 8px; --page-pad: 18px; }

  .site-header {
    inset: var(--header-offset) 8px auto;
    padding-inline: 14px;
  }
  .site-header.is-solid { top: 8px; }
  .brand { width: 108px; }
  .header-actions { display: none; }
  .header-trial { min-width: 0; }

  .menu-toggle {
    top: 15px;
    right: 18px;
    width: 42px;
    height: 42px;
  }

  .site-header.menu-active {
    inset: 8px;
    height: calc(100svh - 16px);
    grid-template-rows: 58px 1fr auto;
    padding: 0 18px;
  }

  .site-header.menu-active .site-nav {
    gap: 2px;
  }

  .site-header.menu-active .site-nav a {
    font-size: clamp(42px, 13vw, 62px);
    line-height: .98;
  }

  .site-header.menu-active .header-actions {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 10px;
    margin-bottom: 18px;
  }

  .site-header.menu-active .header-login,
  .site-header.menu-active .header-trial {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-inline: 12px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    min-height: 100svh;
    padding-top: calc(var(--header-height) + var(--header-offset) + 38px);
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }

  .hero-media {
    background-position: 52% center;
    opacity: .85;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(52,50,46,.7), rgba(52,50,46,.12)),
      linear-gradient(180deg, rgba(52,50,46,.56), transparent 30%, rgba(52,50,46,.9));
  }

  .hero-status { display: none; }
  .hero-kicker { margin: 0 0 20px; }
  .hero-title {
    width: 100%;
    max-width: 560px;
    font-size: clamp(56px, 16.8vw, 84px);
    line-height: .85;
    letter-spacing: -.06em;
  }
  .hero-title em { white-space: normal; }
  .hero-copy {
    width: 100%;
    max-width: none;
    justify-self: auto;
    padding: 28px 0 0;
  }
  .hero-copy > p { max-width: 340px; margin-bottom: 22px; font-size: 20px; line-height: 1.08; }
  .hero-cta-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px; }
  .hero-cta-row .button { width: 100%; min-height: 54px; }
  .text-link { min-height: 44px; align-items: center; white-space: nowrap; }

  .manifesto {
    min-height: auto;
    padding-block: 72px 58px;
  }

  .manifesto-number { padding-bottom: 15px; }
  .manifesto h2 { margin: 64px 0; font-size: 17vw; line-height: .84; }
  .manifesto-bottom { grid-template-columns: 1fr; gap: 38px; padding-top: 24px; }
  .manifesto-bottom > p { font-size: 23px; line-height: 1.08; }
  .manifesto-facts { border-left: 0; }
  .manifesto-facts div { min-height: 84px; padding: 0 10px; }
  .manifesto-facts div:first-child { border-left: 1px solid var(--line); }
  .manifesto-facts strong { font-size: clamp(34px, 11vw, 48px); }
  .manifesto-facts span { font-size: 7px; letter-spacing: .06em; }

  .system-map { padding-block: 76px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading h2 { font-size: 14.5vw; line-height: .92; }
  .system-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 44px; }
  .system-rail article { min-height: 112px; padding: 14px; }
  .system-rail article:last-of-type { grid-column: 1 / -1; min-height: 92px; }
  .system-rail article strong { font-size: 21px; }

  .chapter { gap: 42px; padding-block: 76px; }
  .chapter-index { margin-bottom: 24px; }
  .chapter-copy h2 { margin-bottom: 27px; font-size: 15.5vw; line-height: .9; }
  .chapter-copy > p { max-width: 390px; font-size: 19px; line-height: 1.09; }
  .chapter-list { margin-top: 34px; }
  .chapter-list li { grid-template-columns: 34px 1fr; gap: 8px; padding: 13px 0; font-size: 13px; }
  .chapter-visual { min-height: 0; padding: 16px; box-shadow: 0 24px 60px rgba(57,55,50,.18); }
  .chapter-visual::before { top: -23px; font-size: 7px; }

  .board-top,
  .stock-dashboard > header,
  .analysis-dashboard > header,
  .sync-console > header { padding-bottom: 14px; }

  .ticket-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 9px; padding: 16px 0; }
  .ticket { min-height: 142px; }
  .ticket:nth-child(3) { grid-column: 1 / -1; }
  .compact-ticket { display: none; }
  .ticket header { padding: 8px 10px; }
  .ticket header strong { width: 31px; height: 31px; font-size: 15px; }
  .ticket > div { gap: 6px; padding: 12px 11px 14px; }
  .ticket b { font-size: 10px; line-height: 1.15; }
  .voice-command { padding-top: 15px; }
  .mic-icon { width: 15px; height: 15px; flex-basis: 15px; }
  .voice-command strong { font-size: 12px; }

  .waiter-console { padding: 14px; }
  .waiter-workspace { grid-template-columns: 1fr; min-height: 0; padding-top: 14px; }
  .waiter-categories { flex-direction: row; gap: 5px; padding: 8px; overflow-x: auto; scrollbar-width: none; }
  .waiter-categories::-webkit-scrollbar { display: none; }
  .waiter-categories > span { display: none; }
  .waiter-categories b { min-width: max-content; min-height: 34px; padding-inline: 11px; }
  .waiter-menu { padding: 12px; }
  .waiter-dishes article { min-height: 118px; }
  .waiter-draft { min-height: 390px; }
  .waiter-status { align-items: flex-start; flex-direction: column; }

  .trust-note { grid-template-columns: 42px 1fr; gap: 12px; margin-top: 34px; padding: 14px; }
  .trust-note > span { width: 42px; height: 42px; }

  .sync-console header strong,
  .stock-dashboard header strong,
  .analysis-dashboard header strong { font-size: 23px; }
  .sync-online { padding: 7px 9px; }
  .sync-flow { margin-top: 14px; }
  .sync-step { grid-template-columns: 30px 1fr 26px; gap: 9px; padding: 16px 0; }
  .sync-step strong { font-size: 12px; }
  .sync-step small { font-size: 10px; line-height: 1.2; }

  .local-review { grid-template-columns: 1fr; gap: 14px; margin-top: 18px; padding: 16px; }
  .local-review button { width: 100%; min-height: 46px; }

  .stock-kpis { grid-template-columns: 1fr 1fr; }
  .stock-kpis article:first-child { grid-column: 1 / -1; }
  .stock-kpis article { min-height: 90px; padding: 12px; }
  .stock-kpis strong { font-size: 26px; }
  .stock-table > div { grid-template-columns: 1.3fr .6fr .6fr; }
  .stock-table > div span:nth-child(3) { display: none; }
  .stock-table > div { gap: 7px; padding: 13px 10px; font-size: 10px; }

  .analysis-grid { grid-template-columns: 1fr; }
  .analysis-grid article { grid-column: auto; }
  .analysis-grid article { padding: 15px; }
  .revenue-card,
  .margin-card { min-height: 108px; }
  .analysis-grid strong { font-size: 36px; }
  .chart-card svg { height: 120px; }
  .analysis-grid article.alert-card { grid-template-columns: 40px 1fr; gap: 11px; }
  .alert-card > span { width: 38px; height: 38px; font-size: 20px; }
  .alert-card strong { font-size: 15px; }

  .feature-suite { padding-block: 76px; }
  .feature-suite-heading { grid-template-columns: 1fr; gap: 22px; }
  .feature-suite-heading > p { grid-column: auto; max-width: 420px; font-size: 19px; }
  .feature-suite-index { padding-top: 0; }
  .feature-suite-heading h2 { font-size: 14.5vw; line-height: .86; }
  .feature-suite-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 46px; }
  .tool-labels,
  .tool-haccp,
  .tool-orders,
  .tool-sentinel { grid-column: auto; }
  .tool-card { min-height: 520px; padding: 20px; }
  .tool-card h3,
  .tool-orders h3,
  .tool-sentinel h3 { font-size: 13.8vw; }
  .tool-card-copy { margin-top: 30px; }
  .tool-card-copy p { margin-top: 17px; font-size: 13px; }
  .tool-labels .tool-card-copy,
  .tool-haccp .tool-card-copy { padding-bottom: 30px; }
  .label-studio { min-height: 214px; padding-inline: 18px; }
  .label-stage { padding-left: 16px; }
  .measure-x { left: 16px; width: calc(100% - 16px); }
  .food-label { min-height: 126px; padding: 12px; }
  .food-label > strong { font-size: 20px; }
  .tool-sentinel .tool-card-copy { max-width: none; padding-top: 80px; }
  .sentinel-mark { top: 82px; right: 20px; width: 76px; height: 76px; }
  .sentinel-status > strong { font-size: 38px; }
  .control-manual { grid-template-columns: 1fr; }
  .manual-progress { padding: 20px; }
  .manual-list { padding-inline: 14px; }

  .operations { padding-block: 76px; }
  .operations-grid { grid-template-columns: 1fr; margin-top: 44px; }
  .operation-card:first-child { grid-column: auto; }
  .operation-card { min-height: 350px; padding: 20px; }
  .operation-card h3 { font-size: 40px !important; }
  .mini-calendar { margin-top: 28px; padding: 12px; }
  .days span { min-height: 38px; padding: 5px; }
  .pulse-icon { width: 135px; height: 135px; margin-top: 28px; }
  .version-stack { height: 155px; margin-top: 32px; }

  .closing-cta { min-height: 78svh; padding-block: 82px; }
  .closing-cta h2 { margin-block: 24px; font-size: 18vw; line-height: .82; }
  .closing-cta p { margin-bottom: 28px; font-size: 17px; }
  .closing-cta .button { width: 100%; max-width: 360px; min-height: 56px; }
  .orbit-one { width: 120vw; height: 120vw; }
  .orbit-two { width: 75vw; height: 75vw; }

  .site-footer { grid-template-columns: 1fr; gap: 25px; padding-block: 42px; text-align: left; }
  .site-footer > p { text-align: left; }
  .footer-links { justify-self: start; flex-wrap: wrap; }

  .button:hover,
  .button:focus-visible,
  .ticket:hover { transform: none; }
}

@media (max-width: 420px) {
  :root { --page-pad: 15px; }

  .hero-title { font-size: clamp(52px, 16.3vw, 69px); }
  .hero-copy > p { max-width: 310px; font-size: 18px; }
  .hero-cta-row { grid-template-columns: 1fr; gap: 8px; }
  .hero-cta-row .text-link { justify-self: start; }

  .manifesto h2 { font-size: 16.5vw; }
  .manifesto-facts div { min-height: 78px; padding-inline: 7px; }
  .manifesto-facts span { font-size: 6px; }

  .chapter-copy h2 { font-size: 15.2vw; }
  .ticket-grid { grid-template-columns: 1fr; }
  .ticket:nth-child(3) { grid-column: auto; }
  .waiter-dishes { grid-template-columns: 1fr; }
  .waiter-dishes article { min-height: 104px; }
  .stock-kpis { grid-template-columns: 1fr; }
  .stock-kpis article:first-child { grid-column: auto; }
  .stock-kpis article { min-height: 82px; }
  .tool-card { min-height: 500px; }
  .tool-card h3,
  .tool-orders h3,
  .tool-sentinel h3 { font-size: 13.4vw; }
  .order-total { grid-template-columns: 1fr; }
  .order-total strong { text-align: center; }
  .food-label-bottom i { width: 48px; }
  .operation-card h3 { font-size: 36px !important; }
}

@media (max-width: 720px) {
  .self-console { padding: 14px; }
  .self-experience { grid-template-columns: 1fr 1fr; gap: 9px; padding-top: 14px; }
  .self-phone { grid-column: 1 / -1; grid-row: 1; width: 100%; min-height: 430px; border-radius: 20px; }
  .self-entry-card,
  .self-activation { min-height: 315px; padding: 12px; }
  .self-qr { width: 92px; margin-top: 22px; }
  .self-code { font-size: 20px; }
  .activation-status { grid-template-columns: 28px 1fr; gap: 7px; padding: 8px; }
  .activation-status i { width: 28px; height: 28px; }
  .activation-status i::after { top: 6px; left: 10px; }
  .self-activation li { grid-template-columns: 24px 1fr; gap: 7px; padding-block: 10px; }
  .self-activation li > span { width: 24px; height: 24px; }
}

@media (max-width: 420px) {
  .self-experience { grid-template-columns: 1fr; }
  .self-phone { grid-column: auto; }
  .self-entry-card,
  .self-activation { min-height: 300px; }
}

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