/* ═══════════════════════════════════════════
   CHANNEL — Design System
   ═══════════════════════════════════════════ */

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}

:root {
  --color-primary: #4ADE80;
  --color-primary-deep: #22c55e;
  --color-primary-press: #16a34a;
  --color-primary-tint: #bbf7d0;
  --color-on-primary: #1A1F2E;
  --color-ink: #1d1d1d;
  --color-ink-mute: #696969;
  --color-canvas: #ffffff;
  --color-canvas-cream: #f4fdf7;
  --color-canvas-lavender: #f0fdf4;
  --color-surface-mint: #4ADE80;
  --color-hairline: #e6e6e6;
  --color-hairline-strong: #000000;
  --color-semantic-error: #cc4117;
  --color-semantic-success: #007a5a;
  --color-on-mint-mute: #d1fae5;
  --color-amber: #f59e0b;

  --font-display: "Inter", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-xxl: 48px;
  --radius-pill: 12px;

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 20px;
  --space-xxl: 24px;
  --space-huge: 28px;

  --shadow-1: rgba(0,0,0,0.1) 0 5px 20px 0;
  --shadow-2: rgba(0,0,0,0.1) 0 0 32px 0;
  --shadow-3: rgba(0,0,0,0.2) 0 1px 10px 0;
  --shadow-focus: #4ADE80 0 0 0 1px inset;

  --max-w: 1240px;
}

html { font-size: 16px; scroll-behavior: smooth }
@media(prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important }
}
body {
  font-family: var(--font-body);
  background: var(--color-canvas);
  color: var(--color-ink);
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--color-primary-deep); text-decoration: none }
a:hover { color: var(--color-primary-press) }
img { max-width: 100%; display: block }

/* ── Skip link (a11y) ── */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--color-primary); color: var(--color-on-primary);
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 700; z-index: 9999;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 12px }

/* ── Focus ring (a11y) ── */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ── Typography ── */
.display-xxl { font-size: 64px; font-weight: 700; line-height: 1.12; letter-spacing: -0.768px }
.display-xl  { font-size: 58px; font-weight: 600; line-height: 1.2;  letter-spacing: -0.464px }
.display-lg  { font-size: 50px; font-weight: 700; line-height: 1.12; letter-spacing: -0.6px }
.display-md  { font-size: 32px; font-weight: 700; line-height: 1.25; letter-spacing: -0.256px }
.heading-lg  { font-size: 24px; font-weight: 700; line-height: 1.33; letter-spacing: -0.096px }
.heading-md  { font-size: 22px; font-weight: 600; line-height: 1.4 }
.heading-sm  { font-size: 18px; font-weight: 600; line-height: 1.56 }
.body-lg     { font-size: 18px; font-weight: 400; line-height: 1.6 }
.body-md     { font-size: 16px; font-weight: 400; line-height: 1.55 }
.body-strong { font-size: 16px; font-weight: 700; line-height: 1.5; letter-spacing: 0.16px }
.caption     { font-size: 14px; font-weight: 400; line-height: 1.43 }
.micro-cap   { font-size: 12px; font-weight: 700; letter-spacing: 0.96px; text-transform: uppercase }

/* ── Buttons — always pill ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: var(--radius-pill); cursor: pointer;
  font-family: var(--font-body); font-weight: 700;
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  text-decoration: none; white-space: nowrap;
  min-height: 44px;
}
.btn:active { transform: scale(0.97) }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none }
.btn:focus-visible { outline: 2px solid var(--color-primary-deep); outline-offset: 2px }

.btn-lg { font-size: 18px; padding: 14px 28px }
.btn-md { font-size: 16px; padding: 10px 24px; letter-spacing: 0.2px }
.btn-sm { font-size: 14px; padding: 8px 18px }

.btn-primary { background: var(--color-primary); color: #ffffff }
.btn-primary:hover {
  background: #15803d;
  color: #ffffff;
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}
.btn-primary:active { background: #166534; color: #ffffff; transform: scale(0.97); box-shadow: none }
.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  color: #ffffff !important;
  text-decoration: none;
}

.btn-secondary { background: transparent; border: 2px solid var(--color-primary); color: var(--color-primary-deep) }
.btn-secondary:hover {
  background: rgba(34, 197, 94, 0.08);
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
}
.btn-secondary:active { transform: scale(0.97); box-shadow: none }

.btn-outline { background: white; color: var(--color-primary); border: 2px solid var(--color-primary) }
.btn-outline:hover {
  background: rgba(34, 197, 94, 0.08);
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
}
.btn-outline:active { transform: scale(0.97); box-shadow: none }

.btn-outline-white { background: transparent; color: var(--color-on-primary); border: 2px solid var(--color-on-primary) }
.btn-outline-white:hover {
  background: rgba(26,31,46,0.08);
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 12px rgba(26, 31, 46, 0.15);
}
.btn-outline-white:active { transform: scale(0.97); box-shadow: none }

.btn-dark { background: var(--color-on-primary); color: white }
.btn-dark:hover {
  background: #252c3f;
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 12px rgba(26, 31, 46, 0.2);
}
.btn-dark:active { transform: scale(0.97); box-shadow: none }

.btn-danger { background: var(--color-semantic-error); color: white }
.btn-danger:hover {
  background: #b83a14;
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 12px rgba(204, 65, 23, 0.2);
}
.btn-danger:active { transform: scale(0.97); box-shadow: none }

.btn-ghost { background: none; border: none; color: var(--color-ink-mute); padding: 8px }
.btn-ghost:hover { color: var(--color-ink) }

.btn-full { width: 100% }

/* ── Inputs ── */
input, textarea, select {
  width: 100%; padding: 12px 14px; min-height: 44px;
  background: white; border: 1px solid var(--color-hairline);
  border-radius: var(--radius-sm); color: var(--color-ink);
  font-size: 16px; font-family: var(--font-body);
  outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus-visible, textarea:focus-visible, select:focus-visible {
  border-color: var(--color-primary); box-shadow: var(--shadow-focus);
}
input::placeholder, textarea::placeholder { color: #b0b0b0 }
textarea { resize: vertical; min-height: 80px }
label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--color-ink) }

/* ── Tabular figures for prices ── */
.item-price, .menu-card-price, .order-total, .cart-bar-total,
.cart-total span, .stat-number, .pricing-price .amount {
  font-variant-numeric: tabular-nums;
}

/* ── Cards ── */
.card {
  background: white; border: 1px solid var(--color-hairline);
  border-radius: var(--radius-xl); padding: 32px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.card-cream {
  background: var(--color-canvas-cream); border: 1px solid var(--color-hairline);
  border-radius: var(--radius-xl); padding: 32px;
}
.card-featured {
  background: var(--color-primary); color: var(--color-on-primary);
  border-radius: var(--radius-xl); padding: 32px; border: none;
}
.card-shadow { box-shadow: var(--shadow-2) }

/* ── Utility ── */
.hidden { display: none !important }
.text-center { text-align: center }
.text-mute { color: var(--color-ink-mute) }
.text-primary { color: var(--color-primary-deep) }
.text-error { color: var(--color-semantic-error) }

/* ── Eyebrow pill ── */
.eyebrow-pill {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.96px; text-transform: uppercase;
  background: var(--color-canvas-cream); color: var(--color-primary-press);
  padding: 4px 14px; border-radius: var(--radius-pill);
}

/* ── Check list ── */
.check-list { list-style: none; }
.check-list li {
  position: relative; padding-left: 28px;
  font-size: 16px; color: var(--color-ink); line-height: 2;
}
.check-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--color-primary); font-weight: 700;
}
.check-list--dark li::before { color: var(--color-on-primary) }

/* Circle checkmark variant */
.check-list--circle li { padding-left: 36px; line-height: 1.6; padding-top: 6px; padding-bottom: 6px }
.check-list--circle li::before {
  content: '✓';
  width: 24px; height: 24px;
  background: var(--color-primary-tint); color: var(--color-primary-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  top: 8px; left: 0;
}


/* ═══════════════════════════════════════════
   LANDING — NAVIGATION
   ═══════════════════════════════════════════ */

.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: white; border-bottom: 1px solid var(--color-hairline);
}
.site-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin: 0 auto;
  padding: 16px 48px;
}
.nav-logo {
  font-size: 22px; font-weight: 800; letter-spacing: -0.5px;
  color: var(--color-ink); text-decoration: none; flex-shrink: 0;
}
.nav-logo span { color: var(--color-primary-deep) }
.nav-logo--green { color: var(--color-primary-deep) }
.nav-logo--green span { color: var(--color-primary-deep) }
.nav-links {
  display: flex; gap: 32px; align-items: center;
}
.nav-links a {
  font-size: 16px; font-weight: 400; color: var(--color-ink-mute);
  text-decoration: none; transition: color 0.12s;
}
.nav-links a:hover { color: var(--color-ink) }
.nav-actions { display: flex; gap: 12px; align-items: center }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; border: none; cursor: pointer;
  padding: 8px; min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-md); transition: background 0.15s ease;
}
.nav-hamburger:hover { background: var(--color-canvas-cream) }
.nav-hamburger:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px }
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: #1d1d1d; border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0) }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }

.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  position: fixed; top: 64px; left: 0; right: 0;
  background: #ffffff; border-bottom: 1px solid #e6e6e6;
  padding: 12px 24px 24px; z-index: 99;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-10px); opacity: 0;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}
.mobile-menu.open { display: flex; transform: translateY(0); opacity: 1 }
.mobile-nav-link {
  font-size: 16px; font-weight: 500; color: #1d1d1d;
  text-decoration: none; padding: 14px 0;
  border-bottom: 1px solid #f0f0f0; display: block;
  transition: color 0.15s;
}
.mobile-nav-link:hover { color: #16a34a }
.mobile-nav-divider { height: 1px; background: #e6e6e6; margin: 8px 0 }
.mobile-cta {
  margin-top: 16px; text-align: center; text-decoration: none;
  padding: 14px; border-radius: 90px; display: block;
}


/* ═══════════════════════════════════════════
   LANDING — HERO
   ═══════════════════════════════════════════ */

.hero {
  padding: 96px 48px;
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 55% 45%; gap: 48px; align-items: center;
  position: relative;
}
.hero-text .eyebrow-pill { margin-bottom: 24px }
.hero-text h1 {
  font-size: clamp(36px, 4.5vw, 58px); font-weight: 600;
  line-height: 1.2; letter-spacing: -0.464px; color: var(--color-ink);
  margin-bottom: 20px;
}
.underline-accent {
  position: relative;
  display: inline;
  white-space: nowrap;
}
.typing-word {
  color: #4ADE80;
  font-weight: 900;
  display: inline;
}
.typing-cursor {
  display: inline-block;
  color: #4ADE80;
  font-weight: 300;
  animation: blink 0.75s step-end infinite;
  margin-left: 2px;
}
@keyframes blink {
  0%, 100% { opacity: 1 }
  50%      { opacity: 0 }
}

.underline-accent::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 4px;
  background: #4ADE80;
  border-radius: 2px;
}

.hero-body {
  font-size: 18px; line-height: 1.6; color: var(--color-ink-mute);
  margin-bottom: 32px;
}
.hero-text .check-list { margin-bottom: 36px }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap }
.hero-trust {
  font-size: 13px; color: var(--color-ink-mute); margin-top: 16px;
}

/* Hero flow diagram */
.hero-flow {
  display: flex; flex-direction: column; align-items: center;
  position: relative; padding: 8px 0;
}

/* Flow step cards */
.flow-step { width: 100%; display: flex; padding: 0 8px }
.flow-step--1 { justify-content: flex-start }
.flow-step--2 { justify-content: flex-end }
.flow-step--3 { justify-content: flex-start; padding-left: 16px }
.flow-step--4 { justify-content: flex-end; padding-right: 0 }

.flow-card {
  display: flex; align-items: center; gap: 16px;
  background: white; border: 1px solid var(--color-hairline);
  border-radius: var(--radius-xl); padding: 18px 22px;
  max-width: 360px; width: 100%;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
/* Cards animate in once, then stay */
.hero-flow.cards-in .flow-step--1 .flow-card { opacity: 1; transform: translateY(0); transition-delay: 0.1s }
.hero-flow.cards-in .flow-step--2 .flow-card { opacity: 1; transform: translateY(0); transition-delay: 0.7s }
.hero-flow.cards-in .flow-step--3 .flow-card { opacity: 1; transform: translateY(0); transition-delay: 1.3s }
.hero-flow.cards-in .flow-step--4 .flow-card { opacity: 1; transform: translateY(0); transition-delay: 1.9s }
.flow-card--highlight {
  background: var(--color-canvas-lavender);
  border-color: var(--color-primary-tint);
}

.flow-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--color-canvas-lavender);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
}
.flow-icon--filled { background: var(--color-primary-tint) }

.flow-card-text { min-width: 0 }
.flow-card-text strong {
  display: block; font-size: 17px; font-weight: 700;
  color: var(--color-ink); line-height: 1.3;
}
.flow-card-text span {
  display: block; font-size: 14px; color: var(--color-ink-mute);
  line-height: 1.5; margin-top: 3px;
}

/* Connector: line + dot */
.flow-connector {
  display: flex; flex-direction: column; align-items: center;
  height: 56px; position: relative;
}
.flow-line {
  width: 1px; flex: 1;
  background: var(--color-hairline);
  opacity: 0;
  transition: opacity 0.35s ease-out;
}
.flow-dot {
  width: 12px; height: 12px;
  background: var(--color-primary-deep);
  border-radius: 50%; flex-shrink: 0;
  opacity: 0; transform: scale(0);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

/* ── Looping connector animation ── */
.hero-flow.in-view .flow-connector:nth-of-type(2) .flow-line { opacity: 1; transition-delay: 0.2s }
.hero-flow.in-view .flow-connector:nth-of-type(2) .flow-dot  { opacity: 1; transform: scale(1); transition-delay: 0.5s }

.hero-flow.in-view .flow-connector:nth-of-type(4) .flow-line { opacity: 1; transition-delay: 0.9s }
.hero-flow.in-view .flow-connector:nth-of-type(4) .flow-dot  { opacity: 1; transform: scale(1); transition-delay: 1.2s }

.hero-flow.in-view .flow-connector:nth-of-type(6) .flow-line { opacity: 1; transition-delay: 1.6s }
.hero-flow.in-view .flow-connector:nth-of-type(6) .flow-dot  { opacity: 1; transform: scale(1); transition-delay: 1.9s }


/* ═══════════════════════════════════════════
   LANDING — LOGOS BAR
   ═══════════════════════════════════════════ */


/* ═══════════════════════════════════════════
   LANDING — FEATURE SECTIONS
   ═══════════════════════════════════════════ */

.feature-section {
  padding: 96px 48px;
}
.feature-section--cream { background: var(--color-canvas-cream) }
.feature-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.feature-inner--flipped .feature-text { order: 2 }
.feature-inner--flipped .feature-visual { order: 1 }

.feature-text .eyebrow-pill { margin-bottom: 20px }
.feature-text h2 {
  font-size: 32px; font-weight: 700; letter-spacing: -0.256px;
  color: var(--color-ink); margin-bottom: 16px;
}
.feature-text .body-lg { margin-bottom: 32px }
.feature-text .check-list { margin-bottom: 0 }
.feature-text .check-list li { line-height: 1.8 }
.feature-link {
  display: inline-block; margin-top: 24px;
  font-size: 16px; font-weight: 700; color: var(--color-primary);
}
.feature-link:hover { color: var(--color-primary-deep) }

/* QR panel */
.qr-panel {
  background: linear-gradient(135deg, rgba(74,222,128,0.06) 0%, rgba(241,245,249,0.5) 100%);
  border: 1px solid rgba(74,222,128,0.15);
  border-radius: var(--radius-xl); padding: 28px 24px 24px;
  position: relative;
}
.qr-panel-action {
  display: flex; justify-content: center; margin-bottom: 20px;
}
.qr-regen-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: white; border: 1px solid var(--color-hairline);
  border-radius: var(--radius-pill); padding: 8px 18px;
  font-size: 13px; font-weight: 600; color: var(--color-ink);
  font-family: var(--font-body); cursor: default;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.qr-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.qr-card {
  background: white; border: 1px solid var(--color-hairline);
  border-radius: var(--radius-lg); padding: 18px 14px 14px; text-align: center;
  box-shadow: 0 4px 20px -4px rgba(0,0,0,0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.qr-card:hover { border-color: var(--color-primary-tint) }
.qr-card h5 { font-size: 14px; font-weight: 700; margin-bottom: 10px; color: var(--color-ink); letter-spacing: -0.2px }
.qr-svg { width: 80px; height: 80px; margin: 0 auto 10px; display: block }
.qr-download {
  font-size: 13px; font-weight: 600; color: var(--color-primary-deep);
  cursor: pointer; transition: color 0.15s ease;
}
.qr-download:hover { color: var(--color-primary-press) }

/* Active state — Table 3 */
.qr-card--active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(74,222,128,0.15), 0 4px 20px -4px rgba(0,0,0,0.05);
  background: linear-gradient(180deg, rgba(74,222,128,0.04) 0%, white 100%);
}
.qr-card--active h5 { color: var(--color-primary-deep) }
.qr-card--active .qr-download { color: var(--color-primary-press) }

/* ── Device stack (overlapping mockups) ── */
.device-stack {
  position: relative;
  width: 100%; min-height: 520px;
}

/* Browser frame — dashboard (back, right) */
.browser-frame {
  position: absolute; top: 0; right: -20px;
  width: 340px;
  background: white; border: 2px solid #d4d4d4;
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 8px 40px -8px rgba(0,0,0,0.12);
  z-index: 1;
}
.browser-dots {
  display: flex; gap: 5px; padding: 8px 12px;
  background: #f5f5f5; border-bottom: 1px solid #e6e6e6;
}
.browser-dots i {
  width: 8px; height: 8px; border-radius: 50%; background: #d4d4d4;
}
.browser-dots i:first-child { background: #ff5f57 }
.browser-dots i:nth-child(2) { background: #ffbd2e }
.browser-dots i:nth-child(3) { background: #28c940 }
.browser-url {
  padding: 5px 12px; font-size: 10px; color: #999;
  background: #fafafa; border-bottom: 1px solid #e6e6e6;
  font-family: monospace;
}
.browser-screen {
  display: flex; min-height: 240px;
}
.dash-mock-sidebar {
  width: 80px; background: #fafafa;
  border-right: 1px solid #e6e6e6; padding: 10px 8px;
}
.dash-mock-logo {
  font-size: 9px; font-weight: 800; color: var(--color-primary-deep);
  margin-bottom: 12px; letter-spacing: -0.3px;
}
.dash-mock-nav-item {
  font-size: 9px; padding: 5px 6px; border-radius: 4px;
  color: #999; margin-bottom: 2px;
}
.dash-mock-nav-item.active {
  background: var(--color-canvas-lavender);
  color: var(--color-primary-deep); font-weight: 600;
}
.dash-mock-main { flex: 1; padding: 10px 12px }
.dash-mock-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.dash-mock-header strong { font-size: 11px }
.dash-mock-badge {
  font-size: 8px; font-weight: 700; background: var(--color-primary-tint);
  color: var(--color-primary-deep); padding: 2px 7px; border-radius: 20px;
}
.dash-mock-order {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 8px; margin-bottom: 5px;
  background: #fafafa; border-radius: 5px; border: 1px solid #f0f0f0;
  font-size: 9px;
}
.dash-mock-order strong { font-weight: 700 }
.dash-mock-status {
  font-size: 7px; font-weight: 700; text-transform: uppercase;
  padding: 2px 6px; border-radius: 20px; letter-spacing: 0.3px;
}
.dash-mock-status--new { background: var(--color-primary-tint); color: var(--color-primary-press) }
.dash-mock-status--prep { background: #fef3c7; color: #b45309 }
.dash-mock-status--ready { background: #dbeafe; color: #1d4ed8 }

/* Tablet frame — QR scan (front right) */
.tablet-frame {
  position: absolute; bottom: -10px; right: 20px;
  width: 180px;
  background: #1d1d1d; border: 3px solid #1d1d1d;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 8px 40px -8px rgba(0,0,0,0.18);
  z-index: 3;
}
.tablet-notch {
  width: 50px; height: 6px; background: #333;
  border-radius: 0 0 6px 6px; margin: 0 auto;
}
.tablet-screen {
  background: #111; padding: 16px 14px; text-align: center;
  min-height: 200px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
}
.tablet-header {
  font-size: 11px; font-weight: 700; color: white;
}
.tablet-sub { font-size: 9px; color: #888; margin-bottom: 4px }
.tablet-qr {
  position: relative; display: inline-block;
  background: white; border-radius: 6px; padding: 8px;
}
.tablet-qr svg { display: block }
.tablet-qr-corners {
  position: absolute; inset: -2px;
}
.tablet-qr-corners i {
  position: absolute; width: 16px; height: 16px;
  border: 2px solid var(--color-primary);
}
.tablet-qr-corners i:nth-child(1) { top: 0; left: 0; border-right: none; border-bottom: none; border-radius: 3px 0 0 0 }
.tablet-qr-corners i:nth-child(2) { top: 0; right: 0; border-left: none; border-bottom: none; border-radius: 0 3px 0 0 }
.tablet-qr-corners i:nth-child(3) { bottom: 0; left: 0; border-right: none; border-top: none; border-radius: 0 0 0 3px }
.tablet-qr-corners i:nth-child(4) { bottom: 0; right: 0; border-left: none; border-top: none; border-radius: 0 0 3px 0 }
.tablet-footer {
  font-size: 9px; color: #666; margin-top: 4px;
}

/* Phone mockup */
.phone-frame {
  width: 300px; height: 580px; min-height: 580px; max-height: 580px;
  background: white; border: 3px solid #1d1d1d;
  border-radius: 32px; overflow: hidden;
  box-shadow: 0 8px 40px -8px rgba(0,0,0,0.18);
  position: relative; z-index: 2; flex-shrink: 0;
}
.device-stack .phone-frame {
  position: absolute; left: 0; top: 30px;
}
.phone-notch {
  width: 110px; height: 26px;
  background: #1d1d1d; border-radius: 0 0 16px 16px;
  margin: 0 auto;
}
.phone-screen {
  padding: 18px 16px 0; position: relative;
  height: 100%; overflow: hidden;
  display: flex; flex-direction: column;
}
.phone-screen h4 {
  font-size: 17px; font-weight: 700; text-align: center;
  margin-bottom: 2px; color: var(--color-ink);
}
.phone-table-label {
  font-size: 12px; color: var(--color-ink-mute); text-align: center;
  margin-bottom: 16px;
}
.phone-item {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 0; border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}
.phone-item img {
  width: 40px; height: 40px; border-radius: 6px;
  object-fit: cover; flex-shrink: 0;
}
.phone-item-left { flex: 1; min-width: 0; overflow: hidden }
.phone-item-name {
  display: block; font-size: 13px; font-weight: 700; color: var(--color-ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.phone-item-desc {
  display: block; font-size: 11px; color: var(--color-ink-mute); margin-top: 1px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.phone-item-price {
  font-size: 13px; font-weight: 600; color: var(--color-ink);
  white-space: nowrap; font-variant-numeric: tabular-nums; flex-shrink: 0;
}
.phone-item-btn {
  font-size: 11px; font-weight: 700; color: var(--color-primary-press);
  background: transparent; border: 1.5px solid var(--color-primary-press);
  padding: 5px 10px; border-radius: var(--radius-pill);
  white-space: nowrap; flex-shrink: 0; transition: all 0.2s ease;
  min-width: 72px; text-align: center;
}
.phone-item-btn.added {
  background: var(--color-primary-press); color: white;
  border-color: var(--color-primary-press);
}
.phone-cart-bar {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  background: var(--color-primary-press); color: white;
  padding: 12px 16px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; font-weight: 700;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 12px; z-index: 2;
}
.phone-cart-bar.empty { opacity: 0; transform: translateY(8px) }

/* Order confirmation overlay */
.phone-confirm {
  position: absolute; inset: 0; top: 26px;
  background: white;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
  border-radius: 0 0 29px 29px;
  z-index: 3;
}
.phone-confirm.visible { opacity: 1 }
.phone-confirm-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--color-primary-tint); color: var(--color-primary-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; margin-bottom: 4px;
}
.phone-confirm strong { font-size: 16px; color: var(--color-ink) }
.phone-confirm span { font-size: 13px; color: var(--color-ink-mute) }


/* ═══════════════════════════════════════════
   LANDING — TRUST STATS
   ═══════════════════════════════════════════ */

.trust-section {
  background: var(--color-canvas-cream);
  padding: 96px 48px;
}
.trust-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  max-width: var(--max-w); margin: 0 auto; align-items: center;
}
.trust-text h2 { letter-spacing: -0.256px }
.trust-text strong { color: var(--color-ink) }
.trust-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.trust-card {
  background: white; border: 1px solid var(--color-hairline);
  border-radius: var(--radius-xl); padding: 28px 24px;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.trust-card:hover {
  border-color: var(--color-primary-tint);
  box-shadow: 0 4px 20px -4px rgba(0,0,0,0.06);
}
.trust-card-number {
  font-size: 42px; font-weight: 700; color: var(--color-primary);
  letter-spacing: -0.5px; line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.trust-card-label {
  font-size: 15px; font-weight: 500; color: var(--color-ink);
  margin-top: 6px;
}

@media(max-width: 1024px) {
  .trust-inner { grid-template-columns: 1fr; gap: 40px }
  .trust-cards { max-width: 400px }
}
@media(max-width: 768px) {
  .trust-section { padding: 64px 20px }
  .trust-cards { max-width: 100% }
}


/* ═══════════════════════════════════════════
   LANDING — HOW IT WORKS
   ═══════════════════════════════════════════ */

/* Two-tone background */
.how-section { text-align: center; position: relative; overflow: visible }

.how-top {
  background: var(--color-primary-tint);
  padding: 96px 48px 100px;
}

.how-bottom {
  background: white;
  padding: 0 48px 96px;
}

.how-card {
  max-width: 960px; margin: -72px auto 0;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 40px -8px rgba(0,0,0,0.08);
  padding: 48px 40px;
  position: relative; z-index: 2;
}

.how-steps {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; margin-top: 8px;
}

/* Step item — hidden by default */
.step-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; max-width: 220px; flex: 0 0 auto; padding: 0 12px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.step-item.visible { opacity: 1; transform: translateY(0) }

.how-circle {
  width: 56px; height: 56px;
  background: var(--color-primary); color: white;
  border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; position: relative; z-index: 2;
  box-shadow: 0 4px 12px rgba(74, 222, 128, 0.3);
  transform: scale(0.7);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.step-item.visible .how-circle { transform: scale(1) }

.step-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--color-ink) }
.step-item p {
  font-size: 15px; color: var(--color-ink-mute); line-height: 1.6;
  max-width: 220px; margin: 0 auto;
}

/* Connector — dashed line that draws across */
.step-connector {
  flex: 1; display: flex; align-items: flex-start;
  padding-top: 28px; min-width: 60px; max-width: 120px;
  overflow: hidden;
}
.connector-line {
  height: 2px; width: 100%;
  background: repeating-linear-gradient(to right, #4ADE80 0px, #4ADE80 6px, transparent 6px, transparent 12px);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.5s ease;
}
.step-connector.visible .connector-line {
  clip-path: inset(0 0% 0 0);
}


/* ═══════════════════════════════════════════
   LANDING — TESTIMONIALS
   ═══════════════════════════════════════════ */

.testimonials-section {
  background: var(--color-canvas-cream); padding: 96px 48px; text-align: center;
}
.testimonials-section .eyebrow-pill { margin-bottom: 16px }
.testimonials-section h2 { margin-bottom: 48px }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: var(--max-w); margin: 0 auto; text-align: left;
}
.testimonial-card { padding: 32px; transition: border-color 0.2s ease, box-shadow 0.2s ease }
.testimonial-card:hover { border-color: var(--color-primary-tint); box-shadow: var(--shadow-1) }
.testimonial-card--accent { border-color: var(--color-primary-tint) }
.testimonial-bars {
  display: flex; gap: 4px; margin-bottom: 20px;
}
.testimonial-bars span {
  width: 6px; height: 22px; border-radius: 2px;
  background: var(--color-primary);
}
.testimonial-text {
  font-size: 16px; color: var(--color-ink); line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--color-canvas-cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: var(--color-primary-deep);
  flex-shrink: 0;
}
.testimonial-photo {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; object-position: center top; flex-shrink: 0;
}
.testimonial-meta { font-size: 14px; color: var(--color-ink-mute) }
.testimonial-meta strong { color: var(--color-ink); font-weight: 600 }


/* ═══════════════════════════════════════════
   LANDING — STOREFRONT SHOWCASE TICKER
   ═══════════════════════════════════════════ */

.showcase-section {
  padding: 96px 0;
  background: white;
}
.showcase-header {
  text-align: center; max-width: 640px;
  margin: 0 auto 56px; padding: 0 24px;
}

/* Ticker wrapper with edge fade */
.ticker-wrapper {
  overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* Auto-scrolling track */
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-track {
  display: flex; gap: 24px;
  width: max-content;
  animation: ticker 40s linear infinite;
}
.ticker-track:hover {
  animation-play-state: paused;
}

/* Individual card */
.ticker-card {
  flex: 0 0 320px;
  background: var(--color-canvas-cream);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-xl);
  overflow: hidden; cursor: pointer;
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}
.ticker-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  background: white;
}

/* Menu mockup inside ticker card */
.menu-mockup {
  width: 100%; height: 220px;
  background: #ffffff;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  padding: 14px;
  display: flex; flex-direction: column;
  border-bottom: 1px solid #e6e6e6;
}
.mockup-header {
  text-align: center; margin-bottom: 10px;
  padding-bottom: 8px; border-bottom: 1px solid #f0f0f0;
}
.mockup-header .r-name { font-size: 13px; font-weight: 700; color: #1d1d1d; display: block }
.mockup-header .r-table { font-size: 10px; color: #696969 }
.mockup-row {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 0; border-bottom: 1px solid #f5f5f5; flex-shrink: 0;
}
.mockup-row:last-child { border-bottom: none }
.mockup-img {
  width: 32px; height: 32px; border-radius: 6px;
  flex-shrink: 0; object-fit: cover; background: #f0fdf4;
}
.mockup-info { flex: 1; min-width: 0 }
.mockup-info .m-name {
  font-size: 11px; font-weight: 600; color: #1d1d1d;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block;
}
.mockup-info .m-desc {
  font-size: 9px; color: #999;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block;
}
.mockup-right { display: flex; align-items: center; gap: 5px; flex-shrink: 0 }
.mockup-price { font-size: 11px; font-weight: 600; color: #1d1d1d }
.mockup-add {
  font-size: 9px; font-weight: 700; color: #16a34a;
  border: 1.5px solid #16a34a; border-radius: 90px;
  padding: 3px 8px; white-space: nowrap; background: transparent;
}
.mockup-add.added { background: #16a34a; color: #fff; border-color: #16a34a }

/* Caption */
.ticker-info {
  padding: 20px; border-top: 1px solid var(--color-hairline);
  background: white;
}
.ticker-info strong {
  display: block; font-size: 16px; font-weight: 700;
  color: var(--color-ink); margin-bottom: 4px;
}
.ticker-info span {
  display: block; font-size: 13px; color: var(--color-ink-mute);
}

@media(max-width: 768px) {
  .ticker-card { flex: 0 0 280px }
  .showcase-header { padding: 0 20px }
}

/* ── Menu mockup v2 (matches actual menu design) ── */
.menu-mockup.v2 { padding: 12px; display: flex; flex-direction: column; gap: 0; height: auto; min-height: 260px }
.mv2-header { text-align: left; margin-bottom: 8px; padding-bottom: 0; border-bottom: none }
.mv2-name { font-size: 15px; font-weight: 900; color: #1d1d1d; display: block; letter-spacing: -0.3px }
.mv2-table { font-size: 10px; color: #16a34a; font-weight: 600; display: block; margin-top: 2px }
.mv2-cats { display: flex; gap: 5px; margin-bottom: 10px; overflow: hidden }
.mv2-cat { font-size: 9px; font-weight: 500; padding: 4px 10px; border-radius: 90px; border: 1px solid #f0f0f0; color: #696969; background: #fff; white-space: nowrap }
.mv2-cat.active { background: #16a34a; color: #fff; border-color: #16a34a; font-weight: 700 }
.mv2-item { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px solid #f5f5f5; align-items: flex-start }
.mv2-item:last-child { border-bottom: none }
.mv2-img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; flex-shrink: 0 }
.mv2-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px }
.mv2-badge { font-size: 8px; font-weight: 700; letter-spacing: 0.3px; padding: 2px 7px; border-radius: 90px; display: inline-block; width: fit-content }
.mv2-badge.best { background: #fef3c7; color: #92400e }
.mv2-item-name { font-size: 12px; font-weight: 700; color: #1d1d1d; white-space: nowrap; overflow: hidden; text-overflow: ellipsis }
.mv2-desc { font-size: 10px; color: #999; white-space: nowrap; overflow: hidden; text-overflow: ellipsis }
.mv2-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 3px }
.mv2-price { font-size: 12px; font-weight: 800; color: #1d1d1d }
.mv2-add { font-size: 9px; font-weight: 700; color: #16a34a; border: 1.5px solid #16a34a; border-radius: 90px; padding: 3px 10px; background: transparent }
.mv2-added { font-size: 9px; font-weight: 700; color: #fff; background: #16a34a; border: 1.5px solid #16a34a; border-radius: 90px; padding: 3px 10px }


/* ═══════════════════════════════════════════
   LANDING — PRICING
   ═══════════════════════════════════════════ */

.pricing-section { padding: 96px 48px; text-align: center }
.pricing-section .eyebrow-pill { margin-bottom: 16px }
.pricing-section h2 { margin-bottom: 8px }
.pricing-sub {
  font-size: 18px; color: var(--color-ink-mute); margin-bottom: 48px;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1000px; margin: 0 auto; text-align: left;
}
.pricing-card { display: flex; flex-direction: column; transition: border-color 0.2s ease, box-shadow 0.2s ease }
.pricing-card:hover { box-shadow: var(--shadow-1) }
.pricing-card .eyebrow-pill { margin-bottom: 20px; align-self: flex-start }
.pricing-price {
  margin-bottom: 4px;
}
.pricing-price .amount { font-size: 40px; font-weight: 700 }
.pricing-price .period { font-size: 16px; font-weight: 400; color: var(--color-ink-mute) }
.pricing-desc {
  font-size: 15px; color: var(--color-ink-mute); margin-bottom: 20px;
}
.pricing-divider {
  border: none; border-top: 1px solid var(--color-hairline);
  margin-bottom: 20px;
}
.pricing-card .check-list { flex: 1; margin-bottom: 24px }
.pricing-card .check-list li { line-height: 1.8; font-size: 15px }

/* Featured pricing card overrides */
.pricing-card.card-featured .eyebrow-pill {
  background: rgba(0,0,0,0.1); color: var(--color-on-primary);
}
.pricing-card.card-featured .pricing-price .amount { color: var(--color-on-primary) }
.pricing-card.card-featured .pricing-price .period { color: rgba(26,31,46,0.7) }
.pricing-card.card-featured .pricing-desc { color: var(--color-on-primary); opacity: 0.8 }
.pricing-card.card-featured .pricing-divider { border-color: rgba(0,0,0,0.1) }
.pricing-card.card-featured .check-list li { color: var(--color-on-primary) }
.pricing-card.card-featured .check-list li::before { color: var(--color-on-primary) }


/* ═══════════════════════════════════════════
   LANDING — FAQ
   ═══════════════════════════════════════════ */

.faq-section { padding: 96px 48px }
.faq-section h2 { text-align: center; margin-bottom: 48px }
.faq-list { max-width: 740px; margin: 0 auto }
.faq-item { border-bottom: 1px solid var(--color-hairline); padding: 20px 0 }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; width: 100%; background: none; border: none;
  font-family: var(--font-body); font-size: 16px; font-weight: 600;
  color: var(--color-ink); text-align: left; padding: 4px 0;
  min-height: 44px; transition: color 0.15s ease;
}
.faq-question:hover { color: var(--color-primary-deep) }
.faq-question:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; border-radius: var(--radius-sm) }
.faq-toggle {
  font-size: 22px; font-weight: 400; color: var(--color-primary);
  flex-shrink: 0; margin-left: 16px; transition: transform 0.2s;
  line-height: 1;
}
.faq-answer {
  font-size: 16px; color: var(--color-ink-mute); line-height: 1.6;
  margin-top: 12px; padding-right: 40px;
  max-height: 500px; overflow: hidden; transition: max-height 0.3s ease;
}
.faq-item.collapsed .faq-answer { max-height: 0; margin-top: 0 }
.faq-item.collapsed .faq-toggle { transform: rotate(45deg) }


/* ═══════════════════════════════════════════
   LANDING — CTA BAND
   ═══════════════════════════════════════════ */

.cta-band {
  background: var(--color-primary); padding: 96px 48px; text-align: center;
}
.cta-band h2 {
  font-size: 32px; font-weight: 700; line-height: 1.25;
  letter-spacing: -0.256px; color: var(--color-on-primary);
}
.cta-band p {
  font-size: 18px; color: var(--color-on-primary); opacity: 0.75;
  margin-top: 16px;
}
.cta-band .btn { margin-top: 36px }


/* ═══════════════════════════════════════════
   LANDING — FOOTER (dark)
   ═══════════════════════════════════════════ */

.site-footer {
  background: var(--color-on-primary); padding: 64px 48px; color: white;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { color: white; font-size: 20px }
.footer-brand .nav-logo span { color: var(--color-primary) }
.footer-brand p { font-size: 14px; opacity: 0.6; margin-top: 12px; line-height: 1.5 }
.footer-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.96px;
  text-transform: uppercase; margin-bottom: 16px; opacity: 0.4;
}
.footer-col a:not(.btn) {
  display: block; font-size: 14px; color: white;
  padding: 4px 0; opacity: 0.65; text-decoration: none;
}
.footer-col a:hover { opacity: 1; color: white }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 12px; opacity: 0.4;
}


/* ═══════════════════════════════════════════
   LANDING — RESPONSIVE
   ═══════════════════════════════════════════ */

@media(max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 64px 32px }
  .hero-flow { max-width: 400px; margin: 0 auto }
  .feature-inner { grid-template-columns: 1fr; gap: 40px }
  .feature-inner--flipped .feature-text { order: 1 }
  .feature-inner--flipped .feature-visual { order: 2 }
  .device-stack { min-height: 480px }
  .device-stack .phone-frame { position: relative; left: auto; top: auto; margin: 0 auto }
  .browser-frame { position: relative; right: auto; margin: 24px auto 0; width: 100%; max-width: 400px }
  .tablet-frame { display: none }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px }
  .testimonials-grid { grid-template-columns: 1fr }
}

@media(max-width: 768px) {
  .site-nav-inner { padding: 14px 20px }
  .nav-links { display: none }
  .nav-actions { display: none }
  .nav-hamburger { display: flex }
  .hero { padding: 48px 20px 64px }
  .hero-text h1 { font-size: 32px }
  .hero-actions { flex-direction: column }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center }
  .feature-section { padding: 64px 20px }
  .how-top { padding: 64px 20px 80px }
  .how-bottom { padding: 0 20px 64px }
  .how-card { padding: 32px 20px; margin-top: -56px }
  .how-steps { flex-direction: column; align-items: center; gap: 0 }
  .step-item { max-width: 280px }
  .step-connector { padding-top: 0; width: 2px; height: 40px; min-width: 2px; max-width: 2px; flex: none }
  .connector-line {
    width: 2px; height: 100%;
    background: repeating-linear-gradient(to bottom, #4ADE80 0px, #4ADE80 6px, transparent 6px, transparent 12px);
    clip-path: inset(0 0 100% 0);
  }
  .step-connector.visible .connector-line { clip-path: inset(0 0 0% 0) }
  .how-step + .how-step::before { display: none }
  .testimonials-section { padding: 64px 20px }
  .pricing-section { padding: 64px 20px }
  .faq-section { padding: 64px 20px }
  .cta-band { padding: 64px 20px }
  .site-footer { padding: 40px 20px }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px }
}


/* ═══════════════════════════════════════════
   AUTH PAGE
   ═══════════════════════════════════════════ */

.auth-wrapper {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 24px; background: var(--color-canvas-cream);
}
.auth-card { width: 100%; max-width: 420px; padding: 40px }
.auth-card .nav-logo {
  text-align: center; display: block;
  font-size: 24px; margin-bottom: 32px;
}
.auth-card h1 {
  font-size: 24px; font-weight: 700; line-height: 1.33;
  letter-spacing: -0.096px; text-align: center; margin-bottom: 4px;
}
.auth-card .subtitle {
  text-align: center; color: var(--color-ink-mute);
  margin-bottom: 28px; font-size: 16px;
}
.auth-card .form-group { margin-bottom: 16px }
.auth-card .btn { width: 100%; margin-top: 8px }
.password-wrap {
  position: relative;
}
.password-wrap input { padding-right: 44px }
.password-toggle {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; padding: 6px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px; transition: background 0.15s ease;
}
.password-toggle:hover { background: #f0f0f0 }
.auth-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 20px 0;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--color-hairline);
}
.auth-divider span { font-size: 13px; color: var(--color-ink-mute) }

.btn-google {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 20px; min-height: 44px;
  background: white; border: 1px solid var(--color-hairline);
  border-radius: var(--radius-pill); cursor: pointer;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  color: var(--color-ink);
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.btn-google:hover {
  background: #f8f8f8;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}
.btn-google:active { transform: scale(0.97); box-shadow: none }
.btn-google:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px }

.auth-toggle {
  text-align: center; margin-top: 20px;
  font-size: 14px; color: var(--color-ink-mute);
}
.auth-toggle a { color: var(--color-primary-deep); font-weight: 600 }
.auth-error {
  background: #fef2f2; border: 1px solid #fecaca; color: var(--color-semantic-error);
  padding: 10px 14px; border-radius: var(--radius-sm);
  font-size: 14px; margin-bottom: 16px; display: none;
}


/* ═══════════════════════════════════════════
   DASHBOARD
   ═══════════════════════════════════════════ */

.dash { display: flex; min-height: 100vh; background: #f8f8f8 }

.sidebar {
  width: 250px; background: white;
  border-right: 1px solid var(--color-hairline);
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 50;
}
.sidebar .nav-logo { padding: 20px 24px; font-size: 20px }
.sidebar nav { flex: 1; padding: 8px 12px }
.sidebar nav button {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 12px 16px;
  border: none; border: 1px solid transparent;
  background: transparent;
  color: #696969; font-size: 15px;
  border-radius: 10px; cursor: pointer;
  text-align: left; position: relative;
  font-family: var(--font-body); font-weight: 500;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  transform: translateY(0);
  will-change: transform;
}
.sidebar nav button:hover:not(.active) {
  background: #f4fdf7; color: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.08);
}
.sidebar nav button.active {
  background: #f0fdf4; color: #16a34a; font-weight: 700;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.15), 0 2px 4px rgba(22, 163, 74, 0.1);
  border-color: #d1fae5;
}
.sidebar nav button.active::before {
  content: ''; position: absolute; left: 0; top: 20%;
  height: 60%; width: 3px;
  background: #16a34a; border-radius: 0 3px 3px 0;
}
.sidebar nav button:active {
  transform: translateY(-1px);
  transition: transform 0.1s ease;
}
.sidebar nav button svg { flex-shrink: 0 }
.sidebar-bottom { padding: 16px 24px; border-top: 1px solid var(--color-hairline) }
.sidebar-bottom button {
  background: none; border: none; color: var(--color-ink-mute);
  cursor: pointer; font-size: 14px; font-family: var(--font-body);
}
.sidebar-bottom button:hover { color: var(--color-semantic-error) }

.dash-main {
  margin-left: 250px; flex: 1;
  padding: 32px 40px;
}
.dash-main h2 {
  font-size: 24px; font-weight: 700; line-height: 1.33;
  letter-spacing: -0.096px; margin-bottom: 24px;
}
.section { display: none }
.section.active { display: block }

.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex; align-items: center; justify-content: center;
  z-index: 100; padding: 16px;
}
.modal {
  background: white; border: 1px solid var(--color-hairline);
  border-radius: var(--radius-xl); padding: 32px;
  width: 100%; max-width: 420px; box-shadow: var(--shadow-2);
}
.modal h2 { margin-bottom: 16px }

/* Section header with title + action button */
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.section-header h2 { margin-bottom: 0 }

/* Empty state */
.menu-empty-state { display: none }
.menu-empty-state.visible { display: block }
.menu-empty-card {
  background: white; border: 1px solid var(--color-hairline);
  border-radius: var(--radius-xl); padding: 64px 32px;
  text-align: center; max-width: 520px; margin: 40px auto;
  box-shadow: 0 4px 24px -4px rgba(0,0,0,0.04);
}
.menu-empty-icon { margin-bottom: 24px; opacity: 0.6 }
.menu-empty-card h3 {
  font-size: 20px; font-weight: 700; color: var(--color-ink); margin-bottom: 8px;
}
.menu-empty-card p {
  font-size: 15px; color: var(--color-ink-mute); line-height: 1.6;
  max-width: 360px; margin: 0 auto 24px;
}

/* Image upload */
.image-upload-area {
  width: 100%; height: 140px;
  border: 2px dashed var(--color-hairline);
  border-radius: var(--radius-lg); cursor: pointer;
  overflow: hidden; position: relative;
  transition: border-color 0.2s ease, background 0.2s ease;
  display: flex; align-items: center; justify-content: center;
  background: #fafafa;
}
.image-upload-area:hover { border-color: var(--color-primary); background: var(--color-canvas-lavender) }
.image-upload-area.has-image { border-style: solid; border-color: var(--color-primary) }
.upload-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  pointer-events: none;
}
.upload-label { font-size: 13px; font-weight: 600; color: var(--color-ink-mute) }
.upload-sub { font-size: 11px; color: #b0b0b0 }
#image-preview {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; top: 0; left: 0;
}

/* Side drawer */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.2);
  z-index: 200; transition: opacity 0.25s ease;
}
.drawer-backdrop.hidden { display: none }

.item-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 400px; max-width: 100vw;
  background: white;
  border-left: 1px solid var(--color-hairline);
  box-shadow: -8px 0 32px rgba(0,0,0,0.08);
  z-index: 201;
  display: flex; flex-direction: column;
  transform: translateX(0);
  transition: transform 0.25s ease;
}
.item-drawer.hidden {
  transform: translateX(100%);
  pointer-events: none;
}
.drawer-header {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-hairline);
}
.drawer-close {
  background: none; border: none; cursor: pointer;
  color: var(--color-ink-mute); padding: 4px;
  border-radius: var(--radius-sm); transition: color 0.15s ease;
  min-width: 28px; min-height: 28px;
  display: flex; align-items: center; justify-content: center;
}
.drawer-close:hover { color: var(--color-ink) }
.drawer-header h3 { font-size: 17px; font-weight: 700; color: var(--color-ink) }
.drawer-body {
  flex: 1; overflow-y: auto; padding: 24px;
  display: flex; flex-direction: column; gap: 0;
}
.drawer-body .form-group { margin-bottom: 20px }
.drawer-footer {
  padding: 20px 24px; border-top: 1px solid var(--color-hairline);
  margin-top: auto;
}

@media(max-width: 768px) {
  .item-drawer { width: 100% }
}

.section-header-actions { display: flex; align-items: center; gap: 12px }
.currency-select {
  padding: 8px 32px 8px 14px; min-height: 40px;
  border: 1px solid var(--color-hairline); border-radius: var(--radius-md);
  font-size: 14px; font-weight: 600; color: var(--color-ink);
  background: white url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center;
  -webkit-appearance: none; appearance: none; cursor: pointer;
  transition: border-color 0.2s ease;
}
.currency-select:hover { border-color: var(--color-primary-tint) }
.currency-select:focus-visible { border-color: var(--color-primary); outline: none; box-shadow: var(--shadow-focus) }

.item-list { display: flex; flex-direction: column; gap: 12px }
.item-row {
  display: flex; flex-direction: row;
  background: white; border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  min-height: 110px;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
  position: relative;
}
.item-row:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateY(-2px);
  z-index: 2;
}
.item-row-img-wrap {
  width: 110px; min-width: 110px; height: 110px;
  flex-shrink: 0; overflow: hidden;
}
.item-row-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
}
.item-row-img-placeholder {
  width: 100%; height: 100%; background: #f0fdf4;
}
.item-row-body {
  flex: 1; padding: 14px 16px 12px;
  display: flex; flex-direction: column;
  justify-content: space-between; min-width: 0;
}
.item-row-top { display: flex; flex-direction: column; gap: 4px }
.item-row-top h4 {
  font-size: 16px; font-weight: 700; color: #1d1d1d;
  line-height: 1.3;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.item-row-top p {
  font-size: 12px; color: #969696; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.item-row-bottom {
  display: flex; align-items: center;
  justify-content: space-between; margin-top: 10px;
}
.item-row-actions {
  display: flex; align-items: center; gap: 10px;
}
.item-row.sold-out { opacity: 0.5 }
.item-row.sold-out .item-row-top h4 { text-decoration: line-through; color: #a0aec0 }
.item-row.sold-out .item-price { color: #a0aec0 }
.item-price {
  font-size: 17px; font-weight: 800; color: #1d1d1d;
  letter-spacing: -0.3px; white-space: nowrap;
}

/* Icon action buttons — drawer from right */
.item-icon-btn {
  width: 40px; height: 40px; border: none;
  border-radius: 10px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.3s cubic-bezier(0.22,0.61,0.36,1), opacity 0.3s ease;
  color: #a0aec0; background: transparent;
  transform: translateX(0); opacity: 1;
}
.item-row:hover .item-icon-edit { transition-delay: 0s }
.item-row:hover .item-icon-delete { transition-delay: 0.06s }

.item-icon-edit:hover { color: #00875a; background: #f0fdf4 }
.item-icon-delete:hover { color: #dc2626; background: #fef2f2 }
.item-icon-btn:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; transform: translateX(0); opacity: 1 }

.toggle { position: relative; width: 38px; height: 22px; cursor: pointer; flex-shrink: 0; min-width: 38px }
.toggle input { opacity: 0; width: 0; height: 0; position: absolute }
.toggle input:focus-visible + .slider { box-shadow: 0 0 0 2px var(--color-primary-deep) }
.toggle .slider {
  position: absolute; inset: 0;
  background: var(--color-hairline); border-radius: 22px; transition: 0.2s;
}
.toggle .slider::before {
  content: ''; position: absolute;
  width: 18px; height: 18px; left: 2px; top: 2px;
  background: white; border-radius: 50%; transition: 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.toggle input:checked + .slider { background: var(--color-primary) }
.toggle input:checked + .slider::before { transform: translateX(16px) }

.new-table-form {
  background: white; border: 1px solid var(--color-hairline);
  border-radius: var(--radius-lg); padding: 16px 20px; margin-bottom: 24px;
}
.new-table-form.hidden { display: none }

.table-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.table-card {
  text-align: center; padding: 24px 20px 20px;
  background: white; border: 1px solid var(--color-hairline);
  border-radius: 16px; position: relative; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: box-shadow 0.25s ease;
}
.table-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08) }
.table-card canvas, .table-card img {
  width: 160px !important; height: 160px !important;
  margin: 0 auto 14px; border-radius: var(--radius-xs);
}
.table-card h4 {
  font-size: 16px; font-weight: 700; color: #1d1d1d;
  letter-spacing: -0.2px;
}
.table-name-label {
  font-size: 15px; font-weight: 700; color: #1d1d1d;
  text-align: center; margin: 14px 0 4px;
}
.scan-to-order {
  font-size: 12px; font-weight: 600; color: #16a34a;
  text-align: center; margin: 0 0 14px; letter-spacing: 0.4px;
}
.btn-download-qr {
  width: 100%; padding: 10px 0;
  background: #f0fdf4; color: #16a34a;
  font-size: 13px; font-weight: 700;
  border: 1.5px solid #16a34a; border-radius: 90px;
  cursor: pointer; font-family: var(--font-body);
  transition: background 0.2s ease, color 0.2s ease;
  position: relative; z-index: 1;
}
.btn-download-qr:hover { background: #16a34a; color: #fff }
.btn-download-qr:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px }

/* 3-dot menu button */
.card-menu-wrap {
  position: absolute; top: 12px; right: 12px; z-index: 10;
}
.card-menu-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3.5px; width: 32px; height: 32px;
  background: transparent; border: none; border-radius: 8px;
  cursor: pointer; padding: 0; transition: background 0.15s ease;
}
.card-menu-btn:hover { background: #f4fdf7 }
.card-menu-btn span {
  display: block; width: 4px; height: 4px;
  background: #696969; border-radius: 50%; transition: background 0.15s ease;
}
.card-menu-btn:hover span { background: #16a34a }

/* Dropdown */
.card-dropdown {
  position: absolute; top: 36px; right: 0;
  background: white; border: 1px solid #e6e6e6;
  border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  min-width: 160px; overflow: hidden;
  opacity: 0; transform: translateY(-6px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 100;
}
.card-dropdown.open {
  opacity: 1; transform: translateY(0) scale(1); pointer-events: all;
}
.dropdown-item {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 11px 14px;
  font-size: 13px; font-weight: 600; color: #1d1d1d;
  background: transparent; border: none; cursor: pointer;
  text-align: left; font-family: var(--font-body);
  transition: background 0.12s ease;
}
.dropdown-item:hover { background: #f4fdf7; color: #16a34a }
.dropdown-item.danger { color: #cc4117 }
.dropdown-item.danger:hover { background: #fff5f5; color: #cc4117 }
.dropdown-item + .dropdown-item { border-top: 1px solid #f0f0f0 }

/* Orders stats bar */
.orders-stats-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 0 0; flex-wrap: wrap; gap: 12px;
}
.stats-left { display: flex; align-items: center; gap: 16px }
.orders-title {
  font-size: 28px; font-weight: 800; color: #1d1d1d;
  letter-spacing: -0.5px; margin-bottom: 0;
}
.orders-bell {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: #696969;
}
.stats-right { font-size: 12px; font-weight: 400; color: #696969 }
.stats-cards-row {
  display: flex; gap: 12px; padding: 16px 0 0; flex-wrap: wrap;
}
.stat-mini-card {
  background: #ffffff; border: 1px solid #e6e6e6;
  border-radius: 10px; padding: 12px 16px;
  display: flex; flex-direction: column; gap: 4px; min-width: 120px;
}
.stat-mini-label {
  font-size: 11px; font-weight: 600; color: #b0b0b0;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.stat-mini-value {
  font-size: 22px; font-weight: 800; color: #16a34a; letter-spacing: -0.5px;
}

/* Orders grid */
.orders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px; padding: 20px 0;
}
.order-card {
  background: #ffffff; border: 1px solid #e6e6e6;
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s ease;
}
.order-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08) }
.order-card.served { opacity: 0.5 }
.order-card-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 16px 16px 12px;
}
.order-card-left { display: flex; flex-direction: column; gap: 3px }
.order-table-name {
  font-size: 20px; font-weight: 800; color: #1d1d1d; letter-spacing: -0.3px;
}
.order-time { font-size: 12px; font-weight: 400; color: #696969 }
.order-status-badge {
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; padding: 5px 12px;
  border-radius: 90px; flex-shrink: 0;
}
.order-items-list {
  padding: 0 16px 12px; display: flex; flex-direction: column; gap: 4px;
  flex: 1;
}
.order-item-row { font-size: 14px; font-weight: 400; color: #1d1d1d; line-height: 1.6 }
.order-items-missing { font-style: italic; color: #a0aec0; font-size: 13px }
.order-card-footer {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 10px 16px 12px; border-top: 1px solid #f0f0f0;
}
.order-total { font-size: 16px; font-weight: 400; color: #16a34a }
.order-total strong { font-weight: 800 }
.order-meta {
  font-size: 12px; font-weight: 400; color: #696969;
  text-align: right; line-height: 1.6;
}
.order-notes-display { color: #696969; font-style: italic }
.btn-mark-served {
  width: 100%; padding: 13px; background: transparent;
  border: none; border-top: 1px solid #e6e6e6;
  color: #16a34a; font-size: 14px; font-weight: 700;
  cursor: pointer; font-family: var(--font-body);
  transition: background 0.15s;
}
.btn-mark-served:hover { background: #f0fdf4 }
.btn-mark-served:disabled { opacity: 0.5; cursor: not-allowed }
.order-served-label {
  text-align: center; padding: 13px;
  font-size: 13px; font-weight: 600; color: #b0b0b0;
  border-top: 1px solid #f0f0f0;
}

.edit-modal .modal { max-width: 440px }
.edit-modal .form-group { margin-bottom: 14px }

.mobile-header {
  display: none; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-bottom: 1px solid var(--color-hairline);
  background: white; position: sticky; top: 0; z-index: 40;
}
.hamburger { background: none; border: none; color: var(--color-ink); font-size: 22px; cursor: pointer }

@media(max-width: 768px) {
  .sidebar { transform: translateX(-100%); transition: transform 0.25s }
  .sidebar.open { transform: translateX(0) }
  .dash-main { margin-left: 0; padding: 20px 16px }
  .mobile-header { display: flex }
  .tables-gen { flex-direction: column }
  .tables-gen input { max-width: 100% }
  .table-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px }
}


/* ═══════════════════════════════════════════
   PUBLIC MENU — styles moved to css/menu.css
   ═══════════════════════════════════════════ */

.spinner {
  width: 18px; height: 18px;
  border: 2px solid var(--color-hairline); border-top-color: var(--color-primary-deep);
  border-radius: 50%; animation: spin 0.6s linear infinite; display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg) } }

.empty { text-align: center; padding: 48px 16px; color: var(--color-ink-mute); font-size: 15px }
