:root {
  color-scheme: light;
  --cream: #f7f5f1;
  --paper: #fff8f4;
  --white: #ffffff;
  --ink: #101010;
  --charcoal: #25292d;
  --charcoal-soft: #32363a;
  --orange: #f15a24;
  --orange-dark: #b83d12;
  --orange-soft: #ffd7c3;
  --line: #e8e2dc;
  --muted: #6e6e73;
  --font-display: Georgia, "Times New Roman", serif;
  --font-ui: "Avenir Next", "Nunito Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-height: 72px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 450;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 32px;
  color: var(--white);
  background: color-mix(in srgb, var(--ink) 32%, transparent);
  transition: background .28s var(--ease), color .28s var(--ease), box-shadow .28s var(--ease);
}

.site-header.is-solid {
  color: var(--ink);
  background: color-mix(in srgb, var(--white) 96%, transparent);
  box-shadow: 0 1px 12px color-mix(in srgb, var(--ink) 10%, transparent);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 620;
}

.brand-logo {
  width: auto;
  height: 31px;
  max-width: 118px;
  object-fit: contain;
}

.brand-mark {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border: 4px solid currentColor;
  border-radius: 6px;
}

.brand-mark span {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 2px;
}

.brand-name {
  font-size: 17px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 560;
}

.site-nav a,
.text-link {
  text-decoration: none;
}

.site-nav a {
  opacity: .86;
  transition: opacity .2s var(--ease), text-decoration-color .2s var(--ease);
}

.site-nav a.is-active,
.site-nav a:hover {
  opacity: 1;
}

.site-nav a.is-active {
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, currentColor 42%, transparent);
}

.site-nav a[aria-current="page"] {
  opacity: 1;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, currentColor 42%, transparent);
}

.site-nav a:hover,
.text-link:hover {
  text-decoration: underline;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 560;
}

.mobile-only {
  display: none;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: currentColor;
  padding: 10px;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 560;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}

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

.button:focus:not(:focus-visible),
.sales-pill button:focus:not(:focus-visible) {
  outline: none;
}

.button:focus-visible,
.sales-pill button:focus-visible,
.site-nav a:focus-visible,
.text-link:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--orange) 70%, transparent);
  outline-offset: 4px;
}

.button-primary {
  background: var(--orange);
  color: var(--white);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-light {
  background: var(--white);
  color: var(--orange-dark);
}

.button-outline {
  border-color: currentColor;
  color: currentColor;
}

.dark-text {
  color: var(--ink);
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

section {
  scroll-margin-top: calc(var(--header-height) + 8px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  transform: scale(1.02);
  animation: heroDrift 14s var(--ease) infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--ink) 20%, transparent), transparent 30%, color-mix(in srgb, var(--ink) 66%, transparent)),
    radial-gradient(circle at 50% 48%, transparent 0 34%, color-mix(in srgb, var(--ink) 30%, transparent) 76%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 40px));
  text-align: center;
  padding-top: 8vh;
}

.hero h1,
.final-cta h2 {
  max-width: 920px;
  margin: 0 auto 26px;
  font-family: var(--font-display);
  font-size: clamp(48px, 5.4vw, 78px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: 0;
}

.hero h1 {
  text-shadow: 0 12px 34px color-mix(in srgb, var(--ink) 38%, transparent);
}

.hero-copy {
  max-width: 680px;
  margin: 0 auto 28px;
  color: color-mix(in srgb, var(--white) 76%, transparent);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-actions.left {
  justify-content: flex-start;
}

.proof-strip {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 24px;
  display: flex;
  justify-content: space-around;
  gap: 26px;
  padding: 0 22px;
  color: color-mix(in srgb, var(--white) 76%, transparent);
  font-size: 12px;
  font-weight: 560;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  scrollbar-width: none;
}

.proof-strip::-webkit-scrollbar {
  display: none;
}

.business-section {
  min-height: 52vh;
  display: grid;
  align-items: center;
  padding: 104px 56px;
}

.page-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  padding: 160px 56px 92px;
  overflow: hidden;
}

.page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
}

.page-hero h1,
.legal-hero h1 {
  max-width: 900px;
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 400;
  line-height: .96;
}

.page-hero p:not(.section-label),
.legal-hero p {
  max-width: 680px;
  margin: 0;
  color: color-mix(in srgb, currentColor 76%, transparent);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.48;
}

.feature-band,
.split-section,
.industry-list-section,
.faq-section,
.legal-content {
  padding: 96px 56px;
}

.feature-band.muted-band {
  background: var(--cream);
}

.beta-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.beta-capability-grid.wide {
  grid-template-columns: repeat(3, 1fr);
}

.beta-capability-grid article,
.process-grid article,
.lead-form,
.faq-section article,
.legal-content article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.beta-capability-grid article {
  min-height: 260px;
  padding: 28px;
}

.beta-capability-grid h3,
.process-grid h3 {
  margin: 0 0 14px;
  font-size: 23px;
  line-height: 1.08;
}

.beta-capability-grid p,
.process-grid p,
.split-copy p,
.image-copy-section p,
.support-contact-section p,
.faq-section p,
.legal-content p {
  margin: 0;
  color: color-mix(in srgb, currentColor 68%, transparent);
  font-size: 16.5px;
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 520px);
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
}

.split-copy {
  max-width: 720px;
}

.split-copy h2,
.image-copy-section h2,
.support-contact-section h2,
.faq-section h2,
.legal-content h2 {
  margin-bottom: 22px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  color: var(--charcoal);
  font-size: 17px;
  font-weight: 560;
}

.check-list li {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  box-shadow: 0 22px 44px color-mix(in srgb, var(--ink) 8%, transparent);
}

.lead-form h2 {
  margin: 0 0 4px;
  font-family: var(--font-ui);
  font-size: 28px;
  font-weight: 720;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 720;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  padding: 14px;
}

.lead-form textarea {
  resize: vertical;
}

.form-note,
.form-success {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.form-success {
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--orange) 34%, var(--line));
  border-radius: 8px;
  background: color-mix(in srgb, var(--orange-soft) 35%, var(--white));
  color: var(--orange-dark);
  font-weight: 640;
}

.process-section {
  padding: 104px 56px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1320px, 100%);
  margin: 58px auto 0;
}

.process-grid article {
  min-height: 280px;
  padding: 30px;
  background: color-mix(in srgb, var(--white) 7%, transparent);
  border-color: color-mix(in srgb, var(--white) 18%, transparent);
}

.process-grid span {
  display: block;
  margin-bottom: 74px;
  color: color-mix(in srgb, var(--white) 44%, transparent);
  font-family: var(--font-display);
  font-size: 54px;
  line-height: .9;
}

.image-copy-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
  padding: 96px 56px;
}

.image-copy-section img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.image-copy-section .button {
  width: fit-content;
  margin-top: 30px;
}

.industry-list-section {
  display: grid;
  gap: 22px;
}

.industry-row {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.industry-row:last-child {
  border-bottom: 1px solid var(--line);
}

.industry-row img {
  width: 100%;
  aspect-ratio: 1.4;
  object-fit: cover;
  border-radius: 8px;
}

.industry-row p {
  max-width: 700px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.industry-row a,
.contact-methods a {
  font-weight: 720;
}

.page-pricing {
  padding-top: 96px;
}

.faq-section {
  display: grid;
  gap: 18px;
  background: var(--cream);
}

.faq-section article,
.legal-content article {
  width: min(980px, 100%);
  padding: 32px;
}

.support-contact-section {
  padding: 112px 56px;
}

.support-contact-section > div {
  width: min(900px, 100%);
}

.support-form-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 520px);
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
}

.support-form-section > div {
  width: auto;
}

.support-form {
  align-self: start;
}

.contact-methods {
  display: grid;
  gap: 16px;
  margin-top: 30px;
  font-size: 18px;
}

.legal-hero {
  padding: 170px 56px 74px;
  background: var(--cream);
}

.legal-hero > div,
.legal-content {
  width: min(980px, 100%);
}

.legal-content {
  display: grid;
  gap: 18px;
}

.section-copy,
.section-head {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.section-copy.narrow {
  max-width: 920px;
}

.section-label {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 560;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-dark .section-label,
.section-head.dark .section-label {
  color: color-mix(in srgb, var(--white) 58%, transparent);
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: 0;
}

.section-copy p,
.section-head p,
.pos-copy p,
.pricing-grid p,
.site-footer p {
  max-width: 620px;
  color: color-mix(in srgb, currentColor 70%, transparent);
  font-size: 16.5px;
  line-height: 1.55;
}

.hardware-section {
  padding: 74px 0 96px;
  overflow: hidden;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 0 56px 52px;
}

.section-head > .button {
  flex: none;
  align-self: center;
}

.carousel-controls {
  display: flex;
  align-items: end;
  gap: 18px;
  padding-bottom: 18px;
}

.carousel-controls button {
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 44px;
  line-height: .7;
  cursor: pointer;
}

.hardware-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 1fr);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 20px 16px;
  scrollbar-width: none;
}

.hardware-rail::-webkit-scrollbar {
  display: none;
}

.hardware-card {
  scroll-snap-align: start;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 11px;
  padding: 0 22px 26px;
  background: var(--cream);
  border: 1px solid color-mix(in srgb, var(--line) 76%, transparent);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 0 color-mix(in srgb, var(--white) 70%, transparent) inset;
  transition: transform .28s var(--ease), background .28s var(--ease), box-shadow .28s var(--ease);
}

.hardware-card:hover {
  transform: translateY(-4px);
  background: color-mix(in srgb, var(--cream) 76%, var(--white));
  box-shadow: 0 20px 42px color-mix(in srgb, var(--ink) 8%, transparent);
}

.hardware-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}

.hardware-card a {
  width: fit-content;
  font-size: 16px;
  font-weight: 560;
}

.hardware-card p {
  margin: 0;
  max-width: 320px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.pos-section {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
  min-height: 700px;
}

.pos-copy {
  padding: 82px 56px;
}

.accordion {
  margin-top: 54px;
  max-width: 560px;
}

.accordion-item {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 16.5px;
  font-weight: 560;
  cursor: pointer;
}

.accordion-item:last-of-type {
  border-bottom: 1px solid var(--line);
}

.accordion-item strong {
  font-size: 24px;
  font-weight: 560;
}

.accordion-item:focus:not(:focus-visible) {
  outline: none;
}

.accordion-item:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--orange) 72%, transparent);
  outline-offset: 3px;
}

.accordion-panel {
  padding: 0 0 28px;
}

.accordion-panel p {
  margin: 0 0 18px;
}

.accordion-panel a {
  font-weight: 560;
}

.pos-visual {
  min-height: 700px;
  display: grid;
  align-items: center;
  background: var(--cream);
  overflow: hidden;
}

.pos-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}

.industries-section {
  padding: 90px 20px 112px;
  overflow: hidden;
}

.industry-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, .72fr);
  gap: 20px;
  width: min(1480px, 100%);
  margin: 58px auto 0;
}

.industry-panel {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  isolation: isolate;
  background: var(--charcoal);
}

.industry-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .68;
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}

.industry-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, color-mix(in srgb, var(--ink) 82%, transparent));
  z-index: 0;
}

.industry-panel div {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.industry-panel h3 {
  margin: 0 0 16px;
  font-size: clamp(30px, 3.4vw, 52px);
  font-weight: 560;
  line-height: .98;
}

.industry-panel:not(.is-active) h3 {
  color: color-mix(in srgb, var(--white) 55%, transparent);
}

.industry-panel p {
  margin: 0 0 16px;
  max-width: 420px;
  color: color-mix(in srgb, var(--white) 80%, transparent);
  font-size: 16px;
}

.industry-panel a {
  font-weight: 560;
}

.industry-panel:hover img {
  opacity: .86;
  transform: scale(1.04);
}

.pricing-section {
  padding: 124px 56px 148px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1320px, 100%);
  margin: 74px auto 0;
}

.pricing-grid article {
  min-height: 360px;
  padding: 0 30px 0 34px;
  border-left: 1px solid color-mix(in srgb, var(--white) 68%, transparent);
}

.pricing-grid article:last-child {
  border-right: 1px solid color-mix(in srgb, var(--white) 68%, transparent);
}

.pricing-grid h3 {
  margin: 0 0 16px;
  font-size: 23px;
  font-weight: 560;
}

.pricing-grid p {
  min-height: 84px;
  margin: 0 0 46px;
  color: color-mix(in srgb, var(--white) 48%, transparent);
}

.pricing-grid strong {
  display: block;
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 400;
  line-height: .9;
}

.pricing-grid span {
  display: block;
  margin: 0 0 38px;
  color: color-mix(in srgb, var(--white) 48%, transparent);
}

.featured h3::after {
  content: "Best value";
  display: inline-flex;
  margin-left: 16px;
  padding: 8px 10px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--white) 14%, transparent);
  color: var(--white);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  vertical-align: middle;
}

.final-cta {
  position: relative;
  min-height: 700px;
  display: grid;
  place-items: center;
  padding: 108px 24px;
  overflow: hidden;
}

.final-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  opacity: .64;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--ink) 18%, transparent), color-mix(in srgb, var(--ink) 76%, transparent)),
    radial-gradient(circle at center, transparent 0 30%, color-mix(in srgb, var(--ink) 72%, transparent));
}

.final-cta div {
  position: relative;
  z-index: 1;
  text-align: center;
  width: min(780px, 100%);
}

.site-footer {
  padding: 74px 56px 34px;
  display: grid;
  gap: 56px;
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid color-mix(in srgb, var(--white) 14%, transparent);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(0, 1.6fr);
  gap: clamp(48px, 7vw, 110px);
  width: min(1320px, 100%);
  margin: 0 auto;
}

.footer-intro {
  display: grid;
  align-content: start;
  gap: 22px;
}

.footer-brand {
  width: fit-content;
}

.site-footer .brand-logo {
  height: 34px;
  max-width: 130px;
}

.footer-intro p {
  margin: 0;
  max-width: 360px;
  color: color-mix(in srgb, var(--white) 68%, transparent);
  font-size: 17px;
  line-height: 1.55;
}

.footer-intro .button {
  width: fit-content;
  margin-top: 8px;
}

.site-footer .button-light {
  color: var(--orange-dark);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 34px;
  align-content: start;
}

.footer-nav div {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer-nav h2 {
  margin: 0 0 6px;
  color: color-mix(in srgb, var(--white) 48%, transparent);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 620;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer a {
  color: color-mix(in srgb, var(--white) 82%, transparent);
  font-weight: 560;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1320px, 100%);
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid color-mix(in srgb, var(--white) 12%, transparent);
  color: color-mix(in srgb, var(--white) 46%, transparent);
  font-size: 13px;
  font-weight: 560;
}

.footer-bottom a {
  color: inherit;
}

.sales-pill {
  position: fixed;
  right: 24px;
  top: calc(var(--header-height) + 18px);
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 10px 0 16px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px color-mix(in srgb, var(--ink) 12%, transparent);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

.sales-pill.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
}

.sales-pill a {
  font-size: 13px;
  font-weight: 560;
}

.sales-pill button {
  width: 26px;
  height: 26px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 22px;
  cursor: pointer;
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .64s var(--ease), transform .64s var(--ease);
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.06) translate3d(-12px, 8px, 0);
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    z-index: 50;
  }

  .menu-button {
    position: relative;
    z-index: 55;
    display: grid;
    place-content: center;
    border-radius: 50%;
    cursor: pointer;
  }

  .menu-button span:not(.sr-only) {
    width: 30px;
    height: 3px;
    margin: 3px 0;
    border-radius: 999px;
    transition: opacity .2s var(--ease), transform .24s var(--ease);
  }

  .site-nav,
  .header-actions {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 30;
    display: flex;
    background: var(--white);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity .24s var(--ease), transform .24s var(--ease), visibility .24s var(--ease);
  }

  .site-nav {
    top: var(--header-height);
    bottom: 154px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 24px 18px;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    font-size: 19px;
    font-weight: 560;
    line-height: 1.15;
    transform: translateX(12px);
  }

  .site-nav a {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    opacity: 1;
    text-decoration: none;
  }

  .site-nav a.is-active,
  .site-nav a[aria-current="page"] {
    color: var(--orange-dark);
    text-decoration: none;
  }

  .site-nav a:hover,
  .site-nav a.is-active:hover {
    color: var(--orange-dark);
  }

  .header-actions {
    top: auto;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px 24px calc(18px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 24px color-mix(in srgb, var(--white) 88%, transparent);
    transform: translateY(12px);
  }

  .header-actions .text-link {
    display: none;
  }

  .header-actions .button {
    width: 100%;
    min-height: 48px;
    font-size: 15px;
  }

  .mobile-only {
    display: inline-flex;
  }

  body.nav-open .site-header {
    color: var(--ink);
    background: var(--white);
    box-shadow: none;
    backdrop-filter: none;
  }

  body.nav-open .brand-logo {
    filter: none;
  }

  body.nav-open .menu-button span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  body.nav-open .menu-button span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .menu-button span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  body.nav-open .site-nav,
  body.nav-open .header-actions {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
  }

  .pos-section {
    grid-template-columns: 1fr;
  }

  .pos-visual,
  .pos-copy {
    min-height: auto;
  }

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

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

  .split-section,
  .support-form-section,
  .image-copy-section {
    grid-template-columns: 1fr;
  }

  .industry-row {
    grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  }

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

  .pricing-grid article,
  .pricing-grid article:last-child {
    min-height: auto;
    padding-bottom: 42px;
    border-right: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--white) 26%, transparent);
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 0 24px;
  }

  .brand-logo {
    height: 29px;
    max-width: 110px;
  }

  .hero {
    min-height: min(760px, 86svh);
    place-items: center;
  }

  .hero-image {
    object-position: 53% center;
  }

  .hero h1,
  .final-cta h2 {
    font-size: clamp(39px, 12vw, 52px);
    line-height: 1;
  }

  .hero-content {
    padding-top: 0;
    transform: translateY(18px);
  }

  .proof-strip {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    bottom: 14px;
  }

  .business-section,
  .pos-copy,
  .pricing-section,
  .site-footer,
  .feature-band,
  .split-section,
  .support-form-section,
  .industry-list-section,
  .faq-section,
  .legal-content,
  .process-section,
  .image-copy-section,
  .support-contact-section,
  .legal-hero {
    padding-left: 24px;
    padding-right: 24px;
  }

  .page-hero {
    min-height: 560px;
    padding: 128px 24px 64px;
  }

  .page-hero h1,
  .legal-hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .beta-capability-grid,
  .beta-capability-grid.wide,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .beta-capability-grid article {
    min-height: auto;
  }

  .process-grid article {
    min-height: 230px;
  }

  .process-grid span {
    margin-bottom: 42px;
  }

  .lead-form {
    padding: 22px;
  }

  .industry-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .image-copy-section img {
    min-height: 360px;
  }

  .section-head {
    display: block;
    padding-left: 24px;
    padding-right: 24px;
  }

  .carousel-controls {
    margin-top: 28px;
    padding-bottom: 0;
  }

  .hardware-rail {
    grid-auto-columns: 82vw;
  }

  .hardware-card {
    min-height: 460px;
  }

  .hardware-card img {
    height: 290px;
  }

  .pos-copy {
    padding-top: 74px;
    padding-bottom: 64px;
  }

  .pos-visual img {
    padding: 0;
  }

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

  .industry-panel {
    min-height: 430px;
  }

  .final-cta {
    min-height: 560px;
    place-items: end center;
    padding: 0 22px 70px;
  }

  .final-cta img {
    height: 100%;
    width: 100%;
    object-position: 58% center;
    opacity: .58;
  }

  .final-cta::after {
    background:
      linear-gradient(180deg, color-mix(in srgb, var(--ink) 30%, transparent) 0%, color-mix(in srgb, var(--ink) 42%, transparent) 34%, color-mix(in srgb, var(--ink) 88%, transparent) 100%),
      radial-gradient(circle at 50% 42%, transparent 0 18%, color-mix(in srgb, var(--ink) 54%, transparent) 76%);
  }

  .final-cta h2 {
    max-width: 330px;
    margin-bottom: 22px;
    font-size: clamp(38px, 11vw, 46px);
  }

  .site-footer {
    padding-top: 54px;
  }

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

  .footer-intro {
    gap: 18px;
  }

  .footer-intro p {
    max-width: none;
    font-size: 16px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

  .footer-nav div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
    gap: 12px;
  }

  .sales-pill {
    top: auto;
    left: 50%;
    right: auto;
    bottom: calc(10px + env(safe-area-inset-bottom));
    width: min(calc(100vw - 24px), 540px);
    min-height: 50px;
    justify-content: center;
    padding: 0 48px;
    transform: translateX(-50%);
  }

  .sales-pill a {
    width: 100%;
    text-align: center;
    white-space: nowrap;
  }

  .sales-pill button {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
  }

  .sales-pill.is-hidden {
    transform: translate(-50%, 16px);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
