:root {
  --hp-teal: #00a8b5;
  --hp-teal-dark: #007a84;
  --hp-teal-glow: rgba(0,168,181,.22);
  --hp-brand: #ff5c00;
  --hp-brand-dark: #e05200;
  --hp-brand-glow: rgba(255,92,0,.28);
  --hp-ink: #0f1f22;
  --hp-ink-soft: #3d5256;
  --hp-muted: #6b8286;
  --hp-line: rgba(15,31,34,.08);
  --hp-bg: #f7fbfb;
  --hp-white: #fff;
  --hp-max: 1160px;
  --hp-radius: 18px;
  --hp-radius-lg: 26px;
  --hp-shadow: 0 24px 64px rgba(15,31,34,.10);
  --hp-shadow-sm: 0 8px 24px rgba(15,31,34,.06);
  --hp-font: "Plus Jakarta Sans", system-ui, sans-serif;
  --hp-nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--hp-nav-h) + 16px); }
body.qrdv-home {
  font-family: var(--hp-font);
  background-color: transparent;
  color: var(--hp-ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 72px;
}
@media (min-width: 721px) { body.qrdv-home { padding-bottom: 0; } }
body.qrdv-home a { color: inherit; text-decoration: none; }
body.qrdv-home img { max-width: 100%; display: block; }
.hp-wrap { width: min(var(--hp-max), calc(100% - 32px)); margin: 0 auto; }

/* Nav */
.hp-nav {
  position: sticky; top: 0; z-index: 50; height: var(--hp-nav-h);
  background: rgba(255,255,255,.78); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hp-line);
}
.hp-nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; height: 100%; }
.hp-nav__logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: .95rem; letter-spacing: -.02em; }
.hp-nav__logo-img { display: block; height: 40px; width: auto; max-width: min(180px, 46vw); }
.hp-nav__mark {
  width: 36px; height: 36px; border-radius: 10px; background: var(--hp-brand); color: #fff;
  display: grid; place-items: center;
}
.hp-nav__mark svg { width: 18px; height: 18px; }
.hp-nav__links { display: flex; gap: 24px; font-size: .88rem; font-weight: 600; color: var(--hp-ink-soft); }
.hp-nav__links a:hover { color: var(--hp-teal-dark); }
.hp-nav__actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.hp-nav__signin { font-size: .88rem; font-weight: 600; color: var(--hp-ink-soft); }
.hp-nav__signin:hover { color: var(--hp-ink); }
.hp-powered__brand {
  font-weight: 800;
  color: var(--hp-teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hp-powered__brand:hover { color: var(--hp-teal); }

/* Supported printers table */
.hp-printer-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--hp-line);
  border-radius: var(--hp-radius);
  background: var(--hp-white);
  box-shadow: var(--hp-shadow-sm);
}
.hp-printer-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  font-size: .86rem;
}
.hp-printer-table th,
.hp-printer-table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--hp-line);
  line-height: 1.45;
}
.hp-printer-table thead th {
  background: var(--hp-bg);
  font-weight: 800;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--hp-ink-soft);
}
.hp-printer-table tbody tr:last-child td { border-bottom: 0; }
.hp-printer-table__cat {
  display: block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--hp-teal-dark);
}
.hp-printer-table__notes { color: var(--hp-muted); }
.hp-printer-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  white-space: nowrap;
}
.hp-printer-status--verified {
  background: rgba(0,168,181,.14);
  color: var(--hp-teal-dark);
}
.hp-printer-status--supported {
  background: rgba(255,92,0,.1);
  color: var(--hp-brand-dark);
}
.hp-printer-table__foot {
  margin: 14px 4px 0;
  font-size: .84rem;
  color: var(--hp-muted);
  line-height: 1.55;
}
.hp-printer-table__foot a {
  color: var(--hp-teal-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hp-section-cta-lede {
  margin-bottom: 24px;
  color: var(--hp-muted);
}

@media (max-width: 820px) {
  .hp-nav__links { display: none; }
}

/* Buttons */
.hp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: .92rem;
  border: none; cursor: pointer; transition: transform .15s, box-shadow .15s; white-space: nowrap;
  font-family: inherit;
}
.hp-btn--primary { background: linear-gradient(135deg, var(--hp-brand), #ff7a3d); color: #fff; box-shadow: 0 10px 28px var(--hp-brand-glow); }
.hp-btn--primary:hover { transform: translateY(-2px); color: #fff; }
.hp-btn--secondary { background: var(--hp-white); color: var(--hp-ink); border: 2px solid var(--hp-line); }
.hp-btn--secondary:hover { border-color: var(--hp-teal); color: var(--hp-teal-dark); }
.hp-btn--lg { padding: 17px 32px; font-size: 1rem; }
.hp-btn--sm { padding: 10px 18px; font-size: .82rem; }
.hp-btn--block { width: 100%; }
@media (max-width: 480px) { .hp-nav .hp-btn--primary { padding: 10px 16px; font-size: .82rem; } }

/* Hero */
.hp-hero {
  padding: 40px 0 32px;
}
.hp-hero__intro {
  position: relative;
  min-height: 280px;
  padding: 32px 28px;
  border-radius: var(--hp-radius-lg);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
}
.hp-hero__intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hp-hero-intro-bg);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hp-hero__intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.82) 42%, rgba(255,255,255,.55) 100%);
  z-index: 1;
}
.hp-hero__intro-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
@media (max-width: 960px) {
  .hp-hero__intro {
    min-height: 240px;
    padding: 24px 20px;
  }
}
.hp-hero__grid {
  display: grid; grid-template-columns: 1.05fr .92fr; gap: 40px; align-items: center;
}
@media (max-width: 960px) {
  .hp-hero__grid { grid-template-columns: 1fr; gap: 28px; }
}
.hp-powered {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 16px; font-size: .78rem; font-weight: 600; color: var(--hp-muted);
}
.hp-powered__logo { height: 20px; width: auto; display: block; border-radius: 4px; }
.hp-hero__headline {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px;
}
.hp-hero__qr-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--hp-brand), #ff7a3d);
  color: #fff;
  box-shadow: 0 10px 24px var(--hp-brand-glow);
}
.hp-hero__qr-icon svg { width: 28px; height: 28px; }
.hp-hero__headline h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.5rem);
  line-height: 1.06; letter-spacing: -.035em; font-weight: 800; margin: 0;
}
.hp-accent { color: var(--hp-brand); }
.hp-hero__sub { font-size: 1.05rem; color: var(--hp-ink-soft); max-width: 46ch; margin-bottom: 20px; line-height: 1.65; }
.hp-hero__sub--flow {
  font-size: clamp(1.1rem, 2.8vw, 1.35rem);
  font-weight: 700;
  color: var(--hp-ink);
  letter-spacing: -0.02em;
  max-width: none;
}
.hp-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.hp-hero__note { font-size: .8rem; color: var(--hp-muted); font-weight: 600; }
.hp-hero__note span { color: var(--hp-teal-dark); }
.hp-hero__signup { width: 100%; }
.hp-signup-card {
  background: var(--hp-white);
  border: 1px solid var(--hp-line);
  border-radius: var(--hp-radius-lg);
  box-shadow: var(--hp-shadow);
  padding: 28px 24px 24px;
}
.hp-signup-card--compact { padding: 24px 22px 20px; }
.hp-signup-card__title {
  font-size: 1.35rem; font-weight: 800; letter-spacing: -.03em;
  margin-bottom: 6px; line-height: 1.15;
}
.hp-signup-card__intro {
  font-size: .92rem; color: var(--hp-ink-soft); line-height: 1.55; margin-bottom: 10px;
}
.hp-signup-card__pricing {
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 16px; padding: 8px 12px;
  border-radius: 999px; font-size: .82rem; font-weight: 800;
  color: var(--hp-brand); background: rgba(255,92,0,.1);
  border: 1px solid rgba(255,92,0,.18);
}
@media (max-width: 960px) {
  .hp-hero__signup { max-width: 520px; margin: 0 auto; }
}

/* Trust marquee */
.hp-trust { background: var(--hp-ink); padding: 20px 0; overflow: hidden; }
.hp-trust__head {
  text-align: center; font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 14px;
}
.hp-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.hp-marquee__track { display: flex; gap: 16px; width: max-content; animation: hp-scroll 32s linear infinite; }
.hp-marquee__track img { width: 100px; height: 34px; object-fit: contain; border-radius: 7px; flex-shrink: 0; }
@keyframes hp-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Sections */
.hp-section { padding: 72px 0; }
.hp-section--white { background: var(--hp-white); }
.hp-section--alt { background: var(--hp-bg); }
.hp-section-head { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.hp-section-head h2 { font-size: clamp(1.65rem, 3.2vw, 2.35rem); letter-spacing: -.03em; font-weight: 800; margin-bottom: 10px; }
.hp-section-head p { color: var(--hp-muted); font-size: 1rem; }
.hp-tag { display: inline-block; margin-bottom: 10px; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--hp-brand); }

/* Compare */
.hp-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 680px) { .hp-compare { grid-template-columns: 1fr; } }
.hp-compare__card { padding: 28px; border-radius: var(--hp-radius-lg); border: 1px solid var(--hp-line); }
.hp-compare__card--bad { background: #fff8f6; }
.hp-compare__card--good { background: linear-gradient(160deg, #e8fafb, #fff); box-shadow: var(--hp-shadow); border-color: rgba(0,168,181,.18); }
.hp-compare__card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 14px; }
.hp-compare__card ul { list-style: none; display: grid; gap: 10px; }
.hp-compare__card li { display: flex; gap: 10px; font-size: .88rem; color: var(--hp-ink-soft); }
.hp-compare__card li::before { font-weight: 800; flex-shrink: 0; }
.hp-compare__card--bad li::before { content: "✕"; color: #ef4444; }
.hp-compare__card--good li::before { content: "✓"; color: var(--hp-teal); }

/* Timeline */
.hp-timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.hp-timeline--3 { grid-template-columns: repeat(3, 1fr); }
.hp-timeline--3::before { left: 12%; right: 12%; }
@media (max-width: 900px) { .hp-timeline, .hp-timeline--3 { grid-template-columns: 1fr; gap: 12px; } }
.hp-timeline::before {
  content: ""; position: absolute; top: 22px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--hp-brand), var(--hp-teal)); opacity: .35;
}
@media (max-width: 900px) { .hp-timeline::before { display: none; } }
.hp-timeline__step { padding: 0 10px; text-align: center; position: relative; }
@media (max-width: 900px) {
  .hp-timeline__step { display: grid; grid-template-columns: 48px 1fr; gap: 14px; text-align: left; padding: 16px; background: var(--hp-white); border-radius: var(--hp-radius); border: 1px solid var(--hp-line); }
}
.hp-timeline__n {
  width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 14px;
  background: var(--hp-brand); color: #fff; font-weight: 800; font-size: .95rem;
  display: grid; place-items: center; position: relative; z-index: 1; box-shadow: 0 0 0 4px var(--hp-bg);
}
@media (max-width: 900px) { .hp-timeline__n { margin: 0; } }
.hp-timeline__step h3 { font-size: .88rem; font-weight: 700; margin-bottom: 6px; line-height: 1.25; }
.hp-timeline__step p { font-size: .78rem; color: var(--hp-muted); line-height: 1.45; }

/* Use case cards */
.hp-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .hp-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .hp-cards { grid-template-columns: 1fr; } }
.hp-card {
  padding: 22px; background: var(--hp-white); border: 1px solid var(--hp-line);
  border-radius: var(--hp-radius); box-shadow: var(--hp-shadow-sm);
}
.hp-card h3 { font-size: .95rem; font-weight: 800; margin-bottom: 8px; }
.hp-card p { font-size: .86rem; color: var(--hp-muted); line-height: 1.5; }

/* QR product use-case filters + table */
.hp-use-filters {
  display: grid;
  gap: 14px;
  margin-bottom: 12px;
}
.hp-use-filter__label {
  margin: 0 0 8px;
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--hp-muted);
}
.hp-use-filter__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hp-use-filter__btn {
  appearance: none;
  border: 1px solid var(--hp-line);
  background: var(--hp-white);
  color: var(--hp-ink-soft);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: inherit;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s, box-shadow .15s;
}
.hp-use-filter__btn:hover {
  border-color: rgba(0,122,132,.35);
  color: var(--hp-teal-dark);
}
.hp-use-filter__btn--active {
  border-color: var(--hp-teal-dark);
  background: rgba(0,122,132,.1);
  color: var(--hp-teal-dark);
  box-shadow: inset 0 0 0 1px rgba(0,122,132,.08);
}
.hp-use-table__meta {
  margin: 0 0 10px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--hp-muted);
}
.hp-use-table__empty {
  margin: 0;
  padding: 18px 16px;
  text-align: center;
  font-size: .88rem;
  color: var(--hp-muted);
  border-top: 1px solid var(--hp-line);
}
.hp-use-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--hp-line);
  border-radius: var(--hp-radius);
  background: var(--hp-white);
  box-shadow: var(--hp-shadow-sm);
  margin-bottom: 8px;
}
.hp-use-table {
  width: 100%;
  min-width: 1180px;
  border-collapse: collapse;
  font-size: .86rem;
}
.hp-use-table th,
.hp-use-table td {
  padding: 13px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--hp-line);
  line-height: 1.45;
}
.hp-use-table thead th {
  background: var(--hp-bg);
  font-weight: 800;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--hp-ink-soft);
}
.hp-use-table tbody th[scope="row"] {
  width: 18%;
  font-weight: 700;
  color: var(--hp-ink);
  background: rgba(247,251,251,.65);
}
.hp-use-table tbody td:nth-child(2) { width: 14%; }
.hp-use-table tbody td:nth-child(3) { width: 14%; }
.hp-use-table tbody td:nth-child(4) { width: 9%; }
.hp-use-table tbody td:nth-child(5) { width: 16%; color: var(--hp-ink-soft); font-weight: 600; }
.hp-use-table tbody td:nth-child(6) { width: 29%; color: var(--hp-muted); }
.hp-use-setup-links {
  display: inline;
  line-height: 1.45;
}
.hp-use-setup-link {
  font-weight: 700;
  color: var(--hp-teal-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hp-use-setup-link:hover { color: var(--hp-teal); }
.hp-use-setup-links__sep {
  color: var(--hp-muted);
  font-weight: 600;
  margin: 0 2px;
}
.hp-hw-setup-table tbody tr.hp-hw-setup-row--highlight {
  outline: 2px solid var(--hp-teal);
  outline-offset: -2px;
  background: rgba(0,168,181,.08);
}
.hp-use-table tbody tr:last-child th,
.hp-use-table tbody tr:last-child td { border-bottom: 0; }
.hp-use-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}
.hp-use-badge--generate {
  background: rgba(0,122,132,.12);
  color: var(--hp-teal-dark);
}
.hp-use-badge--live {
  background: rgba(255,92,0,.12);
  color: var(--hp-brand-dark);
}
.hp-use-badge--both {
  background: linear-gradient(135deg, rgba(0,122,132,.12), rgba(255,92,0,.12));
  color: var(--hp-ink);
}
.hp-use-badge--form {
  background: rgba(99,102,241,.12);
  color: #4338ca;
}
.hp-use-badge--checkin {
  background: rgba(14,116,144,.12);
  color: #0e7490;
}
.hp-use-badge--invcheck {
  background: rgba(180,83,9,.12);
  color: #b45309;
}
.hp-use-product-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}
.hp-use-product-links__sep { display: none; }
.hp-use-product-link {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  font-family: inherit;
  font-size: .8rem;
  font-weight: 700;
  color: var(--hp-teal-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  text-align: left;
  line-height: 1.3;
}
a.hp-use-product-link { display: inline; }
.hp-use-product-link--live { color: var(--hp-brand-dark); }
.hp-use-product-link--form { color: #4338ca; }
.hp-use-product-link--checkin { color: #0e7490; }
.hp-use-product-link--invcheck { color: #b45309; }
.hp-use-product-link--assetqr { color: #6d28d9; }
.hp-use-product-link--text {
  text-decoration: none;
  color: var(--hp-ink);
  cursor: default;
}
.hp-use-status {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}
.hp-use-status--available {
  background: rgba(16,185,129,.14);
  color: #047857;
}
.hp-use-status--partial {
  background: rgba(245,158,11,.16);
  color: #b45309;
}
.hp-use-status--planned {
  background: rgba(107,130,134,.14);
  color: var(--hp-muted);
}
.hp-use-table tbody tr[hidden] {
  display: none;
}
.hp-use-table__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 24px 0 48px;
}
.hp-section-head--sub {
  margin-bottom: 24px;
}
.hp-section-head--sub h3 {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  letter-spacing: -.02em;
  font-weight: 800;
}

/* Hardware */
.hp-hw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 960px) { .hp-hw-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .hp-hw-grid { grid-template-columns: 1fr; } }
.hp-hw-card {
  padding: 22px 20px;
  border-radius: var(--hp-radius-lg);
  border: 1px solid var(--hp-line);
  background: var(--hp-bg);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hp-hw-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.hp-hw-card__head h3 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.25;
}
.hp-hw-card__role {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--hp-teal-dark);
}
.hp-hw-card__desc {
  font-size: .88rem;
  color: var(--hp-ink-soft);
  line-height: 1.55;
}
.hp-hw-card__models {
  font-size: .82rem;
  color: var(--hp-ink-soft);
  line-height: 1.45;
}
.hp-hw-card__models span {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--hp-muted);
  margin-bottom: 2px;
}
.hp-hw-card__meta {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--hp-line);
}
.hp-hw-card__meta div { display: grid; gap: 2px; }
.hp-hw-card__meta dt {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--hp-muted);
}
.hp-hw-card__meta dd {
  font-size: .84rem;
  font-weight: 600;
  color: var(--hp-ink);
  line-height: 1.4;
}
.hp-hw-card__note {
  font-size: .78rem;
  font-weight: 600;
  color: var(--hp-brand-dark);
  background: rgba(255,92,0,.08);
  border-radius: 10px;
  padding: 8px 10px;
  line-height: 1.45;
}
.hp-hw-status {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  flex-shrink: 0;
}
.hp-hw-status--available {
  background: rgba(16,185,129,.14);
  color: #047857;
}
.hp-hw-status--partial {
  background: rgba(245,158,11,.16);
  color: #b45309;
}
.hp-hw-status--planned {
  background: rgba(107,130,134,.14);
  color: var(--hp-muted);
}
.hp-hw-setup-devices {
  display: inline;
  line-height: 1.5;
}
.hp-hw-setup-device {
  font-weight: 700;
  color: var(--hp-teal-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hp-hw-setup-device:hover { color: var(--hp-teal); }
.hp-hw-setup-device__sep {
  color: var(--hp-muted);
  font-weight: 600;
  margin: 0 2px;
}
.hp-hw-setup-table tbody tr[hidden] {
  display: none;
}
.hp-hw-setup-table {
  min-width: 1280px;
}
.hp-hw-setup-table tbody th[scope="row"] {
  width: 14%;
}
.hp-hw-setup-table tbody td:nth-child(2) { width: 12%; }
.hp-hw-setup-table tbody td:nth-child(3) { width: 32%; padding: 10px 12px; }
.hp-hw-setup-table tbody td:nth-child(4) { width: 9%; }
.hp-hw-setup-table tbody td:nth-child(5) { width: 14%; color: var(--hp-ink-soft); font-weight: 600; }
.hp-hw-setup-table tbody td:nth-child(6) { width: 19%; color: var(--hp-muted); }
.hp-hw-setup-diagram-cell {
  vertical-align: top;
}
.hp-hw-diagram {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--hp-line);
  background: #0f1f22;
  color: #c8e6ea;
  font-family: ui-monospace, "Cascadia Code", "SF Mono", Menlo, Consolas, monospace;
  font-size: .68rem;
  line-height: 1.35;
  white-space: pre;
  overflow-x: auto;
  max-width: 100%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
#hardware-setups {
  scroll-margin-top: calc(var(--hp-nav-h) + 16px);
}
.hp-hw-kits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 720px) { .hp-hw-kits { grid-template-columns: 1fr; } }
.hp-hw-kit {
  padding: 24px 22px;
  border-radius: var(--hp-radius-lg);
  border: 1px solid rgba(0,168,181,.18);
  background: linear-gradient(160deg, #e8fafb, #fff);
  box-shadow: var(--hp-shadow-sm);
}
.hp-hw-kit h3 {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.hp-hw-kit__summary {
  font-size: .9rem;
  color: var(--hp-ink-soft);
  line-height: 1.55;
  margin-bottom: 14px;
}
.hp-hw-kit__devices {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}
.hp-hw-kit__devices li {
  display: flex;
  gap: 10px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--hp-ink);
}
.hp-hw-kit__devices li::before {
  content: "✓";
  color: var(--hp-teal);
  font-weight: 800;
  flex-shrink: 0;
}
.hp-hw-kit__flow {
  font-size: .84rem;
  color: var(--hp-muted);
  line-height: 1.55;
  padding-top: 12px;
  border-top: 1px solid var(--hp-line);
}
.hp-hw-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.hp-use-badge--hardware {
  background: rgba(15,31,34,.08);
  color: var(--hp-ink-soft);
}
.hp-use-badge--assetqr {
  background: rgba(109,40,217,.12);
  color: #6d28d9;
}
.hp-use-product-link--hardware { color: var(--hp-ink-soft); }

/* Demo */
.hp-demo-cta {
  max-width: 640px; margin: 0 auto; text-align: center;
}
.hp-demo-cta h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  letter-spacing: -.03em; margin: 8px 0 10px;
}
.hp-demo-cta p { color: var(--hp-ink-soft); margin-bottom: 18px; }

/* Footer */
.hp-footer { padding: 28px 0 36px; border-top: 1px solid var(--hp-line); color: var(--hp-muted); font-size: .82rem; }
.hp-footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; align-items: center; }
.hp-footer__links { display: flex; flex-wrap: wrap; gap: 16px; }
.hp-footer__links a { color: var(--hp-teal-dark); font-weight: 600; }

/* Sticky mobile bar */
.hp-sticky {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 16px; background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px); border-top: 1px solid var(--hp-line);
  box-shadow: 0 -8px 32px rgba(0,0,0,.08);
}
@media (min-width: 721px) { .hp-sticky { display: none; } }
.hp-sticky__copy strong { display: block; font-size: 1rem; }
.hp-sticky__copy span { font-size: .72rem; color: var(--hp-muted); }

@media (prefers-reduced-motion: reduce) {
  .hp-marquee__track { animation: none; }
  .hp-btn:hover { transform: none; }
}

/* Minimal homepage layout */
.hp-minimal {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0 64px;
  text-align: center;
}
.hp-minimal__inner {
  max-width: 36rem;
}
.hp-minimal__title {
  margin: 0 0 12px;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--hp-ink, #111827);
}
.hp-minimal__sub {
  margin: 0;
  font-size: 1.05rem;
  color: var(--hp-ink-soft, #4b5563);
}
.hp-minimal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}
.hp-nav__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.hp-nav__inner {
  justify-content: space-between;
}
