:root {
  --navy: #152c3a;
  --brick: #b54831;
  --cream: #f5f0e6;
  --soft-gray: #e8eceb;
  --charcoal: #1e2428;
  --white: #ffffff;
  --success: #2f6b52;
  --ink: var(--charcoal);
  --ink-soft: var(--navy);
  --forest: var(--navy);
  --forest-bright: var(--success);
  --paper: var(--white);
  --cream-deep: var(--soft-gray);
  --coral: var(--brick);
  --coral-dark: var(--brick);
  --lime: var(--soft-gray);
  --yellow: var(--cream);
  --muted: var(--navy);
  --line: rgba(30, 36, 40, 0.17);
  --shadow: 0 22px 60px rgba(30, 36, 40, 0.13);
  --radius: 1.35rem;
  --radius-small: 0.85rem;
  --shell: min(1160px, calc(100vw - 2.5rem));
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--paper);
  background: var(--coral-dark);
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--paper);
  background: var(--ink);
  border-radius: 0.5rem;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(245, 240, 230, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(15px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header[data-scrolled] {
  border-color: var(--line);
  box-shadow: 0 6px 28px rgba(30, 36, 40, 0.06);
}

.header-inner {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.5rem;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  border-radius: 0.48rem;
  box-shadow: inset -0.55rem -0.55rem 0 var(--coral);
  transform: rotate(-3deg);
}

.brand-mark span {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  transform: rotate(3deg) translate(-0.15rem, -0.15rem);
}

.brand-name {
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.brand-name strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.7vw, 2.25rem);
}

.site-nav > a:not(.button) {
  position: relative;
  padding-block: 0.75rem;
  font-size: 0.86rem;
  font-weight: 760;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 0.45rem;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.24rem auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-3px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.82rem 1.35rem;
  color: var(--paper);
  background: var(--coral-dark);
  border: 2px solid var(--coral-dark);
  border-radius: 999px;
  box-shadow: 0 8px 0 rgba(30, 36, 40, 0.13);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 4px 0 rgba(30, 36, 40, 0.13);
  transform: translateY(3px);
}

.button-small {
  min-height: 2.7rem;
  padding: 0.7rem 1.05rem;
  box-shadow: none;
  font-size: 0.8rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0 0;
  background:
    radial-gradient(circle at 72% 25%, rgba(232, 236, 235, 0.7), transparent 25rem),
    linear-gradient(135deg, var(--cream) 0 62%, var(--soft-gray) 62% 100%);
}

.hero::before {
  position: absolute;
  top: 3.3rem;
  right: -6rem;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgba(30, 36, 40, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  min-height: 40rem;
  align-items: center;
  grid-template-columns: minmax(0, 1.03fr) minmax(23rem, 0.97fr);
  gap: clamp(3rem, 7vw, 7rem);
}

.eyebrow,
.kicker {
  margin-bottom: 1.4rem;
  color: var(--coral-dark);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.eyebrow span {
  width: 0.6rem;
  height: 0.6rem;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(181, 72, 49, 0.15);
}

.hero h1 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-family: var(--display);
  font-size: clamp(3.6rem, 7.1vw, 6.7rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.hero h1 em {
  position: relative;
  color: var(--coral-dark);
  font-weight: 500;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -0.1em;
  left: 0.08em;
  height: 0.11em;
  background: var(--lime);
  border-radius: 50%;
  content: "";
  transform: rotate(-1.3deg);
}

.hero-lede {
  max-width: 37rem;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.text-link {
  padding: 0.7rem 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

.text-link span {
  margin-left: 0.35rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  padding: 0;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 750;
  list-style: none;
}

.hero-points li::before {
  margin-right: 0.45rem;
  color: var(--success);
  content: "✓";
  font-weight: 950;
}

.hero-showcase {
  position: relative;
  padding: 3rem 0;
}

.browser-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(30, 36, 40, 0.23);
  border-radius: 1.3rem;
  box-shadow: 1.25rem 1.25rem 0 var(--ink), var(--shadow);
  transform: rotate(1.4deg);
}

.browser-bar {
  display: flex;
  height: 3rem;
  align-items: center;
  gap: 0.4rem;
  padding: 0 0.9rem;
  background: var(--soft-gray);
  border-bottom: 1px solid var(--line);
}

.browser-bar > span {
  width: 0.58rem;
  height: 0.58rem;
  background: var(--cream-deep);
  border: 1px solid rgba(30, 36, 40, 0.2);
  border-radius: 50%;
}

.browser-bar > span:first-child {
  background: var(--coral);
}

.browser-bar > div {
  flex: 1;
  max-width: 12rem;
  padding: 0.35rem 0.8rem;
  margin-left: 0.55rem;
  color: var(--muted);
  background: var(--paper);
  border-radius: 99px;
  font-size: 0.55rem;
  text-align: center;
}

.mock-site {
  min-height: 26.5rem;
  background: var(--paper);
}

.mock-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.35rem;
}

.mock-logo {
  color: var(--ink);
  font-size: 0.52rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 0.9;
}

.mock-nav-lines {
  display: flex;
  gap: 0.45rem;
}

.mock-nav-lines i {
  display: block;
  width: 2rem;
  height: 0.22rem;
  background: var(--cream-deep);
  border-radius: 2rem;
}

.mock-hero {
  position: relative;
  min-height: 17.8rem;
  padding: clamp(2rem, 5vw, 3.5rem) 2rem;
  overflow: hidden;
  color: var(--paper);
  background: var(--forest);
}

.mock-hero::before,
.mock-hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.mock-hero::before {
  right: -4rem;
  bottom: -5rem;
  width: 15rem;
  height: 15rem;
  background: var(--coral);
}

.mock-hero::after {
  right: 2rem;
  bottom: 1.5rem;
  width: 5rem;
  height: 5rem;
  background: var(--lime);
  box-shadow: -3.8rem -1.8rem 0 var(--yellow);
}

.mock-hero p,
.mock-hero strong,
.mock-hero > span,
.mock-hero b {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 65%;
}

.mock-hero p {
  margin-bottom: 0.6rem;
  color: var(--lime);
  font-size: 0.44rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.mock-hero strong {
  margin-bottom: 0.75rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.mock-hero > span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.55rem;
  line-height: 1.5;
}

.mock-hero b {
  width: max-content;
  padding: 0.55rem 0.75rem;
  margin-top: 1.15rem;
  color: var(--ink);
  background: var(--lime);
  border-radius: 99px;
  font-size: 0.45rem;
  letter-spacing: 0.06em;
}

.mock-grid {
  display: grid;
  padding: 1rem 1.25rem 1.25rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.mock-grid i {
  display: block;
  height: 2.4rem;
  background: var(--cream);
  border-radius: 0.45rem;
}

.mock-grid i:nth-child(2) {
  background: rgba(181, 72, 49, 0.14);
}

.mock-grid i:nth-child(3) {
  background: rgba(47, 107, 82, 0.16);
}

.orbit-note {
  position: absolute;
  z-index: 3;
  padding: 0.65rem 0.9rem;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid rgba(30, 36, 40, 0.25);
  border-radius: 999px;
  box-shadow: 0.25rem 0.25rem 0 var(--ink);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.orbit-note-top {
  top: 1.5rem;
  right: -1.5rem;
  transform: rotate(5deg);
}

.orbit-note-bottom {
  bottom: 1.2rem;
  left: -2.1rem;
  color: var(--paper);
  background: var(--coral-dark);
  transform: rotate(-5deg);
}

.principles {
  display: grid;
  margin-top: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.principles span {
  position: relative;
  padding: 1.25rem 1rem 1.25rem 1.7rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.principles span::before {
  position: absolute;
  top: 50%;
  left: 0.25rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--coral);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.section {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: clamp(2.75rem, 5vw, 4.5rem);
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.55fr);
  gap: 3rem;
}

.section-heading .kicker {
  margin-bottom: 1rem;
}

.section-heading h2,
.fit-intro h2,
.process-heading h2,
.about h2,
.faq h2,
.contact h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading > p,
.fit-intro > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.services {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  display: flex;
  min-height: 27rem;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: rgba(30, 36, 40, 0.45);
  transform: translateY(-4px);
}

.service-card-featured {
  background: var(--soft-gray);
}

.service-card-dark {
  color: var(--paper);
  background: var(--forest);
}

.card-number {
  align-self: flex-end;
  font-family: var(--display);
  font-size: 1.2rem;
  font-style: italic;
}

.card-label {
  margin-bottom: 0.55rem;
  color: var(--coral-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card-dark .card-label {
  color: var(--lime);
}

.service-card h3 {
  max-width: 13ch;
  margin-bottom: 1rem;
  font-family: var(--display);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.service-card p:not(.card-label) {
  max-width: 33rem;
  margin-bottom: 0;
  color: var(--muted);
}

.service-card-dark p:not(.card-label) {
  color: rgba(255, 255, 255, 0.76);
}

.card-link {
  display: flex;
  min-height: 3rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  margin-top: 2rem;
  color: inherit;
  background: transparent;
  border: 0;
  border-top: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.card-link span {
  font-size: 1.15rem;
  transition: transform 160ms ease;
}

.card-link:hover span {
  transform: translate(3px, -3px);
}

.pricing {
  background: var(--soft-gray);
}

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

.price-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(1.5rem, 2.6vw, 2.15rem);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1rem 2.8rem rgba(30, 36, 40, 0.08);
}

.price-card-featured {
  z-index: 2;
  color: var(--paper);
  background: var(--navy);
  border: 2px solid var(--brick);
  box-shadow: 0 1.25rem 0 var(--brick), 0 2rem 4.2rem rgba(21, 44, 58, 0.2);
  transform: translateY(-0.8rem);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 1.35rem;
  padding: 0.48rem 0.72rem;
  color: var(--paper);
  background: var(--brick);
  border-radius: 0 0 0.6rem 0.6rem;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.plan-heading {
  min-height: 13rem;
}

.plan-label,
.feature-intro {
  color: var(--brick);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-label {
  margin-bottom: 0.6rem;
}

.price-card-featured .plan-label,
.price-card-featured .feature-intro {
  color: var(--soft-gray);
}

.price-card h3 {
  margin-bottom: 0.8rem;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.plan-fit {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.price-card-featured .plan-fit {
  color: rgba(255, 255, 255, 0.78);
}

.price-lockup {
  display: grid;
  min-height: 7.8rem;
  align-items: end;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(0, auto) auto minmax(0, auto);
  gap: 0.55rem;
}

.price-card-featured .price-lockup {
  border-color: rgba(255, 255, 255, 0.24);
}

.price-lockup p {
  display: flex;
  min-width: 0;
  flex-direction: column;
  margin: 0;
}

.price-lockup strong {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.price-lockup p span,
.starting-at {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card-featured .price-lockup p span,
.price-card-featured .starting-at {
  color: rgba(255, 255, 255, 0.72);
}

.price-plus {
  align-self: center;
  color: var(--brick);
  font-family: var(--display);
  font-size: 1.4rem;
  font-style: italic;
}

.price-card-featured .price-plus {
  color: var(--paper);
}

.price-lockup-starting {
  position: relative;
  padding-top: 2rem;
}

.starting-at {
  position: absolute;
  top: 0.72rem;
  left: 0;
}

.plan-path {
  min-height: 7.1rem;
  padding: 1rem;
  margin: 1.2rem 0 1.35rem;
  color: var(--navy);
  background: var(--cream);
  border-left: 4px solid var(--success);
  border-radius: 0.25rem var(--radius-small) var(--radius-small) 0.25rem;
  font-size: 0.78rem;
  line-height: 1.55;
}

.price-card-featured .plan-path {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.09);
  border-left-color: var(--brick);
}

.feature-intro {
  margin-bottom: 0.75rem;
}

.plan-features {
  display: grid;
  gap: 0.62rem;
  padding: 0;
  margin: 0 0 2rem;
  list-style: none;
}

.plan-features li {
  display: grid;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.45;
  grid-template-columns: 1rem 1fr;
  gap: 0.45rem;
}

.plan-features li::before {
  color: var(--success);
  content: "✓";
  font-weight: 950;
}

.price-card-featured .plan-features li {
  color: rgba(255, 255, 255, 0.82);
}

.price-card-featured .plan-features li::before {
  color: var(--soft-gray);
}

.pricing-button {
  width: 100%;
  margin-top: auto;
}

.price-card-featured .pricing-button:hover {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.payment-options { background: var(--white); }
.plan-addon { margin: 1.25rem 0; font-size: .9375rem; line-height: 1.6; }
.plan-addon a { color: inherit; text-underline-offset: 4px; }
.printer-addon { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.5rem, 4vw, 3rem); margin-top: 3rem; padding: clamp(1.5rem, 4vw, 3rem); background: var(--white); border: 2px solid var(--brick); border-radius: var(--radius); scroll-margin-top: 7rem; }
.printer-addon h3, .pos-options h3 { margin: 0 0 1rem; font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.2; }
.printer-addon h4 { margin: 0 0 1rem; font-size: 1.2rem; }
.printer-addon p, .printer-addon li, .pos-options p, .pos-options dd { font-size: 1rem; line-height: 1.7; }
.printer-addon ul { padding-left: 1.3rem; }
.printer-addon li + li { margin-top: .75rem; }
.printer-addon .printer-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem 1rem; margin: 1.5rem 0; }
.printer-price strong { color: var(--navy); font-size: clamp(2.7rem, 6vw, 4rem); line-height: 1.2; }
.printer-addon .printer-terms { font-size: .9375rem; }
.printer-addon a, .pos-options a { color: var(--brick); text-underline-offset: 4px; }
.pos-options { margin: 3rem 0; }
.pos-provider-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.pos-provider-grid > div { min-width: 0; padding: 1.5rem; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-small); }
.pos-provider-grid dt { color: var(--navy); font-size: 1.2rem; font-weight: 750; }
.pos-provider-grid dt span { display: block; margin: .35rem 0 .75rem; color: var(--brick); font-size: .875rem; font-weight: 650; }
.pos-provider-grid dd { margin: 0; }
.pos-provider-grid dd a { display: inline-block; }
@media (max-width: 920px) { .printer-addon, .pos-provider-grid { grid-template-columns: 1fr; } }
.payment-provider-list { display: flex; flex-wrap: wrap; gap: 1rem; margin: 0; padding: 0; list-style: none; }
.payment-provider-list li { flex: 1 1 170px; }
.payment-provider-list a { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 84px; padding: 1.25rem; border: 1px solid var(--line); border-radius: var(--radius-small); background: var(--cream); color: var(--navy); font-size: 1.15rem; font-weight: 750; text-decoration: none; }
.payment-provider-list a:hover { border-color: var(--brick); color: var(--brick); }
.payment-provider-list a span { color: var(--brick); }
.payment-fee-note { max-width: 900px; margin: 1.5rem 0 2.5rem; font-size: .9375rem; }
.payment-help { display: flex; flex-wrap: wrap; align-items: center; gap: 2rem; padding: clamp(1.5rem, 4vw, 2.5rem); border-radius: var(--radius); background: var(--soft-gray); }
.payment-help > div:first-child { flex: 1 1 360px; }
.payment-help h3 { margin: 0 0 .6rem; font-family: var(--display); font-size: clamp(1.7rem, 3vw, 2.2rem); line-height: 1.2; }
.payment-help p { margin: 0; }
.payment-actions { display: flex; flex: 1 1 300px; flex-direction: column; align-items: flex-start; gap: .75rem; }
.payment-actions .button { white-space: normal; text-align: left; }
.payment-email { display: inline-flex; align-items: center; min-height: 44px; gap: .5rem; color: var(--navy); font-weight: 650; text-underline-offset: 4px; }

.pricing-note {
  max-width: 66rem;
  padding-top: 1.4rem;
  margin: 2.4rem auto 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  line-height: 1.65;
  text-align: center;
}

.change-explainer {
  display: grid;
  max-width: 58rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  margin: 2rem auto 0;
  background: var(--paper);
  border-left: 0.45rem solid var(--brick);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  grid-template-columns: minmax(13rem, 0.6fr) minmax(0, 1fr);
  gap: 2rem;
}

.change-explainer .kicker {
  margin-bottom: 0.55rem;
}

.change-explainer h3 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.change-explainer > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.fit-section {
  background:
    linear-gradient(rgba(30, 36, 40, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 36, 40, 0.045) 1px, transparent 1px),
    var(--cream);
  background-size: 34px 34px;
}

.fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(24rem, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.fit-intro {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.fit-intro h2 {
  margin-bottom: 1.6rem;
}

.fit-list {
  border-top: 1px solid var(--line);
}

.fit-list > div {
  display: grid;
  min-height: 8.5rem;
  align-items: center;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
}

.fit-list span {
  align-self: start;
  color: var(--coral-dark);
  font-family: var(--display);
  font-size: 1.15rem;
  font-style: italic;
}

.fit-list p {
  margin: 0;
  color: var(--muted);
}

.fit-list strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-size: 1.08rem;
}

.work {
  background: var(--paper);
}

.work-card {
  display: grid;
  overflow: hidden;
  color: var(--paper);
  background: var(--forest);
  border-radius: calc(var(--radius) * 1.25);
  box-shadow: var(--shadow);
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
}

.work-visual {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.15), transparent 10rem),
    var(--coral);
}

.work-visual::before,
.work-visual::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.work-visual::before {
  top: -6rem;
  right: -4rem;
  width: 19rem;
  height: 19rem;
  background: var(--yellow);
  border: 2.2rem solid var(--paper);
}

.work-visual::after {
  bottom: -8rem;
  left: -7rem;
  width: 22rem;
  height: 22rem;
  background: var(--forest);
  border: 3rem solid var(--lime);
}

.pizza-seal {
  position: absolute;
  z-index: 2;
  top: 3.2rem;
  left: 3rem;
  display: grid;
  width: 8.5rem;
  aspect-ratio: 1;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border: 0.55rem double var(--yellow);
  border-radius: 50%;
  text-align: center;
  transform: rotate(-8deg);
}

.pizza-seal span {
  display: block;
  margin-top: 0.9rem;
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 0.8;
}

.pizza-seal small {
  align-self: start;
  color: var(--lime);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.25;
}

.work-window {
  position: absolute;
  z-index: 3;
  right: 2.5rem;
  bottom: 2.5rem;
  width: min(73%, 25rem);
  padding: 2.4rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 1rem;
  box-shadow: 0.75rem 0.75rem 0 var(--ink);
  transform: rotate(2deg);
}

.work-window span {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--coral-dark);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.work-window strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.work-window i {
  display: block;
  width: 6rem;
  height: 0.65rem;
  margin-top: 1.5rem;
  background: var(--lime);
  border-radius: 99px;
}

.work-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem);
}

.case-tag {
  margin-bottom: 1rem;
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-copy h3 {
  margin-bottom: 1rem;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.work-copy > p:not(.case-tag) {
  color: rgba(255, 255, 255, 0.78);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 1rem 0 2rem;
  list-style: none;
}

.tag-list li {
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 700;
}

.button-outline {
  align-self: flex-start;
  color: var(--paper);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.button-outline:hover {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.process {
  background: var(--cream);
}

.process-heading {
  margin-bottom: 4rem;
}

.process-list {
  display: grid;
  padding: 0;
  margin: 0;
  counter-reset: steps;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.process-list li {
  min-height: 19rem;
  padding: 1.75rem;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.process-list li:last-child {
  border-right: 0;
}

.process-list li > span {
  display: inline-grid;
  width: 2.6rem;
  aspect-ratio: 1;
  margin-bottom: 4rem;
  place-items: center;
  color: var(--paper);
  background: var(--coral-dark);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 0.9rem;
  font-style: italic;
}

.process-list h3 {
  margin-bottom: 0.65rem;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.about {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--forest);
}

.about::after {
  position: absolute;
  right: -10rem;
  bottom: -12rem;
  width: 30rem;
  height: 30rem;
  background: var(--coral);
  border: 5rem solid var(--lime);
  border-radius: 50%;
  content: "";
  opacity: 0.12;
}

.about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 0.75fr);
  gap: clamp(3rem, 9vw, 9rem);
}

.kicker-light {
  color: var(--lime);
}

.about h2 {
  max-width: 11ch;
}

.large-copy {
  margin-bottom: 1.5rem;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  letter-spacing: -0.025em;
  line-height: 1.32;
}

.about-copy > p:not(.large-copy) {
  color: rgba(255, 255, 255, 0.74);
}

.about-values {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.about-values span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.about-values i {
  width: 0.72rem;
  height: 0.72rem;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(47, 107, 82, 0.24);
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(25rem, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.faq h2 {
  max-width: 10ch;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  min-height: 5.3rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  color: var(--coral-dark);
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 400;
  transition: transform 160ms ease;
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 39rem;
  padding: 0 3rem 1.75rem 0;
  margin: 0;
  color: var(--muted);
}

.accordion details p a {
  color: var(--brick);
  font-weight: 800;
}

.contact {
  padding: clamp(5rem, 10vw, 9rem) 0;
  color: var(--paper);
  background: var(--coral-dark);
}

.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.8fr) minmax(24rem, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.contact h2 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
}

.contact-copy > p:not(.kicker, .privacy-note) {
  max-width: 35rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid currentColor;
  font-weight: 850;
  text-decoration: none;
}

.privacy-note {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
}

.project-form {
  padding: clamp(1.5rem, 4vw, 2.7rem);
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0.9rem 0.9rem 0 rgba(30, 36, 40, 0.24);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.field label {
  font-size: 0.73rem;
  font-weight: 850;
}

.optional-label { font-weight: 500; }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.75rem 0.85rem;
  background: var(--cream);
  border: 1px solid rgba(30, 36, 40, 0.22);
  border-radius: 0.55rem;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--coral-dark);
  box-shadow: 0 0 0 3px rgba(181, 72, 49, 0.18);
}

.button-light {
  width: 100%;
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: none;
}

.button-light:hover {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.form-status {
  min-height: 1.3rem;
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

.site-footer {
  color: var(--paper);
  background: var(--navy);
}

.footer-main {
  display: grid;
  min-height: 12rem;
  align-items: center;
  grid-template-columns: 1fr 1fr auto;
  gap: 2rem;
}

.brand-footer .brand-mark {
  color: var(--ink);
  background: var(--lime);
  box-shadow: inset -0.55rem -0.55rem 0 var(--coral);
}

.footer-main > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.3rem;
}

.footer-links a {
  font-size: 0.76rem;
  font-weight: 750;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.67rem;
}

html[data-animate] .reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

html[data-animate] .reveal-delay {
  transition-delay: 130ms;
}

html[data-animate] .reveal[data-visible] {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 1rem max(1.25rem, calc((100vw - var(--shell)) / 2));
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 28px rgba(30, 36, 40, 0.1);
    flex-direction: column;
    gap: 0;
  }

  .site-nav[data-open] {
    display: flex;
  }

  html:not([data-animate]) .menu-toggle {
    display: none;
  }

  html:not([data-animate]) .site-nav {
    position: static;
    display: flex;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav > a:not(.button) {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .button {
    margin-top: 1rem;
  }

  html:not([data-animate]) .site-nav .button {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-copy {
    max-width: 47rem;
  }

  .hero-showcase {
    width: min(39rem, 94%);
    margin-inline: auto;
  }

  .section-heading,
  .fit-grid,
  .about-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    gap: 1.5rem;
  }

  .section-heading > p {
    max-width: 38rem;
  }

  .pricing-grid {
    width: min(44rem, 100%);
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .price-card-featured {
    box-shadow: 0 0.75rem 0 var(--brick), 0 1.8rem 3.5rem rgba(21, 44, 58, 0.18);
    transform: none;
  }

  .plan-heading,
  .plan-path {
    min-height: auto;
  }

  .change-explainer {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .fit-intro {
    position: static;
  }

  .work-card {
    grid-template-columns: 1fr;
  }

  .work-visual {
    min-height: 28rem;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(3),
  .process-list li:nth-child(4) {
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }

  .about h2,
  .faq h2,
  .contact h2 {
    max-width: 14ch;
  }

  .about-copy,
  .accordion,
  .project-form {
    max-width: 44rem;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 2rem;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 1.35rem, 1160px);
    --radius: 1rem;
  }

  html {
    scroll-padding-top: 5rem;
  }

  .header-inner {
    min-height: 4.35rem;
  }

  .brand-mark {
    width: 2.25rem;
  }

  .brand-name {
    font-size: 0.75rem;
  }

  .brand-name strong {
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 3.6rem;
    background: radial-gradient(circle at 90% 45%, rgba(232, 236, 235, 0.8), transparent 16rem), var(--cream);
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(3.35rem, 15vw, 4.5rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: center;
  }

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

  .hero-showcase {
    width: 94%;
    padding: 2rem 0 3rem;
  }

  .browser-frame {
    box-shadow: 0.7rem 0.7rem 0 var(--ink), var(--shadow);
  }

  .mock-site {
    min-height: 21rem;
  }

  .mock-hero {
    min-height: 14rem;
    padding: 2rem 1.35rem;
  }

  .mock-hero strong {
    font-size: 2rem;
  }

  .mock-hero::after {
    right: 0.3rem;
    bottom: 1rem;
    transform: scale(0.7);
  }

  .mock-grid {
    padding: 0.8rem;
  }

  .orbit-note {
    font-size: 0.55rem;
  }

  .orbit-note-top {
    top: 0.8rem;
    right: -0.5rem;
  }

  .orbit-note-bottom {
    bottom: 1.5rem;
    left: -0.5rem;
  }

  .principles {
    grid-template-columns: repeat(2, 1fr);
  }

  .principles span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .principles span {
    padding: 1rem 0.5rem 1rem 1.35rem;
    font-size: 0.62rem;
  }

  .section-heading h2,
  .fit-intro h2,
  .process-heading h2,
  .about h2,
  .faq h2,
  .contact h2 {
    font-size: clamp(2.65rem, 12vw, 3.65rem);
  }

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

  .service-card {
    min-height: 23rem;
  }

  .price-card {
    padding: 1.4rem;
  }

  .price-lockup {
    min-height: 7rem;
  }

  .price-lockup strong {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

  .pricing-note {
    text-align: left;
  }

  .fit-grid {
    gap: 2.5rem;
  }

  .fit-list > div {
    grid-template-columns: 2.5rem 1fr;
  }

  .work-visual {
    min-height: 25rem;
  }

  .pizza-seal {
    top: 1.5rem;
    left: 1.5rem;
    width: 6.75rem;
  }

  .pizza-seal span {
    font-size: 1.6rem;
  }

  .work-window {
    right: 1.35rem;
    bottom: 1.35rem;
    width: 77%;
    padding: 1.5rem;
    box-shadow: 0.45rem 0.45rem 0 var(--ink);
  }

  .work-copy {
    padding: 2rem 1.35rem 2.5rem;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:nth-child(2),
  .process-list li:nth-child(3),
  .process-list li:nth-child(4) {
    display: grid;
    min-height: auto;
    padding: 1.5rem 0;
    border-right: 0;
    border-top: 1px solid var(--line);
    border-bottom: 0;
    grid-template-columns: 3.5rem 1fr;
    gap: 0.75rem;
  }

  .process-list li > span {
    margin-bottom: 0;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

.project-form {
    box-shadow: 0.5rem 0.5rem 0 rgba(30, 36, 40, 0.22);
  }

  .contact-email {
    font-size: 0.86rem;
  }

  .footer-main {
    min-height: auto;
    padding-block: 3rem;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-links {
    padding: 0;
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  html[data-animate] .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .hero-showcase,
  .project-form,
  .button,
  .card-link {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero,
  .services,
  .pricing,
  .fit-section,
  .work,
  .process,
  .about,
  .faq,
  .contact,
  .site-footer {
    color: #000;
    background: #fff;
  }

  .section,
  .contact {
    padding: 2rem 0;
  }
}

.error-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 20%, rgba(232, 236, 235, 0.8), transparent 20rem),
    radial-gradient(circle at 90% 85%, rgba(181, 72, 49, 0.2), transparent 24rem),
    var(--cream);
}

.error-main {
  display: grid;
  min-height: 100vh;
  padding: 1.25rem;
  place-items: center;
}

.error-card {
  width: min(42rem, 100%);
  padding: clamp(2rem, 7vw, 5rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.2);
  box-shadow: 1rem 1rem 0 var(--ink);
}

.error-code {
  margin: 3.5rem 0 0.6rem;
  color: var(--coral-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.error-card h1 {
  margin-bottom: 1.2rem;
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.hero-price { margin: 1.75rem 0; font-size: 1rem; line-height: 1.7; }
.hero-price a { display: block; text-decoration: underline; text-underline-offset: .2em; }
.demo-tour { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.demo-tour > a { padding: 1.75rem; border: 1px solid var(--navy); background: var(--white); color: var(--navy); text-decoration: none; }
.demo-tour > a:hover { background: var(--soft-gray); }
.demo-tour span { font-size: .875rem; }
.demo-tour strong { display: block; font-size: 1.2rem; margin: 1rem 0; line-height: 1.4; }
.demo-tour p, .demo-tour-note { font-size: 1rem; line-height: 1.65; }
.demo-tour-note { margin-top: 1.5rem; }
.email-fallback { margin-top: 1.5rem; }
.email-fallback p { margin-bottom: 1rem; font-size: .875rem; line-height: 1.65; }
.email-fallback .button { color: white; border-color: white; }
.email-fallback textarea { width: 100%; min-height: 15rem; margin-top: 1.25rem; padding: 1rem; color: var(--charcoal); background: white; font: inherit; line-height: 1.6; }
@media (max-width: 920px) { .demo-tour { grid-template-columns: 1fr; } }

.error-card > p:not(.error-code) {
  margin-bottom: 2rem;
  color: var(--muted);
}

@media (max-width: 640px) {
  .error-card {
    box-shadow: 0.55rem 0.55rem 0 var(--ink);
  }
}
.printer-ticket-preview { margin-top: 28px; }
.printer-ticket-preview > summary { cursor: pointer; font-size: 16px; font-weight: 750; line-height: 1.6; padding: 14px 0; text-decoration: underline; text-underline-offset: 4px; }
.printer-ticket-preview > p { font-size: 14px; line-height: 1.7; }
.printer-ticket-scroll { overflow-x: auto; max-width: 100%; padding: 10px 4px 18px; }
.printer-ticket-paper { box-sizing: content-box; width: 48ch; margin: 0; padding: 36px 24px 24px; background: #fff; color: #111; border: 1px solid #d5d5d5; box-shadow: 0 5px 16px #152c3a12; font: 13px/1.65 "Courier New",monospace; white-space: pre; }
/* Restaurant review: compact hero and real, framed demo previews. */
.restaurant-hero { padding: 3.5rem 0 2.5rem; min-height: 0; }
.restaurant-hero .hero-copy { max-width: 56rem; }
.restaurant-hero h1 { font-size: clamp(2.25rem, 4.3vw, 3.8rem); line-height: 1.12; max-width: 23ch; }
.restaurant-hero .hero-lede { max-width: 48rem; margin: 1.25rem 0; }
.restaurant-hero .hero-actions { margin-top: 1.5rem; }
.who-for { padding-block: 3.5rem; background: var(--white); }
.owner-benefits { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; margin:2rem 0 0; padding:0; list-style:none; }
.owner-benefits li { display:grid; gap:.35rem; padding:1.35rem; border:1px solid var(--line); border-radius:12px; background:var(--cream); }
.owner-benefits strong { font-size:1.1rem; }
.owner-benefits span { color:var(--muted); }
.plan-comparison { overflow-x:auto; margin:2rem 0; border:1px solid var(--line); border-radius:12px; background:var(--white); }
.plan-comparison table { width:100%; min-width:650px; border-collapse:collapse; text-align:left; }
.plan-comparison caption { padding:1rem 1.25rem; color:var(--navy); font-weight:800; text-align:left; }
.plan-comparison th,.plan-comparison td { padding:.85rem 1rem; border-top:1px solid var(--line); vertical-align:top; }
.plan-comparison thead th { color:var(--white); background:var(--navy); border-top:0; }
.plan-comparison tbody th { font-weight:750; }
.mobile-project-cta { display:none; }
.real-demo { padding-top: 2.5rem; background: #e8eceb; }
.demo-preview-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1.5rem; }
.demo-preview-grid article { min-width:0; }
.demo-preview-grid h3 { margin:1rem 0 .5rem; }
.demo-preview-grid p { margin-bottom:.75rem; }
.product-preview { display:block; overflow:hidden; border:1px solid #152c3a40; border-radius:12px; background:white; box-shadow:0 12px 32px rgba(21,44,58,.12); }
.product-preview img { display:block; width:100%; height:auto; aspect-ratio:auto; object-fit:contain; transition:transform .25s ease; }
.product-preview:hover img, .product-preview:focus-visible img { transform:scale(1.025); }
.product-preview:focus-visible { outline:3px solid var(--brick); outline-offset:4px; }
.shared-features { margin:2rem 0; padding:2rem; background:#e8eceb; border-radius:12px; }
.shared-features ul { columns:2; margin:1rem 0; padding-left:1.2rem; }
.shared-features li { break-inside:avoid; margin:0 1rem .8rem 0; }
.plan-details { margin-top:1rem; }
.plan-details summary,.printer-addon summary { cursor:pointer; font-weight:700; padding:.85rem 0; }
.plan-details li { margin:.65rem 0; }
.price-card { min-width:0; }
.price-card .price-lockup { flex-wrap:wrap; }
.price-card-popular { border:2px solid #b54831; position:relative; }
.popular-badge { background:#b54831; color:white; padding:.4rem .8rem; border-radius:20px; align-self:flex-start; font-size:.875rem; }
.secondary-business { padding-block:2.5rem; }
.spam-trap { position:absolute; left:-10000px; width:1px; height:1px; overflow:hidden; }
.form-status { min-height:3em; }
.about-copy a { color:inherit; text-decoration:underline; }
.policy-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1rem; align-items:start; }
.policy-grid details { padding:1.25rem 1.5rem; background:var(--white); border:1px solid var(--line); border-radius:12px; }
.policy-grid summary { cursor:pointer; font-weight:750; font-size:1.0625rem; line-height:1.5; padding:.35rem 0; }
.policy-grid p { margin:1rem 0 0; font-size:1rem; line-height:1.7; }
.policy-footer { margin-top:1.5rem; max-width:56rem; }
.policy-footer a { text-decoration:underline; }
@media(max-width:800px) { .policy-grid { grid-template-columns:1fr; } }
@media(max-width:800px) { .demo-preview-grid,.owner-benefits { grid-template-columns:1fr; } .shared-features ul { columns:1; } .restaurant-hero { padding-top:2rem; } .hero-actions { flex-wrap:wrap; } .mobile-project-cta { display:block; position:fixed; z-index:20; right:1rem; bottom:1rem; padding:.8rem 1rem; border-radius:999px; color:var(--white); background:var(--brick); box-shadow:0 5px 18px rgba(21,44,58,.24); font-weight:800; text-decoration:none; } body { padding-bottom:4.75rem; } .product-preview { width:100%; border-radius:10px; } .product-preview img { max-width:100%; } .product-preview:hover img { transform:none; } }

.aj-portrait { display:block; width:100%; max-width:360px; height:auto; aspect-ratio:2/3; object-fit:cover; border-radius:12px; margin-bottom:2rem; }
.printer-compatibility { margin:1.5rem 0; border-top:1px solid #d8cec3; border-bottom:1px solid #d8cec3; padding:.5rem 0 1rem; }
.printer-compatibility a { font-weight:700; }

.about-grid { align-items:center; grid-template-columns:minmax(240px,.8fr) minmax(0,1.2fr); gap:clamp(2rem,6vw,6rem); }
.about-copy h2 { margin-bottom:1.5rem; }
.aj-portrait { margin:0 auto; }
@media(max-width:760px) { .about-grid { grid-template-columns:1fr; } }

/* Comfortable phone targets and safe wrapping for expandable content. */
@media(max-width:640px) {
  summary { min-height:48px; padding-block:12px; }
  .printer-ticket-paper { max-width:100%; white-space:pre-wrap; overflow-wrap:anywhere; font-size:12px; }
  .site-header { padding-top:env(safe-area-inset-top); }
  footer { padding-bottom:calc(28px + env(safe-area-inset-bottom)); }
  input,select,textarea { scroll-margin-block:100px; }
}
/* Expanded printer details must not widen the mobile grid. */
.printer-addon > * { min-width:0; }
@media(max-width:640px) {
  .printer-addon { grid-template-columns:minmax(0,1fr); }
  .printer-ticket-paper { box-sizing:border-box; width:100%; padding:24px 14px; }
}


/* Feature guide: category navigation with a focused, readable detail panel. */
.website-features { background:#faf8f3; padding-block:clamp(3.5rem,7vw,6rem); }
.feature-heading { display:grid; grid-template-columns:1.5fr 1fr; align-items:end; gap:3rem; margin-bottom:2.5rem; }
.feature-heading .kicker { margin-bottom:1.2rem; }
.feature-heading h2 { margin:0; font:500 clamp(2.5rem,4.2vw,3.6rem)/1.04 var(--display); letter-spacing:-.045em; }
.feature-heading h2 em { color:var(--brick); font-weight:400; }
.feature-heading-note { max-width:24rem; justify-self:end; }
.feature-heading-note p { color:#4b5b63; margin-bottom:1rem; font-size:1rem; line-height:1.75; }
.feature-heading-note .text-link { display:inline-flex; align-items:center; gap:1.5rem; }
.feature-guide { display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:1rem 2rem; padding:1.1rem 0; border-top:1px solid #d7dedc; border-bottom:1px solid #d7dedc; margin-bottom:2rem; }
.feature-guide p { display:flex; align-items:center; flex-wrap:wrap; gap:.6rem; margin:0; font-size:.78rem; color:#4b5b63; }
.feature-guide-dot { width:7px; height:7px; border-radius:50%; background:var(--success); margin-right:.2rem; }
.feature-guide-divider { width:1px; height:18px; background:#cfd6d4; margin-inline:.35rem; }
.feature-plan { display:inline-flex; align-items:center; white-space:nowrap; font-size:.68rem; font-weight:750; line-height:1.4; padding:4px 8px; border:1px solid #d5dee6; border-radius:5px; background:#edf2f7; color:#244862; }
.feature-plan-pro { color:#285742; background:#eaf2ed; border-color:#cfdfd4; }
.feature-explorer { display:grid; grid-template-columns:minmax(0,1fr); gap:2rem; align-items:start; }
.feature-explorer[data-enhanced] { grid-template-columns:minmax(0,1fr); gap:1.2rem; }
.feature-sidebar { position:static; }
.feature-sidebar[hidden],.feature-group[hidden],.feature-explorer[hidden],.feature-mobile-toggle[hidden] { display:none; }
.feature-nav-label { margin:0 0 1rem; color:#5e6c73; text-transform:uppercase; letter-spacing:.12em; font-size:.65rem; font-weight:800; }
.feature-categories { display:grid; grid-template-columns:repeat(6,minmax(0,1fr)); gap:8px; }
.feature-category { display:grid; grid-template-columns:minmax(0,1fr); align-items:center; gap:12px; padding:15px 14px; min-height:70px; text-align:center; width:100%; border:1px solid #d9e0de; border-radius:9px; background:transparent; color:var(--navy); cursor:pointer; font-size:.9rem; font-weight:750; transition:background .15s,color .15s; }
.feature-category-number { align-self:start; padding-top:2px; font-size:.68rem; font-weight:500; color:#69777e; }
.feature-category small { display:block; margin-top:3px; font-size:.71rem; font-weight:400; color:#5e6c73; }
.feature-category-arrow,.feature-category-number { display:none; }
.feature-category:hover { background:#eef0eb; }
.feature-category[aria-pressed="true"] { background:var(--navy); color:white; box-shadow:0 5px 14px #152c3a12; }
.feature-category[aria-pressed="true"] small,.feature-category[aria-pressed="true"] .feature-category-number { color:#cbd8dd; }
.feature-category[aria-pressed="true"] .feature-category-arrow { opacity:1; }
.feature-groups { min-width:0; display:grid; gap:1.5rem; }
.feature-group { min-width:0; overflow:hidden; border:1px solid #d9e0de; border-radius:16px; background:white; box-shadow:0 12px 35px #152c3a05; scroll-margin-top:110px; }
.feature-panel-body { display:grid; grid-template-columns:minmax(220px,.8fr) minmax(0,2fr); }
.feature-mobile-summary { padding:1.5rem; cursor:pointer; }
.feature-explorer[data-enhanced] .feature-mobile-summary { display:none; }
.feature-panel-heading { position:relative; padding:1.75rem; border-right:1px solid #e3e8e5; background:linear-gradient(120deg,#f0f4f1,#f8faf8); }
.feature-panel-eyebrow { margin:0 0 1rem; color:#4b685a; font-size:.65rem; font-weight:800; letter-spacing:.13em; text-transform:uppercase; }
.feature-panel-heading h3 { margin:0 0 .65rem; font:500 clamp(1.7rem,2.3vw,2.1rem)/1.1 var(--display); letter-spacing:-.035em; color:var(--navy); }
.feature-panel-heading>p:not(.feature-panel-eyebrow) { max-width:52ch; margin:0; color:#51615b; font-size:.9rem; line-height:1.7; }
.feature-inclusion { display:inline-block; margin-top:1.25rem; color:#3d6350; font-size:.68rem; font-weight:750; }
.feature-inclusion::before { content:'✓'; margin-right:7px; }
.feature-group ul { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:0 2rem; list-style:none; padding:.25rem clamp(1.5rem,3vw,2.5rem) 1rem; margin:0; }
.feature-group li { position:relative; padding:1.3rem 0 1.3rem 25px; border-bottom:1px solid #edf0ed; }
.feature-group li::before { content:'✓'; position:absolute; left:0; top:1.35rem; color:#547362; font-size:.75rem; }
.feature-label { display:flex; gap:7px; flex-wrap:wrap; align-items:center; }
.feature-label h4 { margin:0; font-size:.9rem; font-weight:750; line-height:1.5; color:var(--navy); }
.feature-group li p { margin:.45rem 0 0; font-size:.82rem; line-height:1.7; color:#53626a; }
.feature-bottom { display:flex; align-items:center; justify-content:space-between; gap:2rem; margin-top:2rem; padding:1.75rem 2rem; color:white; background:var(--navy); border-radius:12px; }
.feature-bottom p { margin:0; font-size:.86rem; color:#d4dfe3; }
.feature-bottom .feature-bottom-title { margin-bottom:.4rem; color:white; font:500 1.6rem/1.2 var(--display); }
.feature-bottom .button { flex-shrink:0; box-shadow:none; font-size:.82rem; }
.feature-fine-print { margin-top:1rem; color:#526269; font-size:.8rem; }
.feature-fine-print summary { cursor:pointer; width:fit-content; padding:12px 0; }
.feature-scope { max-width:100ch; margin:.5rem 0 0; line-height:1.75; }
@media(max-width:1000px) { .feature-heading { gap:2rem; } .feature-category { padding:12px 8px; font-size:.78rem; } .feature-group ul { gap:0 1rem; } }
@media(max-width:760px) {
 .feature-heading { grid-template-columns:1fr; gap:1.25rem; margin-bottom:1.75rem; }
 .feature-heading-note { max-width:36rem; justify-self:start; }
 .feature-heading-note p { margin-bottom:.5rem; }
 .feature-guide { gap:.8rem; margin-bottom:1.5rem; }
 .feature-guide p { font-size:.72rem; }
 .feature-explorer[data-enhanced] { grid-template-columns:minmax(0,1fr); gap:1.25rem; }
 .feature-sidebar { position:static; }

 .feature-category { min-height:64px; padding:11px; gap:8px; grid-template-columns:18px minmax(0,1fr); border-color:#dbe1dc; background:white; font-size:.8rem; }
 .feature-category-arrow { display:none; }
 .feature-category small { font-size:.65rem; }
 .feature-category-number { font-size:.61rem; }

 .feature-bottom { padding:1.5rem; flex-direction:column; align-items:flex-start; gap:1.25rem; }
}
@media(max-width:520px) {
 .feature-heading h2 { font-size:clamp(2rem,8.5vw,2.8rem); }
 .feature-group ul { grid-template-columns:minmax(0,1fr); padding-inline:1.25rem; }
 .feature-panel-heading { padding:1.5rem 1.25rem; }
 .feature-panel-heading h3 { font-size:1.9rem; }
 .feature-guide p:last-child { display:grid; grid-template-columns:max-content 1fr; gap:.6rem; }
 .feature-guide-divider { display:none; }
 .feature-group li { padding-block:1rem; }
 .feature-group li::before { top:1.1rem; }
 .feature-label h4 { font-size:.9rem; }
}
@media print { .feature-sidebar { display:none!important; } .feature-group[hidden] { display:block!important; } .feature-explorer[data-enhanced] { display:block; } .feature-group { margin-bottom:1rem; } }

.feature-mobile-toggle { display:flex; width:100%; align-items:center; justify-content:space-between; min-height:56px; padding:1rem 1.25rem; border:1px solid var(--navy); border-radius:9px; background:var(--navy); color:white; font-size:.95rem; font-weight:750; cursor:pointer; }
.feature-mobile-toggle span { font-size:1.3rem; line-height:1; }
.feature-mobile-summary { list-style:none; }
.feature-mobile-summary::-webkit-details-marker { display:none; }
.feature-mobile-summary small { display:block; font-weight:400; color:#526269; font-size:.75rem; margin-top:4px; }
@media(min-width:1100px) { .feature-group ul { grid-template-columns:repeat(3,minmax(0,1fr)); gap:0 1.5rem; padding-inline:1.75rem; } }
@media(max-width:760px) {
 .feature-explorer { margin-top:1rem; }
 .feature-panel-body { display:block; }
 .feature-explorer[data-enhanced] .feature-mobile-summary,.feature-mobile-summary { display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:1.15rem 1.25rem; color:var(--navy); font-size:.95rem; font-weight:750; }
 .feature-expand-icon { font-size:1.4rem; font-weight:400; }
 .feature-group[open] .feature-expand-icon { transform:rotate(45deg); }
 .feature-panel-heading { display:none; }
 .feature-group ul { grid-template-columns:1fr; }
 .feature-groups { gap:10px; }
 .feature-group[open] .feature-mobile-summary { border-bottom:1px solid #e3e8e5; }
 .feature-bottom { margin-top:1.25rem; }
}
@media print { .feature-explorer[hidden] { display:block!important; } .feature-mobile-toggle { display:none!important; } }

/* r27: a shorter product-first homepage, with detail available on demand. */
.section { padding-block:clamp(3rem,6vw,5rem); }
.restaurant-hero { padding:clamp(2.5rem,6vw,5rem) 0 2.5rem; min-height:0; }
.restaurant-hero::before,.restaurant-hero::after { display:none; }
.hero-product-grid { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.1fr); align-items:center; gap:2.5rem; }
.restaurant-hero .hero-copy { max-width:36rem; }
.restaurant-hero h1 { font-size:clamp(2.65rem,4.7vw,4.25rem); }
.hero-product { position:relative; margin:0; padding:1rem 0 3.5rem 2.5rem; }
.product-tablet { margin:1rem 0 4rem 2rem; overflow:hidden; border:10px solid var(--navy); border-radius:22px; box-shadow:0 22px 40px #152c3a25; transform:rotate(2deg); }
.product-tablet img { width:100%; height:auto; }
.product-phone { position:absolute; width:30%; left:0; bottom:3.5rem; border:7px solid var(--navy); border-radius:22px; overflow:hidden; box-shadow:0 15px 30px #152c3a40; transform:rotate(-5deg); }
.product-phone img { width:100%; height:auto; }
.hero-product figcaption { position:absolute; bottom:0; right:0; text-align:right; color:#4b5b63; font-size:.75rem; max-width:80%; }
.who-for { padding-block:1rem 3rem; }
.owner-benefits { margin:0; }
.pricing-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; align-items:start; }
.price-card { display:grid; grid-template-rows:2.5rem 3.5rem 8.3rem 5rem 3.4rem 4rem auto; gap:0; padding:1.6rem; min-width:0; }
.price-card>h3,.price-card>p { margin:0; }
.price-card .price-lockup { display:grid; grid-template-columns:max-content 1rem max-content; grid-template-rows:1.25rem auto; align-items:start; justify-content:start; column-gap:.5rem; margin:0; }
.price-lockup .price-qualifier { grid-column:1/-1; font-size:.7rem; line-height:1; }
.price-card .price-lockup p { display:flex; flex-direction:column; margin:0; gap:.1rem; }
.price-card .price-lockup strong { font-size:clamp(1.7rem,2.8vw,2.45rem); white-space:nowrap; line-height:1.2; }
.price-card .price-lockup p span { font-size:.8rem; }
.price-card .price-plus { padding-top:.6rem; }
.price-card .pricing-button { width:100%; align-self:start; min-height:48px; font-size:.8rem; padding:.85rem .55rem; text-align:center; }
.price-card .plan-description { font-size:.94rem; }
.price-card .plan-rounds { font-size:.83rem; }
.price-card .plan-details { margin-top:.75rem; }
.compact-comparison { margin:2rem 0 1rem; }
.compact-comparison .plan-comparison { margin:0; }
.compact-comparison th,.compact-comparison td { padding:.7rem 1rem; font-size:.85rem; }
.sales-details { padding:0; margin:.7rem 0; border:1px solid var(--line); border-radius:12px; background:#ffffff70; }
.sales-details>summary { padding:1.1rem 1.25rem; min-height:52px; font-size:.95rem; font-weight:700; cursor:pointer; }
.sales-details[open]>summary { border-bottom:1px solid var(--line); margin-bottom:1rem; }
.sales-details>div:not(.shell),.sales-details>.shared-features { margin:1.2rem; }
.sales-details .section { padding:1.5rem; }
.sales-details .shell { width:100%; max-width:100%; }
.sales-details .feature-heading h2 { font-size:2.4rem; }
.sales-details .feature-heading { margin-bottom:1.5rem; }
.sales-details .feature-bottom { margin-bottom:1rem; }
.sales-details .shared-features { background:transparent; padding:0; }
.sales-details .change-explainer { padding:0; }
.printer-summary { display:grid; grid-template-columns:1fr 1fr; gap:2rem; align-items:start; margin-top:2rem; padding-top:2rem; border-top:1px solid var(--line); }
.printer-summary p { font-size:.9rem; }
.printer-summary details details { margin:1rem; }
.printer-summary .button { margin:1rem; }
.printer-summary details p { margin:1rem 0; }
.case-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:start; }
.demo-case-study { background:var(--soft-gray); }
.case-outcomes { margin:0; padding:0; list-style:none; counter-reset:outcomes; }
.case-outcomes li { display:grid; grid-template-columns:2rem 1fr; gap:.25rem 1rem; padding:1rem 0; border-bottom:1px solid var(--line); counter-increment:outcomes; }
.case-outcomes li::before { content:'0' counter(outcomes); color:var(--brick); grid-row:span 2; font-size:.8rem; padding-top:.2rem; }
.case-outcomes li strong { font-size:1.1rem; }
.case-outcomes li span { grid-column:2; color:#475962; font-size:.95rem; }
.about-grid { align-items:center; }
.about .aj-portrait { max-height:390px; width:100%; object-fit:cover; object-position:center 42%; }
.integration-grid { display:grid; grid-template-columns:1fr 1fr; gap:2rem; }
.integration-grid h3 { font-size:1rem; }
.faq .project-policies .section-heading { display:none; }
.faq .project-policies .policy-grid { grid-template-columns:1fr; }
.site-header .button-small { font-size:.77rem; padding:.7rem; }
@media(max-width:1000px) {
 .hero-product-grid { gap:1.25rem; }
 .price-card { padding:1.2rem; grid-template-rows:2.5rem 3.7rem 7.5rem 5.8rem 3.5rem 4.8rem auto; }
 .price-card .price-lockup { column-gap:.25rem; }
 .price-card .price-lockup strong { font-size:1.8rem; }
 .case-grid { gap:2rem; }
}
@media(max-width:760px) {
 .hero-product-grid { grid-template-columns:1fr; }
 .hero-product { width:min(100%,34rem); margin:1.5rem auto 0; }
 .pricing-grid { grid-template-columns:1fr; gap:1.6rem; }
 .price-card { grid-template-rows:auto; gap:.9rem; padding:1.5rem; }
 .price-card .price-lockup { grid-template-rows:1rem auto; min-height:6rem; column-gap:1rem; }
 .price-card .price-lockup strong { font-size:2.5rem; }
 .price-card .pricing-button { font-size:.92rem; }
 .printer-summary,.case-grid,.integration-grid { grid-template-columns:1fr; gap:1rem; }
 .sales-details .section { padding:1rem; }
 .sales-details>summary { padding:1rem; }
 .sales-details .feature-heading h2 { font-size:2rem; }
 .about .aj-portrait { max-height:340px; }
 .compact-comparison th,.compact-comparison td { padding:.55rem .5rem; font-size:.78rem; }
 .hero-product figcaption { font-size:.68rem; }
}
@media(prefers-reduced-motion:reduce) { .product-tablet,.product-phone { transform:none; } }
.price-card { border-width:2px; grid-template-rows:3.8rem 4rem 7rem 4.5rem 3rem 3.6rem auto; }
.price-card h3 { font-size:2.8rem; line-height:1.1; }
.price-card .plan-path { min-height:0; padding:.7rem .8rem; align-self:start; }
.price-card .price-lockup { min-height:0; padding:.5rem 0 .8rem; row-gap:.4rem; margin-bottom:1rem; }
.price-card .price-plus { align-self:start; padding-top:.3rem; }
@media(max-width:1000px) { .price-card { grid-template-rows:3.2rem 4.5rem 7rem 5rem 3.5rem 4.3rem auto; }.price-card h3 {font-size:2.4rem;} }
@media(max-width:760px) { .price-card {grid-template-rows:auto;}.price-card .price-lockup{min-height:6rem;margin-bottom:0;} }


/* Feature categories have one entry point, with the mobile list kept optional. */
#features { margin:2rem 0; padding:1.75rem; border:1px solid #d6dedc; border-radius:14px; }
#features>.shell { width:100%; padding:0; }
#features .feature-heading { margin-bottom:1.25rem; gap:2rem; }
#features .feature-heading h2 { font-size:2.4rem; }
#features .feature-heading .kicker { margin-bottom:.65rem; }
#features .feature-bottom { margin-top:1.25rem; padding:1.2rem; }
.mobile-project-cta[hidden] { display:none !important; }
@media(max-width:800px) {
  html { scroll-padding-bottom:calc(96px + env(safe-area-inset-bottom)); }
  body { padding-bottom:calc(88px + env(safe-area-inset-bottom)); }
  .mobile-project-cta { left:0; right:0; bottom:0; margin:0; border-radius:0; padding:1rem 1rem calc(1rem + env(safe-area-inset-bottom)); min-height:64px; text-align:center; box-shadow:0 -3px 16px #152c3a20; }
  #features { padding:1rem; }
  #features .feature-heading { gap:.75rem; margin-bottom:1rem; }
  #features .feature-heading h2 { font-size:2rem; }
  #features .feature-heading-note p { margin:0; }
  #features .feature-heading-note .text-link { display:none; }
  #features .feature-guide { padding-block:.85rem; margin-bottom:1rem; }
  #features .feature-bottom { padding:1rem; }
}
