:root {
  --ink: #10201f;
  --muted: #5e6b69;
  --paper: #f7f9f7;
  --white: #ffffff;
  --teal: #087f78;
  --teal-dark: #075b57;
  --teal-soft: #dff3ef;
  --coral: #ef6c5b;
  --coral-soft: #fff0ed;
  --yellow: #f2c94c;
  --line: #d9e1de;
  --night: #071c1b;
  --night-soft: #0d2c2a;
  --max: 1240px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--night);
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(16, 32, 31, 0.1);
  backdrop-filter: blur(14px);
}

.header-inner,
.section-inner,
.hero-inner {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 7px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.desktop-nav a {
  position: relative;
  color: inherit;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 5px;
  color: inherit;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.cta-short {
  display: none;
}

.site-header.is-scrolled .header-cta {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--night);
}

.site-header.is-scrolled .header-cta:hover,
.site-header.is-scrolled .header-cta:focus-visible {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: min(820px, 94svh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("/assets/hero-queue-system.webp");
  background-position: center center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 18, 18, 0.98) 0%, rgba(4, 18, 18, 0.86) 26%, rgba(4, 18, 18, 0.28) 58%, rgba(4, 18, 18, 0.08) 100%),
    linear-gradient(0deg, rgba(4, 18, 18, 0.72) 0%, transparent 42%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: min(820px, 94svh);
  flex-direction: column;
  justify-content: flex-end;
  padding: 150px 0 44px;
}

.hero-copy {
  width: min(680px, 58%);
  margin-bottom: 86px;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow.light {
  color: #9bded8;
}

.hero h1 {
  margin: 0;
  font-size: clamp(66px, 9vw, 132px);
  font-weight: 850;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: clamp(27px, 3.5vw, 48px);
  font-weight: 720;
  line-height: 1.08;
}

.hero-description {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  padding: 0 23px;
  background: var(--yellow);
  color: #16201f;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #ffda63;
}

.button.text-button {
  color: var(--white);
}

.button.text-button span {
  margin-left: 9px;
  font-size: 21px;
}

.hero-signals {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  list-style: none;
}

.hero-signals li {
  padding: 18px 22px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid p {
  min-height: 120px;
  margin: 0;
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

.trust-grid p:first-child {
  border-left: 1px solid var(--line);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 6px;
  font-size: 16px;
}

.trust-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.section {
  padding: 120px 0;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 120px;
  align-items: end;
}

.section-heading h2,
.product-copy h2,
.control-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading.centered {
  max-width: 820px;
  margin: 0 auto 72px;
  text-align: center;
}

.intro-copy {
  padding-bottom: 5px;
}

.intro-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.intro-copy p + p {
  margin-top: 18px;
}

.product-section {
  position: relative;
  overflow: hidden;
  padding: 122px 0;
}

.pager-product {
  background: var(--white);
}

.queue-product {
  color: var(--white);
  background: var(--night);
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  gap: clamp(60px, 8vw, 118px);
  align-items: center;
}

.product-grid.reverse {
  grid-template-columns: minmax(500px, 1.08fr) minmax(0, 0.92fr);
}

.product-kicker {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--teal);
  font-size: 15px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-kicker span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.queue-kicker {
  color: #77d3cb;
}

.queue-kicker span {
  color: rgba(255, 255, 255, 0.58);
}

.product-copy h2 {
  font-size: clamp(40px, 4.5vw, 66px);
}

.product-lead {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.queue-product .product-lead {
  color: rgba(255, 255, 255, 0.69);
}

.process-list {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.queue-list li {
  border-color: rgba(255, 255, 255, 0.15);
}

.process-list > li > span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
}

.queue-list > li > span {
  color: #77d3cb;
}

.process-list strong {
  display: block;
  font-size: 16px;
}

.process-list p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.queue-list p {
  color: rgba(255, 255, 255, 0.58);
}

.use-cases {
  margin: 30px 0 0;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.8;
}

.queue-product .use-cases {
  color: #91d9d3;
}

.pager-visual,
.queue-visual {
  position: relative;
  min-height: 600px;
}

.pickup-display,
.waiting-display {
  position: absolute;
  overflow: hidden;
  border: 10px solid #1b2726;
  border-radius: 7px;
  background: #f4f7f6;
  box-shadow: 0 34px 70px rgba(18, 44, 41, 0.18);
}

.pickup-display {
  top: 5%;
  right: 0;
  width: 88%;
  min-height: 415px;
  padding: 27px;
}

.ui-topline {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 17px;
  border-bottom: 1px solid #d5dfdc;
  color: #213533;
  font-size: 13px;
}

.ui-brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.live-label {
  margin-left: auto;
  color: var(--teal);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.pickup-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 24px;
}

.column-label {
  display: block;
  margin-bottom: 12px;
  color: #667572;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.number-row {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 0 15px;
  border-left: 4px solid #b9c7c4;
  background: #e5ebe9;
}

.number-row strong {
  color: #203431;
  font-size: 29px;
  line-height: 1;
}

.number-row small {
  color: #6d7a78;
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.number-row.ready-number {
  border-color: var(--coral);
  background: var(--coral-soft);
}

.ready-number strong {
  color: #c34a3a;
}

.phone-mockup {
  position: absolute;
  z-index: 3;
  width: 194px;
  height: 390px;
  overflow: hidden;
  padding: 31px 15px 18px;
  border: 8px solid #18201f;
  border-radius: 28px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 28px 55px rgba(7, 28, 27, 0.22);
  text-align: center;
}

.pager-phone {
  bottom: 0;
  left: 0;
  transform: rotate(-3deg);
}

.phone-speaker {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 45px;
  height: 4px;
  border-radius: 3px;
  background: #2f3736;
  transform: translateX(-50%);
}

.phone-brand {
  color: var(--teal);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.phone-mockup > p {
  margin: 42px 0 8px;
  color: #65716f;
  font-size: 12px;
}

.phone-order {
  display: block;
  color: var(--ink);
  font-size: 82px;
  line-height: 1;
}

.status-ready {
  margin: 28px 0 10px;
  padding: 10px 7px;
  border-radius: 4px;
  color: #12645f;
  background: var(--teal-soft);
  font-size: 11px;
  font-weight: 800;
}

.status-ready span {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 4px;
  border-radius: 50%;
  background: var(--teal);
}

.phone-mockup > small {
  color: #7c8785;
  font-size: 9px;
}

.push-toast {
  position: absolute;
  z-index: 4;
  right: 5%;
  bottom: 8%;
  width: 280px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px;
  border: 1px solid rgba(16, 32, 31, 0.08);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 17px 36px rgba(7, 28, 27, 0.16);
}

.push-toast img {
  border-radius: 6px;
}

.push-toast strong,
.push-toast span {
  display: block;
  line-height: 1.35;
}

.push-toast strong {
  font-size: 12px;
}

.push-toast span {
  color: #64716f;
  font-size: 11px;
}

.waiting-display {
  top: 2%;
  left: 0;
  width: 94%;
  height: 430px;
  padding: 26px 31px;
  color: var(--white);
  background: #102c2a;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.32);
  text-align: center;
}

.waiting-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 750;
}

.waiting-display > p {
  margin: 29px 0 0;
  color: #a7cbc7;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.current-queue {
  display: block;
  margin-top: 3px;
  color: var(--yellow);
  font-size: 128px;
  line-height: 1;
}

.desk-label {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.waiting-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 25px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: left;
}

.waiting-footer div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: 24px;
}

.waiting-footer small,
.waiting-footer span {
  display: block;
}

.waiting-footer small {
  color: #8db7b2;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.waiting-footer span {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 750;
}

.queue-phone {
  right: 0;
  bottom: 0;
  transform: rotate(3deg);
}

.queue-phone .phone-order {
  color: var(--teal);
}

.ahead-count {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 24px 0 12px;
  padding: 10px 5px;
  border-top: 1px solid #dbe3e1;
  border-bottom: 1px solid #dbe3e1;
}

.ahead-count b {
  color: var(--coral);
  font-size: 25px;
}

.ahead-count span {
  max-width: 80px;
  color: #566562;
  font-size: 10px;
  line-height: 1.25;
  text-align: left;
}

.ticket-mockup {
  position: absolute;
  z-index: 2;
  bottom: 1%;
  left: 7%;
  width: 178px;
  min-height: 274px;
  padding: 22px 16px;
  color: #18201f;
  background: #fffef8;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
  text-align: center;
  transform: rotate(-6deg);
}

.ticket-mockup::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 9px;
  background: repeating-linear-gradient(135deg, #fffef8 0 7px, transparent 7px 14px);
  content: "";
}

.ticket-mockup > span {
  font-family: Consolas, monospace;
  font-size: 10px;
}

.ticket-mockup > strong {
  display: block;
  margin: 4px 0 10px;
  font-family: Consolas, monospace;
  font-size: 70px;
  line-height: 1;
}

.ticket-mockup > small {
  display: block;
  margin-top: 12px;
  font-family: Consolas, monospace;
  font-size: 7px;
  line-height: 1.4;
}

.fake-qr {
  width: 86px;
  height: 86px;
  margin: auto;
  background:
    linear-gradient(90deg, #17201f 10px, transparent 10px) 0 0 / 20px 20px,
    linear-gradient(#17201f 10px, transparent 10px) 0 0 / 20px 20px,
    repeating-conic-gradient(#17201f 0 25%, transparent 0 50%) 7px 8px / 16px 16px;
  border: 6px solid #17201f;
  box-shadow: inset 0 0 0 5px #fffef8;
}

.how-section {
  background: var(--paper);
}

.journey {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.journey-step {
  position: relative;
  min-height: 355px;
  padding: 28px 28px 36px;
  border-right: 1px solid var(--line);
}

.journey-step:first-child {
  border-left: 1px solid var(--line);
}

.step-index {
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
}

.step-symbol {
  position: relative;
  width: 68px;
  height: 68px;
  margin: 48px 0 40px;
}

.scan-symbol {
  border: 3px solid var(--teal);
}

.scan-symbol::before,
.scan-symbol::after {
  position: absolute;
  background: var(--paper);
  content: "";
}

.scan-symbol::before {
  top: 8px;
  bottom: 8px;
  left: -5px;
  width: 76px;
}

.scan-symbol::after {
  top: -5px;
  right: 8px;
  left: 8px;
  height: 76px;
}

.phone-symbol {
  width: 42px;
  margin-left: 13px;
  border: 3px solid var(--coral);
  border-radius: 8px;
}

.phone-symbol::after {
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
  transform: translateX(-50%);
}

.bell-symbol {
  border: 3px solid var(--yellow);
  border-radius: 34px 34px 12px 12px;
}

.bell-symbol::before {
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 16px;
  height: 8px;
  border-radius: 0 0 8px 8px;
  background: var(--yellow);
  content: "";
  transform: translateX(-50%);
}

.display-symbol {
  width: 76px;
  border: 3px solid var(--teal-dark);
  border-radius: 4px;
}

.display-symbol::before {
  position: absolute;
  bottom: -13px;
  left: 50%;
  width: 28px;
  height: 3px;
  background: var(--teal-dark);
  box-shadow: 0 8px 0 -1px var(--teal-dark);
  content: "";
  transform: translateX(-50%);
}

.journey-step h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.journey-step p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.control-section {
  padding: 112px 0;
  color: var(--white);
  background: var(--teal-dark);
}

.control-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: 110px;
}

.control-copy p:last-child {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.control-copy h2 {
  font-size: clamp(38px, 4.5vw, 64px);
}

.capability-list {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.capability-list div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.capability-list strong {
  font-size: 14px;
}

.capability-list span {
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
}

.deployment-section {
  background: var(--white);
}

.deployment-section .section-heading {
  max-width: 840px;
  margin-bottom: 75px;
}

.hardware-layout {
  display: grid;
  grid-template-columns: minmax(480px, 1.1fr) minmax(0, 0.9fr);
  gap: 100px;
  align-items: center;
}

.hardware-figure {
  position: relative;
  min-height: 500px;
  border-bottom: 2px solid #d9e0de;
}

.device {
  position: absolute;
  z-index: 2;
  background: #25302f;
  box-shadow: 0 24px 40px rgba(16, 32, 31, 0.16);
}

.tablet-device {
  top: 64px;
  left: 13%;
  width: 185px;
  height: 240px;
  display: grid;
  place-items: center;
  border: 11px solid #1a2221;
  border-radius: 10px;
  color: var(--white);
  background: var(--teal);
  font-size: 13px;
  font-weight: 850;
}

.tablet-device::after {
  position: absolute;
  bottom: -112px;
  left: 50%;
  width: 80px;
  height: 112px;
  background: #1a2221;
  clip-path: polygon(35% 0, 65% 0, 100% 100%, 0 100%);
  content: "";
  transform: translateX(-50%);
}

.printer-device {
  right: 8%;
  bottom: 0;
  width: 182px;
  height: 148px;
  border-radius: 7px 7px 0 0;
}

.printer-device::before {
  position: absolute;
  top: 19px;
  right: 21px;
  left: 21px;
  height: 53px;
  border-radius: 4px;
  background: #121817;
  content: "";
}

.printer-device::after {
  position: absolute;
  top: -68px;
  left: 39px;
  width: 104px;
  height: 82px;
  border-bottom: 2px dashed #c4c8c2;
  background: #fffef8;
  content: "24";
  color: #1a2221;
  font-family: Consolas, monospace;
  font-size: 34px;
  font-weight: 800;
  line-height: 65px;
  text-align: center;
}

.router-device {
  bottom: 0;
  left: 45%;
  width: 126px;
  height: 34px;
  border-radius: 5px 5px 0 0;
}

.router-device i {
  width: 5px;
  height: 5px;
  display: inline-block;
  margin: 15px 0 0 12px;
  border-radius: 50%;
  background: #6cdbd1;
}

.tv-device {
  top: 12px;
  right: 5%;
  width: 205px;
  height: 116px;
  display: grid;
  place-content: center;
  border: 8px solid #1a2221;
  color: var(--yellow);
  background: var(--night-soft);
  text-align: center;
}

.tv-device b {
  font-size: 48px;
  line-height: 1;
}

.tv-device small {
  margin-top: 4px;
  color: #b0cfcb;
  font-size: 8px;
}

.connection-line {
  position: absolute;
  z-index: 1;
  height: 1px;
  border-top: 1px dashed #91aaa6;
  transform-origin: left;
}

.connection-line.one {
  bottom: 115px;
  left: 31%;
  width: 130px;
  transform: rotate(15deg);
}

.connection-line.two {
  right: 20%;
  bottom: 148px;
  width: 110px;
  transform: rotate(-67deg);
}

.connection-line.three {
  right: 14%;
  bottom: 103px;
  width: 160px;
  transform: rotate(178deg);
}

.deployment-copy > p {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 18px;
}

.deployment-copy dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.deployment-copy dl div {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.deployment-copy dt {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.deployment-copy dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.fit-section {
  background: #edf3f0;
}

.fit-table {
  max-width: 1050px;
  margin: 0 auto;
  border-top: 2px solid var(--ink);
}

.fit-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  border-bottom: 1px solid #cad5d1;
}

.fit-row > * {
  padding: 20px 22px;
  border-right: 1px solid #cad5d1;
  font-size: 14px;
}

.fit-row > *:last-child {
  border-right: 0;
}

.fit-row span {
  color: var(--muted);
}

.fit-row.fit-head {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fit-row .fit-yes {
  color: var(--teal-dark);
  font-weight: 800;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(480px, 1.28fr);
  gap: 110px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 23px 48px 23px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 7px;
  width: 16px;
  height: 2px;
  background: var(--teal-dark);
  content: "";
}

.faq-list summary::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 670px;
  margin: -3px 0 24px;
  color: var(--muted);
}

.final-cta {
  padding: 95px 0;
  color: var(--white);
  background: var(--coral);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 70px;
  align-items: end;
}

.final-cta h2 {
  max-width: 850px;
  font-size: clamp(38px, 5vw, 67px);
}

.final-cta .eyebrow {
  color: #4d1f18;
}

.cta-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 5px;
}

.light-button {
  min-width: 180px;
  padding: 0 23px;
  color: var(--ink);
  background: var(--white);
}

.cta-contact > a:last-child {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.62);
  background: var(--night);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
}

.footer-brand {
  color: var(--white);
}

.footer-brand img {
  width: 38px;
  height: 38px;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

.footer-inner p:nth-child(2) {
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .desktop-nav {
    gap: 18px;
  }

  .hero-copy {
    width: min(670px, 72%);
  }

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

  .trust-grid p:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .product-grid,
  .product-grid.reverse {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .product-grid.reverse .queue-visual {
    order: 2;
  }

  .product-grid.reverse .product-copy {
    order: 1;
  }

  .pager-visual,
  .queue-visual {
    width: min(100%, 760px);
    margin: 0 auto;
  }

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

  .journey-step:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .control-grid,
  .hardware-layout,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .hardware-figure {
    width: min(100%, 700px);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 66px;
  }

  .header-inner,
  .section-inner,
  .hero-inner {
    width: min(calc(100% - 32px), var(--max));
  }

  .header-inner {
    grid-template-columns: auto 1fr;
    gap: 14px;
  }

  .brand {
    font-size: 17px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    justify-self: end;
    padding: 9px 11px;
    font-size: 12px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    background-position: 57% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 18, 18, 0.92), rgba(4, 18, 18, 0.42)),
      linear-gradient(0deg, rgba(4, 18, 18, 0.93) 0%, rgba(4, 18, 18, 0.12) 70%);
  }

  .hero-inner {
    min-height: 760px;
    padding: 120px 0 28px;
  }

  .hero-copy {
    width: 100%;
    margin-bottom: 55px;
  }

  .hero h1 {
    font-size: clamp(56px, 18vw, 82px);
  }

  .hero-lead {
    font-size: 30px;
  }

  .hero-description {
    max-width: 520px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

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

  .hero-signals li {
    padding-top: 12px;
    font-size: 10px;
  }

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

  .trust-grid p {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid p:first-child,
  .trust-grid p:nth-child(3) {
    border-left: 0;
  }

  .section,
  .product-section {
    padding: 82px 0;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-heading h2,
  .product-copy h2,
  .control-copy h2,
  .final-cta h2 {
    font-size: 39px;
  }

  .product-kicker {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .pager-visual,
  .queue-visual {
    min-height: 500px;
  }

  .pickup-display {
    width: 96%;
    min-height: 340px;
    padding: 17px;
    border-width: 7px;
  }

  .pickup-columns {
    gap: 10px;
    padding-top: 16px;
  }

  .number-row {
    min-height: 50px;
    padding: 0 9px;
  }

  .number-row strong {
    font-size: 23px;
  }

  .number-row small {
    font-size: 7px;
  }

  .phone-mockup {
    width: 148px;
    height: 300px;
    padding: 27px 10px 12px;
    border-width: 6px;
    border-radius: 22px;
  }

  .phone-mockup > p {
    margin-top: 28px;
  }

  .phone-order {
    font-size: 60px;
  }

  .status-ready {
    margin-top: 18px;
    font-size: 8px;
  }

  .push-toast {
    right: 0;
    bottom: 3%;
    width: 235px;
  }

  .waiting-display {
    width: 100%;
    height: 350px;
    padding: 20px;
    border-width: 7px;
  }

  .current-queue {
    font-size: 92px;
  }

  .waiting-footer {
    gap: 12px;
    margin-top: 18px;
  }

  .ticket-mockup {
    left: 1%;
    width: 134px;
    min-height: 220px;
    padding: 16px 10px;
  }

  .ticket-mockup > strong {
    font-size: 52px;
  }

  .fake-qr {
    width: 66px;
    height: 66px;
  }

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

  .journey-step {
    min-height: 270px;
    border-left: 1px solid var(--line);
  }

  .journey-step:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .step-symbol {
    margin: 35px 0 30px;
  }

  .control-section {
    padding: 82px 0;
  }

  .capability-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .hardware-figure {
    min-height: 390px;
    transform: scale(0.92);
    transform-origin: center bottom;
  }

  .tablet-device {
    left: 2%;
    width: 145px;
    height: 195px;
  }

  .tv-device {
    right: 0;
    width: 150px;
    height: 92px;
  }

  .printer-device {
    right: 0;
    width: 140px;
  }

  .router-device {
    left: 38%;
  }

  .deployment-copy dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .fit-table {
    overflow-x: auto;
  }

  .fit-row {
    min-width: 720px;
  }

  .fit-row > * {
    padding: 16px;
  }

  .final-cta-inner,
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-inner p:nth-child(2) {
    text-align: left;
  }
}

@media (max-width: 410px) {
  .brand span {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-inner {
    min-height: 720px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-lead {
    font-size: 27px;
  }

  .push-toast {
    width: 210px;
  }

  .hardware-figure {
    margin-right: -18px;
    margin-left: -18px;
    transform: scale(0.83);
  }
}

/* Mobile is intentionally composed as a separate, denser reading experience. */
@media (max-width: 760px) {
  .header-inner {
    width: calc(100% - 24px);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    gap: 7px;
    font-size: 15px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand span {
    display: inline;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-cta {
    min-width: 78px;
    padding: 9px 12px;
    text-align: center;
  }

  .cta-long {
    display: none;
  }

  .cta-short {
    display: inline;
  }

  .hero {
    min-height: min(720px, 92svh);
  }

  .hero-inner {
    min-height: min(720px, 92svh);
    padding-top: 105px;
    padding-bottom: 24px;
  }

  .hero-copy {
    margin-bottom: 40px;
  }

  .hero .eyebrow {
    max-width: 330px;
    margin-bottom: 14px;
    font-size: 10px;
    line-height: 1.5;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-lead {
    max-width: 345px;
    margin-top: 17px;
    font-size: 27px;
    line-height: 1.08;
  }

  .hero-description {
    max-width: 345px;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 24px;
  }

  .hero-actions .button.primary {
    min-height: 46px;
    padding: 0 19px;
  }

  .hero-actions .text-button {
    min-height: 38px;
    font-size: 13px;
  }

  .hero-signals {
    row-gap: 9px;
    padding-top: 12px;
  }

  .hero-signals li {
    padding: 0 8px 0 0;
    line-height: 1.35;
  }

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

  .trust-grid p {
    min-height: 128px;
    padding: 20px 16px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .trust-grid p:nth-child(even) {
    border-right: 0;
  }

  .trust-grid strong {
    font-size: 14px;
    line-height: 1.25;
  }

  .trust-grid span {
    font-size: 12px;
    line-height: 1.42;
  }

  .section,
  .product-section {
    padding: 72px 0;
  }

  .intro-grid {
    gap: 24px;
  }

  .section-heading h2,
  .product-copy h2,
  .control-copy h2,
  .final-cta h2 {
    font-size: 36px;
    line-height: 1.05;
  }

  .intro-copy p,
  .product-lead,
  .control-copy p:last-child,
  .deployment-copy > p {
    font-size: 16px;
    line-height: 1.62;
  }

  .product-grid,
  .product-grid.reverse {
    gap: 40px;
  }

  .product-kicker {
    margin-bottom: 15px;
  }

  .product-lead {
    margin-top: 20px;
  }

  .process-list {
    margin-top: 27px;
  }

  .process-list li {
    grid-template-columns: 34px 1fr;
    gap: 10px;
    padding: 15px 0;
  }

  .process-list strong {
    font-size: 14px;
  }

  .process-list p {
    margin-top: 2px;
    font-size: 12px;
    line-height: 1.5;
  }

  .use-cases {
    margin-top: 22px;
    font-size: 11px;
    line-height: 1.65;
  }

  .pager-visual,
  .queue-visual {
    min-height: 430px;
  }

  .pickup-display {
    min-height: 292px;
    padding: 14px;
  }

  .ui-topline {
    padding-bottom: 12px;
    font-size: 10px;
  }

  .pickup-columns {
    padding-top: 13px;
  }

  .column-label {
    min-height: 26px;
    margin-bottom: 7px;
    font-size: 8px;
    line-height: 1.3;
  }

  .number-row {
    min-height: 43px;
    margin-bottom: 6px;
  }

  .phone-mockup {
    width: 136px;
    height: 274px;
  }

  .phone-mockup > p {
    margin-top: 24px;
    margin-bottom: 5px;
    font-size: 10px;
  }

  .phone-order {
    font-size: 55px;
  }

  .status-ready {
    margin: 15px 0 7px;
    padding: 8px 4px;
  }

  .push-toast {
    width: 215px;
    padding: 10px;
  }

  .waiting-display {
    height: 305px;
    padding: 17px;
  }

  .waiting-header {
    padding-bottom: 11px;
    font-size: 10px;
  }

  .waiting-display > p {
    margin-top: 18px;
    font-size: 8px;
  }

  .current-queue {
    font-size: 78px;
  }

  .desk-label {
    padding: 4px 9px;
    font-size: 8px;
  }

  .waiting-footer {
    margin-top: 14px;
    padding-top: 11px;
  }

  .waiting-footer span {
    font-size: 11px;
  }

  .queue-phone {
    width: 132px;
    height: 272px;
  }

  .ticket-mockup {
    width: 122px;
    min-height: 200px;
    padding: 14px 8px;
  }

  .ticket-mockup > strong {
    font-size: 46px;
  }

  .ticket-mockup > small {
    margin-top: 8px;
    font-size: 6px;
  }

  .fake-qr {
    width: 60px;
    height: 60px;
  }

  .section-heading.centered {
    margin-bottom: 38px;
    text-align: left;
  }

  .section-heading > p:last-child {
    margin-top: 16px;
    font-size: 16px;
  }

  .journey {
    display: block;
  }

  .journey-step,
  .journey-step:first-child,
  .journey-step:nth-child(3) {
    min-height: 0;
    display: grid;
    grid-template-columns: 28px 54px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 10px;
    padding: 21px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .step-index {
    grid-column: 1;
    grid-row: 1 / 3;
    padding-top: 3px;
  }

  .step-symbol {
    grid-column: 2;
    grid-row: 1 / 3;
    width: 48px;
    height: 48px;
    margin: 0;
    transform: scale(0.72);
    transform-origin: top left;
  }

  .scan-symbol::before {
    top: 6px;
    bottom: 6px;
    width: 54px;
  }

  .scan-symbol::after {
    right: 6px;
    left: 6px;
    height: 54px;
  }

  .phone-symbol {
    width: 34px;
    margin-left: 6px;
  }

  .display-symbol {
    width: 54px;
  }

  .journey-step h3 {
    grid-column: 3;
    grid-row: 1;
    font-size: 16px;
  }

  .journey-step p {
    grid-column: 3;
    grid-row: 2;
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.5;
  }

  .control-section {
    padding: 72px 0;
  }

  .control-grid {
    gap: 38px;
  }

  .capability-list div {
    gap: 4px;
    padding: 15px 0;
  }

  .capability-list strong,
  .capability-list span {
    font-size: 12px;
  }

  .deployment-section .section-heading {
    margin-bottom: 36px;
  }

  .hardware-layout {
    gap: 34px;
  }

  .hardware-figure {
    min-height: 315px;
    margin: -38px -28px -30px;
    transform: scale(0.76);
    transform-origin: center bottom;
  }

  .deployment-copy > p {
    margin-bottom: 25px;
  }

  .deployment-copy dl div {
    padding: 15px 0;
  }

  .deployment-copy dt {
    font-size: 12px;
  }

  .deployment-copy dd {
    font-size: 12px;
    line-height: 1.5;
  }

  .fit-section .section-heading {
    margin-bottom: 38px;
  }

  .fit-table {
    overflow: visible;
  }

  .fit-row.fit-head {
    display: none;
  }

  .fit-row {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 1px solid #bdcbc6;
  }

  .fit-row > * {
    border-right: 0;
  }

  .fit-row strong {
    grid-column: 1 / -1;
    padding: 17px 0 10px;
    font-size: 14px;
  }

  .fit-row span {
    position: relative;
    min-height: 74px;
    padding: 27px 10px 14px 0;
    font-size: 12px;
    line-height: 1.4;
  }

  .fit-row span + span {
    padding-right: 0;
    padding-left: 13px;
    border-left: 1px solid #cad5d1;
  }

  .fit-row span::before {
    position: absolute;
    top: 5px;
    left: 0;
    color: #70807c;
    font-size: 8px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    content: "PagerPhone";
  }

  .fit-row span + span::before {
    left: 13px;
    content: "QueuePhone";
  }

  .faq-grid {
    gap: 33px;
  }

  .faq-list summary {
    padding: 19px 42px 19px 0;
    font-size: 15px;
    line-height: 1.4;
  }

  .faq-list details p {
    margin-bottom: 19px;
    font-size: 13px;
  }

  .final-cta {
    padding: 72px 0;
  }

  .final-cta-inner {
    gap: 28px;
  }

  .cta-contact {
    gap: 12px;
  }

  .light-button {
    width: 100%;
  }

  .footer-inner {
    gap: 18px;
  }
}

@media (max-width: 350px) {
  .hero h1 {
    font-size: 46px;
  }

  .hero-lead {
    font-size: 25px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
