@font-face {
  font-family: Sora;
  src: url("/fonts/landing-sora.woff2") format("woff2");
  font-weight: 100 800;
  font-display: swap;
}
@font-face {
  font-family: Fraunces;
  src: url("/fonts/landing-fraunces.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/fonts/landing-body-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/fonts/landing-body-500.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/fonts/landing-body-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
:root {
  --paper: #ffffff;
  --primary-light: #e9eff7;
  --ink: #14181e;
  --muted: #59657a;
  --line: #e1e6ed;
  --wash: #f4f6f9;
  --accent: #3e5c86;
  --green: #2f664d;
  --text: var(--ink);
  --text-muted: var(--muted);
  --text-faint: var(--muted);
  --border: var(--line);
  --brand-dark: var(--accent);
  --brand-light: var(--primary-light);
  --brand: var(--accent);
  --bg-card: var(--paper);
  --display: Sora, sans-serif;
  --body: "DM Sans", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
* {
  box-sizing: border-box;
}
body,
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  scrollbar-color: var(--accent) var(--wash);
}
body {
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.6 var(--body);
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button,
input {
  caret-color: var(--accent);
}
button:disabled {
  cursor: default;
  opacity: 0.55;
}
::selection {
  background: var(--ink);
  color: var(--primary-light);
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  vertical-align: middle;
}
img {
  max-width: 100%;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}
p {
  max-width: 72ch;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.container {
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  transform: translateY(-150%);
  z-index: 600;
  padding: 12px 20px;
  background: var(--paper);
}
.skip-link:focus {
  transform: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 48px;
  padding: 13px 22px;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.25;
  border: 1px solid transparent;
  border-radius: 6px;
  transition:
    background 0.2s,
    color 0.2s;
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn-dark,
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-dark:hover,
.btn-primary:hover {
  background: var(--accent);
}
.btn-outline {
  background: transparent;
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
}
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 500;
}
.text-link:hover {
  color: var(--accent);
}
#nav {
  position: sticky;
  top: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 84px;
  padding: 16px max(48px, calc((100vw - 1240px) / 2));
  background: var(--primary-light);
  border-bottom: 1px solid #14181e26;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
}
.nav-logo-mark img {
  display: block;
  width: 34px;
  height: 34px;
}
.nav-logo-name {
  font: 600 18px/1.1 var(--display);
  letter-spacing: -0.03em;
  max-width: 130px;
}
.nav-center {
  display: flex;
  gap: 26px;
  margin: auto;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.nav-link:hover {
  text-decoration: underline;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-cta .btn {
  padding: 11px 17px;
  font-size: 14px;
}
.nav-cta .btn svg {
  display: none;
}
.nav-hamburger,
.nav-drawer-close {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 5px;
  color: var(--ink);
}
.nav-drawer {
  inset: 0 0 0 auto;
  margin: 0;
  width: min(370px, 100%);
  height: 100dvh;
  max-height: none;
  padding: 24px;
  border: 0;
  color: var(--ink);
  background: var(--paper);
}
.nav-drawer::backdrop {
  background: #23131677;
}
.nav-drawer-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}
.nav-drawer-close {
  display: grid;
  flex-shrink: 0;
}
.nav-drawer ul a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-size: 22px;
}
.nav-drawer-cta {
  margin-top: 36px;
}
.nav-overlay {
  display: none;
}
#trusted {
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  background: var(--primary-light);
  border-top: 1px solid #14181e26;
}
.trusted-label {
  font-size: 12px;
}
.trusted-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
}
.trusted-chip {
  font: 500 20px/1.3 var(--display);
  letter-spacing: -0.025em;
}
#stats {
  padding: 50px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-title {
  font: 500 22px/1.2 var(--display);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.stat-lbl {
  font-size: 13px;
  color: var(--muted);
}
#features,
#pricing {
  padding: 86px 0 96px;
}
.features-header,
.pricing-header {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  column-gap: 70px;
  align-items: end;
  margin-bottom: 40px;
}
.section-h {
  font-size: clamp(36px, 4vw, 54px);
  white-space: pre-line;
  grid-row: 1/3;
}
.section-tag {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}
.section-sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.feat-tabs {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  gap: 16px;
  margin-bottom: 40px;
}
.feat-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: none;
  border: 0;
  border-bottom: 3px solid transparent;
  color: var(--muted);
  font-weight: 500;
  font-size: 15px;
  padding: 18px 6px;
  margin-bottom: -1px;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.feat-tab svg {
  width: 18px;
  height: 18px;
}
.feat-tab:hover {
  color: var(--ink);
}
.feat-tab.on {
  border-color: var(--ink);
  color: var(--ink);
}
.feat-panel {
  display: none;
  grid-template-columns: 1fr 1.12fr;
  align-items: center;
  gap: 80px;
  min-height: 430px;
}
.feat-panel.on {
  display: grid;
}
.feat-panel.vis .feat-visual {
  animation: panel-in 0.3s var(--ease);
}
@keyframes panel-in {
  from {
    clip-path: inset(0 0 4% 0);
  }
  to {
    clip-path: inset(0);
  }
}
.feat-panel h3 {
  font-size: 36px;
  margin-bottom: 18px;
}
.feat-panel > div > p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
}
.feat-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feat-list li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  align-items: start;
}
.feat-chk,
.pf-chk {
  flex-shrink: 0;
  display: inline-flex;
  color: var(--green);
  padding-top: 3px;
}
.feat-chk svg,
.pf-chk svg {
  width: 15px;
  height: 15px;
}
.feat-visual {
  padding: 28px;
  background: var(--wash);
  border-radius: 12px;
  min-width: 0;
  position: relative;
}
.feat-visual:after {
  content: "Illustrative product data";
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 16px;
}
.cal-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cal-mo {
  font-weight: 600;
  font-size: 18px;
}
.cal-btns {
  display: flex;
  gap: 8px;
}
.cal-btn {
  height: 40px;
  width: 40px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
}
.cal-btn svg {
  width: 16px;
  height: 16px;
}
.cal-days-hd,
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}
.cal-lbl {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  padding-bottom: 8px;
}
.cal-cell {
  aspect-ratio: 1;
  border: 0;
  background: none;
  color: var(--ink);
  font-size: 14px;
  position: relative;
  border-radius: 4px;
}
.cal-cell:hover:not(:disabled) {
  background: var(--line);
}
.cal-cell.today {
  background: var(--ink);
  color: var(--paper);
}
.cal-cell.booked:after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: calc(50% - 2px);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}
.cal-cell.dim {
  opacity: 0.4;
}
.demo-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.5;
  min-height: 36px;
}
.pos-ui {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pos-search {
  display: flex;
  gap: 10px;
  font-size: 13px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  color: var(--muted);
}
.pos-search svg {
  width: 16px;
  height: 16px;
}
.pos-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.pos-item-name {
  font-size: 14px;
  font-weight: 500;
}
.pos-item-staff {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--muted);
}
.pos-staff-av {
  display: none;
}
.pos-price {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.pos-discount {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.pos-discount-val {
  color: var(--green);
}
.pos-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-weight: 600;
}
.pos-total-r {
  font-size: 24px;
  font-family: var(--display);
  letter-spacing: -0.03em;
}
.pos-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.pos-method {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 4px;
  font-size: 12px;
  color: var(--ink);
}
.pos-method.sel {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.pos-checkout {
  border: 0;
  border-radius: 5px;
  background: var(--ink);
  color: var(--paper);
  padding: 12px;
}
.pos-checkout:hover {
  background: var(--accent);
}
.inv-hd,
.inv-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px 28px 88px;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.inv-hd {
  font-size: 11px;
  color: var(--muted);
  padding-top: 0;
}
.inv-name {
  font-size: 13px;
  font-weight: 500;
}
.inv-sku,
.inv-unit {
  font-size: 11px;
  color: var(--muted);
}
.inv-qty {
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.inv-pill {
  font-size: 10px;
  text-align: center;
  padding: 4px;
  border-radius: 4px;
}
.ok {
  background: #e1eadb;
  color: #275235;
}
.low {
  background: #f9e4b8;
  color: #744619;
}
.out {
  background: #f3dbd6;
  color: #893d31;
}
.rpt-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
.rpt-card-lbl {
  font-size: 12px;
  color: var(--muted);
}
.rpt-card-val {
  font: 500 26px/1.5 var(--display);
  letter-spacing: -0.03em;
}
.rpt-card-sub {
  font-size: 11px;
  color: var(--green);
}
.rpt-bar-lbl {
  font-size: 13px;
  margin-bottom: 16px;
  font-weight: 600;
}
.rpt-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rpt-bar-row {
  display: grid;
  grid-template-columns: 65px 1fr 88px;
  gap: 12px;
  align-items: center;
  font-size: 12px;
}
.rpt-bar-track {
  height: 8px;
  background: var(--line);
}
.rpt-bar-fill {
  height: 100%;
  background: var(--accent);
}
.rpt-bar-val {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.tb-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
}
.tb-title {
  font: 500 22px var(--display);
}
.tb-period {
  font-size: 11px;
}
.tb-cols,
.tb-row,
.tb-total {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 82px 82px;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.tb-cols {
  font-size: 11px;
  color: var(--muted);
}
.tb-cols > span:not(:first-child) {
  text-align: right;
}
.tb-acct {
  font-size: 12px;
  font-weight: 500;
}
.tb-code {
  font-size: 10px;
  color: var(--muted);
}
.tb-num {
  font-size: 12px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.tb-num.blank {
  color: var(--muted);
}
.tb-total {
  font-weight: 600;
}
.tb-balanced {
  font-size: 9px;
  color: var(--green);
}
.tb-balanced svg {
  width: 10px;
  height: 10px;
}
#compliance-band {
  margin-top: 56px !important;
  padding: 28px 0 !important;
  border: 0 !important;
  border-top: 1px solid var(--line) !important;
  border-bottom: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background: none !important;
}
#compliance-band > div > div:first-child {
  display: none !important;
}
#compliance-band > div {
  min-width: 0 !important;
}
#compliance-band .btn {
  font-size: 14px;
}
#how {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0;
}
#how > .container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 100px;
}
.how-header .section-h {
  font-size: 48px;
  margin-bottom: 24px;
}
.how-header .section-tag {
  color: var(--primary-light);
}
.how-header .section-sub {
  color: #59657a;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 8px 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid #d7e0eb;
}
.step:last-child {
  padding-bottom: 0;
  border: 0;
}
.step-num {
  grid-row: 1/3;
  font-size: 14px;
  color: var(--primary-light);
  font-variant-numeric: tabular-nums;
  padding-top: 3px;
}
.step-title {
  font: 500 24px/1.3 var(--display);
  letter-spacing: -0.025em;
}
.step-body {
  font-size: 14px;
  color: #59657a;
  line-height: 1.7;
}
.billing-toggle {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px;
  gap: 4px;
  margin: 0 0 36px;
}
.bill-btn {
  border: 0;
  border-radius: 4px;
  background: none;
  padding: 12px 18px;
  color: var(--ink);
  font-size: 14px;
}
.bill-btn.on {
  background: var(--ink);
  color: var(--paper);
}
.save-tag {
  font-size: 11px;
  margin-left: 8px;
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.plan {
  position: relative;
  padding: 32px 28px;
}
.plan:first-child {
  padding-left: 0;
}
.plan:last-child {
  padding-right: 0;
}
.plan.pop {
  background: var(--wash);
}
.pop-label {
  position: absolute;
  right: 20px;
  top: 35px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.plan-name {
  font: 500 26px var(--display);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-variant-numeric: tabular-nums;
}
.plan-cur {
  font-size: 14px;
}
.plan-amt {
  font: 500 56px/1 var(--display);
  letter-spacing: -0.04em;
}
.plan-per {
  font-size: 13px;
  color: var(--muted);
}
.plan-desc {
  margin: 22px 0;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
  min-height: 92px;
}
.plan-feats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.plan-feats li {
  display: flex;
  gap: 10px;
  align-items: start;
  font-size: 13px;
  overflow-wrap: anywhere;
}
.plan .pf-chk svg {
  width: 13px;
  height: 13px;
}
.plan-cta {
  margin-top: 26px;
  font-size: 13px;
  min-height: 44px;
}
#multi-location-band {
  margin-top: 32px !important;
  padding: 24px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background: none !important;
}
#multi-location-band > div {
  min-width: 0 !important;
}
.plans-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
#pricing-disclaimer {
  font-size: 12px !important;
}
#cta {
  background: var(--primary-light);
  padding: 76px 0;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  align-items: start;
}
.cta-h {
  font-size: clamp(38px, 4.2vw, 60px);
  grid-column: 1;
  grid-row: 1/4;
}
.cta-eyebrow {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
  grid-column: 2;
}
.cta-sub {
  font-size: 16px;
  margin-bottom: 24px;
  grid-column: 2;
}
.cta-actions {
  grid-column: 2;
}
.cta-note {
  grid-column: 1/-1;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid #14181e33;
  font-size: 12px;
  max-width: none;
}
.cta-note:empty {
  display: none;
}
footer {
  padding: 30px 0;
}
footer > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-copy {
  font-size: 12px;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 12px;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}
.back-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 5px;
}
.back-top.show {
  display: grid;
}
@media (max-width: 1100px) {
  #nav {
    gap: 20px;
  }
  .nav-center {
    gap: 16px;
  }
  .nav-cta {
    gap: 14px;
  }
  .nav-logo-name {
    font-size: 16px;
    max-width: 110px;
  }
  .feat-panel {
    gap: 40px;
  }
  .plan {
    padding: 28px 20px;
  }
  .plan-name {
    font-size: 24px;
  }
  .pop-label {
    position: static;
    margin-bottom: 8px;
  }
  .plan.pop .plan-name {
    margin-bottom: 2px;
  }
  .plan.pop .plan-price {
    margin-top: 24px;
  }
  #how > .container {
    gap: 60px;
  }
}
@media (max-width: 900px) {
  .container {
    width: calc(100% - 48px);
  }
  #nav {
    padding: 14px 24px;
    min-height: 74px;
  }
  .nav-center {
    display: none;
  }
  .nav-cta {
    margin-left: auto;
  }
  .nav-hamburger {
    display: grid;
  }
  #trusted {
    gap: 20px;
    padding-inline: 24px;
    flex-direction: column;
  }
  .trusted-chips {
    gap: 32px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  #features,
  #pricing {
    padding: 64px 0;
  }
  .features-header,
  .pricing-header {
    gap: 30px;
  }
  .section-h {
    font-size: 40px;
  }
  .feat-tabs {
    gap: 6px;
  }
  .feat-tab {
    font-size: 13px;
    gap: 7px;
  }
  .feat-tab svg {
    width: 15px;
    height: 15px;
  }
  .feat-panel {
    gap: 28px;
    grid-template-columns: 1fr 1.1fr;
  }
  .feat-panel h3 {
    font-size: 30px;
  }
  .feat-visual {
    padding: 20px;
  }
  .inv-hd,
  .inv-row {
    grid-template-columns: minmax(0, 1fr) 20px 20px 62px;
    gap: 8px;
  }
  .inv-pill {
    font-size: 9px;
  }
  .tb-cols,
  .tb-row,
  .tb-total {
    grid-template-columns: minmax(0, 1fr) 65px 65px;
    gap: 8px;
  }
  .tb-balanced {
    display: none;
  }
  .rpt-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .rpt-bar-row {
    grid-template-columns: 50px 1fr 74px;
    gap: 8px;
    font-size: 10px;
  }
  #how > .container {
    gap: 40px;
  }
  .how-header .section-h {
    font-size: 38px;
  }
  .plan {
    padding: 24px 16px;
  }
  .plan-name {
    font-size: 21px;
  }
  .plan-amt {
    font-size: 48px;
  }
  .plan-feats li {
    font-size: 12px;
  }
  .plan-desc {
    min-height: 116px;
    font-size: 13px;
  }
  .cta-inner {
    column-gap: 40px;
  }
  .footer-links {
    gap: 16px;
  }
}
@media (max-width: 640px) {
  .container {
    width: calc(100% - 40px);
  }
  #nav {
    padding: 12px 20px;
    min-height: 70px;
    gap: 12px;
  }
  .nav-logo-name {
    font-size: 16px;
    max-width: 110px;
  }
  .nav-cta > .nav-link,
  .nav-cta > .btn {
    display: none;
  }
  .nav-cta {
    gap: 0;
  }
  #trusted {
    padding: 22px 20px;
    gap: 14px;
  }
  .trusted-label {
    font-size: 11px;
  }
  .trusted-chips {
    justify-content: center;
    gap: 12px 24px;
  }
  .trusted-chip {
    font-size: 18px;
  }
  #stats {
    padding: 32px 0;
  }
  .stats-grid {
    gap: 24px 18px;
  }
  .stat-title {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .stat-lbl {
    font-size: 12px;
    line-height: 1.5;
  }
  #features,
  #pricing {
    padding: 48px 0 56px;
  }
  .features-header,
  .pricing-header {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0;
    margin-bottom: 24px;
  }
  .section-h {
    font-size: 38px;
    max-width: 18ch;
    margin-bottom: 16px;
  }
  .section-tag {
    margin-bottom: 8px;
    font-size: 12px;
  }
  .section-sub {
    font-size: 15px;
  }
  .feat-tabs {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0 18px;
    margin-bottom: 28px;
  }
  .feat-tab {
    padding: 12px 0;
    font-size: 13px;
    gap: 6px;
    border-bottom-width: 2px;
  }
  .feat-tab svg {
    width: 14px;
    height: 14px;
  }
  .feat-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
  }
  .feat-panel h3 {
    font-size: 30px;
    max-width: 20ch;
  }
  .feat-panel > div > p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .feat-list {
    gap: 10px;
  }
  .feat-list li {
    font-size: 13px;
  }
  .feat-visual {
    padding: 20px;
  }
  .cal-cell {
    font-size: 13px;
  }
  .cal-lbl {
    font-size: 11px;
  }
  .cal-cell.booked:after {
    bottom: 4px;
  }
  .inv-hd,
  .inv-row {
    grid-template-columns: minmax(0, 1fr) 22px 22px 76px;
    gap: 8px;
  }
  .inv-name {
    font-size: 12px;
  }
  .tb-num {
    font-size: 11px;
  }
  .tb-acct {
    font-size: 11px;
  }
  .tb-title {
    font-size: 20px;
  }
  .rpt-cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .rpt-card-val {
    font-size: 22px;
  }
  .rpt-card-lbl {
    font-size: 11px;
  }
  #compliance-band {
    margin-top: 32px !important;
    gap: 20px !important;
  }
  #compliance-band > div > div > div {
    font-size: 18px !important;
    line-height: 1.4;
  }
  #compliance-band p {
    font-size: 13px !important;
  }
  #how {
    padding: 48px 0;
  }
  #how > .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .how-header .section-h {
    font-size: 38px;
    max-width: 16ch;
  }
  .step-title {
    font-size: 23px;
  }
  .step {
    gap: 8px 12px;
    grid-template-columns: 30px 1fr;
  }
  .step-body {
    font-size: 14px;
  }
  .billing-toggle {
    margin-bottom: 26px;
  }
  .bill-btn {
    padding: 11px 16px;
  }
  .plans {
    grid-template-columns: 1fr;
    border: 0;
    gap: 0;
  }
  .plan,
  .plan:first-child,
  .plan:last-child {
    padding: 28px 20px;
    border-top: 1px solid var(--line);
  }
  .plan:last-child {
    border-bottom: 1px solid var(--line);
  }
  .plan-name {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .plan.pop .plan-name {
    margin-bottom: 20px;
  }
  .plan.pop .plan-price {
    margin-top: 0;
  }
  .pop-label {
    position: absolute;
    top: 38px;
    right: 20px;
    font-size: 10px;
  }
  .plan-amt {
    font-size: 56px;
  }
  .plan-desc {
    min-height: 0;
    font-size: 14px;
    margin: 20px 0;
    padding-bottom: 20px;
  }
  .plan-feats li {
    font-size: 13px;
  }
  .plan-feats {
    gap: 12px;
  }
  #multi-location-band {
    gap: 20px !important;
  }
  #ml-sub {
    font-size: 14px !important;
  }
  #multi-location-band .btn {
    font-size: 14px;
  }
  .plans-cta {
    margin-top: 28px;
  }
  #pricing-disclaimer {
    font-size: 12px !important;
  }
  #cta {
    padding: 48px 0;
  }
  .cta-inner {
    display: flex;
    flex-direction: column;
  }
  .cta-h {
    font-size: 42px;
    max-width: 16ch;
    margin-bottom: 24px;
  }
  .cta-eyebrow {
    font-size: 12px;
  }
  .cta-sub {
    font-size: 15px;
  }
  .cta-note {
    font-size: 11px;
    line-height: 1.7;
    margin-top: 28px;
  }
  footer {
    padding: 26px 0;
  }
  footer > .container {
    flex-direction: column;
    align-items: start;
    gap: 18px;
  }
  .footer-links {
    gap: 14px 24px;
  }
  .back-top {
    right: 12px;
    bottom: 12px;
    width: 40px;
    height: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 640px) {
  #compliance-band {
    flex-direction: column;
    align-items: flex-start !important;
  }
  #compliance-band > div {
    width: 100%;
  }
}

/* Brand-aligned marketing composition. Colors match theme-navy.css. */
:root {
  --navy: #233b5c;
  --blue: #3e5c86;
  --primary-light: #e9eff7;
  --editorial: "Fraunces", Georgia, serif;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
::selection {
  background: var(--navy);
  color: white;
}
#nav {
  background: #fff;
  border-color: var(--line);
  min-height: 80px;
  padding-block: 14px;
}
.nav-logo-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  max-width: 170px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}
.nav-logo-mark img,
.footer-brand img {
  border-radius: 22.5%;
}
.nav-center {
  gap: 24px;
}
.nav-cta .btn {
  border-radius: 8px;
}
.btn {
  border-radius: 8px;
  gap: 12px;
}
.btn-dark,
.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover,
.btn-primary:hover {
  background: var(--blue);
}
.btn-outline {
  border-color: #bdcadd;
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  text-underline-offset: 6px;
}
.text-link svg {
  width: 16px;
  height: 16px;
}
#hero {
  padding: 70px 0 64px;
  background: #f4f6f9;
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 58px;
  align-items: center;
}
.hero-copy {
  padding: 0 0 28px;
  min-width: 0;
}
#hero-headline {
  font-size: clamp(40px, 4.4vw, 62px);
  line-height: 1.14;
  font-weight: 600;
  letter-spacing: -0.04em;
  white-space: pre-line;
  max-width: 13ch;
  color: var(--navy);
  text-wrap: balance;
}
#hero-subtitle {
  margin-top: 26px;
  font-size: 18px;
  line-height: 1.75;
  max-width: 40ch;
  color: var(--muted);
  font-family: var(--editorial);
  font-weight: 400;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
  margin-top: 32px;
  font-size: 14px;
}
.hero-actions .btn {
  padding: 16px 22px;
}
.hero-trust-copy {
  font-size: 11px;
  color: var(--muted);
  margin-top: 20px;
  line-height: 1.6;
  white-space: pre-line;
}
.demo-stage {
  position: relative;
  min-width: 0;
  padding: 20px;
  border-radius: 22px;
  background: #dfe7f1;
  isolation: isolate;
}
.sales-console {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 45px -24px #233b5c55;
  font-family: var(--body);
  font-variant-numeric: tabular-nums;
}
.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--navy);
  color: #fff;
  padding: 16px 18px;
  font-size: 11px;
}
.console-header > span:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 500;
}
.console-header img {
  border-radius: 22.5%;
}
.console-example {
  font-size: 9px;
  color: #d5e0ef;
}
.console-layout {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
}
.console-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 8px;
  gap: 25px;
  background: #f8fafc;
  border-right: 1px solid var(--line);
  color: #59657a;
}
.console-nav svg {
  width: 16px;
  height: 16px;
}
.console-nav .active {
  background: var(--primary-light);
  color: var(--navy);
  padding: 6px;
  border-radius: 5px;
}
.console-nav > svg:last-child {
  margin-top: auto;
}
.console-content {
  padding: 22px 24px 10px;
  min-width: 0;
}
.console-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.console-title h2 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.console-title > span {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 10px;
  color: var(--muted);
}
.console-title svg {
  width: 12px;
  height: 12px;
}
.console-totals {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 26px;
  margin: 24px 0 12px;
}
.console-totals > div {
  min-width: 0;
}
.console-totals > div > span {
  font-size: 10px;
  color: var(--muted);
}
.console-totals p {
  font: 500 28px/1.4 var(--display);
  letter-spacing: -0.04em;
  white-space: nowrap;
  color: var(--navy);
}
.console-totals p small {
  font: 400 10px var(--body);
  letter-spacing: 0;
}
.console-totals .positive,
.positive {
  color: var(--green);
}
.console-totals .positive > span {
  color: var(--muted);
  margin-left: 4px;
}
.console-bookings {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.console-bookings p {
  display: flex;
  align-items: center;
  gap: 9px;
}
.sales-chart {
  position: relative;
  padding-left: 28px;
  padding-bottom: 22px;
  margin: 18px 0 16px;
}
.chart-y {
  position: absolute;
  top: 0;
  bottom: 22px;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 8px;
  color: var(--muted);
}
svg.sales-plot {
  display: block;
  width: 100%;
  height: 110px;
  overflow: visible;
  fill: none;
}
.chart-guide {
  stroke: var(--line);
  stroke-width: 1;
  stroke-dasharray: 3 5;
}
.chart-area {
  fill: #e9eff7;
  stroke: none;
  opacity: 0.8;
}
.chart-line {
  stroke: var(--blue);
  stroke-width: 2.5;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}
#demo-chart-dot {
  fill: var(--blue);
  stroke: #fff;
  stroke-width: 2;
}
.chart-x {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 28px;
  right: 0;
  font-size: 8px;
  color: var(--muted);
}
.console-agenda-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
}
.console-agenda-title h3 {
  font: 500 11px var(--body);
  letter-spacing: 0;
}
.console-agenda-title > span {
  font-size: 9px;
  color: var(--muted);
}
.console-appointment {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto auto;
  gap: 9px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.staff-initial {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 9px;
  background: #e9eff7;
  color: var(--navy);
}
.console-appointment:nth-child(3) .staff-initial {
  background: #eef0f5;
}
.console-appointment > div {
  display: flex;
  flex-direction: column;
}
.console-appointment strong {
  font-size: 10px;
  font-weight: 500;
}
.console-appointment > div > span {
  font-size: 8px;
  color: var(--muted);
}
.console-appointment time {
  font-size: 9px;
  white-space: nowrap;
}
.appointment-state {
  font-size: 8px;
  color: var(--green);
  background: #eaf2ed;
  padding: 3px 5px;
  border-radius: 3px;
}
.sale-receipt {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 4px 20px 0 68px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.receipt-icon {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eaf2ed;
  color: var(--green);
}
.receipt-icon svg {
  width: 14px;
  height: 14px;
}
.sale-receipt > div {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sale-receipt > div > strong {
  font-size: 10px;
  font-weight: 500;
}
.sale-receipt > div > span {
  font-size: 9px;
  color: var(--muted);
}
.sale-receipt > strong {
  font-size: 12px;
  color: var(--navy);
  white-space: nowrap;
}
.sale-receipt small {
  font-size: 8px;
  font-weight: 400;
}
.sale-receipt.is-posting .receipt-icon {
  animation: receipt-confirm 0.5s var(--ease);
}
@keyframes receipt-confirm {
  from {
    box-shadow: 0 0 0 0 #3e5c8655;
  }
  to {
    box-shadow: 0 0 0 8px #3e5c8600;
  }
}
.console-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #f8fafc;
  border-top: 1px solid var(--line);
  padding: 6px 18px;
  font-size: 9px;
  color: var(--muted);
}
.motion-controls {
  display: flex;
  gap: 10px;
}
.motion-controls button {
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--navy);
  font-size: 10px;
  min-height: 36px;
  padding: 4px;
}
.motion-controls svg {
  width: 11px;
  height: 11px;
}
.motion-controls button:hover {
  color: var(--blue);
}
.motion-controls button:disabled {
  opacity: 0.6;
}
#trusted {
  background: #fff;
  border-top: 0;
  border-bottom: 1px solid var(--line);
  padding: 32px 48px;
  gap: 48px;
}
.trusted-label {
  font-size: 12px;
  color: var(--muted);
}
.trusted-chip {
  font-size: 16px;
  color: var(--navy);
  font-weight: 500;
}
.trusted-chips {
  gap: 36px;
}
#stats {
  padding: 38px 0;
}
.stats-grid {
  gap: 24px;
}
.stat-title {
  font: 500 17px/1.35 var(--display);
  color: var(--navy);
  letter-spacing: -0.02em;
}
.stat-lbl {
  font-size: 12px;
}
.stat-cell {
  padding-right: 16px;
}
#features {
  padding: 70px 0 88px;
}
.features-header {
  margin-bottom: 34px;
}
.section-h {
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.035em;
}
.section-sub {
  font-family: var(--editorial);
  font-weight: 400;
}
.section-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--blue);
}
.feat-tabs {
  justify-content: flex-start;
  gap: 32px;
}
.feat-tab {
  font-size: 14px;
  padding: 15px 4px;
}
.feat-tab.on {
  border-color: var(--blue);
  color: var(--navy);
}
.feat-panel {
  gap: 72px;
  grid-template-columns: 1fr 1.12fr;
}
.feat-panel h3 {
  font-size: 30px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.035em;
}
.feat-panel > div > p {
  font-size: 14px;
  line-height: 1.8;
}
.feat-visual {
  border-radius: 12px;
  padding: 30px;
  background: #f4f6f9;
}
.feat-panel.vis .feat-visual {
  animation: none;
}
.cal-cell.today {
  background: var(--navy);
}
.cal-cell.booked::after {
  color: var(--blue);
}
.cal-cell.today.booked::after {
  color: white;
}
.feat-list li {
  font-size: 13px;
}
.feat-chk {
  color: var(--blue);
}
.pos-total-r {
  color: var(--navy);
}
.pos-checkout,
.pos-method.sel {
  background: var(--navy);
}
#sales-story {
  padding: 80px 0;
  background: var(--navy);
  color: white;
}
.sales-story-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
  align-items: center;
}
.sales-story-copy h2 {
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: -0.035em;
  font-weight: 500;
}
.sales-story-copy p {
  font-family: var(--editorial);
  font-size: 17px;
  line-height: 1.8;
  color: #d5e0ef;
  margin-top: 24px;
}
.story-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
  font-size: 13px;
  color: #e2eaf5;
}
.story-points li {
  display: flex;
  gap: 10px;
  align-items: start;
}
.story-points svg {
  width: 16px;
  height: 16px;
  color: #bfd0e5;
  margin-top: 3px;
}
.sales-story-copy .text-link {
  color: #fff;
  font-size: 14px;
  margin-top: 26px;
}
.sales-story-copy .text-link:hover {
  color: #c2d4eb;
}
.sales-story-copy :focus-visible {
  outline-color: white;
}
.insights-preview {
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.insights-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.insights-header h3 {
  font: 500 16px var(--display);
  letter-spacing: -0.03em;
  color: var(--navy);
}
.insights-header > span {
  font-size: 10px;
  color: var(--muted);
}
.insights-totals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  padding: 24px 0;
}
.insights-totals > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.insights-totals span {
  font-size: 11px;
  color: var(--muted);
}
.insights-totals .positive {
  color: var(--green);
}
.insights-totals strong {
  font: 500 27px/1.4 var(--display);
  letter-spacing: -0.04em;
  color: var(--navy);
  white-space: nowrap;
}
.insights-totals small {
  font: 400 10px var(--body);
  letter-spacing: 0;
}
.insights-chart-head {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 20px;
}
.insights-row {
  display: grid;
  grid-template-columns: 65px 1fr 68px;
  gap: 16px;
  align-items: center;
  font-size: 11px;
  margin-bottom: 17px;
}
.insights-row > div {
  height: 12px;
  background: #f4f6f9;
  border-radius: 2px;
}
.insights-row > div > span {
  display: block;
  width: var(--fill);
  height: 100%;
  background: #3e5c86;
  transform-origin: left;
  border-radius: 2px;
}
.insights-row:nth-child(3) > div > span {
  background: #6b87aa;
}
.insights-row:nth-child(4) > div > span {
  background: #a9bed5;
}
.insights-row strong {
  font-size: 11px;
  font-weight: 500;
  text-align: right;
}
.weekly-mini {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.weekly-mini > span {
  font-size: 11px;
  color: var(--muted);
}
.weekly-mini-bars {
  height: 75px;
  display: flex;
  align-items: end;
  gap: 20px;
  padding-inline: 14px;
  margin-top: 8px;
}
.weekly-mini-bars > span {
  background: #a9bed5;
  height: var(--bar);
  flex: 1;
  max-width: 40px;
  transform-origin: bottom;
  border-radius: 2px 2px 0 0;
}
.weekly-mini-bars > span:nth-child(6) {
  background: var(--blue);
}
.weekly-days {
  display: flex;
  gap: 20px;
  padding-inline: 14px;
  font-size: 9px;
  color: var(--muted);
  margin-top: 6px;
}
.weekly-days > span {
  flex: 1;
  max-width: 40px;
  text-align: center;
}
.insights-preview figcaption {
  font-size: 10px;
  color: var(--muted);
  margin-top: 20px;
}
.chart-entrance .insights-row > div > span {
  animation: bar-across 0.85s var(--ease);
}
.chart-entrance .weekly-mini-bars > span {
  animation: bar-up 0.9s var(--ease);
}
.chart-entrance .weekly-mini-bars > span:nth-child(2n) {
  animation-duration: 1.2s;
}
@keyframes bar-across {
  from {
    transform: scaleX(0.15);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes bar-up {
  from {
    transform: scaleY(0.15);
  }
  to {
    transform: scaleY(1);
  }
}
#pricing {
  padding: 88px 0 72px;
}
.pricing-header {
  margin-bottom: 30px;
}
.plans {
  border: 0;
  gap: 20px;
}
.plan,
.plan:first-child,
.plan:last-child {
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.plan.pop {
  background: #f4f7fb;
  border-color: #7891b2;
}
.plan-name {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 24px;
}
.pop-label {
  top: 37px;
  right: 24px;
  font-size: 9px;
  color: var(--blue);
}
.plan-amt {
  font-size: 50px;
  color: var(--navy);
  font-weight: 500;
}
.plan-cur {
  color: var(--muted);
  font-size: 12px;
}
.plan-desc {
  font-size: 13px;
  min-height: 108px;
}
.plan-feats li {
  font-size: 12px;
  line-height: 1.7;
}
.plan-feats {
  gap: 12px;
}
.plan .pf-chk {
  color: var(--blue);
}
.plan-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  margin-top: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  min-height: 44px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.plan-link:hover {
  text-decoration: underline;
}
.plan-link svg {
  width: 16px;
  height: 16px;
}
.billing-toggle {
  margin-bottom: 30px;
}
.bill-btn.on {
  background: var(--navy);
}
.billing-wrap {
  display: flex;
  justify-content: flex-start !important;
}
#how {
  background: #f4f6f9;
  color: var(--ink);
  padding: 74px 0;
}
#how > .container {
  gap: 80px;
}
.how-header .section-h {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--navy);
}
.how-header .section-sub {
  color: var(--muted);
}
.how-header .section-tag {
  color: var(--blue);
}
.step {
  border-color: var(--line);
}
.step-num {
  color: var(--blue);
}
.step-title {
  color: var(--navy);
  font-size: 22px;
  font-weight: 500;
}
.step-body {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.local-details {
  padding: 44px 0;
}
#compliance-band {
  margin: 0 !important;
  padding: 22px 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
}
#compliance-band > div > div > div {
  font-family: var(--display);
  font-size: 18px !important;
  font-weight: 500 !important;
  color: var(--navy) !important;
}
#compliance-band p {
  font-size: 13px !important;
  margin-top: 12px !important;
}
#compliance-band .btn {
  font-size: 13px;
}
#multi-location-band {
  gap: 26px !important;
}
#ml-title {
  font-family: var(--display);
  font-size: 18px !important;
  color: var(--navy) !important;
}
#ml-sub {
  font-size: 14px !important;
}
#cta {
  background: var(--navy);
  color: white;
  padding: 64px 0;
}
.cta-inner {
  grid-template-columns: 1.1fr 1fr;
  gap: 0 80px;
}
.cta-h {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 500;
  color: white;
}
.cta-eyebrow {
  color: #cedbed;
  font-weight: 400;
}
.cta-sub {
  color: #e2eaf5;
  font-size: 15px;
}
.cta-actions .btn {
  background: #fff;
  color: var(--navy);
}
.cta-actions .btn:hover {
  background: #e9eff7;
}
.cta-note {
  color: #cedbed;
  border-color: #526781;
}
.cta-inner :focus-visible {
  outline-color: #fff;
}
.footer-brand {
  display: flex;
  gap: 10px;
  align-items: center;
  font: 500 13px var(--display);
  text-decoration: none;
  color: var(--navy);
}
footer > .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
}
footer .footer-copy {
  grid-row: 2;
  font-size: 11px;
}
footer .footer-links {
  grid-column: 2;
  grid-row: 1/3;
}
.footer-links a {
  font-size: 12px;
}
@media (max-width: 1150px) {
  .hero-layout {
    gap: 36px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  #hero {
    padding: 56px 0;
  }
  #hero-headline {
    font-size: 49px;
  }
  .demo-stage {
    padding: 14px;
  }
  .console-content {
    padding: 20px 18px 8px;
  }
  .console-totals {
    gap: 16px;
  }
  .console-totals p {
    font-size: 25px;
  }
  .console-bookings {
    padding-left: 16px;
  }
  .console-appointment {
    gap: 7px;
  }
  .sale-receipt {
    margin-left: 66px;
    margin-right: 18px;
  }
  .sales-story-layout {
    gap: 64px;
  }
  .plan,
  .plan:first-child,
  .plan:last-child {
    padding: 28px 20px;
  }
  .plan.pop .plan-name {
    margin-bottom: 24px;
  }
  .plan.pop .plan-price {
    margin-top: 0;
  }
  .pop-label {
    position: static;
    margin-bottom: 10px;
  }
  .plan.pop .plan-name {
    margin-bottom: 8px;
  }
  .plan-name {
    font-size: 21px;
  }
  .plan-desc {
    min-height: 125px;
  }
}
@media (max-width: 900px) {
  #nav {
    min-height: 74px;
  }
  .nav-logo-name {
    font-size: 15px;
    max-width: 170px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .hero-copy {
    padding: 0;
    text-align: center;
    margin-inline: auto;
    max-width: 600px;
  }
  #hero-headline {
    font-size: 56px;
    max-width: none;
  }
  #hero-subtitle {
    margin-inline: auto;
    max-width: 52ch;
    font-size: 18px;
    margin-top: 20px;
  }
  .hero-actions {
    justify-content: center;
    margin-top: 26px;
  }
  .hero-trust-copy {
    font-size: 11px;
    margin-top: 16px;
  }
  .demo-stage {
    width: min(660px, 100%);
    margin-inline: auto;
    padding: 20px;
  }
  .console-content {
    padding: 24px 28px 10px;
  }
  .console-header {
    font-size: 12px;
  }
  .console-example {
    font-size: 10px;
  }
  .console-totals p {
    font-size: 32px;
  }
  .console-totals > div > span {
    font-size: 11px;
  }
  .console-appointment strong {
    font-size: 12px;
  }
  .console-appointment > div > span {
    font-size: 10px;
  }
  .console-appointment time {
    font-size: 10px;
  }
  .appointment-state {
    font-size: 9px;
  }
  .console-appointment {
    padding: 11px 0;
    gap: 12px;
  }
  .sale-receipt {
    margin: 4px 28px 0 76px;
  }
  .sale-receipt > div > strong {
    font-size: 11px;
  }
  .sale-receipt > strong {
    font-size: 14px;
  }
  .sales-story-layout {
    gap: 36px;
    grid-template-columns: 1fr 1.1fr;
  }
  .sales-story-copy h2 {
    font-size: 34px;
  }
  .sales-story-copy p {
    font-size: 16px;
  }
  .insights-preview {
    padding: 22px;
  }
  .insights-header {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }
  .insights-totals {
    gap: 18px;
  }
  .insights-totals strong {
    font-size: 22px;
  }
  .insights-totals small {
    display: block;
    font-size: 9px;
  }
  .insights-row {
    grid-template-columns: 55px 1fr 54px;
    gap: 8px;
    font-size: 10px;
  }
  .insights-row strong {
    font-size: 10px;
  }
  .weekly-mini-bars,
  .weekly-days {
    gap: 12px;
    padding-inline: 4px;
  }
  .feat-panel {
    gap: 32px;
  }
  .feat-tabs {
    gap: 18px;
  }
  .feat-tab {
    font-size: 13px;
  }
  .plans {
    gap: 12px;
  }
  .plan,
  .plan:first-child,
  .plan:last-child {
    padding: 22px 16px;
  }
  .plan-name {
    font-size: 18px;
  }
  .plan-amt {
    font-size: 44px;
  }
  .plan-feats li {
    font-size: 11px;
  }
  .plan-desc {
    min-height: 135px;
    font-size: 12px;
  }
  .pop-label {
    font-size: 9px;
  }
  #how > .container {
    gap: 40px;
  }
  .how-header .section-h {
    font-size: 34px;
  }
  .cta-h {
    font-size: 36px;
  }
  .cta-inner {
    gap: 0 44px;
  }
  footer > .container {
    display: flex;
    flex-wrap: wrap;
  }
  .footer-links {
    margin-left: auto;
  }
  .footer-copy {
    width: 100%;
    order: 3;
  }
}
@media (max-width: 640px) {
  #nav {
    min-height: 70px;
  }
  .nav-logo-name {
    font-size: 14px;
    max-width: 145px;
  }
  #hero {
    padding: 38px 0 36px;
  }
  .hero-layout {
    gap: 28px;
  }
  .hero-copy {
    text-align: left;
    max-width: none;
  }
  #hero-headline {
    font-size: clamp(36px, 10.8vw, 49px);
    max-width: 13ch;
    line-height: 1.15;
  }
  #hero-subtitle {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 20px;
  }
  .hero-actions {
    justify-content: flex-start;
    gap: 10px 20px;
    margin-top: 24px;
    font-size: 13px;
  }
  .hero-actions .btn {
    font-size: 13px;
    padding: 15px 18px;
  }
  .hero-trust-copy {
    font-size: 10px;
    margin-top: 14px;
  }
  .demo-stage {
    padding: 10px;
    border-radius: 16px;
  }
  .console-header {
    padding: 12px;
    font-size: 9px;
    gap: 8px;
  }
  .console-header img {
    width: 22px;
    height: 22px;
  }
  .console-example {
    font-size: 8px;
  }
  .console-layout {
    grid-template-columns: 1fr;
  }
  .console-nav {
    display: none;
  }
  .console-content {
    padding: 18px 15px 8px;
  }
  .console-title h2 {
    font-size: 16px;
  }
  .console-title > span {
    font-size: 9px;
  }
  .console-totals {
    gap: 14px;
    margin-top: 20px;
    grid-template-columns: 1.15fr 1fr;
  }
  .console-totals > div > span {
    font-size: 9px;
  }
  .console-totals p {
    font-size: 26px;
  }
  .console-totals p small {
    font-size: 9px;
  }
  .console-bookings {
    padding-left: 14px;
  }
  .console-bookings > span:last-child {
    font-size: 8px;
    line-height: 1.5;
    display: block;
  }
  .console-totals .positive > span {
    font-size: 8px;
    margin-left: 2px;
  }
  .sales-chart {
    margin-block: 16px 10px;
  }
  svg.sales-plot {
    height: 88px;
  }
  .console-agenda-title h3 {
    font-size: 10px;
  }
  .console-appointment {
    grid-template-columns: 22px minmax(0, 1fr) auto;
    gap: 8px;
    padding: 10px 0;
  }
  .staff-initial {
    width: 22px;
    height: 22px;
    font-size: 8px;
  }
  .console-appointment strong {
    font-size: 10px;
  }
  .console-appointment > div > span {
    font-size: 8px;
  }
  .console-appointment time {
    font-size: 9px;
  }
  .console-appointment .appointment-state {
    display: none;
  }
  .sale-receipt {
    margin: 0 15px;
    padding: 12px 0;
    gap: 8px;
  }
  .sale-receipt > div > strong {
    font-size: 9px;
  }
  .sale-receipt > div > span {
    font-size: 8px;
  }
  .sale-receipt > strong {
    font-size: 11px;
  }
  .receipt-icon {
    width: 24px;
    height: 24px;
  }
  .console-caption {
    padding: 5px 12px;
    font-size: 8px;
    gap: 10px;
  }
  .motion-controls {
    gap: 8px;
  }
  .motion-controls button {
    font-size: 9px;
    min-height: 36px;
  }
  .motion-controls svg {
    width: 10px;
    height: 10px;
  }
  #trusted {
    padding: 24px 20px;
    gap: 15px;
    flex-direction: column;
  }
  .trusted-label {
    font-size: 11px;
  }
  .trusted-chips {
    gap: 10px 22px;
  }
  .trusted-chip {
    font-size: 14px;
  }
  #stats {
    padding: 30px 0;
  }
  .stat-title {
    font-size: 15px;
    line-height: 1.4;
  }
  .stat-lbl {
    font-size: 11px;
    line-height: 1.6;
  }
  .stats-grid {
    gap: 24px 16px;
  }
  .stat-cell {
    padding: 0;
  }
  #features {
    padding: 38px 0 48px;
  }
  .section-h {
    font-size: 31px;
    line-height: 1.2;
    max-width: 19ch;
  }
  .section-sub {
    font-size: 15px;
  }
  .feat-tabs {
    gap: 0 18px;
  }
  .feat-tab {
    font-size: 12px;
    padding: 12px 0;
    gap: 6px;
  }
  .feat-panel {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .feat-panel h3 {
    font-size: 27px;
    line-height: 1.25;
  }
  .feat-visual {
    padding: 22px;
  }
  .feat-panel > div > p {
    font-size: 14px;
  }
  .feat-list li {
    font-size: 12px;
  }
  .cal-cell {
    font-size: 12px;
  }
  #sales-story {
    padding: 46px 0;
  }
  .sales-story-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .sales-story-copy h2 {
    font-size: 33px;
  }
  .sales-story-copy p {
    margin-top: 20px;
  }
  .story-points {
    margin-top: 20px;
    font-size: 12px;
    gap: 10px;
  }
  .sales-story-copy .text-link {
    margin-top: 18px;
    font-size: 13px;
  }
  .insights-preview {
    padding: 22px;
  }
  .insights-totals {
    gap: 20px;
    padding: 22px 0;
  }
  .insights-totals strong {
    font-size: 24px;
  }
  .insights-totals small {
    display: inline;
  }
  .insights-totals span {
    font-size: 10px;
  }
  .insights-row {
    grid-template-columns: 55px 1fr 56px;
    gap: 10px;
  }
  .weekly-mini-bars {
    height: 65px;
  }
  .weekly-mini-bars,
  .weekly-days {
    gap: 15px;
  }
  .insights-header h3 {
    font-size: 16px;
  }
  #pricing {
    padding: 48px 0;
  }
  .pricing-header {
    margin-bottom: 22px;
  }
  .plans {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .plan,
  .plan:first-child,
  .plan:last-child {
    padding: 26px 24px;
    border: 1px solid var(--line);
    border-radius: 12px;
  }
  .plan.pop {
    border-color: #7891b2;
  }
  .plan-name {
    font-size: 24px;
    margin-bottom: 22px;
  }
  .plan.pop .plan-name {
    margin-bottom: 22px;
  }
  .pop-label {
    position: absolute;
    top: 35px;
    right: 24px;
    font-size: 9px;
  }
  .plan-amt {
    font-size: 50px;
  }
  .plan-desc {
    min-height: 0;
    font-size: 13px;
    margin: 20px 0;
  }
  .plan-feats li {
    font-size: 12px;
  }
  .plan-link {
    margin-top: 22px;
  }
  #how {
    padding: 46px 0;
  }
  #how > .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .how-header .section-h {
    font-size: 32px;
  }
  .step-title {
    font-size: 20px;
  }
  .step-body {
    font-size: 13px;
  }
  .local-details {
    padding: 28px 0;
  }
  #compliance-band {
    padding: 12px 0 !important;
  }
  #compliance-band > div > div > div {
    font-size: 18px !important;
  }
  .cta-inner {
    display: flex;
    gap: 0;
  }
  .cta-h {
    font-size: 33px;
    margin-bottom: 24px;
  }
  #cta {
    padding: 46px 0;
  }
  .cta-sub {
    font-size: 14px;
  }
  .cta-note {
    font-size: 10px;
    margin-top: 28px;
  }
  footer > .container {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 18px;
  }
  .footer-links {
    margin: 0;
    gap: 12px 20px;
  }
  .footer-copy {
    order: 3;
  }
  .footer-brand {
    font-size: 13px;
  }
}
@media (max-width: 360px) {
  .console-content {
    padding-inline: 12px;
  }
  .console-totals p {
    font-size: 22px;
  }
  .console-example {
    max-width: 62px;
    text-align: right;
  }
  .console-caption {
    gap: 6px;
  }
  .insights-totals strong {
    font-size: 20px;
  }
  .insights-totals small {
    font-size: 8px;
  }
  .insights-preview {
    padding: 18px;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .text-link {
    font-size: 12px;
  }
  .hero-actions .btn {
    padding-inline: 15px;
  }
  .console-bookings {
    padding-left: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .chart-entrance .insights-row > div > span,
  .chart-entrance .weekly-mini-bars > span,
  .sale-receipt.is-posting .receipt-icon {
    animation: none;
  }
  .chart-line {
    stroke-dasharray: none !important;
    stroke-dashoffset: 0 !important;
  }
}

.motion-outside *,
.motion-suspended * {
  animation-play-state: paused !important;
}
.sales-console[data-motion-state="paused"] .receipt-icon {
  animation-play-state: paused;
}

/* Keep the complete sales example in a typical desktop viewport. */
.sales-console {
  font-size: 12px;
  line-height: 1.45;
}
.hero-trust-copy {
  white-space: normal;
}
@media (min-width: 901px) {
  #hero {
    padding-block: 48px;
  }
  .console-header {
    padding-block: 12px;
  }
  .console-totals {
    margin-top: 18px;
  }
  .console-appointment {
    padding-block: 8px;
  }
  svg.sales-plot {
    height: 96px;
  }
}
