:root {
  --bg: #080a0f;
  --bg-elevated: #0d1118;
  --surface: rgba(17, 22, 31, .74);
  --surface-strong: rgba(20, 26, 36, .91);
  --surface-soft: rgba(255, 255, 255, .045);
  --text: #f5f4f0;
  --muted: #aeb7c4;
  --muted-2: #7f8998;
  --line: rgba(255, 255, 255, .095);
  --line-strong: rgba(255, 255, 255, .16);
  --gold: #d29a1e;
  --gold-light: #f2c76e;
  --gold-deep: #a96f06;
  --blue: #61b7ff;
  --green: #35d37d;
  --danger: #ff7f66;
  --shadow: 0 30px 80px rgba(0, 0, 0, .42);
  --shadow-soft: 0 18px 42px rgba(0, 0, 0, .24);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 13px;
  --container: min(1260px, calc(100vw - 48px));
  --theme-transition: .32s cubic-bezier(.2,.8,.2,1);
}

html[data-theme="light"] {
  --bg: #f2f1ed;
  --bg-elevated: #fbfaf7;
  --surface: rgba(255, 255, 255, .76);
  --surface-strong: rgba(255, 255, 255, .94);
  --surface-soft: rgba(10, 14, 22, .035);
  --text: #11151c;
  --muted: #596372;
  --muted-2: #818a96;
  --line: rgba(14, 18, 25, .10);
  --line-strong: rgba(14, 18, 25, .17);
  --shadow: 0 30px 80px rgba(37, 31, 20, .13);
  --shadow-soft: 0 18px 42px rgba(37, 31, 20, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: background var(--theme-transition), color var(--theme-transition);
  overflow-x: clip;
}
body::selection { background: rgba(210, 154, 30, .32); }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
strong, h1, h2, h3 { font-family: Manrope, Inter, sans-serif; }

#networkCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -4;
  opacity: .4;
  pointer-events: none;
}
.ambient {
  position: fixed;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  filter: blur(125px);
  opacity: .18;
  z-index: -3;
  pointer-events: none;
  transition: opacity var(--theme-transition);
}
.ambient-a { top: -270px; right: -240px; background: #cc8b0e; }
.ambient-b { bottom: -310px; left: -280px; background: #253a6b; }
html[data-theme="light"] .ambient { opacity: .12; }
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.container { width: var(--container); margin-inline: auto; }
.section-pad { padding: 116px 0; position: relative; }
.section-contrast {
  background: linear-gradient(180deg, transparent, var(--surface-soft), transparent);
  border-top: 1px solid color-mix(in srgb, var(--line), transparent 18%);
  border-bottom: 1px solid color-mix(in srgb, var(--line), transparent 18%);
}
.glass {
  background: linear-gradient(145deg, color-mix(in srgb, var(--surface), white 3%), color-mix(in srgb, var(--surface), transparent 12%));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(22px) saturate(125%);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
  transition: background var(--theme-transition), border-color var(--theme-transition), box-shadow var(--theme-transition);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}
.nav-shell { min-height: 88px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-logo-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 9px 24px rgba(0,0,0,.24), 0 0 0 1px var(--line);
}
.brand-logo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.brand-copy { display: flex; flex-direction: column; gap: 3px; }
.brand-copy strong { letter-spacing: .26em; font-size: .94rem; }
.brand-copy small { color: var(--muted-2); font-size: .65rem; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 24px; }
.nav-links a { color: var(--muted); font-size: .91rem; font-weight: 600; transition: color .2s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-controls { display: flex; align-items: center; gap: 10px; }
.control {
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.control:hover { transform: translateY(-1px); border-color: var(--line-strong); }
.language-toggle { padding: 0 13px; gap: 8px; font-size: .75rem; font-weight: 800; letter-spacing: .08em; }
.language-toggle span:not(.control-divider) { opacity: .45; transition: opacity .2s ease, color .2s ease; }
.language-toggle span.active { opacity: 1; color: var(--gold-light); }
.control-divider { height: 16px; width: 1px; background: var(--line-strong); }
.theme-toggle { width: 42px; position: relative; }
.theme-toggle svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; position: absolute; transition: opacity .25s ease, transform .25s ease; }
html[data-theme="dark"] .sun-icon { opacity: 0; transform: rotate(-30deg) scale(.6); }
html[data-theme="dark"] .moon-icon { opacity: 1; transform: rotate(0) scale(1); }
html[data-theme="light"] .sun-icon { opacity: 1; transform: rotate(0) scale(1); }
html[data-theme="light"] .moon-icon { opacity: 0; transform: rotate(30deg) scale(.6); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 0; margin-left: auto; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 4px 0; border-radius: 999px; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: -.01em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: .82rem; }
.button-primary { color: #15120d; background: linear-gradient(135deg, var(--gold-deep), var(--gold-light)); box-shadow: 0 14px 30px rgba(210,154,30,.25); }
.button-primary:hover { box-shadow: 0 18px 38px rgba(210,154,30,.35); }
.button-outline { border-color: color-mix(in srgb, var(--gold), transparent 58%); background: color-mix(in srgb, var(--gold), transparent 90%); color: color-mix(in srgb, var(--gold-light), var(--text) 18%); }
.button-quiet { border-color: var(--line); background: var(--surface-soft); color: var(--text); }

.hero { min-height: 820px; display: flex; align-items: center; padding-top: 92px; }
.hero-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: center; }
.status-pill {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid color-mix(in srgb, var(--gold), transparent 62%);
  background: color-mix(in srgb, var(--gold), transparent 91%);
  border-radius: 999px;
  color: color-mix(in srgb, var(--gold-light), var(--text) 22%);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(53,211,125,.11), 0 0 18px rgba(53,211,125,.65); }
.hero h1 { font-size: clamp(3.4rem, 6.1vw, 6.65rem); line-height: .92; letter-spacing: -.065em; margin: 26px 0 18px; max-width: 780px; }
.hero-highlight { margin: 0 0 15px; font-size: clamp(1.28rem, 2vw, 1.72rem); line-height: 1.42; color: color-mix(in srgb, var(--gold-light), var(--text) 22%); font-weight: 700; max-width: 720px; }
.hero-text { margin: 0; max-width: 720px; color: var(--muted); font-size: 1.04rem; line-height: 1.78; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.proof { border-radius: var(--radius-md); padding: 18px; min-height: 120px; position: relative; overflow: hidden; }
.proof::after { content: ""; position: absolute; width: 90px; height: 90px; border-radius: 50%; right: -40px; bottom: -48px; background: color-mix(in srgb, var(--gold), transparent 83%); filter: blur(2px); }
.proof strong { font-size: 1.72rem; }
.proof > span { color: var(--gold-light); font-weight: 800; }
.proof small { display: block; color: var(--muted); line-height: 1.45; margin-top: 8px; }

.hero-stage { position: relative; min-height: 690px; perspective: 1600px; }
.hero-logo-emblem { position: absolute; width: 130px; height: 130px; overflow: hidden; border-radius: 34px; top: 0; right: 34px; z-index: 4; box-shadow: 0 24px 50px rgba(0,0,0,.32), 0 0 0 1px var(--line); animation: emblemFloat 7s ease-in-out infinite; }
.hero-logo-emblem img { width: 100%; height: 100%; object-fit: cover; }
@keyframes emblemFloat { 0%,100% { transform: translateY(0) rotate(2deg); } 50% { transform: translateY(-12px) rotate(-1deg); } }
.enterprise-console { position: absolute; inset: 62px 0 54px 14px; border-radius: 30px; overflow: hidden; transform: rotateY(-7deg) rotateX(2deg); box-shadow: var(--shadow); }
.enterprise-console::before { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 32%, rgba(255,255,255,.08) 48%, transparent 64%); transform: translateX(-120%); animation: consoleSheen 9s ease-in-out infinite; pointer-events: none; z-index: 5; }
@keyframes consoleSheen { 0%,65% { transform: translateX(-120%); } 86%,100% { transform: translateX(120%); } }
.console-topbar { height: 54px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 18px; border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--surface-strong), transparent 7%); }
.console-dots { display: flex; gap: 7px; }
.console-dots span { width: 8px; height: 8px; border-radius: 50%; background: color-mix(in srgb, var(--muted), transparent 45%); }
.console-title { font-size: .68rem; letter-spacing: .2em; color: var(--muted); font-weight: 800; }
.live-chip { justify-self: end; display: flex; align-items: center; gap: 7px; font-size: .64rem; color: var(--green); font-weight: 800; }
.live-chip i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 14px var(--green); }
.console-body { display: grid; grid-template-columns: 118px 1fr; height: calc(100% - 54px); }
.console-side { padding: 20px 12px; border-right: 1px solid var(--line); background: color-mix(in srgb, var(--surface-strong), transparent 13%); }
.side-monogram { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: linear-gradient(135deg, var(--gold-deep), var(--gold-light)); color: #16120c; font-weight: 900; margin: 0 auto 24px; }
.side-item { display: flex; flex-direction: column; align-items: center; gap: 7px; padding: 10px 4px; margin-bottom: 6px; border-radius: 13px; color: var(--muted-2); }
.side-item.active { background: color-mix(in srgb, var(--gold), transparent 88%); color: color-mix(in srgb, var(--gold-light), var(--text) 16%); }
.side-item em { font-style: normal; font-size: .59rem; text-align: center; }
.side-icon { width: 24px; height: 7px; border-radius: 999px; background: currentColor; opacity: .5; }
.console-main { padding: 20px; min-width: 0; }
.console-heading { display: flex; justify-content: space-between; gap: 14px; align-items: center; margin-bottom: 15px; }
.console-heading span { display: block; color: var(--muted-2); font-size: .72rem; }
.console-heading strong { display: block; margin-top: 5px; font-size: 1.05rem; }
.date-chip { padding: 9px 12px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface-soft); font-size: .68rem; color: var(--muted); }
.metric-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.metric { padding: 13px; border: 1px solid var(--line); background: var(--surface-soft); border-radius: 14px; }
.metric label { color: var(--muted-2); font-size: .64rem; display: block; }
.metric strong { font-size: .91rem; display: block; margin: 7px 0 4px; white-space: nowrap; }
.metric small { color: var(--muted-2); font-size: .62rem; }
.metric small.positive { color: var(--green); }
.metric small.warning { color: var(--danger); }
.console-grid { display: grid; grid-template-columns: 1.35fr .75fr; gap: 10px; margin-top: 10px; }
.chart-panel, .command-panel, .location-panel { border: 1px solid var(--line); background: var(--surface-soft); border-radius: 15px; padding: 13px; }
.panel-label { display: flex; justify-content: space-between; gap: 10px; color: var(--muted); font-size: .64rem; }
.panel-label em { font-style: normal; color: var(--muted-2); }
.enterprise-chart { height: 150px; margin-top: 9px; position: relative; overflow: hidden; color: var(--gold); }
.enterprise-chart svg { width: 100%; height: 100%; overflow: visible; }
.enterprise-chart .area { fill: url(#chartFill); }
.enterprise-chart .line { fill: none; stroke: currentColor; stroke-width: 3; vector-effect: non-scaling-stroke; filter: drop-shadow(0 0 6px rgba(210,154,30,.4)); stroke-dasharray: 650; stroke-dashoffset: 650; animation: drawLine 2.4s ease forwards .6s; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.scanline { position: absolute; top: 0; bottom: 0; width: 45px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent); animation: scanChart 5.2s linear infinite; }
@keyframes scanChart { from { left: -50px; } to { left: calc(100% + 50px); } }
.command-panel { grid-row: span 2; }
.alert-line { display: flex; gap: 10px; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid var(--line); }
.alert-line:last-child { border-bottom: 0; }
.alert-line > i { width: 8px; height: 8px; border-radius: 50%; margin-top: 4px; background: var(--gold); box-shadow: 0 0 12px currentColor; }
.alert-line > i.risk { background: var(--danger); }
.alert-line > i.success { background: var(--green); }
.alert-line strong { display: block; font-size: .68rem; }
.alert-line small { display: block; color: var(--muted-2); font-size: .59rem; line-height: 1.35; margin-top: 4px; }
.location-performance { display: grid; grid-template-columns: 62px 1fr 24px; gap: 8px; align-items: center; margin-top: 12px; font-size: .61rem; color: var(--muted); }
.location-performance div { height: 7px; background: color-mix(in srgb, var(--line), transparent 18%); border-radius: 999px; overflow: hidden; }
.location-performance i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--gold-deep), var(--gold-light)); }
.location-performance strong { font-size: .62rem; color: var(--text); }
.float-card { position: absolute; z-index: 6; display: flex; gap: 11px; align-items: center; padding: 13px 15px; border-radius: 17px; min-width: 244px; animation: floatCard 7s ease-in-out infinite; }
.float-card strong { display: block; font-size: .74rem; }
.float-card small { display: block; color: var(--muted); font-size: .62rem; margin-top: 3px; }
.float-icon { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; flex: 0 0 auto; background: color-mix(in srgb, var(--gold), transparent 84%); color: var(--gold-light); font-weight: 900; }
.float-reservation { left: -8px; top: 10px; }
.float-kitchen { right: -10px; bottom: 34px; animation-delay: .8s; }
.float-loyalty { left: 54px; bottom: 4px; animation-delay: 1.7s; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.ticker-shell { border-block: 1px solid var(--line); overflow: hidden; background: color-mix(in srgb, var(--surface-strong), transparent 28%); }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 20px; padding: 18px 0; animation: ticker 34s linear infinite; }
.ticker-track span { color: var(--muted); font-size: .71rem; font-weight: 800; letter-spacing: .16em; }
.ticker-track i { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px rgba(210,154,30,.6); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-heading { max-width: 860px; margin-bottom: 44px; }
.section-kicker { display: inline-flex; align-items: center; gap: 10px; color: color-mix(in srgb, var(--gold-light), var(--text) 16%); font-size: .74rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.section-kicker::before { content: ""; width: 28px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.section-heading h2, .deployment-copy h2, .pricing-copy h2, .contact-copy h2 { margin: 18px 0 14px; font-size: clamp(2.25rem, 4.3vw, 4.4rem); line-height: 1.02; letter-spacing: -.052em; }
.section-heading p, .deployment-copy > p, .pricing-copy > p, .contact-copy p { color: var(--muted); line-height: 1.75; font-size: 1.03rem; margin: 0; }

.role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.role-card { padding: 25px; border-radius: var(--radius-lg); position: relative; overflow: hidden; min-height: 240px; }
.role-card::after { content: ""; position: absolute; inset: auto -80px -100px auto; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--gold), transparent 75%), transparent 68%); }
.role-number { color: var(--gold-light); font-family: Manrope, sans-serif; font-size: .72rem; letter-spacing: .16em; margin-bottom: 34px; }
.role-card h3 { margin: 0 0 10px; font-size: 1.2rem; }
.role-card p { color: var(--muted); line-height: 1.65; margin: 0; }
.role-link { display: inline-block; margin-top: 22px; color: color-mix(in srgb, var(--gold-light), var(--text) 20%); font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.capability { padding: 23px; border-radius: 20px; min-height: 215px; }
.cap-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; color: var(--gold-light); background: color-mix(in srgb, var(--gold), transparent 87%); border: 1px solid color-mix(in srgb, var(--gold), transparent 72%); font-weight: 800; }
.capability h3 { margin: 24px 0 9px; font-size: 1.05rem; }
.capability p { margin: 0; color: var(--muted); line-height: 1.62; font-size: .94rem; }

.showcase-shell { border-radius: var(--radius-xl); padding: 12px; }
.showcase-nav { display: flex; align-items: center; gap: 7px; padding: 7px; overflow-x: auto; scrollbar-width: none; }
.showcase-nav::-webkit-scrollbar { display: none; }
.showcase-tab { flex: 0 0 auto; border: 1px solid transparent; background: transparent; color: var(--muted); padding: 11px 15px; border-radius: 999px; cursor: pointer; font-size: .83rem; font-weight: 700; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.showcase-tab.active { color: color-mix(in srgb, var(--gold-light), var(--text) 12%); background: color-mix(in srgb, var(--gold), transparent 87%); border-color: color-mix(in srgb, var(--gold), transparent 70%); }
.showcase-content { position: relative; min-height: 560px; border-top: 1px solid var(--line); }
.showcase-panel { display: none; padding: 25px; min-height: 560px; animation: panelIn .42s ease; }
.showcase-panel.active { display: block; }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.mock-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 22px; }
.mock-header strong { display: block; font-size: 1.18rem; }
.mock-header span { display: block; color: var(--muted); margin-top: 5px; font-size: .87rem; }
.legend { display: flex; gap: 12px; flex-wrap: wrap; }
.legend span { display: flex; align-items: center; gap: 7px; }
.legend i { width: 9px; height: 9px; border-radius: 50%; }
.legend em { font-style: normal; color: var(--muted); font-size: .73rem; }
.legend-free { background: var(--muted-2); }.legend-active { background: var(--green); }.legend-reserved { background: var(--gold); }
.floor-board { min-height: 455px; border-radius: 22px; padding: 26px; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 155px; gap: 20px; background: linear-gradient(120deg, color-mix(in srgb, var(--surface-soft), transparent 0%), transparent), repeating-linear-gradient(90deg, transparent 0 120px, color-mix(in srgb, var(--line), transparent 70%) 120px 121px); }
.floor-table { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 1px solid var(--line); background: linear-gradient(145deg, color-mix(in srgb, var(--surface), white 2%), color-mix(in srgb, var(--surface), transparent 10%)); border-radius: 28px; box-shadow: 0 14px 24px rgba(0,0,0,.12); }
.floor-table::before, .floor-table::after { content: ""; position: absolute; width: 20px; height: 11px; border-radius: 5px; background: color-mix(in srgb, var(--muted), transparent 55%); top: calc(50% - 5px); }
.floor-table::before { left: -13px; }.floor-table::after { right: -13px; }
.floor-table strong { font-size: 1.04rem; }.floor-table span { color: var(--muted); font-size: .75rem; }
.floor-table.table-2 { aspect-ratio: 1 / 1; justify-self: center; width: 138px; }
.floor-table.table-6 { grid-column: span 2; border-radius: 50%; }
.floor-table.table-round { border-radius: 50%; width: 155px; justify-self: center; }
.floor-table.active { border-color: rgba(53,211,125,.45); box-shadow: 0 0 0 3px rgba(53,211,125,.08), 0 18px 34px rgba(53,211,125,.12); }
.floor-table.reserved { border-color: rgba(210,154,30,.5); box-shadow: 0 0 0 3px rgba(210,154,30,.08), 0 18px 34px rgba(210,154,30,.12); }
.floor-table.locked { border-color: rgba(97,183,255,.44); box-shadow: 0 0 0 3px rgba(97,183,255,.07), 0 18px 34px rgba(97,183,255,.1); }
.amount { color: var(--gold-light); font-size: 1.75rem; font-weight: 800; }
.order-progress { display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto; align-items: start; gap: 10px; padding: 34px 8px; }
.progress-step { display: flex; flex-direction: column; align-items: center; gap: 9px; color: var(--muted); min-width: 76px; }
.progress-step span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); background: var(--surface-soft); }
.progress-step strong { font-size: .72rem; text-align: center; }
.progress-step.done { color: color-mix(in srgb, var(--gold-light), var(--text) 14%); }
.progress-step.done span { background: color-mix(in srgb, var(--gold), transparent 83%); border-color: color-mix(in srgb, var(--gold), transparent 52%); }
.progress-line { height: 1px; background: var(--line); margin-top: 19px; }
.progress-line.done { background: linear-gradient(90deg, var(--gold-deep), var(--gold-light)); }
.order-list { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.order-list > div { display: grid; grid-template-columns: 1fr auto auto; gap: 28px; padding: 17px 18px; border-bottom: 1px solid var(--line); align-items: center; }
.order-list > div:last-child { border-bottom: 0; }
.order-list em { color: var(--muted); font-style: normal; }.order-list strong { font-size: .9rem; }
.order-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.order-meta span { padding: 9px 12px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface-soft); color: var(--muted); font-size: .74rem; }
.reservation-grid, .inventory-grid, .loyalty-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.reservation-calendar, .reservation-list, .recipe-card, .mrp-card, .customer-card, .history-list { border: 1px solid var(--line); border-radius: 22px; background: var(--surface-soft); padding: 20px; }
.calendar-head { display: flex; justify-content: space-between; gap: 14px; }.calendar-head span { color: var(--muted); }
.calendar-days, .calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 7px; text-align: center; }
.calendar-days { color: var(--muted-2); font-size: .7rem; margin: 22px 0 8px; }
.calendar-grid span { height: 42px; display: grid; place-items: center; border-radius: 12px; font-size: .78rem; border: 1px solid transparent; }
.calendar-grid span.selected { background: color-mix(in srgb, var(--gold), transparent 84%); border-color: color-mix(in srgb, var(--gold), transparent 52%); color: var(--gold-light); }
.reservation-list article { display: flex; justify-content: space-between; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }.reservation-list article:last-child { border-bottom: 0; }
.reservation-list strong { display: block; }.reservation-list span { color: var(--muted); display: block; margin-top: 6px; font-size: .82rem; }.reservation-list em { font-style: normal; color: var(--gold-light); font-size: .72rem; }
.recipe-chip { padding: 8px 10px; border-radius: 999px; background: color-mix(in srgb, var(--gold), transparent 86%); border: 1px solid color-mix(in srgb, var(--gold), transparent 65%); color: var(--gold-light); font-size: .7rem; }
.ingredient-row { display: grid; grid-template-columns: 1fr auto 1.2fr; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }.ingredient-row:last-child { border-bottom: 0; }.ingredient-row em { color: var(--muted); font-style: normal; font-size: .78rem; }.ingredient-row > div { height: 8px; background: var(--line); border-radius: 999px; overflow: hidden; }.ingredient-row i { display: block; height: 100%; background: linear-gradient(90deg, var(--gold-deep), var(--gold-light)); }.ingredient-row.warning i { background: linear-gradient(90deg, #d34b36, #ff8d69); }
.mrp-card { display: flex; flex-direction: column; justify-content: center; }.mrp-card > strong { font-size: 1.5rem; line-height: 1.35; margin: 22px 0 12px; }.mrp-card p { color: var(--muted); line-height: 1.66; }
.mrp-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 20px; }.mrp-stats div { padding: 13px; border-radius: 14px; border: 1px solid var(--line); }.mrp-stats span { display: block; color: var(--muted-2); font-size: .68rem; }.mrp-stats strong { display: block; margin-top: 8px; }
.document-flow { display: grid; grid-template-columns: 1fr 150px 1fr; gap: 18px; align-items: center; min-height: 470px; }.invoice-card, .receipt-card { border: 1px solid var(--line); border-radius: 22px; background: var(--surface-soft); padding: 20px; }.invoice-head { display: flex; justify-content: space-between; gap: 14px; margin-bottom: 16px; }.invoice-head span { color: var(--muted); }.invoice-line { display: grid; grid-template-columns: 1fr auto auto; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line); }.invoice-line em { color: var(--muted); font-style: normal; }.invoice-line strong { font-size: .82rem; }.invoice-total { display: flex; justify-content: space-between; gap: 14px; margin-top: 18px; color: var(--gold-light); }
.flow-arrow { display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--muted); }.flow-arrow span { padding: 9px 12px; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--gold), transparent 62%); color: var(--gold-light); }.flow-arrow i { font-style: normal; font-size: 2rem; color: var(--gold); }.flow-arrow small { text-align: center; }
.receipt-card { text-align: center; padding-block: 40px; }.success-icon { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 50%; margin: 0 auto 18px; background: rgba(53,211,125,.12); border: 1px solid rgba(53,211,125,.3); color: var(--green); font-size: 1.5rem; }.receipt-card > strong { font-size: 1.2rem; }.receipt-card p { color: var(--muted); line-height: 1.55; }.supplier-score { display: flex; justify-content: space-between; margin-top: 24px; padding: 14px; border-radius: 14px; background: var(--surface-soft); border: 1px solid var(--line); }.supplier-score strong { color: var(--gold-light); }
.analytics-mock { min-height: 500px; }.analytics-top { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }.analytics-stat { padding: 18px; border-radius: 17px; border: 1px solid var(--line); background: var(--surface-soft); }.analytics-stat span { display: block; color: var(--muted-2); font-size: .72rem; }.analytics-stat strong { display: block; font-size: 1.18rem; margin: 9px 0 5px; }.analytics-stat em { color: var(--green); font-size: .72rem; font-style: normal; }.analytics-stat em.danger { color: var(--danger); }
.analytics-lower { display: grid; grid-template-columns: 1.3fr .7fr; gap: 14px; margin-top: 14px; }.bar-chart, .margin-table { min-height: 320px; border-radius: 20px; border: 1px solid var(--line); background: var(--surface-soft); padding: 22px; }.bar-chart { display: flex; align-items: flex-end; gap: 14px; }.bar-chart i { flex: 1; display: block; border-radius: 10px 10px 3px 3px; background: linear-gradient(180deg, var(--gold-light), var(--gold-deep)); box-shadow: 0 0 18px rgba(210,154,30,.18); }.margin-table div { display: flex; justify-content: space-between; gap: 12px; padding: 17px 0; border-bottom: 1px solid var(--line); }.margin-table div:last-child { border-bottom: 0; }.margin-table span { color: var(--muted); }.margin-table strong { color: var(--gold-light); }
.customer-card { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; min-height: 420px; position: relative; overflow: hidden; }.customer-card::before { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(210,154,30,.22), transparent 66%); top: -170px; }.customer-level { letter-spacing: .2em; color: var(--gold-light); font-size: .72rem; font-weight: 800; }.customer-card > span { color: var(--muted); margin-top: 18px; }.customer-card > strong { font-size: 3.2rem; margin-top: 6px; }.customer-card strong small { color: var(--muted); font-size: .8rem; }.customer-card p { color: var(--muted); max-width: 380px; line-height: 1.6; }.customer-card button { border: 1px solid color-mix(in srgb, var(--gold), transparent 55%); background: color-mix(in srgb, var(--gold), transparent 84%); color: var(--gold-light); border-radius: 999px; padding: 12px 18px; font-weight: 800; }
.history-title { display: flex; justify-content: space-between; gap: 14px; margin-bottom: 10px; }.history-title span { color: var(--gold-light); font-size: .75rem; }.history-list article { display: flex; justify-content: space-between; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }.history-list article:last-child { border-bottom: 0; }.history-list strong { display: block; }.history-list article span { display: block; color: var(--muted); margin-top: 6px; font-size: .76rem; }.history-list em { font-style: normal; color: var(--gold-light); }

.deployment-layout, .pricing-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.deployment-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }.deployment-points > div { padding: 17px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface-soft); }.deployment-points strong { display: block; margin-bottom: 7px; }.deployment-points span { color: var(--muted); font-size: .85rem; line-height: 1.5; }
.deployment-system { min-height: 590px; border-radius: 50%; position: relative; display: grid; place-items: center; overflow: hidden; box-shadow: var(--shadow); }
.deployment-system::after { content: ""; position: absolute; inset: 8%; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--gold), transparent 80%), transparent 64%); }
.system-core { width: 150px; height: 150px; border-radius: 38px; overflow: hidden; z-index: 4; box-shadow: 0 24px 60px rgba(0,0,0,.35), 0 0 0 10px color-mix(in srgb, var(--gold), transparent 92%); }.system-core img { width: 100%; height: 100%; object-fit: cover; }
.system-orbit { position: absolute; border: 1px solid var(--line); border-radius: 50%; animation: rotateOrbit 22s linear infinite; }.system-orbit span { position: absolute; top: 50%; right: -21px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--surface-strong); border: 1px solid var(--line); color: var(--gold-light); font-size: .65rem; font-weight: 800; }
.orbit-one { width: 260px; height: 260px; }.orbit-two { width: 390px; height: 390px; animation-direction: reverse; animation-duration: 29s; }.orbit-three { width: 520px; height: 520px; animation-duration: 37s; }
@keyframes rotateOrbit { to { transform: rotate(360deg); } }
.orbit-label { position: absolute; z-index: 5; padding: 10px 13px; border-radius: 999px; background: var(--surface-strong); border: 1px solid var(--line); font-size: .68rem; font-weight: 800; color: var(--muted); }.label-a { top: 14%; left: 28%; }.label-b { right: 5%; top: 39%; }.label-c { bottom: 15%; right: 27%; }.label-d { left: 5%; bottom: 35%; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.process-step { display: grid; grid-template-columns: auto 1fr; gap: 17px; padding: 28px 22px 0; border-right: 1px solid var(--line); }.process-step:last-child { border-right: 0; }.process-step > span { color: var(--gold-light); font-size: .75rem; font-weight: 800; letter-spacing: .12em; }.process-step h3 { margin: 0 0 10px; font-size: 1.05rem; }.process-step p { color: var(--muted); line-height: 1.64; margin: 0; font-size: .91rem; }

.pricing-section { background: radial-gradient(circle at 80% 45%, color-mix(in srgb, var(--gold), transparent 88%), transparent 36%); }
.pricing-copy p + p { margin-top: 15px; }
.pricing-copy .button { margin-top: 28px; }
.pricing-card { border-radius: 30px; padding: 36px; border-color: color-mix(in srgb, var(--gold), transparent 66%); position: relative; overflow: hidden; box-shadow: var(--shadow); }
.pricing-card::after { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; top: -210px; right: -150px; background: radial-gradient(circle, rgba(210,154,30,.32), transparent 67%); }
.pricing-label { color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; }
.pricing-value { display: flex; align-items: flex-end; gap: 10px; margin: 14px 0 0; }.pricing-value strong { font-size: 6.4rem; line-height: .85; letter-spacing: -.08em; }.pricing-value span { color: var(--gold-light); font-size: 1.2rem; font-weight: 800; padding-bottom: 8px; }
.pricing-period { color: var(--muted); margin-top: 8px; }
.pricing-meeting { margin: 24px 0; padding: 14px 16px; border-radius: 14px; background: color-mix(in srgb, var(--gold), transparent 89%); border: 1px solid color-mix(in srgb, var(--gold), transparent 70%); color: color-mix(in srgb, var(--gold-light), var(--text) 12%); font-weight: 700; }
.pricing-card ul { list-style: none; margin: 0 0 22px; padding: 0; }.pricing-card li { position: relative; padding: 10px 0 10px 25px; color: var(--muted); border-bottom: 1px solid var(--line); }.pricing-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); }.pricing-card small { color: var(--muted-2); line-height: 1.55; display: block; }

.contact-section { padding-top: 30px; }
.contact-card { border-radius: 34px; padding: 42px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 40px; align-items: center; position: relative; overflow: hidden; }
.contact-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, color-mix(in srgb, var(--gold), transparent 92%), transparent 52%); pointer-events: none; }
.contact-actions { display: flex; flex-direction: column; gap: 12px; }.contact-actions span { color: var(--muted); text-align: center; font-size: .83rem; }
.site-footer { padding: 28px 0 46px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.2fr auto auto; gap: 30px; align-items: center; }
.footer-brand { display: flex; gap: 13px; align-items: center; }.footer-brand .brand-logo-wrap { width: 56px; height: 56px; }.footer-brand strong { letter-spacing: .24em; }.footer-brand p { margin: 5px 0 0; color: var(--muted); font-size: .77rem; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }.footer-links a { color: var(--muted); font-size: .8rem; }.footer-copy { color: var(--muted-2); font-size: .75rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .72s cubic-bezier(.2,.8,.2,1), transform .72s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }.delay-1 { transition-delay: .09s; }.delay-2 { transition-delay: .18s; }.delay-3 { transition-delay: .27s; }
.tilt-card { transform-style: preserve-3d; will-change: transform; }

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

@media (max-width: 1180px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; order: 2; }
  .nav-controls { margin-left: auto; order: 3; }
  .nav-links.open { display: flex; position: absolute; top: 88px; left: 24px; right: 24px; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; border: 1px solid var(--line); background: var(--surface-strong); border-radius: 20px; box-shadow: var(--shadow); }
  .nav-links.open a { padding: 13px; border-radius: 12px; }.nav-links.open a:hover { background: var(--surface-soft); }
  .hero-layout { grid-template-columns: 1fr; }.hero-stage { min-height: 720px; }.hero-copy { max-width: 900px; }.enterprise-console { inset-inline: 3%; }
  .role-grid, .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .deployment-layout, .pricing-layout { gap: 34px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }.process-step:nth-child(2) { border-right: 0; }
}

@media (max-width: 900px) {
  .section-pad { padding: 88px 0; }
  .hero { min-height: auto; padding-top: 64px; }
  .hero h1 { font-size: clamp(3rem, 11vw, 5.2rem); }
  .proof-grid { grid-template-columns: 1fr; }
  .hero-stage { min-height: 650px; }.hero-logo-emblem { width: 96px; height: 96px; right: 8px; }.enterprise-console { inset: 58px 0 35px; transform: none; }.float-card { display: none; }
  .role-grid, .capability-grid, .deployment-layout, .pricing-layout, .contact-card, .reservation-grid, .inventory-grid, .loyalty-grid, .analytics-lower { grid-template-columns: 1fr; }
  .floor-board { grid-template-columns: repeat(2, 1fr); }.floor-table.table-6 { grid-column: span 1; }
  .document-flow { grid-template-columns: 1fr; }.flow-arrow { flex-direction: row; }.flow-arrow i { transform: rotate(90deg); }
  .analytics-top { grid-template-columns: repeat(2, 1fr); }.deployment-system { min-height: 540px; }.footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  :root { --container: min(1260px, calc(100vw - 28px)); }
  .nav-shell { min-height: 76px; gap: 10px; }.brand-logo-wrap { width: 44px; height: 44px; border-radius: 13px; }.brand-copy small { display: none; }.brand-copy strong { font-size: .82rem; }.nav-controls { gap: 7px; }.nav-cta { display: none; }
  .section-pad { padding: 74px 0; }.hero { padding-top: 44px; }.hero h1 { font-size: clamp(2.6rem, 14vw, 4rem); }.hero-highlight { font-size: 1.15rem; }.hero-text { font-size: .97rem; }.hero-actions { flex-direction: column; }.hero-actions .button { width: 100%; }
  .hero-stage { min-height: 570px; }.enterprise-console { top: 50px; }.console-body { grid-template-columns: 72px 1fr; }.console-side { padding-inline: 7px; }.side-item em { display: none; }.metric-row { grid-template-columns: repeat(2, 1fr); }.console-grid { grid-template-columns: 1fr; }.command-panel { display: none; }.enterprise-chart { height: 118px; }.hero-logo-emblem { width: 76px; height: 76px; border-radius: 23px; }
  .role-grid, .capability-grid { grid-template-columns: 1fr; }.showcase-panel { padding: 16px; }.showcase-content { min-height: 520px; }.mock-header { flex-direction: column; }.floor-board { padding: 20px; grid-template-columns: 1fr; grid-auto-rows: 132px; }.floor-table.table-2, .floor-table.table-round { width: auto; aspect-ratio: auto; }.order-progress { grid-template-columns: 1fr; }.progress-line { display: none; }.progress-step { flex-direction: row; justify-content: flex-start; min-width: auto; }.order-list > div { grid-template-columns: 1fr auto; }.order-list > div em { display: none; }
  .reservation-list article { flex-direction: column; }.mrp-stats { grid-template-columns: 1fr; }.ingredient-row { grid-template-columns: 1fr auto; }.ingredient-row > div { grid-column: 1 / -1; }.analytics-top { grid-template-columns: 1fr; }.deployment-points { grid-template-columns: 1fr; }.deployment-system { min-height: 430px; }.orbit-three { width: 400px; height: 400px; }.orbit-two { width: 300px; height: 300px; }.orbit-one { width: 210px; height: 210px; }.system-core { width: 115px; height: 115px; }.orbit-label { display: none; }
  .process-grid { grid-template-columns: 1fr; }.process-step { border-right: 0; }.pricing-card { padding: 26px; }.pricing-value strong { font-size: 5rem; }.contact-card { padding: 26px; }
}


/* V2.1 — calmer, more spacious presentation */
#networkCanvas { opacity: .22; }
.ambient { opacity: .12; }
html[data-theme="light"] .ambient { opacity: .075; }
.section-pad { padding: 146px 0; }
.hero { min-height: 880px; padding-top: 112px; }
.hero-layout { grid-template-columns: .92fr 1.08fr; gap: 72px; }
.hero h1 { font-size: clamp(3.2rem, 5.55vw, 5.75rem); line-height: .97; max-width: 720px; margin: 30px 0 22px; }
.hero-highlight { max-width: 650px; margin-bottom: 18px; }
.hero-text { max-width: 630px; line-height: 1.82; }
.hero-actions { margin: 34px 0 28px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 0; color: var(--muted); font-size: .84rem; line-height: 1.5; }
.hero-facts span { max-width: 190px; padding: 0 22px; border-left: 1px solid var(--line); }
.hero-facts span:first-child { padding-left: 0; border-left: 0; }
.hero-stage { min-height: 650px; }
.float-card { max-width: 260px; }
.section-heading { max-width: 780px; margin-bottom: 62px; }
.section-heading h2, .deployment-copy h2, .pricing-copy h2, .contact-copy h2 { font-size: clamp(2.2rem, 3.8vw, 3.9rem); line-height: 1.08; }
.section-heading p, .deployment-copy > p, .pricing-copy > p, .contact-copy p { max-width: 700px; line-height: 1.82; }
.role-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
.role-card { min-height: 215px; padding: 34px; }
.role-card p { max-width: 470px; }
.capability-grid { gap: 24px; }
.capability { min-height: 205px; padding: 30px; }
.capability h3 { margin-top: 28px; font-size: 1.12rem; }
.showcase-shell { padding: 18px; }
.showcase-nav { gap: 10px; padding: 10px 8px 18px; }
.showcase-tab { padding: 12px 18px; }
.showcase-content { min-height: 600px; }
.deployment-layout, .pricing-layout { gap: 90px; }
.deployment-points { gap: 18px; margin-top: 36px; }
.deployment-points > div { padding: 21px; }
.process-grid { gap: 0; }
.process-step { padding: 36px 28px 4px; min-height: 190px; }
.pricing-copy .button { margin-top: 34px; }
.pricing-card { padding: 44px; }
.contact-section { padding-top: 64px; }
.contact-card { padding: 54px; gap: 64px; }

@media (max-width: 1180px) {
  .hero-layout { gap: 48px; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .section-pad { padding: 104px 0; }
  .hero { padding-top: 72px; }
  .hero-facts span { max-width: none; }
  .role-grid, .capability-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .section-pad { padding: 84px 0; }
  .hero { padding-top: 52px; }
  .hero-facts { flex-direction: column; gap: 12px; }
  .hero-facts span { padding: 0; border-left: 0; }
  .role-card, .capability { padding: 26px; min-height: auto; }
  .section-heading { margin-bottom: 42px; }
  .contact-card { padding: 30px; }
}


/* V2.2 — requested content and visual refinements */
.hero-layout { grid-template-columns: .9fr 1.1fr; gap: 64px; }
.hero h1 { font-size: clamp(2.9rem, 4.15vw, 4.65rem); line-height: 1.01; letter-spacing: -.055em; max-width: 660px; }
.hero-highlight { font-size: clamp(1.14rem, 1.55vw, 1.42rem); max-width: 650px; line-height: 1.5; }
.hero-text { font-size: 1.02rem; max-width: 600px; }
.hero-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 30px; max-width: 690px; }
.hero-benefit { display: flex; align-items: center; gap: 11px; min-height: 74px; padding: 14px 15px; border: 1px solid var(--line); border-radius: 17px; background: color-mix(in srgb, var(--surface), transparent 10%); box-shadow: 0 12px 28px rgba(0,0,0,.06); }
.hero-benefit svg { width: 23px; height: 23px; flex: 0 0 23px; fill: none; stroke: var(--gold); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.hero-benefit span { color: var(--muted); font-size: .76rem; line-height: 1.42; font-weight: 650; }
.hero-stage { min-height: 640px; }
.hero-device-scene { position: absolute; inset: 12px 0 0; }
.desktop-display { position: absolute; left: 0; top: 72px; width: 83%; z-index: 1; }
.display-frame { position: relative; border: 10px solid color-mix(in srgb, var(--text), #0b0e13 90%); border-bottom-width: 15px; border-radius: 21px; background: #090b0e; box-shadow: 0 34px 70px rgba(0,0,0,.26), inset 0 0 0 1px rgba(255,255,255,.08); overflow: hidden; }
.display-camera { position: absolute; top: 4px; left: 50%; width: 5px; height: 5px; border-radius: 50%; background: #2e343b; z-index: 4; }
.staff-screen { aspect-ratio: 16/10; background: color-mix(in srgb, var(--surface-strong), var(--bg) 12%); color: var(--text); overflow: hidden; }
.staff-topbar { height: 54px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; padding: 0 18px; border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--surface), transparent 6%); }
.staff-brand { display: flex; align-items: center; gap: 8px; font-size: .67rem; letter-spacing: .13em; }
.staff-brand span { width: 27px; height: 27px; border-radius: 8px; display: grid; place-items: center; color: #16120c; font-weight: 900; background: linear-gradient(135deg,var(--gold-deep),var(--gold-light)); }
.staff-location { text-align: center; }
.staff-location small { display: block; color: var(--muted-2); font-size: .58rem; }
.staff-location strong { font-size: .82rem; }
.staff-user { justify-self: end; display: flex; align-items: center; gap: 7px; color: var(--green); font-size: .62rem; font-weight: 700; }
.staff-user i { width: 7px; height: 7px; background: var(--green); border-radius: 50%; box-shadow: 0 0 10px rgba(53,211,125,.7); }
.staff-layout { display: grid; grid-template-columns: 88px 1fr; height: calc(100% - 54px); }
.staff-sidebar { border-right: 1px solid var(--line); padding: 13px 9px; background: color-mix(in srgb,var(--surface),transparent 10%); }
.staff-sidebar span { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 7px; padding: 9px 5px; border-radius: 10px; color: var(--muted-2); }
.staff-sidebar span.active { background: color-mix(in srgb,var(--gold),transparent 88%); color: var(--gold-light); }
.staff-sidebar i { width: 22px; height: 5px; border-radius: 999px; background: currentColor; opacity: .65; }
.staff-sidebar em { font-style: normal; font-size: .52rem; }
.staff-main { padding: 14px; min-width: 0; }
.staff-summary { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.staff-summary > div { padding: 10px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface-soft); }
.staff-summary small { display: block; font-size: .52rem; color: var(--muted-2); margin-bottom: 4px; }
.staff-summary strong { font-size: .95rem; }
.staff-tables-preview { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin: 10px 0; }
.mini-table { min-height: 68px; border: 1px solid var(--line); border-radius: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; background: var(--surface-soft); position: relative; }
.mini-table::before,.mini-table::after { content:""; position:absolute; top:50%; width:7px; height:12px; border-radius:3px; background: color-mix(in srgb,var(--muted),transparent 55%); transform:translateY(-50%); }
.mini-table::before { left:-5px; }.mini-table::after { right:-5px; }
.mini-table b { font-size: .7rem; }.mini-table span { color: var(--muted); font-size: .48rem; }
.mini-table.order { border-color: rgba(97,183,255,.44); box-shadow: 0 0 0 2px rgba(97,183,255,.06); }
.mini-table.ready { border-color: rgba(53,211,125,.45); box-shadow: 0 0 0 2px rgba(53,211,125,.06); }
.staff-order-card { display: grid; grid-template-columns: 1fr 1.3fr auto; gap: 10px; align-items: center; padding: 10px 11px; border-radius: 11px; border: 1px solid var(--line); background: var(--surface-soft); }
.staff-order-card small { display:block; color:var(--muted-2); font-size:.5rem; }.staff-order-card strong{font-size:.7rem}.staff-order-lines{display:flex;flex-direction:column;gap:3px;font-size:.55rem;color:var(--muted)}
.staff-order-card button { border: 0; border-radius: 8px; padding: 8px 9px; background: color-mix(in srgb,var(--gold),transparent 84%); color: var(--gold-light); font-size: .5rem; font-weight: 800; }
.display-neck { width: 46px; height: 50px; margin: 0 auto; background: linear-gradient(90deg,#1c2026,#444a52 50%,#1d2126); box-shadow: inset 0 0 0 1px rgba(255,255,255,.06); }
.display-base { width: 190px; height: 13px; margin: -1px auto 0; border-radius: 50% 50% 12px 12px; background: linear-gradient(180deg,#545a62,#20242a); box-shadow: 0 12px 22px rgba(0,0,0,.22); }
.customer-phone { position: absolute; right: 2%; top: 172px; width: 28%; z-index: 3; transform: rotate(1.5deg); filter: drop-shadow(0 28px 36px rgba(0,0,0,.28)); }
.phone-frame { padding: 9px; border-radius: 34px; background: linear-gradient(145deg,#11151a,#30363d); box-shadow: inset 0 0 0 1px rgba(255,255,255,.16); position: relative; }
.phone-notch { position:absolute; z-index:4; top:8px; left:50%; transform:translateX(-50%); width:56px; height:15px; background:#090b0e; border-radius:0 0 11px 11px; }
.ordering-screen { min-height: 430px; border-radius: 27px; padding: 28px 11px 12px; background: color-mix(in srgb,var(--surface-strong),var(--bg) 8%); overflow:hidden; }
.ordering-head { display:flex;align-items:center;gap:8px;margin-bottom:11px }.ordering-logo{width:28px;height:28px;border-radius:8px;display:grid;place-items:center;background:linear-gradient(135deg,var(--gold-deep),var(--gold-light));color:#15110b;font-weight:900;font-size:.65rem}.ordering-head small{display:block;color:var(--muted-2);font-size:.47rem}.ordering-head strong{font-size:.66rem}
.ordering-table{display:flex;justify-content:space-between;align-items:center;padding:8px 9px;border-radius:10px;background:color-mix(in srgb,var(--gold),transparent 88%);color:var(--gold-light);font-size:.54rem}.ordering-table strong{font-size:.68rem}
.ordering-search{margin:10px 0;padding:9px;border:1px solid var(--line);border-radius:9px;color:var(--muted-2);font-size:.5rem;background:var(--surface-soft)}
.ordering-cats{display:flex;gap:5px;overflow:hidden;margin-bottom:10px}.ordering-cats span{padding:6px 8px;border-radius:999px;background:var(--surface-soft);font-size:.46rem;color:var(--muted)}.ordering-cats span.active{background:color-mix(in srgb,var(--gold),transparent 82%);color:var(--gold-light)}
.menu-item{display:grid;grid-template-columns:1fr auto auto;gap:6px;align-items:center;padding:9px 0;border-bottom:1px solid var(--line)}.menu-item strong{display:block;font-size:.56rem}.menu-item small{display:block;margin-top:2px;color:var(--muted-2);font-size:.42rem;white-space:nowrap}.menu-item em{font-style:normal;font-size:.52rem;font-weight:800}.menu-item button{width:21px;height:21px;border:0;border-radius:7px;background:color-mix(in srgb,var(--gold),transparent 82%);color:var(--gold-light);font-weight:900}
.ordering-cart{margin-top:12px;padding:9px;border-radius:12px;background:linear-gradient(135deg,var(--gold-deep),var(--gold-light));color:#16120c;display:flex;align-items:center;justify-content:space-between;gap:8px}.ordering-cart small{display:block;font-size:.43rem;opacity:.72}.ordering-cart strong{font-size:.62rem}.ordering-cart button{border:0;background:#15120d;color:#fff;border-radius:8px;padding:8px 11px;font-size:.46rem;font-weight:800}
.device-bridge-pill { position:absolute; left: 22%; bottom: 18px; z-index:5; display:flex;align-items:center;gap:10px;padding:10px 14px;border-radius:999px;font-size:.67rem;color:var(--muted);animation:emblemFloat 7s ease-in-out infinite; }.device-bridge-pill span{width:8px;height:8px;border-radius:50%;background:var(--green);box-shadow:0 0 0 5px rgba(53,211,125,.09),0 0 14px rgba(53,211,125,.5)}

.role-grid-detailed { grid-template-columns: repeat(2,1fr); gap: 26px; }
.role-detail { min-height: 0; padding: 32px 34px; overflow: visible; }
.role-detail::after { display:none; }
.role-head { display:flex;align-items:center;gap:14px;padding-bottom:20px;margin-bottom:2px;border-bottom:1px solid var(--line); }
.role-head .role-number { margin:0; flex:0 0 auto; }
.role-head h3 { margin:0; font-size:1.18rem; }
.role-list { list-style:none; padding:0; margin:0; }
.role-list li { position:relative; padding:13px 0 13px 22px; color:var(--muted); line-height:1.5; font-size:.93rem; border-bottom:1px solid color-mix(in srgb,var(--line),transparent 15%); }
.role-list li:last-child { border-bottom:0; padding-bottom:2px; }
.role-list li::before { content:""; position:absolute; left:0; top:20px; width:7px; height:7px; border-radius:50%; background:linear-gradient(135deg,var(--gold-deep),var(--gold-light)); box-shadow:0 0 0 4px color-mix(in srgb,var(--gold),transparent 90%); }

.cap-icon { width:52px;height:52px;border-radius:15px; }
.cap-icon svg { width:27px;height:27px; fill:none;stroke:currentColor;stroke-width:1.65;stroke-linecap:round;stroke-linejoin:round; }
.capability { transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease; }
.capability:hover { transform:translateY(-5px);border-color:color-mix(in srgb,var(--gold),transparent 62%);box-shadow:0 24px 45px rgba(0,0,0,.11); }

.floor-mock-header { margin-bottom:16px; }
.floor-realistic { position:relative; min-height:520px; border-radius:24px; overflow:hidden; background-color:#855b37; background-image:linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px),repeating-linear-gradient(0deg,transparent 0 72px,rgba(41,21,9,.22) 72px 74px),repeating-linear-gradient(90deg,rgba(48,25,12,.16) 0 2px,transparent 2px 182px),linear-gradient(90deg,#76502f,#8e6540 48%,#6e492c); box-shadow:inset 0 0 80px rgba(39,20,7,.3), inset 0 0 0 1px rgba(255,255,255,.08); }
.floor-realistic::after { content:"";position:absolute;inset:0;pointer-events:none;background:repeating-linear-gradient(15deg,transparent 0 23px,rgba(255,255,255,.018) 24px,transparent 25px);mix-blend-mode:screen;opacity:.45; }
.real-table { position:absolute; width:16%; height:17%; z-index:2; filter:drop-shadow(0 12px 10px rgba(35,20,9,.38)); transform-origin:center; }
.real-table .tabletop { position:absolute; inset:12%; display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;border:1px solid rgba(108,73,42,.62); color:#17120d; background-color:#d7b58a; background-image:repeating-linear-gradient(90deg,rgba(111,76,43,.08) 0 2px,transparent 2px 34px),linear-gradient(145deg,#e4c69f,#caa77d); box-shadow:inset 0 0 16px rgba(255,255,255,.42),inset 0 0 0 2px rgba(255,255,255,.18),0 3px 0 #a77f58; }
.real-table.rect .tabletop { border-radius:14px; }
.real-table.oval .tabletop { border-radius:50%; }
.real-table strong { font-size:.76rem;line-height:1 }.real-table span{font-size:.46rem;font-weight:750;margin-top:2px}.real-table small{font-size:.4rem;margin-top:2px;opacity:.75}
.chair { position:absolute; width:12%; height:15%; border-radius:4px; background:linear-gradient(145deg,#d7b890,#b48d65);box-shadow:0 2px 4px rgba(50,30,15,.35),inset 0 0 0 1px rgba(255,255,255,.2);z-index:-1; }
.chair.top { top:0; left:44%; }.chair.bottom { bottom:0; left:44%; }.chair.left{left:0;top:43%;transform:rotate(90deg)}.chair.right{right:0;top:43%;transform:rotate(90deg)}
.chair.top.c1{left:30%}.chair.top.c2{left:58%}.chair.bottom.c1{left:30%}.chair.bottom.c2{left:58%}
.real-table.active .tabletop { box-shadow:inset 0 0 16px rgba(255,255,255,.42),inset 0 0 0 2px rgba(255,255,255,.18),0 0 0 3px #4e8fdc,0 10px 22px rgba(50,110,190,.25); }
.real-table.reserved .tabletop { box-shadow:inset 0 0 16px rgba(255,255,255,.42),inset 0 0 0 2px rgba(255,255,255,.18),0 0 0 3px #d49a1e,0 10px 22px rgba(178,120,0,.22); }
.table-status-dot { position:absolute;right:3%;top:5%;width:14px;height:14px;border-radius:50%;background:#4e8fdc;box-shadow:0 0 0 2px rgba(255,255,255,.8),0 5px 12px rgba(0,0,0,.18); }
.table-k1{left:17%;top:4%}.table-k2{left:40%;top:3%;width:18%}.table-k3{left:64%;top:3%;width:18%}.table-k4{left:10%;top:31%;width:18%;height:24%}.table-k5{left:40%;top:34%;width:19%;height:22%}.table-k10{left:68%;top:32%;width:18%;height:24%}.table-k6{left:10%;top:68%;width:17%}.table-k7{left:32%;top:68%;width:17%}.table-k8{left:54%;top:68%;width:17%}.table-k9{left:76%;top:68%;width:17%}
.rotated-left{transform:rotate(-26deg)}.rotated-right{transform:rotate(25deg)}
.floor-plant { position:absolute;width:34px;height:34px;border-radius:50%;background:radial-gradient(ellipse at center,#4e7c2c 0 16%,transparent 17%),conic-gradient(from 20deg,#47752e,#6d9842,#355c28,#739b46,#365d2b,#47752e);filter:drop-shadow(0 5px 5px rgba(0,0,0,.28));z-index:1}.plant-a{left:-8px;bottom:-8px}.plant-b{right:-8px;bottom:-8px}
html[data-theme="dark"] .floor-realistic { filter:brightness(.82) saturate(.9); }

@media (max-width: 1180px) {
  .hero-layout { grid-template-columns:1fr; }
  .hero-copy { max-width:820px; }
  .hero-stage { min-height:620px; }
  .hero-device-scene { max-width:820px;left:50%;transform:translateX(-50%);width:100%; }
}
@media (max-width: 900px) {
  .hero-benefits { grid-template-columns:1fr;max-width:520px; }
  .hero-benefit { min-height:58px; }
  .role-grid-detailed { grid-template-columns:1fr; }
  .floor-realistic { min-height:440px; }
  .real-table strong{font-size:.68rem}.real-table span{font-size:.4rem}.real-table small{font-size:.36rem}
}
@media (max-width: 680px) {
  .hero h1 { font-size:clamp(2.45rem,12vw,3.45rem); }
  .hero-stage { min-height:540px; }
  .desktop-display { width:94%;top:52px; }
  .customer-phone { width:33%;right:-1%;top:190px; }
  .ordering-screen { min-height:330px;padding-inline:8px; }
  .staff-layout{grid-template-columns:62px 1fr}.staff-sidebar em{display:none}.staff-summary{grid-template-columns:repeat(2,1fr)}.staff-summary>div:nth-child(3){display:none}.staff-order-card{grid-template-columns:1fr auto}.staff-order-lines{display:none}.device-bridge-pill{left:8%;bottom:15px;font-size:.57rem}
  .role-detail { padding:26px; }
  .floor-realistic { min-height:390px; }
  .real-table { width:20%;height:16% }.table-k1{left:11%}.table-k2{left:37%;width:22%}.table-k3{left:67%;width:22%}.table-k4{left:3%;width:22%;height:23%}.table-k5{left:39%;width:24%}.table-k10{left:72%;width:22%;height:23%}.table-k6{left:4%;width:21%}.table-k7{left:28%;width:21%}.table-k8{left:52%;width:21%}.table-k9{left:76%;width:21%}
  .real-table strong{font-size:.58rem}.real-table span{font-size:.34rem}.real-table small{display:none}.chair{width:14%;height:17%}
}


/* V2.2.5 — consolidated mobile layout. Desktop styles above are unchanged. */
.showcase-nav-wrap { position: relative; }
.showcase-nav-arrow { display: none; }
.deployment-system-mobile-frame { display: contents; }

@media (max-width: 768px) {
  /* HERO: preserve the desktop + phone composition as one fixed canvas and scale it uniformly. */
  .hero-stage {
    position: relative;
    min-height: 245px;
    height: 245px;
    overflow: hidden;
  }
  .hero-device-scene {
    position: absolute;
    inset: auto;
    top: 0;
    left: 50%;
    width: 820px;
    height: 640px;
    max-width: none;
    transform: translateX(-50%) scale(.29);
    transform-origin: top center;
  }
  /* Restore the desktop composition inside that canvas. */
  .desktop-display { left: 0; top: 72px; width: 83%; }
  .customer-phone { right: 2%; top: 172px; width: 28%; transform: rotate(1.5deg); }
  .ordering-screen { min-height: 430px; padding: 28px 11px 12px; }
  .staff-layout { grid-template-columns: 88px 1fr; }
  .staff-sidebar em { display: block; }
  .staff-summary { grid-template-columns: repeat(3, 1fr); }
  .staff-summary > div:nth-child(3) { display: block; }
  .staff-order-card { grid-template-columns: 1fr 1.3fr auto; }
  .staff-order-lines { display: flex; }
  .device-bridge-pill { left: 22%; bottom: 18px; font-size: .67rem; }

  /* FEATURE SWITCHER: arrows and tabs are one row. Arrows switch one module at a time. */
  .showcase-nav-wrap {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    align-items: center;
    gap: 6px;
    width: 100%;
    padding: 0;
  }
  .showcase-nav-arrow {
    display: grid;
    place-items: center;
    position: static;
    width: 38px;
    height: 48px;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 14px;
    background: transparent;
    box-shadow: none;
    color: var(--text);
    font: 500 34px/1 Arial, sans-serif;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    touch-action: manipulation;
  }
  .showcase-nav-arrow:active { transform: scale(.9); }
  .showcase-nav {
    min-width: 0;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .showcase-nav::-webkit-scrollbar { display: none; }
  .showcase-tab {
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  /* ORBIT: no transform-scaling and no fixed min-height. Geometry is percentage based,
     so the complete desktop circle layout remains a true circle at any phone width. */
  .deployment-system-mobile-frame {
    display: block;
    width: 100%;
    padding: 12px 0;
  }
  .deployment-system-mobile-frame > .deployment-system {
    position: relative;
    left: auto;
    width: min(86vw, 440px);
    height: auto;
    min-width: 0;
    min-height: 0;
    max-width: 440px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    transform: none;
    overflow: hidden;
    border-radius: 50%;
  }
  .deployment-system .orbit-three,
  .deployment-system .orbit-two,
  .deployment-system .orbit-one {
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 50%;
  }
  .deployment-system .orbit-three { width: 88.14%; }
  .deployment-system .orbit-two { width: 66.10%; }
  .deployment-system .orbit-one { width: 44.07%; }
  .deployment-system .system-core {
    width: 25.42%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 24%;
  }
  .deployment-system .orbit-label { display: block; transform: scale(.74); }
}

@media (max-width: 480px) {
  .hero-stage { min-height: 180px; height: 180px; }
  .hero-device-scene { transform: translateX(-50%) scale(.205); }
  .deployment-system-mobile-frame > .deployment-system { width: 82vw; }
  .deployment-system .orbit-label { transform: scale(.64); }
}

@media (max-width: 390px) {
  .hero-stage { min-height: 162px; height: 162px; }
  .hero-device-scene { transform: translateX(-50%) scale(.182); }
  .showcase-nav-wrap { grid-template-columns: 34px minmax(0,1fr) 34px; gap: 4px; }
  .showcase-nav-arrow { width: 34px; font-size: 31px; }
  .deployment-system-mobile-frame > .deployment-system { width: 80vw; }
}
