:root {
  --teal-950: #073f38;
  --teal-900: #096052;
  --teal-800: #0c6a5b;
  --green-500: #17a673;
  --green-400: #24c18a;
  --gold-400: #f4c95d;
  --mint-100: #e9f8f2;
  --mint-50: #f4fbf8;
  --ink: #11201d;
  --muted: #60716d;
  --line: #dbe9e4;
  --white: #ffffff;
  --shadow: 0 26px 70px rgba(7, 63, 56, 0.16);
  --soft-shadow: 0 14px 38px rgba(7, 63, 56, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(36, 193, 138, 0.12), transparent 32rem),
    linear-gradient(180deg, #f7fcfa 0%, var(--mint-50) 36%, #ffffff 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(219, 233, 228, 0.78);
  backdrop-filter: blur(18px);
}

.brand img,
.site-footer img {
  display: block;
  width: clamp(132px, 13vw, 158px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--teal-900);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--green-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
  content: "";
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a[aria-current="page"] {
  color: var(--teal-900);
}

.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: var(--teal-900);
  box-shadow: 0 12px 26px rgba(9, 96, 82, 0.22);
}

.nav-cta:hover,
.button.primary:hover {
  background: var(--teal-950);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(7, 63, 56, 0.28);
}

.button.secondary {
  color: var(--teal-950);
  background: var(--white);
  border: 1px solid var(--line);
}

.button.secondary.on-dark {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.button.secondary:hover {
  border-color: rgba(23, 166, 115, 0.45);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(440px, 1.04fr);
  align-items: center;
  gap: clamp(30px, 5vw, 68px);
  min-height: auto;
  padding: clamp(38px, 5vw, 72px) clamp(20px, 5vw, 72px) clamp(36px, 5vw, 62px);
  background:
    linear-gradient(112deg, rgba(7, 63, 56, 0.1), rgba(23, 166, 115, 0.12)),
    var(--mint-50);
  border-bottom: 1px solid rgba(219, 233, 228, 0.8);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(9, 96, 82, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 96, 82, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, black, transparent 74%);
  pointer-events: none;
  content: "";
}

.hero-copy,
.order-preview {
  position: relative;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  color: var(--teal-950);
  font-size: clamp(2.65rem, 5.2vw, 5.3rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  color: var(--teal-950);
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  color: var(--teal-950);
  font-size: 1.05rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.7;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 22px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--teal-900);
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(600px, 100%);
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
  box-shadow: var(--soft-shadow);
}

.hero-metrics div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.hero-metrics strong,
.sales-card strong {
  display: block;
  color: var(--teal-950);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1;
}

.hero-metrics span,
.sales-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.order-preview {
  position: relative;
  min-height: 0;
  isolation: isolate;
}

.order-preview::before {
  display: none;
}

.app-screenshot-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(233, 248, 242, 0.86)),
    var(--white);
  box-shadow: var(--shadow);
}

.screenshot-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(7, 63, 56, 0.1);
}

.app-screenshot-card img {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.app-screenshot-card figcaption {
  margin: 12px 4px 2px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.screenshot-topbar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 3px 4px 12px;
}

.screenshot-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d8e7e2;
}

.screenshot-topbar span:first-child {
  background: #f18f7f;
}

.screenshot-topbar span:nth-child(2) {
  background: var(--gold-400);
}

.screenshot-topbar span:nth-child(3) {
  background: var(--green-500);
}

.screenshot-topbar strong {
  margin-left: 8px;
  color: var(--teal-950);
  font-size: 0.86rem;
}

.product-panel {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(233, 248, 242, 0.82)),
    var(--white);
  box-shadow: var(--shadow);
}

.product-panel::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(9, 96, 82, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 96, 82, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  content: "";
}

.panel-header,
.panel-grid {
  position: relative;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding: 4px 4px 14px;
  border-bottom: 1px solid var(--line);
}

.panel-header div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.panel-header strong {
  color: var(--teal-950);
  font-size: 0.94rem;
}

.panel-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.92fr) minmax(220px, 1.08fr);
  gap: 16px;
}

.phone {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  padding: 14px;
  border: 8px solid var(--teal-950);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.phone-top {
  width: 62px;
  height: 6px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: #dfe8e5;
}

.restaurant-card {
  padding: 15px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(140deg, var(--teal-900), var(--green-500));
}

.restaurant-card div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
  font-weight: 700;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green-400);
  box-shadow: 0 0 0 4px rgba(36, 193, 138, 0.2);
}

.restaurant-card strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1.1;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 11px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  font-weight: 700;
}

.menu-item strong {
  color: var(--teal-950);
}

.cart-bar {
  margin-top: 13px;
  padding: 13px 14px;
  border-radius: 12px;
  color: var(--white);
  background: var(--teal-950);
  text-align: center;
  font-weight: 800;
}

.side-stack {
  display: grid;
  gap: 14px;
}

.dashboard-card {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.mini-label {
  display: block;
  margin-bottom: 12px;
  color: var(--green-500);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ticket {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
  padding: 14px;
  border-radius: 14px;
  background: var(--mint-100);
}

.ticket.active {
  color: var(--white);
  background: var(--teal-900);
}

.ticket span {
  color: inherit;
  opacity: 0.72;
  font-size: 0.86rem;
  font-weight: 700;
}

.table-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.table-grid span {
  height: 46px;
  border-radius: 12px;
}

.open {
  background: #dff5ed;
}

.occupied {
  background: #0c6a5b;
}

.ready {
  background: #17a673;
}

.billing {
  background: var(--gold-400);
}

.sales-card {
  position: relative;
  right: auto;
  top: auto;
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
}

.sales-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--green-500);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 72px);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vw, 92px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(112deg, rgba(7, 63, 56, 0.1), rgba(23, 166, 115, 0.12)),
    var(--mint-50);
  border-bottom: 1px solid rgba(219, 233, 228, 0.8);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(9, 96, 82, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 96, 82, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, black, transparent 76%);
  pointer-events: none;
  content: "";
}

.page-hero > * {
  position: relative;
  max-width: 880px;
}

.page-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.7;
}

.answer-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(24px, 5vw, 72px);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.answer-copy {
  display: grid;
  gap: 14px;
}

.answer-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  background: var(--white);
}

.content-grid.compact {
  padding-top: 0;
}

.content-grid article,
.faq-grid article,
.faq-list article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f9fdfb);
  box-shadow: 0 10px 24px rgba(7, 63, 56, 0.06);
}

.content-grid h2,
.faq-list h2 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.15;
}

.content-grid p,
.faq-grid p,
.faq-list p {
  color: var(--muted);
  line-height: 1.68;
}

.content-grid ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.content-grid li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.45;
}

.content-grid li::before {
  position: absolute;
  top: 0.46em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  content: "";
}

.demo-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.demo-section .section-heading {
  max-width: 640px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(7, 63, 56, 0.12);
  cursor: pointer;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.2s;
}

.video-embed:hover .video-thumb {
  filter: brightness(0.75);
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}

.play-btn:hover,
.video-embed:hover .play-btn {
  transform: scale(1.08);
}

.intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 80px);
  background:
    linear-gradient(90deg, rgba(233, 248, 242, 0.76), transparent 42%),
    var(--white);
}

.views-section {
  background:
    linear-gradient(180deg, var(--mint-50), #ffffff);
}

.views-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.view-card {
  min-height: 420px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.view-card h3 {
  max-width: 360px;
  margin-bottom: 24px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.view-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--teal-900);
  background: var(--mint-100);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.actual-view-screenshot {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

.actual-view-screenshot.portrait {
  width: min(260px, 100%);
  height: 500px;
  margin-inline: auto;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: top center;
}

.intro > div:first-child {
  max-width: 560px;
}

.workflow-list {
  display: grid;
  gap: 16px;
}

.workflow-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: start;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f9fdfb);
  box-shadow: 0 10px 24px rgba(7, 63, 56, 0.06);
}

.workflow-copy {
  min-width: 0;
}

.workflow-copy h3 {
  margin-bottom: 8px;
}

.workflow-copy p {
  margin-bottom: 0;
}

.workflow-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal-900);
  font-size: 0.86rem;
  font-weight: 800;
}

.workflow-list p,
.feature-grid p,
.section-heading p,
.plan-card p,
.launch p,
.exclusions p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-band {
  position: relative;
  overflow: hidden;
  background: var(--teal-950);
}

.feature-band::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  content: "";
}

.feature-band > * {
  position: relative;
}

.feature-band h2,
.feature-band h3 {
  color: var(--white);
}

.feature-band .section-heading p,
.feature-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  background: transparent;
}

.feature-grid article {
  position: relative;
  min-height: 216px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.feature-grid article::before {
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 22px;
  border: 1px solid rgba(36, 193, 138, 0.52);
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(36, 193, 138, 0.94), rgba(255, 255, 255, 0.08)),
    var(--teal-900);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.14);
  content: "";
}

.feature-grid article:hover {
  border-color: rgba(36, 193, 138, 0.42);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.pricing {
  background: var(--mint-50);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  align-items: stretch;
  gap: 18px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.plan-card h2 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  line-height: 1.15;
}

.plan-card.featured {
  border-color: var(--green-500);
  box-shadow: 0 24px 70px rgba(23, 166, 115, 0.2);
}

.plan-card.featured::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--green-500), var(--gold-400));
  content: "";
}

.plan-card:hover {
  border-color: rgba(23, 166, 115, 0.36);
  box-shadow: 0 24px 60px rgba(7, 63, 56, 0.13);
  transform: translateY(-3px);
}

.badge {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-500);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-top {
  min-height: 118px;
}

.price {
  margin: 8px 0;
  color: var(--teal-950);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.setup {
  min-height: 26px;
  font-weight: 700;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.45;
}

.plan-card li::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-500);
  content: "";
}

.annual-note {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal-900);
  background:
    linear-gradient(90deg, rgba(36, 193, 138, 0.1), rgba(244, 201, 93, 0.12)),
    var(--white);
  font-weight: 700;
  line-height: 1.55;
}

.launch {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-900), var(--teal-950));
}

.launch::after {
  position: absolute;
  right: -70px;
  bottom: -120px;
  width: 340px;
  height: 340px;
  border: 44px solid rgba(36, 193, 138, 0.18);
  border-radius: 50%;
  content: "";
}

.launch > * {
  position: relative;
  z-index: 1;
}

.launch div {
  max-width: 820px;
}

.launch h2,
.launch p {
  color: var(--white);
}

.launch p {
  opacity: 0.76;
}

.launch .button.primary {
  flex: 0 0 auto;
  color: var(--teal-950);
  background: var(--white);
}

.exclusions {
  max-width: 1000px;
  border-top: 1px solid var(--line);
}

.exclusions h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--teal-900);
}

.faq-strip {
  background: var(--white);
}

.faq-grid,
.faq-list {
  display: grid;
  gap: 16px;
}

.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-list {
  max-width: 980px;
  background: var(--white);
}

@media (max-width: 1160px) {
  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1fr);
  }

  h1 {
    font-size: clamp(2.55rem, 5vw, 4.6rem);
  }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 820px;
  }

  .order-preview {
    width: min(820px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .answer-panel,
  .content-grid,
  .faq-grid,
  .views-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .order-preview {
    width: min(760px, 100%);
    min-height: 0;
    margin-inline: auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .plan-top {
    min-height: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: sticky;
    align-items: center;
    padding-block: 10px;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    display: flex;
    gap: 8px;
    margin-left: auto;
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
    font-size: 0.82rem;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
  }

  .nav-links a::after {
    display: none;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.15rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-text {
    font-size: 1.04rem;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }

  .order-preview {
    display: grid;
    gap: 16px;
    min-height: 0;
  }

  .product-panel {
    padding: 14px;
  }

  .panel-grid {
    grid-template-columns: 1fr;
  }

  .sales-card {
    order: -1;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .launch,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section-link-row {
    display: grid;
  }
}

@media (max-width: 480px) {
  .site-header {
    flex-wrap: wrap;
    gap: 10px;
  }

  .brand img {
    width: 124px;
  }

  .nav-links {
    order: 2;
    width: 100%;
  }

  .section {
    padding-block: 52px;
  }

  .phone {
    border-width: 8px;
    border-radius: 28px;
    padding: 14px;
  }

  .restaurant-card strong {
    font-size: 1.22rem;
  }

  .menu-item,
  .ticket {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .plan-card,
  .feature-grid article,
  .workflow-list article,
  .view-card,
  .content-grid article,
  .faq-grid article,
  .faq-list article {
    padding: 22px;
  }

  .workflow-list article {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .workflow-list span {
    width: 38px;
    height: 38px;
  }
}

/* ── Comparison table ─────────────────────────────────── */
.comparison-table-wrap {
  overflow-x: auto;
  margin-top: 2rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.comparison-table th,
.comparison-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #e4eeec;
  vertical-align: middle;
}

.comparison-table thead th {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #4a6662;
  background: #f5faf9;
}

.comparison-table thead th:not(:first-child) {
  text-align: center;
}

.comparison-table td:not(:first-child) {
  text-align: center;
  font-size: 1.1rem;
}

.comparison-table tbody tr:hover {
  background: #f9fcfc;
}

.comparison-table .check {
  color: #096052;
  font-weight: 700;
}

.comparison-table .cross {
  color: #c0c8c6;
}

.comparison-table .highlight-col {
  background: #edf7f5;
}

.comparison-table thead .highlight-col {
  color: #096052;
  background: #d6f0ea;
}

@media (max-width: 600px) {
  .comparison-table th,
  .comparison-table td {
    padding: 10px 10px;
    font-size: 0.85rem;
  }
}
/* ── End comparison table ─────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
