:root {
  --product-blue: #0877e8;
  --product-blue-dark: #0348bf;
  --product-cyan: #08b9ee;
  --product-ink: #071426;
  --product-muted: #657083;
  --product-pearl: #f5f7fa;
  --product-line: #dfe5ec;
}

.products-page {
  background: #fff !important;
  color: var(--product-ink) !important;
  font-family: var(--site-font-apple) !important;
}

.products-page *, .products-page *::before, .products-page *::after { box-sizing: border-box; }
.products-page main { overflow: hidden; }
.products-page .nav-links a.active { color: var(--product-blue) !important; }
.product-detail-content[hidden] { display: none !important; }

.commerce-hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  min-height: clamp(500px, 68svh, 640px);
  margin: 0 auto;
  padding: clamp(32px, 5vh, 56px) 0;
}

.commerce-product-photo {
  width: min(540px, 100%);
  margin: 0;
  border: 1px solid #dce4ec;
  border-radius: 30px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(7,20,38,.13);
}

.commerce-product-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 21px;
  object-fit: cover;
}

.commerce-product-photo figcaption {
  padding: 14px 8px 4px;
  color: #768294;
  font-size: .67rem;
  font-weight: 650;
  text-align: center;
}

.commerce-purchase { max-width: 510px; }
.commerce-label { display: block; margin-bottom: 18px; color: var(--product-blue); font-size: .73rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.commerce-purchase h1 { max-width: 16ch; margin: 0; color: var(--product-ink) !important; font: 760 clamp(3rem, 3.75vw, 4rem)/.96 var(--site-font-apple) !important; letter-spacing: -.065em !important; text-transform: none !important; }
.commerce-summary { max-width: 500px; margin-top: 20px; color: var(--product-muted); font-size: 1rem; line-height: 1.65; }
.commerce-price { margin: 30px 0 28px; padding: 24px 0; border-block: 1px solid var(--product-line); }
.commerce-price > div { display: flex; align-items: baseline; gap: 11px; }
.commerce-price > div strong { color: var(--product-ink); font-size: 3.45rem; line-height: 1; letter-spacing: -.075em; }
.commerce-price > div span { color: #758194; font-size: .76rem; font-weight: 650; }
.commerce-price > p { margin-top: 8px; color: var(--product-muted); font-size: .82rem; }
.commerce-price > p strong { color: var(--product-blue); font-size: 1.25rem; }
.commerce-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.product-button.secondary { border: 1px solid #c9d3df; background: #fff; color: var(--product-ink); cursor: pointer; }
.product-button.secondary:hover { border-color: var(--product-blue); background: #eef6ff; color: var(--product-blue); }
.commerce-purchase > small { display: block; margin-top: 18px; color: #8b96a4; font-size: .64rem; line-height: 1.5; }
.product-detail-content { scroll-margin-top: 92px; animation: detailReveal .35s ease both; }
@keyframes detailReveal { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.product-hero {
  display: grid;
  grid-template-columns: .98fr 1.02fr;
  gap: clamp(42px, 6vw, 84px);
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  min-height: clamp(500px, 68svh, 640px);
  margin: 0 auto;
  padding: clamp(32px, 5vh, 56px) 0;
}

.product-kicker, .section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--product-blue);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.product-kicker i { width: 8px; height: 8px; border-radius: 50%; background: var(--product-blue); box-shadow: 0 0 0 6px rgba(8,119,232,.1); }
.product-hero h1 {
  max-width: 17ch;
  margin: 0 0 22px;
  color: var(--product-ink) !important;
  font: 750 clamp(2.8rem, 4.4vw, 4.5rem)/.94 var(--site-font-apple) !important;
  letter-spacing: -.07em !important;
  text-transform: none !important;
}
.product-hero-copy > p { max-width: 580px; color: var(--product-muted); font-size: clamp(1rem, 1.35vw, 1.16rem); line-height: 1.68; }
.hero-price { display: flex; align-items: baseline; gap: 8px; margin: 28px 0; color: var(--product-ink); }
.hero-price strong { font-size: 1.55rem; letter-spacing: -.045em; }
.hero-price span { color: var(--product-muted); font-size: .78rem; font-weight: 600; }
.hero-price b { margin: 0 4px; color: #b4becb; font-weight: 500; }
.product-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.product-button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; border-radius: 999px; padding: 0 22px; font-size: .88rem; font-weight: 750; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.product-button.primary { background: var(--product-blue); color: #fff; box-shadow: 0 15px 34px rgba(8,119,232,.24); }
.product-button.primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(8,119,232,.3); }
.product-button.text { color: var(--product-ink); background: transparent; }
.product-button.text:hover { background: var(--product-pearl); }
.hero-product-visual { position: relative; width: min(520px, 100%); margin: 0; justify-self: end; border: 1px solid #dce4ec; border-radius: 30px; padding: 12px; background: #fff; box-shadow: 0 32px 90px rgba(7,20,38,.14); }
.hero-product-visual img { display: block; width: 100%; aspect-ratio: 1; border-radius: 21px; object-fit: cover; }
.hero-product-visual figcaption { display: flex; justify-content: space-between; gap: 16px; align-items: center; padding: 16px 10px 6px; }
.hero-product-visual figcaption strong { color: var(--product-ink); font-size: .78rem; }
.hero-product-visual figcaption span { color: var(--product-muted); font-size: .68rem; text-align: right; }

.system-gallery { padding: 120px max(24px, calc((100vw - 1240px)/2)); background: var(--product-pearl); }
.system-gallery-heading { max-width: 820px; margin-bottom: 56px; }
.products-page .system-gallery-heading h2 { margin: 0; color: var(--product-ink) !important; font: 740 clamp(2.5rem, 4.2vw, 4.5rem)/.96 var(--site-font-apple) !important; letter-spacing: -.065em !important; text-transform: none !important; }
.system-gallery-heading p { max-width: 690px; margin-top: 22px; color: #56657a; font-size: 1rem; line-height: 1.7; }
.system-gallery-list { display: grid; gap: 42px; }
.system-shot { overflow: hidden; margin: 0; border: 1px solid #d9e1e9; border-radius: 28px; background: #fff; box-shadow: 0 24px 70px rgba(7,20,38,.09); }
.system-shot-frame { position: relative; overflow: hidden; background: #eef2f6; }
.system-shot:not(.admin-shot) .system-shot-frame { aspect-ratio: 16/9; }
.system-shot-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.admin-shot .system-shot-frame { aspect-ratio: 1692/990; }
.admin-shot .system-shot-frame img { width: 113.475%; max-width: none; height: auto; transform: translate(-11.875%, -8.333%); }
.admin-shot .system-shot-frame::after { content: ""; position: absolute; z-index: 2; top: 0; right: 0; width: 22%; height: 11%; background: rgba(245,248,251,.82); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.system-shot figcaption { display: grid; grid-template-columns: 150px 1fr; gap: 8px 22px; align-items: baseline; padding: 28px 32px 30px; }
.system-shot figcaption span { grid-row: 1 / span 2; color: var(--product-blue); font-size: .69rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.system-shot figcaption strong { color: var(--product-ink); font-size: 1.15rem; letter-spacing: -.025em; }
.system-shot figcaption p { color: #647286; font-size: .82rem; line-height: 1.55; }

.client-example { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(44px, 7vw, 100px); align-items: center; padding: 110px max(24px, calc((100vw - 1240px)/2)); background: #061532; }
.example-copy h2, .scan-copy h2, .pricing-copy h2, .product-final-cta h2 { margin: 0; font: 740 clamp(2.5rem, 4.2vw, 4.5rem)/.96 var(--site-font-apple) !important; letter-spacing: -.065em !important; text-transform: none !important; }
.products-page .client-example .example-copy h2 { color: #fff !important; text-shadow: 0 1px 0 rgba(255,255,255,.05); }
.products-page .client-example .example-copy p { margin: 24px 0; color: #cfdaea !important; line-height: 1.75; }
.example-copy a { color: #62c9ff; font-weight: 700; text-decoration: none; }
.carcraft-screen { display: block; overflow: hidden; border-radius: 22px; background: #fff; box-shadow: 0 35px 90px rgba(0,0,0,.3); text-decoration: none; }
.browser-bar { display: flex; align-items: center; gap: 6px; height: 38px; padding: 0 14px; background: #f4f6f8; }
.browser-bar i { width: 7px; height: 7px; border-radius: 50%; background: #c6ced8; }
.browser-bar b { overflow: hidden; margin-left: 8px; color: #818b98; font-size: .58rem; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.carcraft-screen img { display: block; width: 100%; aspect-ratio: 16/9.2; object-fit: cover; object-position: top; transition: transform .55s ease; }
.carcraft-screen:hover img { transform: scale(1.015); }

.product-features { width: min(1240px, calc(100% - 48px)); margin: 0 auto; padding: 120px 0; }
.section-heading.compact { max-width: 850px; margin-bottom: 54px; }
.section-heading.compact h2 { font-size: clamp(2.5rem, 4.2vw, 4.5rem) !important; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature-card { position: relative; display: flex; flex-direction: column; min-height: 310px; border: 1px solid var(--product-line); border-radius: 24px; padding: 30px; background: #fff; }
.feature-card.wide { grid-column: span 2; background: linear-gradient(135deg, #f7fafe, #fff); }
.feature-number { color: var(--product-blue); font-size: .72rem; font-weight: 800; }
.feature-card h3 { max-width: 12ch; margin: auto 0 14px; color: var(--product-ink) !important; font: 720 1.5rem/1.08 var(--site-font-apple) !important; letter-spacing: -.045em; text-transform: none !important; }
.feature-card p { max-width: 550px; color: var(--product-muted); font-size: .9rem; line-height: 1.65; }
.alert-sample { display: inline-flex; align-items: center; gap: 10px; align-self: flex-start; margin-top: 22px; border: 1px solid #f1dfbd; border-radius: 12px; padding: 11px 13px; background: #fff9ed; color: #8b6729; font-size: .66rem; }
.alert-sample b { border-radius: 999px; padding: 5px 7px; background: #f2dfb9; font-size: .57rem; text-transform: uppercase; }

.scan-section { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(54px, 9vw, 130px); align-items: center; padding: 120px max(24px, calc((100vw - 1120px)/2)); background: var(--product-pearl); }
.mount-product { width: min(470px, 100%); margin: 0; justify-self: center; }
.mount-product img { display: block; width: 100%; aspect-ratio: 1; border-radius: 32px; object-fit: cover; box-shadow: 0 30px 80px rgba(7,20,38,.16); }
.mount-product figcaption { margin-top: 14px; color: #8692a1; font-size: .68rem; font-weight: 650; letter-spacing: .04em; text-align: center; }
.scan-copy h2 { color: var(--product-ink) !important; }
.steps-list { display: grid; gap: 0; margin: 34px 0 0; padding: 0; list-style: none; }
.steps-list li { display: grid; grid-template-columns: 38px 1fr; gap: 18px; padding: 18px 0; border-top: 1px solid #d8e0e8; }
.steps-list li > span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: #e5f1ff; color: var(--product-blue); font-size: .72rem; font-weight: 800; }
.steps-list h3 { margin: 0 0 7px; color: var(--product-ink) !important; font: 720 1rem var(--site-font-apple) !important; text-transform: none !important; }
.steps-list p { color: var(--product-muted); font-size: .84rem; line-height: 1.55; }

.pricing-panel { display: grid; grid-template-columns: 1fr 470px; gap: clamp(50px, 9vw, 130px); align-items: center; padding: 120px max(24px, calc((100vw - 1120px)/2)); background: linear-gradient(145deg, #04102b, #0877e8); }
.section-label.light { color: #76d8ff; }.products-page .pricing-panel .pricing-copy h2, .products-page .client-example .example-copy h2 { font-size: clamp(2.5rem, 3.5vw, 3.8rem) !important; color: #fff !important; text-shadow: 0 1px 0 rgba(255,255,255,.05); }.products-page .pricing-panel .pricing-copy p { max-width: 520px; margin-top: 24px; color: #d3def0 !important; line-height: 1.75; }
.product-price-card { border: 1px solid rgba(255,255,255,.6); border-radius: 28px; padding: 34px; background: #fff; box-shadow: 0 32px 90px rgba(0,0,0,.24); }
.price-eyebrow { display: block; margin-bottom: 25px; color: var(--product-blue); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.price-line { display: flex; align-items: baseline; gap: 10px; }.price-line strong { color: var(--product-ink); font-size: 3.7rem; letter-spacing: -.075em; }.price-line span, .monthly-line span { color: #7c8796; font-size: .72rem; font-weight: 600; }
.monthly-line { display: flex; align-items: baseline; gap: 8px; margin-top: 4px; }.monthly-line strong { color: var(--product-blue); font-size: 1.35rem; }
.product-price-card ul { display: grid; gap: 13px; margin: 27px 0; padding: 24px 0 0; border-top: 1px solid var(--product-line); list-style: none; color: #4f5c6e; font-size: .82rem; }
.product-price-card li::before { content: ""; margin-right: 9px; color: var(--product-blue); font-weight: 800; }
.product-price-card .product-button { width: 100%; }
.product-price-card > small { display: block; margin-top: 15px; color: #9099a5; font-size: .62rem; line-height: 1.5; text-align: center; }

.product-final-cta { padding: 120px 24px; text-align: center; }
.product-final-cta > span { color: var(--product-blue); font-size: .73rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.product-final-cta h2 { margin-top: 18px; color: var(--product-ink) !important; }
.product-final-cta p { margin: 22px 0 28px; color: var(--product-muted); font-size: 1.05rem; }

.reveal { animation: productReveal .7s cubic-bezier(.2,.7,.2,1) both; }.delay-one { animation-delay: .12s; }.delay-two { animation-delay: .22s; }
@keyframes productReveal { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1000px) {
  .commerce-hero { grid-template-columns: 1fr 1fr; gap: 38px; }
  .product-hero { grid-template-columns: 1fr; min-height: auto; padding-top: 52px; }
  .product-hero-copy { max-width: 760px; text-align: center; margin: auto; }.product-hero h1 { max-width: 12ch; margin-inline: auto; }.product-hero-copy > p { margin-inline: auto; }.hero-price, .product-actions { justify-content: center; }
  .hero-product-visual { order: -1; width: min(460px, 100%); margin: auto; justify-self: center; }
  .client-example, .scan-section, .pricing-panel { grid-template-columns: 1fr; }
  .example-copy, .pricing-copy { max-width: 760px; }.carcraft-screen { max-width: 900px; }.pricing-panel { justify-items: center; }.pricing-copy { text-align: center; }.pricing-copy p { margin-inline: auto; }.product-price-card { width: min(470px, 100%); }
}

@media (max-width: 980px) {
  .commerce-purchase h1 { font-size: clamp(2.5rem, 8vw, 3.5rem) !important; }
}

@media (max-width: 700px) {
  .commerce-hero { grid-template-columns: 1fr; gap: 32px; width: calc(100% - 28px); min-height: auto; padding: 36px 0 64px; }
  .commerce-product-photo { width: min(360px, 94%); margin: 0 auto; border-radius: 24px; }
  .commerce-product-photo img { border-radius: 17px; }
  .commerce-purchase { width: min(520px, 100%); margin: 0 auto; }
  .commerce-purchase h1 { max-width: 16ch; font-size: clamp(2.5rem, 8vw, 3.5rem) !important; }
  .commerce-price { margin: 24px 0 22px; padding: 20px 0; }
  .commerce-price > div strong { font-size: 3rem; }
  .commerce-actions { align-items: stretch; flex-direction: column; }
  .commerce-actions .product-button { width: 100%; }
  .product-hero, .product-features { width: calc(100% - 28px); }.product-hero { gap: 38px; padding: 36px 0 68px; }.product-hero h1 { font-size: clamp(2.12rem, 10vw, 3.2rem) !important; line-height: .96 !important; }
  .hero-product-visual { width: min(340px, 92%); border-radius: 24px; }.hero-product-visual img { border-radius: 17px; }.hero-product-visual figcaption { align-items: flex-start; flex-direction: column; gap: 5px; }.hero-product-visual figcaption span { text-align: left; }
  .system-gallery, .client-example, .product-features, .scan-section, .pricing-panel, .product-final-cta { padding-top: 82px; padding-bottom: 82px; }.system-gallery, .client-example { padding-inline: 20px; }
  .example-copy h2, .scan-copy h2, .pricing-copy h2, .product-final-cta h2, .section-heading.compact h2 { font-size: clamp(2.15rem, 10vw, 3.2rem) !important; }
  .products-page .system-gallery-heading h2, .products-page .pricing-panel .pricing-copy h2, .products-page .client-example .example-copy h2 { font-size: clamp(2.15rem, 10vw, 3.2rem) !important; }.system-gallery-list { gap: 24px; }.system-shot { border-radius: 18px; }.system-shot figcaption { grid-template-columns: 1fr; padding: 22px; }.system-shot figcaption span { grid-row: auto; }.system-shot figcaption strong { font-size: 1rem; }
  .feature-grid { grid-template-columns: 1fr; }.feature-card.wide { grid-column: auto; }.feature-card { min-height: 260px; }
  .scan-section, .pricing-panel { padding-inline: 20px; }.mount-product img { border-radius: 24px; }.product-price-card { padding: 27px 22px; }
}

@media (max-width: 430px) {
  .commerce-purchase h1 { font-size: clamp(2.1rem, 10vw, 2.65rem) !important; }
}

@media (max-width: 460px) {
  .hero-price { flex-wrap: wrap; }.product-actions { align-items: stretch; flex-direction: column; }.product-button.text { min-height: 44px; }
  .browser-bar b { max-width: 190px; }.carcraft-screen { border-radius: 15px; }.price-line strong { font-size: 3.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .product-detail-content { animation: none; }.product-button, .carcraft-screen img { transition: none; }
}

/* Match the clock-in product, with the card photo on the left. */
body.products-page .business-card-product {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) 0;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(42px, 5vw, 68px);
  align-items: center;
  border: 0;
  border-top: 1px solid var(--product-line);
  background: transparent;
}
body.products-page .business-card-photo {
  width: min(460px, 100%);
  margin: 0;
  padding: 12px;
  border: 1px solid #dce4ec;
  border-radius: 30px;
  background: white;
  box-shadow: 0 30px 90px rgba(7,20,38,.13);
}
.business-card-photo img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; border-radius: 21px; }
.business-card-photo figcaption { padding: 14px 8px 4px; color: #768294; font-size: .67rem; font-weight: 650; text-align: center; }
body.products-page :is(#business-card-title, #qr-stand-title) {
  max-width: 15ch !important;
  margin: 0 !important;
  color: var(--product-ink) !important;
  font: 760 clamp(1.25rem, 1.625vw, 1.75rem)/.98 var(--site-font-apple) !important;
  letter-spacing: -.06em !important;
  text-transform: none !important;
}
.business-card-copy { min-width: 0; }
body.products-page .business-card-copy .business-card-included { margin: 14px 0 0; color: var(--product-muted); font-size: .82rem; line-height: 1.5; }
.business-card-examples { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 20px; }
.business-card-examples a { color: var(--product-blue); font-size: .78rem; font-weight: 650; text-decoration: none; }
.business-card-examples a:hover { text-decoration: underline; text-underline-offset: 4px; }
.business-card-examples a:focus-visible { outline: 2px solid var(--product-blue); outline-offset: 4px; }
@media (max-width: 700px) {
  body.products-page .business-card-product { width: calc(100% - 28px); grid-template-columns: 1fr; gap: 32px; }
  body.products-page .business-card-photo { width: min(360px, 94%); justify-self: center; }
  body.products-page :is(#business-card-title, #qr-stand-title) { font-size: clamp(1.125rem, 4.5vw, 1.5rem) !important; }
}

body.products-page .qr-stand-product { grid-template-columns: .92fr 1.08fr; }
.qr-stand-product .business-card-photo { order: 2; justify-self: end; }
.qr-stand-product .business-card-copy { order: 1; }
.qr-stand-options { display: grid; gap: 20px; margin-top: 26px; }
.qr-stand-option { padding-top: 20px; border-top: 1px solid var(--product-line); }
.qr-option-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
body.products-page .qr-option-heading h3 { margin: 0 !important; font: 700 1rem/1.3 var(--site-font-apple) !important; color: var(--product-ink) !important; text-transform: none !important; letter-spacing: 0 !important; }
.qr-option-heading strong { color: var(--product-blue); font-size: 1.8rem; font-weight: 760; letter-spacing: -.04em; white-space: nowrap; }
.qr-stand-option p { margin: 10px 0 16px; color: var(--product-muted); font-size: .86rem; line-height: 1.6; }
@media (max-width: 700px) {
  body.products-page .qr-stand-product { grid-template-columns: 1fr; }
  .qr-stand-product .business-card-photo { order: 1; justify-self: center; }
  .qr-stand-product .business-card-copy { order: 2; }
}
