:root {
  --ink: #101923;
  --ink-2: #172631;
  --ink-3: #243741;
  --paper: #ffffff;
  --paper-soft: #f4f6f4;
  --paper-warm: #f7f4ef;
  --muted: #65747c;
  --line: #dce3e3;
  --pink: #ff2855;
  --pink-dark: #d90f3b;
  --pink-pale: #ffd0d9;
  --mint: #a8f0d3;
  --cyan: #9de7f3;
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow-sm: 0 10px 30px rgba(16, 25, 35, .08);
  --shadow: 0 24px 70px rgba(16, 25, 35, .14);
  --container: 1180px;
  --font: "Aptos", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

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

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

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

::selection {
  background: var(--pink);
  color: #fff;
}

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

h1,
h2,
h3 {
  letter-spacing: -.04em;
  line-height: 1.04;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 7vw, 6.5rem);
  font-weight: 750;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  font-weight: 720;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 700;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(84px, 10vw, 150px);
}

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

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .7);
  font-size: .76rem;
  font-weight: 760;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--pink);
}

.eyebrow-dark {
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .94rem;
  font-weight: 720;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

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

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-primary {
  background: var(--pink);
  box-shadow: 0 12px 28px rgba(255, 40, 85, .25);
  color: #fff;
}

.button-primary:hover {
  background: #ff3f68;
  box-shadow: 0 16px 34px rgba(255, 40, 85, .32);
}

.button-ghost {
  border-color: rgba(255, 255, 255, .24);
  color: #fff;
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .06);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-light {
  background: #fff;
  color: var(--ink);
}

.button-small {
  min-height: 44px;
  padding: 11px 19px;
  font-size: .86rem;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(220, 227, 227, .78);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 214px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav > a:not(.button) {
  position: relative;
  color: var(--ink-3);
  font-size: .9rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--pink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 999px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

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

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
  opacity: 0;
}

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

.hero {
  position: relative;
  min-height: min(850px, calc(100svh - 82px));
  overflow: hidden;
  padding-block: clamp(76px, 8vw, 120px) clamp(90px, 10vw, 145px);
}

.hero::before {
  position: absolute;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  content: "";
  right: -280px;
  top: -270px;
  box-shadow: 0 0 0 110px rgba(255, 255, 255, .015), 0 0 0 220px rgba(255, 255, 255, .012);
}

.hero-grid-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 40, 85, .12);
  filter: blur(100px);
  right: 8%;
  bottom: -270px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
  grid-template-columns: minmax(0, .95fr) minmax(460px, 1.05fr);
}

.hero h1 em {
  color: var(--pink);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 52px;
}

.hero-proof {
  display: grid;
  max-width: 600px;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
}

.hero-proof li {
  padding-inline: 20px;
  border-left: 1px solid rgba(255, 255, 255, .15);
}

.hero-proof li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: -.02em;
}

.hero-proof span {
  color: rgba(255, 255, 255, .48);
  font-size: .72rem;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-width: 0;
  perspective: 1000px;
}

.app-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  background: #f7f9f8;
  box-shadow: 0 45px 90px rgba(0, 0, 0, .35);
  color: var(--ink);
  transform: rotateY(-4deg) rotateX(1deg);
  transform-origin: center;
}

.app-topbar {
  display: grid;
  height: 50px;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid #dce3e3;
  background: #fff;
  color: #53636c;
  font-size: .69rem;
  font-weight: 700;
  grid-template-columns: 1fr auto 1fr;
}

.app-mark {
  display: flex;
  gap: 5px;
}

.app-mark i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d7dede;
}

.app-mark i:first-child {
  background: var(--pink);
}

.status-pill {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #ebf7f1;
  color: #49705e;
}

.status-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #40b67e;
}

.app-body {
  display: grid;
  min-height: 510px;
  grid-template-columns: 54px 1fr;
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 28px;
  background: var(--ink-2);
}

.app-sidebar span {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, .32);
  border-radius: 6px;
}

.app-sidebar span.active {
  border-color: var(--pink);
  background: rgba(255, 40, 85, .2);
}

.app-content {
  min-width: 0;
  padding: 26px;
}

.app-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.app-heading small,
.app-heading strong {
  display: block;
}

.app-heading small {
  margin-bottom: 3px;
  color: #7b898f;
  font-size: .62rem;
}

.app-heading strong {
  font-size: 1.05rem;
  line-height: 1.3;
}

.badge-soft {
  padding: 6px 10px;
  border-radius: 7px;
  background: #e8edec;
  color: #51616a;
  font-size: .62rem;
  font-weight: 760;
}

.process-line {
  display: grid;
  align-items: center;
  margin: 25px 0 28px;
  grid-template-columns: 24px 1fr 24px 1fr 24px 1fr 24px;
}

.process-line span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid #cbd5d5;
  border-radius: 50%;
  background: #fff;
  color: #809095;
  font-size: .58rem;
  font-weight: 800;
}

.process-line span.done {
  border-color: var(--ink-3);
  background: var(--ink-3);
  color: #fff;
}

.process-line span.current {
  border-color: var(--pink);
  background: var(--pink);
  color: #fff;
  box-shadow: 0 0 0 5px rgba(255, 40, 85, .12);
}

.process-line i {
  height: 1px;
  background: #d0d8d8;
}

.app-columns {
  display: grid;
  align-items: stretch;
  gap: 17px;
  grid-template-columns: .84fr 1.16fr;
}

.part-card,
.field-stack label,
.automation-card {
  border: 1px solid #dce4e4;
  border-radius: 12px;
  background: #fff;
}

.part-card {
  padding: 10px;
}

.part-photo {
  display: grid;
  height: 146px;
  margin-bottom: 12px;
  place-items: center;
  overflow: hidden;
  border-radius: 9px;
  background: linear-gradient(145deg, #e6ebea, #f5f7f6);
}

.part-photo svg {
  width: 85%;
  filter: drop-shadow(0 12px 10px rgba(16, 25, 35, .2));
}

.part-card small,
.part-card strong {
  display: block;
}

.part-card small {
  color: #76878e;
  font-size: .58rem;
}

.part-card strong {
  font-size: .72rem;
}

.field-stack {
  display: grid;
  gap: 10px;
}

.field-stack label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 13px;
  color: #74838a;
  font-size: .55rem;
  line-height: 1.4;
}

.field-stack label span {
  margin-top: 3px;
  color: var(--ink-2);
  font-size: .7rem;
  font-weight: 650;
}

.automation-card {
  display: grid;
  align-items: center;
  gap: 12px;
  margin-top: 17px;
  padding: 14px;
  grid-template-columns: auto 1fr auto;
}

.automation-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: var(--pink-pale);
}

.automation-icon svg {
  width: 16px;
  fill: var(--pink-dark);
}

.automation-card strong,
.automation-card small {
  display: block;
}

.automation-card strong {
  font-size: .68rem;
}

.automation-card small {
  color: #73838a;
  font-size: .54rem;
  line-height: 1.4;
}

.mini-check {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: #d8f4e7;
  color: #1c9362;
  font-size: .7rem;
  font-weight: 900;
}

.floating-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(21, 35, 45, .92);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .28);
  color: #fff;
  font-size: .69rem;
  font-weight: 680;
  white-space: nowrap;
}

.floating-label span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
}

.floating-one {
  right: -15px;
  top: 24%;
}

.floating-two {
  bottom: 10%;
  left: -35px;
}

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

.trust-row {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.6vw, 48px);
  color: #7b898f;
  font-size: .72rem;
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.trust-row i {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--pink);
}

.section-heading {
  margin-bottom: clamp(46px, 7vw, 82px);
}

.split-heading {
  display: grid;
  align-items: end;
  gap: 60px;
  grid-template-columns: 1.2fr .8fr;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 1.05rem;
}

.centered {
  max-width: 790px;
  margin-inline: auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.centered > p:last-child {
  max-width: 660px;
  margin-inline: auto;
  color: var(--muted);
}

.benefit-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.benefit-card {
  position: relative;
  min-height: 360px;
  padding: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.benefit-card:hover {
  border-color: #c7d2d2;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.card-number {
  position: absolute;
  top: 22px;
  right: 28px;
  color: #cbd4d4;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.feature-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 62px;
  place-items: center;
  border-radius: 17px;
  background: var(--paper-soft);
  color: var(--ink-2);
}

.feature-icon svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.benefit-card:nth-child(2) .feature-icon {
  background: var(--pink-pale);
  color: var(--pink-dark);
}

.benefit-card:nth-child(3) .feature-icon {
  background: #dff7ed;
  color: #26795d;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: .96rem;
}

.bento-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.bento-card {
  position: relative;
  min-height: 440px;
  padding: clamp(30px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}

.bento-wide {
  display: grid;
  min-height: 480px;
  align-items: center;
  gap: 30px;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1fr;
}

.bento-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.bento-accent {
  border-color: var(--pink);
  background: var(--pink);
  color: #fff;
}

.bento-card h3 {
  max-width: 510px;
}

.bento-card > p,
.bento-copy > p {
  max-width: 530px;
  color: var(--muted);
}

.bento-dark .bento-copy > p,
.bento-accent .bento-copy > p {
  color: rgba(255, 255, 255, .68);
}

.feature-kicker {
  display: block;
  margin-bottom: 70px;
  color: #849298;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.bento-dark .feature-kicker,
.bento-accent .feature-kicker {
  color: rgba(255, 255, 255, .48);
}

.check-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  gap: 11px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, .8);
  font-size: .88rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--pink);
  content: "✓";
  font-weight: 900;
}

.listing-stack {
  position: relative;
  height: 300px;
}

.listing-card {
  position: absolute;
  display: grid;
  right: 5%;
  left: 5%;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  grid-template-columns: 82px 1fr auto;
}

.listing-card.card-back,
.listing-card.card-middle {
  height: 110px;
  background: #263844;
}

.listing-card.card-back {
  top: 12px;
  opacity: .35;
  transform: scale(.86);
}

.listing-card.card-middle {
  top: 50px;
  opacity: .6;
  transform: scale(.93);
}

.listing-card.card-front {
  top: 98px;
  min-height: 155px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .3);
}

.listing-image {
  display: grid;
  width: 68px;
  height: 92px;
  place-items: center;
  border-radius: 12px;
  background: #edf0ef;
}

.listing-image i {
  width: 44px;
  height: 33px;
  border-radius: 10px 7px 12px 8px;
  background: var(--ink-3);
  box-shadow: 8px -6px 0 -3px #536a75;
  transform: rotate(-8deg);
}

.listing-card small,
.listing-card strong,
.listing-card span {
  display: block;
}

.listing-card small {
  color: #687980;
  font-size: .7rem;
}

.listing-card strong {
  font-size: 1.3rem;
}

.listing-card span {
  color: #299568;
  font-size: .65rem;
  font-weight: 720;
}

.listing-card b {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: #daf4e8;
  color: #1c9160;
}

.fitment-list {
  position: absolute;
  right: 32px;
  bottom: 32px;
  left: 32px;
  display: grid;
  gap: 8px;
}

.fitment-list > span {
  display: grid;
  align-items: center;
  padding: 11px 13px;
  border: 1px solid #e3e8e8;
  border-radius: 11px;
  background: #fafbfa;
  color: #506168;
  font-size: .74rem;
  font-weight: 650;
  grid-template-columns: 30px 1fr auto;
}

.fitment-list i {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 7px;
  background: var(--ink-2);
  color: #fff;
  font-size: .58rem;
  font-style: normal;
}

.fitment-list b {
  color: #2aa172;
}

.image-tiles {
  position: absolute;
  right: 32px;
  bottom: 32px;
  left: 32px;
  display: grid;
  height: 132px;
  gap: 8px;
  grid-template-columns: 1.3fr .8fr .8fr;
}

.image-tiles > span {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(145deg, #d7dedd, #f2f4f3);
}

.image-tiles > span::before,
.image-tiles > span::after {
  position: absolute;
  content: "";
}

.image-tiles > span::before {
  width: 74px;
  height: 48px;
  border-radius: 13px 8px;
  background: var(--ink-3);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-9deg);
}

.image-tiles > span::after {
  width: 28px;
  height: 28px;
  border: 7px solid #70858d;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.image-tiles .tile-two::before {
  transform: translate(-50%, -50%) rotate(16deg);
}

.image-tiles .tile-three {
  background: var(--ink-2);
}

.image-tiles .tile-three::before,
.image-tiles .tile-three::after {
  display: none;
}

.image-tiles b {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.2rem;
}

.scanner-visual {
  position: relative;
  height: 330px;
}

.barcode-card {
  position: absolute;
  z-index: 1;
  top: 45px;
  left: 4%;
  width: 230px;
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 50px rgba(155, 0, 40, .25);
  color: var(--ink);
  transform: rotate(-5deg);
}

.barcode-card small,
.barcode-card strong,
.barcode-card span {
  display: block;
}

.barcode-card small {
  color: #75858c;
  font-size: .65rem;
}

.barcode-card strong {
  margin-bottom: 18px;
  font-size: 1.55rem;
}

.barcode-card span {
  text-align: center;
  color: #53646b;
  font-size: .62rem;
  letter-spacing: .28em;
}

.barcode {
  height: 48px;
  margin-bottom: 7px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 5px, var(--ink) 5px 9px, transparent 9px 12px, var(--ink) 12px 13px, transparent 13px 17px);
}

.scan-line {
  position: absolute;
  z-index: 3;
  top: 136px;
  right: 14%;
  left: 12%;
  height: 2px;
  background: #fff;
  box-shadow: 0 0 18px 5px rgba(255, 255, 255, .6);
  transform: rotate(-5deg);
}

.phone-outline {
  position: absolute;
  right: 8%;
  bottom: 3px;
  display: flex;
  width: 172px;
  height: 285px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 8px solid var(--ink);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 28px 60px rgba(155, 0, 40, .28);
  color: var(--ink);
  transform: rotate(6deg);
}

.phone-outline i {
  position: absolute;
  top: 10px;
  width: 48px;
  height: 5px;
  border-radius: 999px;
  background: #d8dede;
}

.phone-outline span {
  font-size: .66rem;
  font-weight: 750;
}

.phone-outline b {
  display: grid;
  width: 58px;
  height: 58px;
  margin-top: 12px;
  place-items: center;
  border-radius: 50%;
  background: #dff5e9;
  color: #219464;
  font-size: 1.4rem;
}

.proof-grid {
  display: grid;
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
  grid-template-columns: .86fr 1.14fr;
}

.proof-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.mini-definitions {
  display: grid;
  margin: 46px 0 0;
  gap: 0;
}

.mini-definitions > div {
  display: grid;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  gap: 22px;
  grid-template-columns: 100px 1fr;
}

.mini-definitions dt {
  font-size: .84rem;
  font-weight: 760;
}

.mini-definitions dd {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
}

.proof-media {
  position: relative;
  min-height: 560px;
}

.media-frame {
  overflow: hidden;
  border: 1px solid #d7dede;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.media-main {
  position: absolute;
  inset: 0 0 75px 0;
}

.browser-dots {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 5px;
  padding: 0 14px;
  border-bottom: 1px solid #dde3e3;
  background: #f6f8f7;
}

.browser-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd4d4;
}

.browser-dots i:first-child {
  background: var(--pink);
}

.browser-dots span {
  margin-left: 10px;
  color: #718188;
  font-size: .62rem;
}

.media-main img {
  width: 100%;
  height: calc(100% - 42px);
  object-fit: cover;
  object-position: center;
}

.media-small {
  position: absolute;
  z-index: 2;
  right: -35px;
  bottom: 0;
  width: 52%;
  aspect-ratio: 1.55;
  border: 8px solid #fff;
}

.media-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workflow {
  position: relative;
  overflow: hidden;
}

.workflow::after {
  position: absolute;
  right: -220px;
  bottom: -390px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 120px rgba(255, 255, 255, .012), 0 0 0 240px rgba(255, 255, 255, .01);
}

.split-heading-light > p {
  color: rgba(255, 255, 255, .58);
}

.workflow-list {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 0;
  padding: 0;
  gap: 1px;
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
}

.workflow-list li {
  position: relative;
  min-height: 315px;
  padding: 28px 30px 34px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .02);
}

.workflow-list li:first-child {
  border-radius: 20px 0 0 20px;
}

.workflow-list li:last-child {
  border-radius: 0 20px 20px 0;
}

.workflow-list li > span {
  display: block;
  margin-bottom: 90px;
  color: var(--pink);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.workflow-list h3 {
  font-size: 1.35rem;
}

.workflow-list p {
  margin: 0;
  color: rgba(255, 255, 255, .52);
  font-size: .84rem;
}

.workflow-list li > i {
  position: absolute;
  z-index: 2;
  top: 32px;
  right: -15px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  background: var(--ink);
  color: rgba(255, 255, 255, .48);
  font-size: .7rem;
  font-style: normal;
}

.metrics {
  padding-block: 72px;
  border-bottom: 1px solid var(--line);
}

.metrics-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.metrics-grid > div {
  padding: 22px 32px;
  border-left: 1px solid var(--line);
}

.metrics-grid > div:first-child {
  padding-left: 0;
  border-left: 0;
}

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

.metrics-grid strong {
  color: var(--ink);
  font-size: clamp(2.3rem, 5vw, 4.1rem);
  letter-spacing: -.06em;
  line-height: 1;
}

.metrics-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 650;
}

.faq-grid {
  display: grid;
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
  grid-template-columns: .75fr 1.25fr;
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
  color: var(--ink);
  font-weight: 740;
  text-decoration: none;
}

.text-link span {
  color: var(--pink);
  font-size: 1.4rem;
}

.faq-list {
  border-top: 1px solid #cfd8d8;
}

.faq-list details {
  border-bottom: 1px solid #cfd8d8;
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 4px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 720;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border: 1px solid #c4cece;
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span {
  border-color: var(--pink);
  background: var(--pink);
}

.faq-list details[open] summary span::before,
.faq-list details[open] summary span::after {
  background: #fff;
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 650px;
  margin: -3px 44px 28px 4px;
  color: var(--muted);
  font-size: .94rem;
}

.cta-section {
  padding-block: clamp(76px, 9vw, 125px);
  background: #fff;
}

.cta-card {
  position: relative;
  display: grid;
  min-height: 415px;
  align-items: end;
  gap: 70px;
  padding: clamp(38px, 7vw, 82px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--pink);
  color: #fff;
  grid-template-columns: 1.2fr .8fr;
}

.cta-card h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(2.45rem, 5vw, 5rem);
}

.cta-card .eyebrow {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .65);
}

.cta-card .eyebrow > span {
  background: #fff;
}

.cta-pattern {
  position: absolute;
  top: -220px;
  right: -120px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 50%;
  box-shadow: 0 0 0 85px rgba(255, 255, 255, .045), 0 0 0 170px rgba(255, 255, 255, .035);
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.phone-link {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 750;
  line-height: 1.4;
  text-decoration: none;
}

.phone-link span {
  display: block;
  color: rgba(255, 255, 255, .65);
  font-size: .72rem;
  font-weight: 600;
}

.site-footer {
  padding-top: 75px;
  background: var(--ink);
  color: #fff;
}

.footer-main {
  display: grid;
  gap: 55px;
  padding-bottom: 70px;
  grid-template-columns: 1.8fr repeat(3, 1fr);
}

.footer-brand img {
  width: 205px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 360px;
  color: rgba(255, 255, 255, .48);
  font-size: .84rem;
}

.footer-main h2 {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .44);
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-main > div:not(.footer-brand) a,
.footer-main > div:not(.footer-brand) p {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .75);
  font-size: .82rem;
  text-decoration: none;
}

.footer-main a:hover {
  color: var(--pink);
}

.footer-bottom {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .4);
  font-size: .68rem;
}

.legal-hero {
  padding-block: 84px 70px;
  background: var(--paper-soft);
}

.legal-hero h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  hyphens: auto;
  overflow-wrap: anywhere;
}

.legal-hero p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.legal-section {
  padding-block: 75px 120px;
}

.legal-layout {
  display: grid;
  align-items: start;
  gap: 75px;
  grid-template-columns: 220px minmax(0, 760px);
}

.legal-aside {
  position: sticky;
  top: 120px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.legal-aside strong {
  display: block;
  margin-bottom: 12px;
  font-size: .76rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.legal-aside a {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  font-size: .78rem;
  text-decoration: none;
}

.legal-content h2 {
  margin: 64px 0 19px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  hyphens: auto;
  overflow-wrap: anywhere;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 36px 0 14px;
  font-size: 1.25rem;
}

.legal-content p,
.legal-content li,
.legal-content address {
  color: #53656d;
  font-size: .94rem;
}

.legal-content address {
  padding: 28px;
  border-left: 4px solid var(--pink);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--paper-soft);
  font-style: normal;
}

.legal-content a {
  color: var(--pink-dark);
  overflow-wrap: anywhere;
}

.legal-content ul {
  padding-left: 1.15em;
}

.legal-content .note {
  margin-top: 40px;
  padding: 22px 24px;
  border: 1px solid #cfe5da;
  border-radius: var(--radius-sm);
  background: #eff9f4;
  color: #3f6252;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: .76rem;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb span {
  color: #a1acae;
}

.simple-header .site-nav {
  gap: 14px;
}

.simple-header .site-nav > a:not(.button) {
  padding: 10px 14px;
}

.not-found {
  display: grid;
  min-height: 100svh;
  place-items: center;
}

.not-found-inner {
  max-width: 760px;
  text-align: center;
}

.not-found-inner .eyebrow {
  justify-content: center;
}

.not-found-inner .hero-lead {
  margin-inline: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .18s;
}

.reveal-delay-3 {
  transition-delay: .26s;
}

@media (max-width: 1080px) {
  .hero-grid {
    gap: 52px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 810px;
  }

  .hero-visual {
    width: min(760px, 100%);
    margin-inline: auto;
  }

  .app-window {
    transform: none;
  }

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

  .proof-copy {
    max-width: 700px;
  }

  .proof-media {
    width: min(820px, calc(100% - 40px));
    margin-inline: auto;
  }

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

  .workflow-list li:nth-child(1) {
    border-radius: 20px 0 0 0;
  }

  .workflow-list li:nth-child(2) {
    border-radius: 0 20px 0 0;
  }

  .workflow-list li:nth-child(3) {
    border-radius: 0 0 0 20px;
  }

  .workflow-list li:nth-child(4) {
    border-radius: 0 0 20px 0;
  }

  .workflow-list li:nth-child(2) > i {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  body {
    font-size: 16px;
  }

  .header-inner {
    min-height: 72px;
  }

  .site-header {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .brand img {
    width: 178px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    z-index: 999;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    width: 100%;
    height: calc(100svh - 72px);
    padding: 38px 20px 50px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--paper);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    padding: 17px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 1.15rem;
  }

  .site-nav .button {
    margin-top: 26px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 70px;
  }

  .split-heading {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .split-heading > p {
    max-width: 650px;
  }

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

  .benefit-card {
    min-height: 300px;
  }

  .feature-icon {
    margin-bottom: 45px;
  }

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

  .bento-wide {
    grid-template-columns: 1fr;
  }

  .bento-card,
  .bento-wide {
    min-height: 500px;
    grid-column: auto;
  }

  .bento-dark {
    min-height: 760px;
  }

  .listing-stack {
    min-height: 270px;
  }

  .bento-accent {
    min-height: 700px;
  }

  .scanner-visual {
    min-height: 330px;
  }

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

  .metrics-grid > div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .metrics-grid > div {
    padding-block: 28px;
  }

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

  .faq-intro {
    position: static;
    max-width: 650px;
  }

  .cta-card {
    gap: 45px;
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .legal-layout {
    gap: 45px;
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }

  .legal-aside a {
    display: inline-block;
    margin-right: 18px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding-block: 78px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.3rem, 11vw, 3.4rem);
  }

  .hero {
    padding-top: 64px;
  }

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

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

  .hero-proof {
    gap: 18px 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-proof li:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .hero-visual {
    width: calc(100% + 16px);
    margin-left: -8px;
  }

  .app-body {
    min-height: 440px;
    grid-template-columns: 36px 1fr;
  }

  .app-sidebar {
    gap: 18px;
  }

  .app-sidebar span {
    width: 14px;
    height: 14px;
  }

  .app-content {
    padding: 17px;
  }

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

  .part-card {
    display: grid;
    align-items: center;
    gap: 10px;
    grid-template-columns: 92px 1fr;
  }

  .part-photo {
    height: 82px;
    margin: 0;
    grid-row: 1 / 3;
  }

  .field-stack label:nth-child(3) {
    display: none;
  }

  .automation-card small {
    display: none;
  }

  .floating-label {
    display: none;
  }

  .trust-row {
    flex-wrap: wrap;
    gap: 10px 15px;
    padding-block: 20px;
  }

  .trust-row span {
    font-size: .62rem;
  }

  .benefit-card {
    padding: 30px;
  }

  .bento-card,
  .bento-wide {
    min-height: 535px;
    padding: 28px;
    border-radius: 24px;
  }

  .bento-dark {
    min-height: 730px;
  }

  .bento-accent {
    min-height: 650px;
  }

  .feature-kicker {
    margin-bottom: 50px;
  }

  .listing-card {
    right: 0;
    left: 0;
    grid-template-columns: 68px 1fr auto;
  }

  .listing-image {
    width: 58px;
    height: 80px;
  }

  .fitment-list,
  .image-tiles {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .phone-outline {
    right: 0;
  }

  .barcode-card {
    left: 0;
    width: 205px;
  }

  .proof-media {
    width: 100%;
    min-height: 390px;
  }

  .media-main {
    bottom: 50px;
  }

  .media-small {
    right: -5px;
    width: 58%;
    border-width: 5px;
  }

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

  .workflow-list li,
  .workflow-list li:nth-child(n) {
    min-height: 220px;
    border-radius: 0;
  }

  .workflow-list li:first-child {
    border-radius: 18px 18px 0 0;
  }

  .workflow-list li:last-child {
    border-radius: 0 0 18px 18px;
  }

  .workflow-list li > span {
    margin-bottom: 50px;
  }

  .workflow-list li > i {
    display: none;
  }

  .metrics {
    padding-block: 52px;
  }

  .metrics-grid > div {
    padding: 24px 12px;
  }

  .metrics-grid strong {
    font-size: 2.6rem;
  }

  .faq-list summary {
    font-size: .98rem;
  }

  .cta-card {
    min-height: 520px;
    padding: 38px 28px;
    border-radius: 24px;
  }

  .cta-actions,
  .cta-actions .button {
    width: 100%;
  }

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

  .footer-main > div:nth-child(4) {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding-block: 24px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .legal-hero {
    padding-block: 62px 55px;
  }

  .legal-section {
    padding-block: 55px 85px;
  }

  .legal-content address {
    padding: 22px;
  }
}

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

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

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