:root {
  color-scheme: light;
  --ink: #18201c;
  --muted: #64706a;
  --paper: #fbfaf5;
  --panel: #ffffff;
  --line: #d9ded7;
  --leaf: #0f6b4f;
  --leaf-dark: #0a4d3a;
  --tomato: #c7462e;
  --sun: #f2b84b;
  --mint: #dceee6;
  --shadow: 0 20px 60px rgba(30, 49, 39, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}
body.nav-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(251, 250, 245, 0.92);
  border-bottom: 1px solid rgba(217, 222, 215, 0.9);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}
.brand-icon {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(30, 49, 39, 0.12);
}
.nav {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 14px;
}
.nav a {
  padding: 9px 10px;
  border-radius: 8px;
}
.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
  background: var(--mint);
  outline: none;
}
.right-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}
.lang {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}
.lang summary {
  display: flex;
  min-width: 132px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 10px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.lang summary::-webkit-details-marker {
  display: none;
}
.lang summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}
.lang[open] summary::after {
  transform: rotate(225deg) translate(-2px, -1px);
}
.lang-current,
.lang-option {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.lang-options {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 50;
  display: grid;
  min-width: 180px;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(30, 49, 39, 0.16);
}
.lang button {
  display: flex;
  width: 100%;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 0;
  border-radius: 7px;
  padding: 9px 10px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.lang button:hover,
.lang button:focus-visible {
  color: var(--ink);
  outline: 2px solid rgba(15, 107, 79, 0.22);
}
.lang button.active {
  color: var(--leaf-dark);
  background: var(--mint);
}
.flag {
  display: inline-grid;
  width: 1.35em;
  place-items: center;
  font-size: 16px;
  line-height: 1;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 15px;
  font-weight: 750;
  cursor: pointer;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
  box-shadow: 0 12px 26px rgba(15, 107, 79, 0.18);
}
.btn:active {
  transform: translateY(0);
  box-shadow: none;
}
.btn.primary {
  color: #fff;
  background: var(--leaf);
}
.btn.secondary {
  color: var(--leaf-dark);
  border-color: var(--line);
  background: #fff;
}
main {
  overflow: clip;
}
section {
  padding: clamp(58px, 8vw, 100px) clamp(18px, 5vw, 64px);
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 66px);
  padding-top: clamp(34px, 5vw, 58px);
}
.hero > *,
.audiences > *,
.split-card > *,
.pricing > *,
.review-grid > *,
.faq-contact > * {
  min-width: 0;
}
.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  border: 1px solid rgba(15, 107, 79, 0.22);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--leaf-dark);
  background: var(--mint);
  font-size: 13px;
  font-weight: 750;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(39px, 6.4vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 14px;
  font-size: clamp(29px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}
h3 {
  margin-bottom: 9px;
  font-size: 19px;
  line-height: 1.2;
}
.lead {
  max-width: 700px;
  color: #45524b;
  font-size: clamp(18px, 2.1vw, 22px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 26px;
}
.facts-strip {
  display: grid;
  max-width: 720px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.fact {
  min-height: 94px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.74);
}
.fact strong {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}
.fact span {
  color: var(--muted);
  font-size: 13px;
}
.product-stage {
  position: relative;
  min-height: 620px;
}
.operator-board {
  width: min(100%, 520px);
  border: 1px solid #21352c;
  border-radius: 14px;
  padding: 16px;
  color: #f8fff9;
  background: #16291f;
  box-shadow: var(--shadow);
}
.board-top,
.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.signal {
  display: flex;
  gap: 6px;
}
.signal span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f16f4e;
}
.signal span:nth-child(2) {
  background: #f3c65c;
}
.signal span:nth-child(3) {
  background: #67c887;
}
.route {
  overflow: hidden;
  color: #b8d1c5;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.guest-menu {
  display: grid;
  gap: 10px;
  border-radius: 10px;
  padding: 16px;
  background: #fbfaf5;
  color: var(--ink);
}
.menu-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}
.hours {
  border-radius: 7px;
  padding: 6px 9px;
  color: var(--leaf-dark);
  background: var(--mint);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}
.notice {
  border-left: 4px solid var(--sun);
  padding: 9px 10px;
  background: #fff5d8;
  color: #5f4a16;
  font-size: 13px;
}
.dish-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid #e8e3d4;
  border-radius: 9px;
  padding: 10px;
  background: #fff;
}
.dish-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e6b244, #c7462e 58%, #0f6b4f);
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 5px;
}
.tag {
  border-radius: 999px;
  padding: 3px 7px;
  color: var(--leaf-dark);
  background: var(--mint);
  font-size: 11px;
  font-weight: 700;
}
.qr-card {
  position: absolute;
  left: clamp(330px, 52%, 420px);
  bottom: 62px;
  z-index: 6;
  width: min(190px, 36%);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(30, 49, 39, 0.16);
  transform: rotate(1.5deg);
}
.qr {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  aspect-ratio: 1;
  padding: 8px;
  border-radius: 8px;
  background: #f7f4e9;
}
.qr span {
  border-radius: 2px;
  background: var(--ink);
}
.qr span:nth-child(2n),
.qr span:nth-child(5n) {
  opacity: 0.25;
}
.admin-card {
  position: absolute;
  left: clamp(0px, 2vw, 20px);
  bottom: 0;
  z-index: 5;
  width: min(390px, 70%);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(30, 49, 39, 0.16);
  transform: translateX(-8px) rotate(-0.6deg);
}
.admin-card .bar {
  height: 10px;
  border-radius: 999px;
  background: #e8eee9;
}
.admin-list {
  display: grid;
  gap: 8px;
}
.admin-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  border: 1px solid #edf0ec;
  border-radius: 8px;
  padding: 9px;
  font-size: 13px;
}
.status {
  border-radius: 999px;
  padding: 3px 7px;
  color: #fff;
  background: var(--leaf);
  font-size: 11px;
  font-weight: 750;
}
.status.off {
  background: var(--tomato);
}
.section-head {
  max-width: 820px;
  margin-bottom: 32px;
}
.section-head p {
  color: var(--muted);
  font-size: 18px;
}
.audiences {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  background: #eef6ef;
}
.audiences .section-head {
  margin-bottom: 0;
}
.audience-list {
  display: grid;
  gap: 11px;
}
.audience-item,
.capability,
.boundary-item,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--panel);
}
.business-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.business-types span {
  border: 1px solid rgba(15, 107, 79, 0.2);
  border-radius: 999px;
  padding: 7px 10px;
  background: #fff;
  color: var(--leaf-dark);
  font-size: 13px;
  font-weight: 700;
}
.split-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(18px, 2.2vw, 28px);
}
.outcome-panel {
  min-height: clamp(250px, 24vw, 320px);
  border-radius: 10px;
  padding: clamp(24px, 3vw, 34px);
  background: #fff;
  box-shadow: var(--shadow);
}
.outcome-panel h3 {
  margin-bottom: 16px;
}
.outcome-panel p {
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
}
.capabilities {
  background: #fff;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.capability strong {
  display: block;
  margin-bottom: 7px;
}
.capability p,
.boundary-item p,
.faq-item p,
.audience-item p,
.price-card p {
  margin-bottom: 0;
  color: var(--muted);
}
.workflow {
  background: #173125;
  color: #f6fff7;
}
.workflow .eyebrow {
  color: #0a4d3a !important;
  background: #dceee6 !important;
  border-color: #9fcfbd !important;
}
.workflow .section-head p {
  color: #c4dbcf;
}
.steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  counter-reset: step;
}
.step {
  position: relative;
  min-height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.07);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: #17261f;
  background: var(--sun);
  font-weight: 850;
}
.step p {
  color: #c4dbcf;
  font-size: 14px;
}
