:root {
  --black: #0a0a0a;
  --ink: #151515;
  --paper: #f3f3f0;
  --surface: #ffffff;
  --soft: #e8e8e3;
  --muted: #626262;
  --border: #d1d1cc;
  --accent: #b93616;
  --accent-soft: #fff0e3;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 64px);
  --section: clamp(76px, 10vw, 144px);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --ease: cubic-bezier(.2,.75,.25,1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }

:focus-visible {
  outline: 3px solid #5ea8ff;
  outline-offset: 4px;
}

::selection { color: #fff; background: var(--accent); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--black);
  background: #fff;
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: #fff;
  background: rgba(10,10,10,.94);
  border-bottom: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -.055em;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand img { width: 28px; height: 28px; object-fit: contain; object-position: left center; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  margin-left: auto;
  font-size: 14px;
}

.desktop-nav a {
  color: rgba(255,255,255,.76);
  text-decoration: none;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] { color: #fff; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  color: #fff;
  background: var(--black);
  border: 1px solid var(--black);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  transition: transform 220ms var(--ease), background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-light { color: var(--black); background: #fff; border-color: #fff; }
.button-outline { color: #fff; background: transparent; border-color: rgba(255,255,255,.48); }
.button-outline-dark { color: var(--black); background: transparent; border-color: var(--border); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: 14px; }
.button-arrow::after { content: "→"; font-size: 20px; font-weight: 400; }

.mobile-nav { display: none; position: relative; }
.mobile-nav summary {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  list-style: none;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
}
.mobile-nav summary::-webkit-details-marker { display: none; }
.menu-lines,
.menu-lines::before,
.menu-lines::after {
  width: 18px;
  height: 1px;
  display: block;
  background: #fff;
  content: "";
  transition: transform 180ms ease;
}
.menu-lines { position: relative; }
.menu-lines::before { position: absolute; transform: translateY(-6px); }
.menu-lines::after { position: absolute; transform: translateY(6px); }
.mobile-nav[open] .menu-lines { background: transparent; }
.mobile-nav[open] .menu-lines::before { transform: rotate(45deg); }
.mobile-nav[open] .menu-lines::after { transform: rotate(-45deg); }
.mobile-menu-panel {
  position: fixed;
  inset: 76px 0 auto;
  display: grid;
  gap: 0;
  padding: 16px var(--gutter) 28px;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.mobile-menu-panel > a:not(.button) {
  padding: 18px 0;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.14);
  font-size: 20px;
  text-decoration: none;
}
.mobile-menu-panel .button { margin-top: 20px; }

.hero {
  overflow: hidden;
  color: #fff;
  background: var(--black);
}

.hero-inner {
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 96px);
  padding-block: clamp(64px, 8vw, 112px);
}

.hero-copy { position: relative; z-index: 2; }

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

.hero h1,
.page-hero h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 650;
  letter-spacing: -.065em;
  line-height: .98;
}

.hero-lead,
.page-hero .lead {
  max-width: 660px;
  margin-bottom: 36px;
  color: rgba(255,255,255,.7);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.brand-signoff { margin: 24px 0 0; color: rgba(255,255,255,.44); font-size: 13px; letter-spacing: .01em; }

.product-stage {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}

.product-stage::before {
  position: absolute;
  inset: 13% 7% 8%;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;
  content: "";
}

.browser-window,
.admin-window,
.phone {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255,255,255,.3);
  box-shadow: 0 30px 100px rgba(0,0,0,.48);
}

.browser-window {
  position: absolute;
  top: 50px;
  left: 3%;
  width: 72%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  transform: perspective(1100px) rotateY(4deg) rotateX(1deg);
}

.browser-bar {
  height: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  color: #111;
  background: #f5f5f5;
  border-bottom: 1px solid #ddd;
  font-size: 9px;
}
.browser-dot { width: 5px; height: 5px; border-radius: 50%; background: #a5a5a5; }
.browser-url { margin-left: 8px; color: #666; }
.storefront-visual { position: relative; height: calc(100% - 30px); background: #111; }
.storefront-visual img { width: 100%; height: 58%; object-fit: cover; }
.storefront-copy {
  position: absolute;
  top: 12%;
  left: 7%;
  width: 32%;
  color: #fff;
}
.storefront-copy strong { display: block; font-size: clamp(13px, 1.4vw, 22px); line-height: 1.06; }
.storefront-copy span { display: inline-block; margin-top: 10px; padding: 7px 10px; color: #fff; background: #b93616; border-radius: 999px; font-size: 8px; font-weight: 700; }
.menu-strip { height: 42%; padding: 10px 16px; color: #111; background: #fff; }
.menu-strip-label { margin-bottom: 8px; font-size: 10px; font-weight: 700; }
.menu-items { display: grid; grid-template-columns: repeat(4,1fr); gap: 7px; }
.menu-item { aspect-ratio: 1.25; border-radius: 7px; background: linear-gradient(135deg,#f0c55a,#b93616); }
.menu-item:nth-child(2) { background: linear-gradient(135deg,#75a85a,#efe0b6); }
.menu-item:nth-child(3) { background: linear-gradient(135deg,#f19a37,#7e2715); }
.menu-item:nth-child(4) { background: linear-gradient(135deg,#7945c6,#e06b86); }

.phone {
  position: absolute;
  z-index: 4;
  bottom: 36px;
  width: 26%;
  min-width: 138px;
  aspect-ratio: 9 / 18;
  border: 5px solid #242424;
  border-radius: 28px;
}
.phone-a { left: 22%; transform: rotate(-4deg); }
.phone-b { left: 47%; bottom: 22px; transform: rotate(4deg); }
.phone-notch { width: 42%; height: 12px; margin: 0 auto; background: #242424; border-radius: 0 0 9px 9px; }
.phone-screen { height: calc(100% - 12px); padding: 14px 10px 10px; color: #161616; font-size: 8px; }
.phone-title { margin-bottom: 12px; font-size: 12px; font-weight: 750; }
.phone-row { display: flex; align-items: center; gap: 8px; padding: 7px 0; border-bottom: 1px solid #ececec; }
.phone-thumb { width: 26px; height: 26px; flex: 0 0 auto; border-radius: 7px; background: linear-gradient(135deg,#f19a37,#b93616); }
.phone-row:nth-child(3) .phone-thumb { background: linear-gradient(135deg,#4d8f65,#c8e6b4); }
.booking-field { margin-bottom: 9px; padding: 8px; color: #666; background: #f3f3f0; border-radius: 7px; }
.booking-button { margin-top: 14px; padding: 9px; color: #fff; background: #b93616; border-radius: 999px; text-align: center; font-weight: 700; }

.admin-window {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 52px;
  width: 32%;
  min-width: 180px;
  padding: 14px;
  color: #fff;
  background: #171717;
  border-color: #383838;
  border-radius: 14px;
}
.admin-head { margin-bottom: 12px; font-size: 12px; font-weight: 700; }
.admin-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 8px 0; border-bottom: 1px solid #313131; font-size: 8px; }
.status { color: #7fd67b; }
.stage-label {
  position: absolute;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  color: #fff;
  background: #191919;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  font-size: 10px;
}
.label-web { top: 14px; left: 6%; }
.label-mobile { bottom: 0; left: 30%; }
.label-team { right: 2%; top: 28%; }

.section { padding-block: var(--section); }
.section-paper { background: var(--paper); }
.section-black { color: #fff; background: var(--black); }
.section-accent { background: var(--accent-soft); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0,1.5fr) minmax(260px,.6fr);
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(44px, 7vw, 84px);
}
.section-head h2,
.large-heading {
  max-width: 900px;
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 620;
  letter-spacing: -.055em;
  line-height: 1.02;
}
.section-head p { margin: 0; color: var(--muted); }
.section-black .section-head p { color: rgba(255,255,255,.62); }

.system-rail {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.system-item { position: relative; padding: 32px 24px 36px 0; }
.system-item:not(:last-child) { border-right: 1px solid var(--border); }
.system-item:not(:first-child) { padding-left: 24px; }
.system-number { display: block; margin-bottom: 44px; color: var(--muted); font-size: 12px; }
.system-item h3 { margin-bottom: 10px; font-size: 19px; letter-spacing: -.02em; }
.system-item p { margin: 0; color: var(--muted); font-size: 14px; }
.system-item::after {
  position: absolute;
  top: 36px;
  right: -5px;
  z-index: 2;
  width: 9px;
  height: 9px;
  background: var(--surface);
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
}
.system-item:last-child::after { display: none; }

.solutions-list { border-top: 1px solid var(--border); }
.solution-link {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0,1fr) minmax(180px,.45fr) 20px 44px;
  align-items: center;
  gap: 22px;
  min-height: 98px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: color 180ms ease;
}
.solution-index { color: var(--muted); font-size: 12px; }
.solution-link h3 { margin: 0; font-size: clamp(22px, 2.4vw, 34px); font-weight: 570; letter-spacing: -.035em; }
.solution-link p { margin: 0; color: var(--muted); font-size: 14px; }
.solution-mark {
  width: 18px;
  height: 18px;
  background: var(--row-accent, var(--accent));
  border-radius: 50%;
  transition: transform 280ms var(--ease);
}
.solution-arrow { font-size: 28px; transition: transform 280ms var(--ease); }
.solution-link:hover .solution-mark { transform: scale(1.6); }
.solution-link:hover .solution-arrow { transform: translateX(8px); }

.process-list {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  border-top: 1px solid var(--border);
}
.process-step { min-height: 260px; padding: 24px 26px 0 0; border-bottom: 1px solid var(--border); }
.process-step:not(:last-child) { border-right: 1px solid var(--border); }
.process-step:not(:first-child) { padding-left: 26px; }
.step-number { display: block; margin-bottom: 72px; color: var(--muted); font-size: 44px; font-weight: 300; letter-spacing: -.05em; }
.process-step h3 { margin-bottom: 10px; font-size: 18px; }
.process-step p { margin: 0; color: var(--muted); font-size: 14px; }

.demo-grid {
  display: grid;
  grid-template-columns: minmax(260px,.55fr) minmax(0,1.45fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.demo-copy h2 { margin-bottom: 24px; font-size: clamp(38px, 4.6vw, 68px); line-height: 1; letter-spacing: -.055em; }
.demo-copy p { max-width: 470px; color: rgba(255,255,255,.64); }
.honest-label { display: inline-block; margin-bottom: 20px; color: rgba(255,255,255,.55); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.restaurant-console {
  overflow: hidden;
  min-height: 470px;
  display: grid;
  grid-template-columns: 180px 1fr;
  color: #fff;
  background: #161616;
  border: 1px solid #343434;
  border-radius: var(--radius);
}
.console-sidebar { padding: 22px 18px; border-right: 1px solid #303030; }
.console-logo { margin-bottom: 28px; font-weight: 750; }
.console-link { display: block; padding: 9px 0; color: #8f8f8f; font-size: 12px; }
.console-link.active { color: #fff; }
.console-main { padding: 22px; }
.console-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.console-top strong { font-size: 18px; }
.console-filter { padding: 8px 12px; color: #ddd; background: #242424; border-radius: 8px; font-size: 11px; }
.order-table { width: 100%; border-collapse: collapse; font-size: 11px; }
.order-table th { padding: 0 8px 12px; color: #777; font-weight: 500; text-align: left; }
.order-table td { padding: 14px 8px; border-top: 1px solid #2e2e2e; }
.order-status { display: inline-block; padding: 5px 8px; color: #ffcf83; background: #3d2e15; border-radius: 6px; }
.order-status.ready { color: #a4dfa1; background: #1f3821; }
.console-summary { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 28px; }
.summary-cell { padding: 16px; background: #202020; border-radius: 10px; }
.summary-cell span { display: block; margin-bottom: 8px; color: #777; font-size: 9px; }
.summary-cell strong { font-size: 16px; }

.faq-list { border-top: 1px solid var(--border); }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr 32px;
  align-items: center;
  gap: 24px;
  list-style: none;
  cursor: pointer;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 560;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 28px; font-weight: 300; text-align: center; transition: transform 180ms ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-answer { max-width: 760px; padding: 0 0 30px; color: var(--muted); }
.faq-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); column-gap: 24px; border-top: 0; }
.faq-grid details { border-top: 1px solid var(--border); }

.final-cta { padding-block: clamp(70px,9vw,130px); color: #fff; background: var(--black); }
.final-cta-grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(340px,.7fr); gap: 60px; align-items: end; }
.final-cta h2 { max-width: 760px; margin: 0; font-size: clamp(44px,6vw,82px); line-height: .98; letter-spacing: -.06em; }
.final-cta-grid > div:first-child > p { max-width: 610px; margin: 28px 0 0; color: rgba(255,255,255,.62); font-size: clamp(17px,1.5vw,21px); }
.contact-stack { display: grid; gap: 12px; }
.contact-link {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 12px;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}
.contact-link:hover { color: var(--black); background: #fff; }

.site-footer { padding: 38px 0 42px; color: rgba(255,255,255,.48); background: var(--black); border-top: 1px solid rgba(255,255,255,.14); font-size: 12px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.footer-brand { display: grid; gap: 5px; }
.footer-brand strong { color: #fff; font-size: 18px; letter-spacing: -.04em; }
.footer-brand span { max-width: 280px; }
.footer-brand small { margin-top: 10px; color: rgba(255,255,255,.34); }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: #fff; }

.page-hero { color: #fff; background: var(--black); }
.page-hero-inner { min-height: 68svh; display: grid; align-content: end; padding-block: clamp(96px,12vw,170px); }
.page-hero h1 { max-width: 980px; }
.page-hero .lead { margin-bottom: 0; }
.solution-hero { position: relative; color: var(--ink); background: var(--accent-soft); overflow: hidden; }
.solution-hero-grid {
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(430px,.9fr) minmax(560px,1.1fr);
  align-items: center;
  gap: clamp(42px,5vw,80px);
  padding-block: clamp(64px,7vw,100px);
}
.solution-hero-copy { position: relative; z-index: 2; }
.solution-hero h1 { max-width: 720px; font-size: clamp(48px,4.7vw,70px); }
.solution-hero .lead { max-width: 650px; color: rgba(21,21,21,.68); }
.solution-hero .hero-actions { margin-top: 36px; }

.niche-product-stage { position: relative; min-height: 570px; isolation: isolate; }
.niche-browser,
.niche-phone,
.niche-admin {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(21,21,21,.25);
  box-shadow: 0 32px 80px rgba(33,21,15,.18);
}
.niche-browser {
  position: absolute;
  top: 42px;
  left: 8%;
  width: 76%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
}
.niche-browser-media { position: relative; height: 66%; background: var(--black); }
.niche-browser-media img { width: 100%; height: 100%; object-fit: cover; }
.niche-browser-copy {
  position: absolute;
  inset: 0 auto 0 0;
  width: 46%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 22px;
  color: #fff;
  background: linear-gradient(90deg,rgba(10,10,10,.86),rgba(10,10,10,.5) 70%,transparent);
}
.niche-browser-copy small { margin-bottom: 8px; color: rgba(255,255,255,.68); font-size: 8px; }
.niche-browser-copy strong { max-width: 210px; font-size: clamp(14px,1.5vw,22px); line-height: 1.08; }
.niche-browser-copy span { margin-top: 12px; padding: 7px 11px; color: #fff; background: var(--accent); border-radius: 999px; font-size: 8px; font-weight: 750; }
.niche-browser-strip { height: 34%; display: grid; grid-template-columns: 1fr repeat(3,46px); align-items: center; gap: 8px; padding: 12px 16px; color: #151515; background: #fff; font-size: 10px; font-weight: 700; }
.niche-browser-strip i { height: 34px; background: var(--accent-soft); border: 1px solid color-mix(in srgb,var(--accent) 20%,#ddd); border-radius: 7px; }

.niche-phone {
  position: absolute;
  z-index: 4;
  bottom: 20px;
  width: 25%;
  min-width: 136px;
  aspect-ratio: 9 / 18;
  color: #151515;
  border: 5px solid #242424;
  border-radius: 28px;
}
.niche-phone-menu { left: 0; transform: rotate(-3deg); }
.niche-phone-form { right: 0; bottom: 34px; transform: rotate(3deg); }
.niche-phone-notch { width: 42%; height: 12px; margin: 0 auto; background: #242424; border-radius: 0 0 9px 9px; }
.niche-phone-content { height: calc(100% - 12px); display: flex; flex-direction: column; padding: 14px 10px 10px; font-size: 8px; }
.niche-phone-content > strong { margin-bottom: 10px; font-size: 12px; }
.niche-phone-row { min-height: 40px; display: grid; grid-template-columns: 26px 1fr auto; align-items: center; gap: 7px; border-bottom: 1px solid #ececec; }
.niche-phone-row i { width: 26px; height: 26px; background: color-mix(in srgb,var(--accent) 28%,var(--accent-soft)); border-radius: 7px; }
.niche-phone-row:nth-child(3) i { background: color-mix(in srgb,var(--accent) 55%,#fff); }
.niche-phone-row:nth-child(4) i { background: color-mix(in srgb,var(--accent) 78%,#fff); }
.niche-phone-row b { color: var(--accent); }
.niche-field { margin-bottom: 8px; padding: 8px; color: #656565; background: #f2f2ef; border-radius: 7px; }
.niche-phone-action { margin-top: auto; padding: 9px 6px; color: #fff; background: var(--accent); border-radius: 999px; text-align: center; font-weight: 750; }
.niche-admin {
  position: absolute;
  z-index: 3;
  right: 14%;
  bottom: 6px;
  width: 39%;
  min-width: 220px;
  padding: 14px;
  color: #fff;
  background: #151515;
  border-color: #363636;
  border-radius: 13px;
}
.niche-admin-head { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 9px; font-size: 11px; }
.niche-admin-head span { color: #777; font-size: 8px; }
.niche-admin-row { min-height: 37px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 8px; border-top: 1px solid #2d2d2d; font-size: 8px; }
.niche-status { padding: 4px 6px; color: #f3c074; background: #3d2e15; border-radius: 5px; font-size: 7px; }
.niche-status.state-2 { color: #a8dfa5; background: #1f3821; }

.solution-workflow { display: grid; grid-template-columns: minmax(280px,.68fr) minmax(0,1.32fr); gap: clamp(48px,7vw,96px); align-items: stretch; }
.workflow-rail { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--border); }
.workflow-rail li { min-height: 72px; display: grid; grid-template-columns: 44px 1fr; align-items: center; gap: 18px; border-bottom: 1px solid var(--border); }
.workflow-rail li span { color: var(--muted); font-size: 11px; }
.workflow-rail li strong { font-size: 16px; }
.workflow-console { min-height: 430px; padding: 24px; color: #fff; background: #171717; border: 1px solid #333; border-radius: var(--radius); }
.workflow-console-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 30px; }
.workflow-console-head div { display: grid; gap: 4px; }
.workflow-console-head small { color: #777; }
.workflow-console-head strong { font-size: 20px; }
.workflow-console-head > span { padding: 8px 10px; color: #aaa; background: #242424; border-radius: 7px; font-size: 10px; }
.workflow-orders { border-top: 1px solid #303030; }
.workflow-order { min-height: 62px; display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 16px; border-bottom: 1px solid #303030; font-size: 11px; }
.workflow-order > span { color: #777; }
.workflow-order > strong { font-weight: 560; }
.workflow-order > b { padding: 5px 8px; color: #f2c36e; background: #3b2d15; border-radius: 6px; font-size: 8px; }
.workflow-order > b.ready { color: #a8dfa5; background: #203823; }
.workflow-console-foot { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 24px; }
.workflow-console-foot span { padding: 15px; color: #999; background: #222; border-radius: 8px; font-size: 10px; }
.niche-capability-rail { grid-template-columns: repeat(3,1fr); margin-top: clamp(48px,7vw,84px); }
.niche-capability-rail .system-item:last-child { border-right: 0; }

.niche-channel-grid { min-height: 480px; display: grid; grid-template-columns: minmax(0,1.5fr) 54px minmax(120px,.36fr) 54px minmax(120px,.36fr); align-items: center; margin-bottom: clamp(54px,7vw,88px); }
.channel-device { position: relative; }
.channel-device > span { position: absolute; top: -32px; left: 0; color: rgba(255,255,255,.58); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.channel-screen { overflow: hidden; min-height: 340px; position: relative; background: #fff; border: 1px solid #3a3a3a; border-radius: 13px; }
.channel-screen img { width: 100%; height: 340px; object-fit: cover; }
.channel-screen::after { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(10,10,10,.72),transparent 64%); content: ""; }
.channel-screen strong { position: absolute; z-index: 1; top: 42px; left: 34px; max-width: 220px; color: #fff; font-size: 28px; line-height: 1.05; }
.channel-mobile { width: 100%; max-width: 170px; justify-self: center; }
.channel-mobile-screen { min-height: 330px; display: flex; flex-direction: column; padding: 30px 12px 14px; color: #151515; background: #fff; border: 5px solid #292929; border-radius: 27px; }
.channel-mobile-screen b { margin-bottom: 20px; font-size: 12px; }
.channel-mobile-screen i { height: 52px; margin-bottom: 8px; background: var(--accent-soft); border-radius: 8px; }
.channel-mobile-screen i:nth-of-type(2) { background: color-mix(in srgb,var(--accent) 25%,#fff); }
.channel-mobile-screen i:nth-of-type(3) { background: color-mix(in srgb,var(--accent) 48%,#fff); }
.channel-mobile-screen.form i { height: 38px; background: #f0f0ed; }
.channel-mobile-screen em { margin-top: auto; padding: 10px 5px; color: #fff; background: var(--accent); border-radius: 999px; font-size: 8px; font-style: normal; text-align: center; }
.channel-connector { height: 1px; background: repeating-linear-gradient(90deg,rgba(255,255,255,.5) 0 4px,transparent 4px 8px); }
.niche-proof-list { margin-top: 0; }

.breadcrumb { margin-bottom: 42px; color: rgba(21,21,21,.58); font-size: 13px; }
.breadcrumb a { text-decoration: none; }
.dark-breadcrumb { color: rgba(255,255,255,.55); }

.split-section { display: grid; grid-template-columns: minmax(260px,.58fr) minmax(0,1.1fr); gap: clamp(52px,9vw,140px); }
.split-section h2 { position: sticky; top: 110px; align-self: start; margin: 0; font-size: clamp(34px,4vw,58px); letter-spacing: -.05em; line-height: 1.04; }
.statement-list { border-top: 1px solid var(--border); }
.statement { display: grid; grid-template-columns: 42px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--border); }
.statement span { color: var(--muted); font-size: 12px; }
.statement h3 { margin-bottom: 7px; font-size: 21px; }
.statement p { margin: 0; color: var(--muted); }

.feature-columns { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.feature-column { min-height: 330px; padding: 32px; background: var(--surface); }
.feature-column small { color: var(--accent); font-weight: 700; }
.feature-column h3 { margin: 72px 0 14px; font-size: 27px; letter-spacing: -.035em; }
.feature-column p { color: var(--muted); }

.proof-band { color: #fff; background: var(--accent); }
.proof-band .section-head p { color: rgba(255,255,255,.76); }
.proof-list { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid rgba(255,255,255,.32); }
.proof-item { min-height: 180px; padding: 26px 30px 26px 0; border-bottom: 1px solid rgba(255,255,255,.32); }
.proof-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.32); }
.proof-item:nth-child(even) { padding-left: 30px; }
.proof-item h3 { font-size: 24px; }
.proof-item p { margin: 0; color: rgba(255,255,255,.76); }

.channel-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.channel-card { min-height: 420px; display: flex; flex-direction: column; padding: 32px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); }
.channel-name { margin-bottom: auto; color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; }
.channel-card h3 { margin-bottom: 14px; font-size: 34px; letter-spacing: -.045em; }
.channel-card p { color: var(--muted); }
.channel-card a { margin-top: 18px; font-weight: 650; text-decoration: none; }

.contact-page-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.7fr); gap: clamp(60px,10vw,150px); }
.contact-page-grid h1 { color: var(--ink); }
.contact-page-grid .lead { color: var(--muted); }
.contact-panel { display: grid; align-content: center; gap: 12px; }
.contact-panel .contact-link { color: var(--ink); border-color: var(--border); }
.contact-panel .contact-link:hover { color: #fff; background: var(--black); }

.legal-note { max-width: 850px; color: var(--muted); font-size: 14px; }

@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .product-stage { width: min(100%,760px); margin-inline: auto; }
  .system-rail { grid-template-columns: repeat(3,1fr); }
  .system-item:nth-child(3) { border-right: 0; }
  .system-item:nth-child(n+4) { border-top: 1px solid var(--border); }
  .process-list { grid-template-columns: repeat(3,1fr); }
  .process-step:nth-child(3) { border-right: 0; }
  .process-step:nth-child(n+4) { border-top: 0; }
  .demo-grid { grid-template-columns: 1fr; }
  .restaurant-console { max-width: 800px; }
  .solution-hero-grid { min-height: auto; grid-template-columns: 1fr; padding-block: 74px 84px; }
  .solution-hero-copy { max-width: 820px; }
  .niche-product-stage { width: min(100%,780px); margin-inline: auto; }
  .solution-workflow { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  body { font-size: 16px; }
  .desktop-nav, .header-cta { display: none; }
  .mobile-nav { display: block; }
  .header-inner { min-height: 68px; }
  .mobile-menu-panel { inset: 68px 0 auto; }
  .hero-inner { min-height: auto; padding-top: 74px; }
  .hero h1, .page-hero h1 { font-size: clamp(44px,11vw,70px); }
  .product-stage { min-height: 560px; }
  .browser-window { left: 0; width: 86%; }
  .phone-a { left: 7%; }
  .phone-b { left: 37%; }
  .admin-window { right: 0; }
  .section-head { grid-template-columns: 1fr; gap: 22px; }
  .system-rail { grid-template-columns: 1fr 1fr; }
  .system-item { border-top: 1px solid var(--border); }
  .system-item:first-child, .system-item:nth-child(2) { border-top: 0; }
  .system-item:nth-child(2n) { border-right: 0; }
  .system-item:nth-child(3) { border-right: 1px solid var(--border); }
  .solution-link { grid-template-columns: 36px minmax(0,1fr) 18px 34px; min-height: 86px; }
  .solution-link p { display: none; }
  .process-list { grid-template-columns: 1fr; }
  .process-step,
  .process-step:not(:first-child) { min-height: auto; display: grid; grid-template-columns: 54px 1fr; column-gap: 20px; padding: 26px 0; border-right: 0; border-top: 0; }
  .step-number { grid-row: 1 / 3; margin: 0; }
  .process-step h3 { margin: 3px 0 8px; }
  .final-cta-grid, .contact-page-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .split-section h2 { position: static; }
  .feature-columns, .channel-grid { grid-template-columns: 1fr; }
  .feature-column { min-height: 260px; }
  .channel-card { min-height: 330px; }
  .niche-channel-grid { grid-template-columns: minmax(0,1fr) 42px 140px 42px 140px; }
}

@media (max-width: 560px) {
  :root { --gutter: 20px; --section: 76px; }
  body { overflow-wrap: break-word; }
  .brand { gap: 8px; font-size: 20px; }
  .brand img { width: 25px; height: 25px; }
  .hero-inner { gap: 42px; padding-bottom: 56px; }
  .hero h1, .page-hero h1 { margin-bottom: 22px; font-size: clamp(42px,13vw,58px); line-height: .99; }
  .hero-lead, .page-hero .lead { font-size: 17px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .product-stage { min-height: 500px; }
  .product-stage::before { inset: 4% -25% 3%; }
  .browser-window { top: 10px; left: 0; width: 100%; transform: none; }
  .phone { bottom: 14px; width: 35%; min-width: 110px; border-width: 4px; border-radius: 22px; }
  .phone-a { left: 4%; }
  .phone-b { left: 35%; bottom: 0; }
  .admin-window { right: 0; bottom: 30px; width: 38%; min-width: 126px; padding: 10px; }
  .admin-row { font-size: 6px; }
  .stage-label { display: none; }
  .section-head h2, .large-heading { font-size: 39px; }
  .system-rail { grid-template-columns: 1fr; }
  .system-item,
  .system-item:not(:first-child) { padding: 24px 0; border-top: 0; border-right: 0 !important; border-bottom: 1px solid var(--border); }
  .system-number { margin-bottom: 22px; }
  .system-item::after { display: none; }
  .solution-link { gap: 12px; }
  .solution-link h3 { font-size: 22px; }
  .restaurant-console { min-height: 390px; grid-template-columns: 1fr; }
  .console-sidebar { display: none; }
  .console-main { padding: 16px; }
  .order-table th:nth-child(3), .order-table td:nth-child(3) { display: none; }
  .console-summary { grid-template-columns: 1fr 1fr; }
  .summary-cell:last-child { display: none; }
  .faq-list summary { min-height: 72px; font-size: 18px; }
  .final-cta h2 { font-size: 44px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .page-hero-inner { min-height: 62svh; padding-block: 80px; }
  .solution-hero-grid { gap: 42px; padding-block: 56px 64px; }
  .solution-hero h1 { font-size: clamp(40px,12vw,54px); }
  .solution-hero .breadcrumb { margin-bottom: 34px; }
  .niche-product-stage { min-height: 470px; }
  .niche-browser { top: 0; left: 0; width: 100%; }
  .niche-browser-copy { width: 58%; padding: 14px; }
  .niche-browser-copy strong { font-size: 15px; }
  .niche-browser-strip { grid-template-columns: 1fr repeat(3,34px); }
  .niche-phone { bottom: 0; width: 34%; min-width: 104px; border-width: 4px; border-radius: 22px; }
  .niche-phone-menu { left: 3%; }
  .niche-phone-form { right: 3%; bottom: 14px; }
  .niche-phone-content { padding: 10px 7px 7px; }
  .niche-phone-row { grid-template-columns: 20px 1fr auto; min-height: 32px; }
  .niche-phone-row i { width: 20px; height: 20px; }
  .niche-field { margin-bottom: 5px; padding: 6px; }
  .niche-admin { right: 25%; bottom: 3px; width: 48%; min-width: 155px; padding: 10px; }
  .niche-admin-row { min-height: 29px; font-size: 6px; }
  .workflow-console { min-height: 360px; padding: 16px; }
  .workflow-order { grid-template-columns: 42px 1fr auto; gap: 8px; }
  .workflow-console-foot span { padding: 11px 7px; }
  .niche-channel-grid { min-height: 760px; grid-template-columns: 1fr 1fr; gap: 56px 20px; align-items: end; }
  .channel-web { grid-column: 1 / -1; }
  .channel-screen, .channel-screen img { min-height: 230px; height: 230px; }
  .channel-connector { display: none; }
  .channel-mobile { width: min(100%,150px); }
  .channel-mobile-screen { min-height: 300px; }
  .proof-list { grid-template-columns: 1fr; }
  .proof-item,
  .proof-item:nth-child(even) { min-height: auto; padding: 24px 0; border-right: 0; }
}

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