:root {
  --black: #050505;
  --ink: #111111;
  --muted: #5f6065;
  --soft: #f5f5f7;
  --soft-2: #fafafa;
  --line: rgba(0,0,0,.1);
  --line-strong: rgba(0,0,0,.16);
  --white: #ffffff;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(0,0,0,.12);
  --max: 1420px;
  --content: 1180px;
  --gutter: clamp(24px, 4vw, 72px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  min-height: 74px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255,255,255,.78);
  border-bottom: 1px solid rgba(0,0,0,.08);
  backdrop-filter: saturate(180%) blur(22px);
}
.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}
.brand { font-size: 21px; }
.brand img,
.footer-brand img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}
.top-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 1.55vw, 24px);
  overflow-x: auto;
  color: #2a2b2f;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  scrollbar-width: none;
}
.top-nav::-webkit-scrollbar { display: none; }
.top-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 74px;
  border-bottom: 1px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}
.top-nav a:hover,
.top-nav a:focus-visible {
  color: #000;
  border-color: currentColor;
}
.download-badge,
.header-downloads {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: #050505;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.download-badge:hover,
.header-downloads:hover {
  transform: translateY(-2px);
  background: #111;
  box-shadow: 0 18px 44px rgba(0,0,0,.24);
}
.download-badge img,
.header-downloads img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.apple-mark {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #fff;
  font-size: 24px;
  line-height: 1;
}
.download-badge span,
.header-downloads span {
  display: grid;
  line-height: 1;
  text-align: left;
}
.download-badge small,
.header-downloads small {
  color: rgba(255,255,255,.78);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.download-badge strong,
.header-downloads strong {
  margin-top: 3px;
  color: #fff;
  font-size: 15px;
  font-weight: 820;
  letter-spacing: 0;
  white-space: nowrap;
}
.header-downloads {
  min-height: 48px;
  padding: 0 14px 0 12px;
}
.hero-download {
  min-height: 52px;
  padding: 0 18px 0 16px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(420px, .82fr);
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
  width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  min-height: calc(100svh - 74px);
  margin: 0 auto;
  padding: clamp(54px, 7vw, 92px) 0 clamp(34px, 5vw, 70px);
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 670px;
  animation: fadeUp .7s ease both;
}
.eyebrow {
  margin: 0 0 18px;
  color: #6c6d72;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1,
h2,
h3,
p { letter-spacing: 0; }
h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 82px);
  line-height: .98;
  font-weight: 850;
}
h2 {
  margin: 0;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.02;
  font-weight: 840;
}
h3 {
  margin: 0;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
  font-weight: 800;
}
.hero-subtitle {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.45;
  font-weight: 500;
}
.hero-actions,
.quiet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.primary-action {
  color: #fff;
  background: #000;
  border: 1px solid #000;
  box-shadow: 0 14px 30px rgba(0,0,0,.16);
}
.primary-action.inverse {
  color: #000;
  background: #fff;
  border-color: #fff;
  box-shadow: none;
}
.secondary-action {
  background: #fff;
  border: 1px solid var(--line-strong);
}
.secondary-action.dark { border-color: rgba(0,0,0,.22); }
.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
}
.primary-action:hover { box-shadow: 0 18px 42px rgba(0,0,0,.2); }

.device-stage {
  position: relative;
  min-height: 620px;
  animation: fadeUp .8s .08s ease both;
}
.phone {
  position: absolute;
  width: min(302px, 24vw);
  margin: 0;
  filter: drop-shadow(0 34px 46px rgba(0,0,0,.22));
  will-change: transform;
}
.phone-guest {
  left: 0;
  top: 78px;
  z-index: 2;
  transform: rotate(-3.5deg);
}
.phone-restaurant {
  right: 4px;
  top: 12px;
  z-index: 1;
  transform: rotate(3.5deg);
}
.phone-shell {
  width: 100%;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 54px;
}
.phone-screen-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.section {
  padding: clamp(76px, 9vw, 136px) var(--gutter);
}
.section > *,
.content-width,
.section-heading,
.section-copy,
.feature-grid,
.steps,
.quiet-actions,
.split-actions,
.app-download-grid,
.footer-main,
.footer-bottom {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
}
.two-column {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.two-column > * { width: auto; }
.section-copy { margin-top: 6px; }
.section-copy p,
.split-actions > div:first-child p,
.request p,
.implement > p,
.page-lead,
.detail-card p,
.price-card p,
.plan-list,
.plan-exclusions {
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.55;
}
.section-copy p { margin: 0 0 22px; }
.feature-band,
.process,
.split-actions,
.content-section {
  background: var(--soft);
}
.feature-grid,
.steps,
.app-download-grid,
.detail-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.feature-grid,
.steps {
  margin-top: 42px;
}
.feature-grid article,
.steps > div,
.download-card,
.detail-card,
.price-card,
.lead-form {
  min-height: 250px;
  padding: 34px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(255,255,255,.85) inset;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.feature-grid article:hover,
.steps > div:hover,
.download-card:hover,
.detail-card:hover,
.price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,0,0,.18);
  box-shadow: 0 18px 44px rgba(0,0,0,.07);
}
.feature-grid span,
.steps span,
.detail-card span,
.plan-label {
  display: block;
  margin-bottom: 58px;
  color: #737479;
  font-size: 16px;
  font-weight: 800;
}
.feature-grid h3,
.steps h3 { margin-bottom: 16px; }
.feature-grid p,
.steps p,
.download-card p,
.download-card strong {
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.5;
}

.process .quiet-actions { margin-top: 28px; }

.implement {
  color: #fff;
  background: #000;
  overflow: hidden;
  padding-top: clamp(94px, 10vw, 148px);
  padding-bottom: clamp(94px, 10vw, 148px);
}
.implement .eyebrow { color: rgba(255,255,255,.66); }
.implement > * {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
}
.implement h2 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.implement > p {
  max-width: 1060px;
  margin-top: 18px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,.72);
  text-align: center;
}
.implementation-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}
.implementation-links a {
  display: grid;
  align-content: space-between;
  min-height: 178px;
  padding: 22px;
  color: #fff;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  box-shadow: 0 1px 0 rgba(255,255,255,.12) inset;
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
}
.implementation-links a span {
  color: rgba(255,255,255,.48);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .14em;
}
.implementation-links a strong {
  display: block;
  margin-top: 18px;
  font-size: 19px;
  line-height: 1.15;
}
.implementation-links a small {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.66);
  font-size: 14px;
  line-height: 1.35;
}
.implementation-links a:hover {
  background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.07));
  border-color: rgba(255,255,255,.32);
  transform: translateY(-2px);
}
.implement-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.implement-actions .primary-action,
.implement-actions .secondary-action {
  width: auto;
  margin: 0;
}
.secondary-action.on-dark {
  color: #fff;
  background: transparent;
  border-color: rgba(255,255,255,.28);
}
.secondary-action.on-dark:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.42);
}

.split-actions {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 20px;
  align-items: start;
}
.app-download-grid {
  width: 100%;
  margin: 0;
}
.download-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
}
.download-card img {
  width: 74px;
  height: 74px;
  margin-bottom: 44px;
  border-radius: 17px;
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
}
.download-card p,
.download-card strong { margin: 6px 0 0; }
.download-card strong { font-weight: 800; }
.app-store-badge { display: none; }

.request {
  text-align: center;
  background: #fff;
}
.request h2 { max-width: 940px; }
.request p {
  max-width: 760px;
  margin-top: 20px;
}
.request .secondary-action { margin-top: 28px; }

.site-footer {
  color: #fff;
  background: #000;
  padding: 70px 24px 28px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr .9fr .8fr;
  gap: 48px;
}
.footer-brand { font-size: 24px; }
.footer-main p,
.footer-links a,
.footer-contact a,
.footer-bottom {
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.55;
}
.footer-main p {
  max-width: 360px;
  margin-top: 28px;
}
.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 12px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 58px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.footer-bottom div { display: flex; gap: 24px; }

.subpage-main { background: #fff; }
.subpage-hero {
  padding: 92px var(--gutter) 78px;
  background: #fff;
}
.content-width { width: min(100%, var(--max)); }
.page-lead {
  max-width: 860px;
  margin: 20px 0 0;
}
.content-section { padding: 84px var(--gutter); }
.detail-grid,
.pricing-grid { width: min(100%, var(--max)); margin: 0 auto; }
.detail-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.detail-card h2 { font-size: clamp(28px, 3vw, 44px); }
.detail-card h3 {
  margin-bottom: 18px;
  font-size: clamp(23px, 2.1vw, 32px);
}
.detail-card p {
  margin: 0;
  font-size: clamp(17px, 1.35vw, 20px);
}
.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 34px;
  color: #fff;
  background: #000;
  border-radius: var(--radius);
}
.cta-band h2 { font-size: clamp(28px, 3.6vw, 48px); }
.cta-band p { color: rgba(255,255,255,.7); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-band .secondary-action {
  color: #fff;
  background: transparent;
  border-color: rgba(255,255,255,.34);
}

.lead-form-wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: start;
}
.lead-form-copy {
  position: sticky;
  top: 110px;
}
.lead-form-copy h2 { font-size: clamp(32px, 4vw, 56px); }
.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  min-height: auto;
}
.field { display: grid; gap: 8px; }
.field.full,
.check-field.full,
.form-note,
.form-submit,
.form-status { grid-column: 1 / -1; }
.field label {
  color: #3f4045;
  font-size: 14px;
  font-weight: 750;
}
.field input,
.field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 14px;
  padding: 13px 14px;
  color: #111;
  background: #fff;
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { min-height: 142px; resize: vertical; }
.field input:focus,
.field textarea:focus {
  border-color: #111;
  box-shadow: 0 0 0 4px rgba(0,0,0,.08);
}
.check-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #34353a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}
.check-field input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: #050505;
  flex: 0 0 auto;
}
.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.form-submit {
  min-height: 54px;
  color: #fff;
  background: #000;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}
.form-submit:disabled { opacity: .55; cursor: wait; }
.form-status { min-height: 20px; margin: 0; font-weight: 700; }
.form-status.success,
.form-status.error { padding: 14px 16px; border-radius: 14px; }
.form-status.success { color: #155b36; background: #eaf5ee; }
.form-status.error { color: #7e2424; background: #f8e8e8; }
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.price-card { min-height: auto; }
.price-card.featured {
  color: #fff;
  background: #000;
  border-color: #000;
}
.pricing-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.pricing-stack .price-card {
  display: grid;
  grid-template-columns: .78fr 1fr auto;
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  padding: clamp(30px, 4vw, 48px);
}
.pricing-stack .price-card .price-summary {
  min-width: 0;
}
.pricing-stack .price-card .plan-list {
  margin: 0;
}
.pricing-stack .price-card .plan-action {
  align-self: end;
  white-space: nowrap;
}
.price-card.pilot {
  background: linear-gradient(135deg, #fff 0%, #f6f6f7 100%);
  border-color: rgba(0,0,0,.18);
}
.price {
  margin: 18px 0 8px;
  font-size: clamp(46px, 5vw, 70px);
  font-weight: 850;
}
.price small { font-size: 18px; font-weight: 650; }
.plan-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.plan-list li::before { content: "✓ "; font-weight: 900; }
.featured .plan-list,
.featured .plan-exclusions,
.featured p,
.featured .plan-label { color: rgba(255,255,255,.76); }

.pricing-page {
  background: linear-gradient(180deg, #fff 0%, #f5f5f7 58%, #fff 100%);
}
.pricing-hero {
  padding-top: clamp(14px, 2vw, 24px);
  padding-bottom: 4px;
}
.pricing-hero h1 {
  max-width: 980px;
  font-size: clamp(34px, 3.35vw, 50px);
}
.pricing-hero .page-lead {
  max-width: 1000px;
  font-size: clamp(15px, 1.15vw, 18px);
  margin-top: 8px;
}
.pricing-hero .eyebrow {
  margin-bottom: 10px;
}
.pricing-section {
  padding-top: 0;
  padding-bottom: clamp(20px, 2.2vw, 30px);
}
.pricing-note-section {
  padding-top: 0;
}
.pricing-compare {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.comparison-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: clamp(14px, 1.15vw, 18px);
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(0,0,0,.11);
  border-radius: 28px;
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 18px 58px rgba(0,0,0,.07);
}
.comparison-card.pilot {
  background: linear-gradient(180deg, #fff 0%, #f8f8f9 100%);
}
.comparison-card.complete {
  color: #fff;
  background:
    radial-gradient(circle at 80% 0%, rgba(255,255,255,.2), transparent 32%),
    linear-gradient(180deg, #171717 0%, #050505 100%);
  border-color: rgba(0,0,0,.9);
  box-shadow: 0 28px 90px rgba(0,0,0,.28);
}
.comparison-card.complete::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 29px;
  background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(0,0,0,0) 32%, rgba(255,255,255,.24));
}
.value-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  align-self: flex-start;
  margin: 0;
  padding: 8px 11px;
  color: #000;
  background: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.comparison-card .plan-top {
  min-height: 100px;
}
.comparison-card .plan-label {
  margin-bottom: 9px;
  color: #77787d;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.comparison-card.complete .plan-label,
.comparison-card.complete .plan-description,
.comparison-card.complete .price small {
  color: rgba(255,255,255,.7);
}
.comparison-card h2 {
  font-size: clamp(21px, 1.55vw, 26px);
  line-height: 1.02;
}
.comparison-card .price {
  margin: 6px 0 4px;
  font-size: clamp(28px, 2.1vw, 36px);
}
.comparison-card .plan-description {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.35;
}
.comparison-list {
  display: grid;
  gap: 0;
  margin: 5px 0 10px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(0,0,0,.08);
}
.comparison-card.complete .comparison-list {
  border-color: rgba(255,255,255,.18);
}
.comparison-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 22px;
  padding: 2px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
  color: #242529;
  font-size: 11.75px;
  line-height: 1.2;
}
.comparison-card.complete .comparison-list li {
  color: rgba(255,255,255,.86);
  border-color: rgba(255,255,255,.14);
}
.comparison-list strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}
.comparison-list .yes {
  color: #fff;
  background: #111;
}
.comparison-card.complete .comparison-list .yes {
  color: #050505;
  background: #fff;
}
.comparison-list .no {
  color: #8a1f1f;
  background: #f7e7e7;
}
.comparison-card .plan-action {
  width: 100%;
  margin-top: auto;
  min-height: 40px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 0;
    padding: 14px 24px 0;
  }
  .brand {
    grid-column: 1;
    grid-row: 1;
    padding-bottom: 10px;
  }
  .top-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    min-height: 48px;
  }
  .top-nav a { min-height: 48px; }
  .header-downloads {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-height: 42px;
    padding: 0 12px;
  }
  .header-downloads strong { font-size: 13px; }
  .header-downloads small { font-size: 9px; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 58px;
  }
  .hero-copy { max-width: 760px; }
  .device-stage {
    min-height: 600px;
    max-width: 660px;
    width: 100%;
    margin: 0 auto;
  }
  .phone { width: min(292px, 43vw); }
  .phone-guest { left: 6%; }
  .phone-restaurant { right: 6%; }
  .two-column,
  .split-actions,
  .lead-form-wrap,
  .cta-band,
  .footer-main,
  .detail-grid,
  .pricing-stack .price-card {
    grid-template-columns: 1fr;
  }
  .implementation-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-stack .price-card .plan-action { justify-self: start; }
  .pricing-compare { grid-template-columns: 1fr; }
  .comparison-card .plan-top { min-height: 0; }
  .lead-form-copy { position: static; }
}

@media (max-width: 680px) {
  :root { --radius: 22px; }
  .site-header { padding: 12px 18px 0; }
  .brand { font-size: 20px; }
  .header-downloads img { width: 20px; height: 20px; }
  .header-downloads .apple-mark { width: 20px; height: 20px; font-size: 20px; }
  .header-downloads strong { font-size: 12px; }
  .header-downloads small { display: none; }
  .top-nav { gap: 18px; font-size: 13px; }
  .hero { width: min(100% - 32px, var(--max)); }
  h1 { font-size: 44px; }
  h2 { font-size: 36px; }
  .hero-subtitle { font-size: 18px; }
  .primary-action,
  .secondary-action { min-height: 48px; padding: 0 20px; font-size: 14px; }
  .device-stage { min-height: 455px; }
  .phone { width: min(218px, 52vw); }
  .phone-guest { left: -2%; top: 70px; }
  .phone-restaurant { right: -2%; top: 0; }
  .feature-grid,
  .steps,
  .app-download-grid,
  .detail-grid,
  .pricing-grid,
  .lead-form,
  .implementation-links { grid-template-columns: 1fr; }
  .section { padding: 64px 18px; }
  .subpage-hero,
  .content-section { padding-left: 18px; padding-right: 18px; }
  .feature-grid article,
  .steps > div,
  .download-card,
  .detail-card,
  .price-card,
  .lead-form { padding: 26px; min-height: auto; }
  .feature-grid span,
  .steps span,
  .detail-card span { margin-bottom: 38px; }
  .footer-bottom { flex-direction: column; }
}
