
:root {
    --ink: #1d1d1d;
    --body: #333;
    --muted: #6c6c6c;
    --purple: #92278f;
    --purple-dark: #7f1f7c;
    --green: #8cc541;
    --surface: #f8f8f8;
    --line: #aaa;
    --header-height: 140px;
    --content-width: 1540px;
}

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

html {
    background: #fff;
    scroll-behavior: auto;
    scroll-padding-top: 0;
    scroll-snap-type: y mandatory;
    overscroll-behavior-y: none;
}

html.is-section-animating {
    scroll-snap-type: none;
}

body {
    margin: 0;
    overflow-x: clip;
    overscroll-behavior-y: none;
    color: var(--ink);
    background: #fff;
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

button,
a {
    color: inherit;
    font: inherit;
}

button {
    border: 0;
}

a {
    text-decoration: none;
}

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

.serif {
    font-family: "DM Serif Text", serif;
    font-style: italic;
    font-weight: 400;
}

.container {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1920px;
    height: 100%;
    margin: 0 auto;
    padding: 0 90px;
}

.snap {
    position: relative;
    isolation: isolate;
    width: 100%;
    height: 100vh;
    height: 100svh;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.section-title {
    margin: 0;
    font-size: 3rem !important;
    font-weight: 600;
    line-height: 1.18;
}

.large-title {
    margin: 0;
    font-size: clamp(50px, 3.5417vw, 68px);
    font-weight: 600;
    line-height: 1.15;
}

.section-copy {
    margin: 0;
    color: var(--body);
    font-size: clamp(20px, 1.25vw, 24px);
    line-height: 1.42;
}

.eyebrow {
    margin: 0;
    font-size: clamp(15px, 1.0417vw, 20px);
    font-weight: 500;
    line-height: 1.35;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.2rem !important;
    border-radius: 999px;
    color: #fff;
    background: var(--purple);
    font-size: 1.375rem !important;
    font-weight: 500;
    cursor: pointer;
    transition:
    background-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.button:hover,
.button:focus-visible {
    background: var(--purple-dark);
    box-shadow: 0 16px 34px rgba(146, 39, 143, 0.22);
    outline: none;
    transform: translateY(-2px);
}


#product-stage {
    position: fixed;
    z-index: 2;
    inset: var(--header-height) 0 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    contain: strict;
}

#product-stage canvas {
    width: 100%;
    height: 100%;
    display: block;
}

#model-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 46px;
    height: 46px;
    margin: -23px;
    border: 2px solid rgba(146, 39, 143, 0.18);
    border-top-color: var(--purple);
    border-radius: 50%;
    animation: spin 900ms linear infinite;
}

#model-error {
    position: absolute;
    bottom: 32px;
    left: 50%;
    padding: 8px 14px;
    border-radius: 999px;
    color: #555;
    background: rgba(248, 248, 248, 0.9);
    font-size: 12px;
    opacity: 0;
    transform: translateX(-50%);
}

@keyframes spin {
    to {
    transform: rotate(360deg);
    }
}

.blob-image {
    position: absolute;
    z-index: 0;
    max-width: none;
    object-fit: contain;
    pointer-events: none;
    transform-origin: center;
}

.product-shadow {
    position: absolute;
    z-index: 1;
    width: min(35vw, 672px);
    height: min(7vw, 134px);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.17);
    filter: blur(35px);
    pointer-events: none;
}



.hero {
    padding-top: var(--header-height);
}

.hero-content {
    padding-top: 0rem;
}

.hero-copy {
    width: 1000px;
    max-width: 68%;
    margin-bottom: 8rem !important;
}

.hero .eyebrow {
    margin-bottom: 18px;
}

.hero h1 {
    margin: 0;
    font-size: 3.725rem !important;
    line-height: 1.18;
}

.hero .section-copy {
    margin-top: 19px;
}

.hero .button {
    margin-top: 42px;
}

.partners {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 1%;
    left: 0;
}

.partners-title {
    margin: 0 auto 50px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.logo-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    gap: 70px;
    text-align: center;
    font-size: 19px;
    font-weight: 600;
}

.logo-strip span {
    padding: 0 4rem 0rem 4rem !important;
}

.powerhouse .blob-image,
.features .blob-image {
    top: 21%;
    left: -12%;
    width: 58%;
    height: 100%;
}

.powerhouse .product-shadow,
.features .product-shadow {
    bottom: 10%;
    left: -5%;
}

.powerhouse-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.powerhouse-card {
    width: 876px;
    max-width: 57%;
    backdrop-filter: blur(6px);
    translate: none;
    rotate: none;
    scale: none;
    transform: translate(0px, 0px);
    opacity: 1;
}

.powerhouse-card .label {
    margin-bottom: 10px;
    color: var(--purple);
    font-size: 16px;
}

.powerhouse-card .section-title {
    margin-bottom: 20px;
}

.powerhouse-details {
    margin-top: 5rem;
}

.powerhouse-details h3 {
    margin: 0;
    font-size: 30px;
}

.benefits {
    margin: 27px 0 25px;
    padding: 0;
    list-style: none;
}

.benefits li {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 20px;
}

.check {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--green);
}

.text-link {
    color: var(--purple);
    font-size: 22px;
    font-weight: 600;
}
.palm-content,
.integration-content,
.final-content {
    display: flex;
    align-items: center;
}

.palm-copy {
    width: 699px;
    max-width: 46%;
}

.palm-copy .large-title {
    margin-bottom: 32px;
}

.palm-copy .section-copy {
    margin-bottom: 42px;
}

.payments-heading,
.workflow-heading {
    z-index: 5;
    top: 10.3%;
    left: 50%;
    width: min(1416px, calc(100% - 80px));
    text-align: center;
    transform: translateX(-50%);
}

.payments-heading .section-copy,
.workflow-heading .section-copy {
    margin-top: 20px;
}

.payment-callout {
    position: absolute;
    z-index: 5;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 2.5rem 2.5rem;
    border: 1px solid var(--purple);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px);
    font-size: 1.625rem !important;
    line-height: 1.46;
}

.payment-callout.left {
    top: 33.23%;
    left: max(32px, calc((100vw - 1608px) / 2));
    width: 640px;
}

.payment-callout.right-top {
    top: 33.23%;
    right: 13%;
    width: 573px;
}

.payment-callout.right-bottom {
    top: 60.46%;
    right: 11%;
    width: 573px;
}

.wallets {
    position: absolute;
    z-index: 5;
    top: 53.23%;
    left: max(32px, calc((100vw - 1608px) / 2));
    width: 660px;
}

.wallets-label {
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 20px;
}

.wallet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.wallet {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: 14px;
    background: var(--surface);
    max-width: 100%;
    height: 10rem;
}

.wallet.wide {
    grid-column: 1 / -1;
}

.wallet-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #175bc1;
    font-size: 13px;
}

.ecosystem-copy {
    position: absolute;
    z-index: 5;
    top: 34.36%;
    left: max(32px, calc((100vw - 1540px) / 2));
    width: 797px;
}

.info-card {
    min-height: 175px;
    display: flex;
    align-items: center;
    padding: 38px 46px;
    border-radius: 30px;
    background: rgba(248, 248, 248, 0.98);
    font-size: 1.625rem;
    line-height: 1.4;
    backdrop-filter: blur(6px);
}

.module-cloud {
    position: absolute;
    z-index: 5;
    top: 34.36%;
    right: max(32px, calc((100vw - 1540px) / 2));
    width: 700px;
    height: 630px;
}

.module-chip {
    position: absolute;
    width: 210px;
    height: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 1px solid var(--purple);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(6px);
    font-size: 22px;
    font-weight: 500;
}

.module-icon {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border: 3px solid var(--green);
    border-radius: 13px;
    color: var(--green);
    font-size: 26px;
}

.module-chip.sales {
    top: 0;
    left: 62px;
}

.module-chip.inventory {
    top: 291px;
    left: 11px;
}

.module-chip.labor {
    top: 200px;
    right: 0;
}

.module-chip.loyalty {
    right: 63px;
    bottom: 0;
}

/* .integration-list {
    width: 797px;
    max-width: 52%;
    display: grid;
    gap: 40px;
} */

.status-icons {
    position: absolute;
    z-index: 5;
    top: 30%;
    right: 16%;
}

.status-icon {
    width: 100px;
    height: 100px;
    display: grid;
    padding: 1.8rem;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background-color: #8cc5419e;
    backdrop-filter: blur(6px);
    font-size: 62px;
    box-shadow: 0 22px 45px rgba(140, 197, 65, 0.22);
}
.wireless .reveal .status-icon {
    background: #8cc541ba;
    backdrop-filter: blur(6px);
}

.status-icon + .status-icon {
    margin: 204px 0 0 327px;
}
.hardware-notes {
    position: absolute;
    z-index: 5;
    top: 24%;
    right: 8%;
    width: 560px;
    height: 580px;
}

.hardware-note {
  position: absolute;
  font-family: "DM Serif Text", serif;
  font-size: 24px;
  font-style: italic;
}

.note-content {
  position: absolute;
  display: flex;
  align-items: center;
}

.hardware-notes .note-scanner .note-content {
    flex-wrap: wrap;
}

.hw-line-svg {
  position: absolute;
  overflow: visible;
}

.hw-dot {
  position: absolute;
  width: 30px;
  height: 30px;
  background: rgba(140, 197, 65, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hw-dot::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
}

.note-terminal {
  top: 0;
  right: 40%;
}

.note-terminal .note-content {
  right: 260px;
  top: -16px;
}

.note-terminal .hw-line-svg {
    right: -120px;
    top: 19px;
    width: 242px;
    height: 143px;
    z-index: -1;
}

.note-terminal .hw-dot {
    left: calc(100% + 100px);
    top: 155px;
}

.note-scanner {
  top: 210px;
  right: 40%;
}

.note-scanner .note-content {
  right: 345px;
  top: -16px;
}

.note-scanner .hw-line-svg {
    top: 42px;
    width: 525px;
    height: 5px;
    right: -176px;
}

.note-scanner .hw-dot {
    left: calc(100% + 120px);
    top: 28px;
}

.note-printer {
  bottom: -10%;
  right: 40%;
}

.note-printer .note-content {
    right: 210px;
    bottom: 8px;
}

.note-printer .hw-line-svg {
    right: -120px;
    bottom: 45px;
    width: 242px;
    height: 143px;
}

.note-printer .hw-dot {
    left: calc(100% + 100px);
    top: -210px;
}

.hardware-note .note-content img {
    width: 100%;
}

.note-terminal .note-content img,
.note-printer .note-content img {
    margin-right: 1rem;
}
.features-content {
    display: flex;
    justify-content: flex-end;
    padding-top: 4.48%;
}

.feature-panel {
    width: 793px;
    max-width: 53%;
    padding-top: 2rem;
}

.feature-panel .section-title {
    margin-bottom: 2rem;
}

.feature-list {
    display: grid;
    gap: 20px;
}

.feature-item {
    overflow: hidden;
    border-radius: 22px;
    background: var(--surface);
    padding: 1.5rem 1.5rem;
}

.feature-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: transparent;
    text-align: left;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 0.5rem;
}

.feature-answer-inner {
    font-size: 1.25rem;
}

.feature-answer,
.faq-answer {
    height: 0;
    overflow: hidden;
    color: var(--body);
}

.feature-plus {
    font-size: 32px;
    transition: transform 260ms ease;
}

.feature-item.open .feature-plus {
    transform: rotate(45deg);
}

.scale-copy {
    position: absolute;
    z-index: 5;
    width: 424px;
    margin: 0;
    font-size: 30px;
    line-height: 1.6;
}

.scale-copy.left {
    top: 20.69%;
    left: max(32px, calc((100vw - 1540px) / 2));
}

.scale-copy.right {
    top: 61.69%;
    right: max(32px, calc((100vw - 1540px) / 2));
}

.store {
    position: absolute;
    z-index: 5;
    width: 120px;
    height: 95px;
    border: 3px solid var(--ink);
    border-radius: 10px;
    background: #fff;
    box-shadow: inset 0 25px #f35f54;
}

.store.one {
    top: 11%;
    left: 43%;
}

.store.two {
    top: 38%;
    left: 25%;
}

.store.three {
    top: 34%;
    right: 24%;
}

.store.four {
    right: 18%;
    bottom: 10%;
}

.final-product .blob-image {
    right: -5%;
    bottom: -13%;
    width: min(52vw, 998px);
}

.final-copy {
    width: 812px;
    max-width: 53%;
    margin-left: 36px;
}

.final-copy .large-title {
    margin-bottom: 44px;
}

.final-copy .section-copy {
    font-size: 30px;
}

.final-copy .button {
    margin-top: 44px;
}

.faq-content {
    padding-top: 7.55%;
}

.faq-heading {
    margin: 0 auto 82px;
    text-align: center;
}

.faq-list {
    width: 1420px;
    max-width: calc(100% - 120px);
    margin-inline: auto;
    border-bottom: 1px solid var(--line);
}

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

.faq-question {
    width: 100%;
    min-height: 131px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 34px 0;
    background: transparent;
    text-align: left;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
}

.faq-item.open .faq-question {
    color: var(--purple);
}

.faq-answer {
    font-size: 24px;
    line-height: 1.42;
}

.faq-answer-inner {
    padding: 0 80px 42px 0;
}

.footer {
    background: var(--surface);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.55fr repeat(4, 1fr);
    gap: 70px;
    padding-top: 122px;
}

.footer-tagline {
    font-size: 30px;
    font-weight: 600;
}

.footer-column h3 {
    font-size: 24px;
}

.footer-column a {
    display: block;
    margin-bottom: 17px;
}

@media (max-width: 900px) {
    :root {
    --header-height: 64px;
    }

    .container,
    .nav {
    width: calc(100% - 40px);
    }

    .nav-links,
    .nav-actions {
    display: none;
    }

    .menu-button {
    display: grid;
    place-items: center;
    }

    .section-title {
    font-size: clamp(30px, 8vw, 44px);
    }

    .large-title {
    font-size: clamp(36px, 10vw, 54px);
    }

    .section-copy {
    font-size: 15px;
    }

    .button {
    width: auto;
    min-width: 190px;
    min-height: 54px;
    font-size: 15px;
    }

    .hero-content {
    padding-top: 72px;
    }

    .hero-copy,
    .palm-copy,
    .feature-panel,
    .final-copy {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    }

    .partners {
    bottom: 30px;
    }

    .logo-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    font-size: 10px;
    }

    .powerhouse-card {
    width: 100%;
    max-width: 100%;
    padding: 0rem 0rem;
    }

    .powerhouse-details {
    margin-top: 24px;
    }

    .benefits li {
    gap: 12px;
    font-size: 13px;
    }

    .check {
    width: 27px;
    height: 27px;
    }

    .payments-heading,
    .workflow-heading {
    top: 40px;
    width: calc(100% - 40px);
    }

    .payment-callout {
    width: calc(46% - 10px) !important;
    min-height: 112px;
    padding: 15px;
    font-size: 11px;
    }

    .payment-callout.left {
    top: 34%;
    left: 20px;
    }

    .payment-callout.right-top {
    top: 34%;
    right: 20px;
    }

    .payment-callout.right-bottom {
    top: 68%;
    right: 20px;
    }

    .wallets {
    top: 62%;
    left: 20px;
    width: 44%;
    }

    .wallet-grid {
    gap: 8px;
    }

    .wallet {
    min-height: 52px;
    font-size: 9px;
    }

    .ecosystem-copy {
    top: 35%;
    left: 20px;
    width: 45%;
    }

    .info-card {
    min-height: 94px;
    padding: 18px;
    font-size: 12px;
    }

    .module-cloud {
    top: 35%;
    right: 8px;
    width: 49%;
    height: 52%;
    }

    .module-chip {
    width: 84px;
    height: 84px;
    font-size: 10px;
    }

    .module-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
    }

    .integration-list {
    width: 49%;
    gap: 12px;
    }

    .status-icon {
    width: 68px;
    height: 68px;
    font-size: 24px;
    }

    .feature-panel .section-title {
    width: 72%;
    margin-bottom: 300px;
    }

    .feature-list {
    gap: 10px;
    }

    .feature-button {
    min-height: 58px;
    padding: 15px 18px;
    font-size: 12px;
    }

    .scale-copy {
    width: 35vw;
    font-size: 14px;
    }

    .final-copy .section-copy {
    width: 86%;
    font-size: 16px;
    }

    .faq-content {
    padding-top: 54px;
    }

    .faq-heading {
    margin-bottom: 45px;
    }

    .faq-list {
    width: 100%;
    max-width: 100%;
    }

    .faq-question {
    min-height: 80px;
    padding: 22px 0;
    font-size: 14px;
    }

    .faq-answer {
    font-size: 13px;
    }

    .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-top: 55px;
    }

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

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

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

/* =========================================
   Powerhouse Section (Figma Match + Animation)
   ========================================= */

.powerhouse-info-wrapper {
  position: relative;
  filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.05));
  margin-bottom: 30px;
  margin-top: 0rem !important;
  z-index: 2; /* Keeps text above line */
}

.powerhouse-info-box {
  background: #f0f0f0;
  padding: 35px 40px;
  /* Exact angled corners from Figma */
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 20px 100%, 0 calc(100% - 20px), 0 0px);
}

.powerhouse-info-box .label {
  color: #a4288f;
  font-size: 1.5rem !important;
  font-weight: 600;
  margin-bottom: 8px;
}

.powerhouse-info-box h2 {
  margin: 0 0 15px 0;
}

.powerhouse-info-box .section-copy {
  font-size: 1.5rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* --- SVG Pointer Layout --- */
.powerhouse-pointer-wrapper {
    position: relative;
    top: 24.5rem;
    left: -45%;
    transform: translateY(-50%);
    width: 60%;
    height: 66px;
    z-index: 10;
    pointer-events: none;
}

.powerhouse-pointer-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.pointer-dot {
  opacity: 0;
  transform-origin: 10px 40px; /* Centered precisely on the circle */
  transform: scale(0);
}

.pointer-line {
  /* Hides line initially */
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
}

/* --- Details Section Styles --- */
.powerhouse-details h3 {
  font-size: 1.875rem !important;
  margin-bottom: 8px;
  color: #222;
}

.details-subtitle {
  font-size: 1.5rem !important;
  color: #666;
  margin-bottom: 20px;
}

.benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem !important;
  color: #333;
  font-weight: 600;
  margin-bottom: 2rem;
}

.benefits li .check-icon {
  flex-shrink: 0;
  margin-top: 1px;
}

.powerhouse-details .text-link {
  color: #a4288f;
  font-weight: 600;
  text-decoration: none;
}

/* Hide line and corners on mobile */
@media (max-width: 900px) {
  .powerhouse-pointer-wrapper {
    display: none;
  }
  .powerhouse-info-box {
    clip-path: none;
    border-radius: 12px;
    padding: 25px;
  }
}

.powerhouse-pointer-wrapper {
  position: relative;
  z-index: 99 !important;
}

.pointer-dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 33px;
  height: 33px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.pointer-dot::after {
  content: "";
  width: 21px;
  height: 21px;
  background: #fff;
  border-radius: 50%;
}

.pointer-line {
  position: absolute;
  left: 16.5px;
  top: 15px;
  height: 32px;
  width: 0;
  overflow: hidden;
  z-index: 1;
}

.pointer-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 928px;
  height: 32px;
  background: linear-gradient(90deg, #92278F 0%, rgba(146, 39, 143, 0) 100%);
  clip-path: polygon(0 0, 159px 0, 189px 29px, 928px 29px, 928px 32px, 189px 32px, 159px 3px, 0 3px);
}

#palm {
  position: relative;
  overflow: hidden;
}

.ring-system {
  position: absolute;
  top: 6%;
  right: 0%;
  transform: translate(-50%, -50%);
  width: 950px;
  height: 950px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transform: scale(0.8);
}

.ring-system .ring {
  position: absolute;
  transform-origin: center;
}

.palm-content {
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .ring-system {
    left: 50%;
    top: 55%;
  }
}

.payments .section-title {
    font-size: 2.5rem !important;
}

.payments .payments-heading p {
    font-size: 1.5rem !important;
}


/* .hardware .hardware-notes .hardware-note {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.hardware .hardware-notes .hardware-note:nth-child(2) {
    gap: 20px !important;
    justify-content: center;
}

.hardware .hardware-notes .hardware-note img {
    width: 25%;
    margin-right: 1rem !important;
}

.hardware .hardware-notes .hardware-note p {
    width: 60%;
    margin: 0 !important;
} */

#scale {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scale-bg-blob {
  position: absolute;
  z-index: 0;
  opacity: 1;
}

.scale-bg-blob img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.scale-blob-left {
  width: 700px;
  height: 700px;
  bottom: -250px;
  left: -250px;
}

.scale-blob-right {
  width: 800px;
  height: 800px;
  top: -300px;
  right: -200px;
}

.scale-center-stage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  z-index: 1;
}

.scale-center-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: #F8F8F8;
  border-radius: 50%;
}

.scale-center-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.store-wrapper {
  position: absolute;
  width: 25%;
  z-index: 3;
}

.store-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.store-top {
  top: -95px;
  left: 50%;
  margin-left: -12.5%;
  width: 30% !important;
}

.store-left {
  top: 50%;
  left: -70px;
  margin-top: -12.5%;
}

.store-right {
  top: 50%;
  right: -70px;
  margin-top: -12.5%;
}

.scale-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24%;
  z-index: 4;
  font-size: 1.875rem;
  line-height: 1.5;
  color: #333;
}

.scale-text p {
  margin: 0;
}

.scale-text strong {
  font-weight: 700;
  color: #000;
}

.text-left {
  left: 5%;
  top: 35%;
}

.text-right {
  right: 5%;
  top: 80%;
}

@media (max-width: 900px) {
  .scale-center-stage {
    width: 350px;
    height: 350px;
  }

  .scale-center-ring {
    width: 350px;
    height: 350px;
  }

  .scale-center-ring circle {
    cx: 175;
    cy: 175;
    r: 174;
  }

  .store-wrapper {
    width: 80px;
  }

  .store-top {
    top: -25px;
    margin-left: -40px;
  }

  .store-left {
    left: -20px;
    margin-top: -40px;
  }

  .store-right {
    right: -20px;
    margin-top: -40px;
  }

  .scale-text {
    width: 40vw;
    font-size: 14px;
  }

  .text-left {
    left: 20px;
  }

  .text-right {
    right: 20px;
  }
}

.final-product {
  position: relative;
}

.both_blobs {
  position: absolute;
  right: -5%;
  bottom: -13%;
  width: 35%;
  z-index: 0;
}

.back_blob {
  position: relative;
  width: 100%;
  transform-origin: center center;
}

.front_blob {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 100%;
  transform-origin: center center;
}

.back_blob img,
.front_blob img {
  width: 100%;
  height: auto;
  display: block;
}

.final-content {
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .both_blobs {
    right: -10%;
    bottom: -5%;
    width: 80vw;
  }
}

@media screen and (max-width: 991px) {
    #product-stage canvas {
        display: none !important;
    }
    html {
        font-size: 75% !important;
    }
    .container {
        width: 100%;
        padding: 0 15px !important;
    }

    .hero h1 {
        font-size: 2.725rem !important;
    }
    .hero {
        padding-top: 7rem !important;
    }
    .hero p
    .partners {
        bottom: -6rem !important;
    }
    .logo-strip span {
        padding: 0 2rem 0rem 2rem !important;
    }
}

/* Add these new classes for the wrapper logic */
.workflow-group {
    position: relative;
    z-index: 20;
}

.sticky-heading-wrapper {
    position: sticky;
    top: 10.3vh;
    height: 0;
    z-index: 50;
    overflow: visible;
    pointer-events: none;
}

/* Update the workflow heading inside the wrapper */
.workflow-group .workflow-heading {
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: min(1416px, calc(100% - 80px));
    text-align: center;
    pointer-events: auto;
}






@media screen and (max-width: 1600px) {
    .container {
        padding: 0 80px;
    }
    html {
        font-size: 80% !important;
    }
}


@media screen and (max-width: 1536px) {
    .container {
        padding: 0 70px;
    }
    html {
        font-size: 80% !important;
    }
}


@media screen and (max-width: 1366px) {
    .container {
        padding: 0 60px;
    }
    html {
        font-size: 70% !important;
    }
}


@media screen and (max-width: 1180px) and (orientation: landscape) {
    .container {
        padding: 0 50px;
    }
    html {
        font-size: 80% !important;
    }
    .payment-callout {
        padding: 1.5rem 1.5rem !important;
    }
    .payment-callout.left {
        width: 30%;
    }
    .payment-callout.right-top {
        width: 30%;
        right: 6%;
    }
    .payment-callout.right-bottom {
        width: 30%;
        right: 4%;
    }
    .wallets {
        width: 30%;
    }
    .wallet {
        padding: 2rem;
    }
    .payments-heading {
        position: relative;
        margin-top: 1rem;
    }
    .info-card {
        padding: 3rem 2rem;
        border-radius: 18px;
        min-height: auto;
    }
    .ecosystem-copy {
        width: 40%;
    }
    .module-chip {
        height: 170px;
        width: 170px;
        border-radius: 18px;
    }
    .module-chip.sales {
        left: 30%;
    }
    .module-chip.inventory {
        left: 17%;
        top: 40%;
    }
    .module-chip.labor {
        top: 18%;
    }
    .module-chip.loyalty {
        bottom: 20%;
    }
    .status-icons {
        right: 12%;
    }
    .status-icon + .status-icon {
        margin: 204px 0 0 230px;
    }
    .hardware-notes {
        width: 38%;
    }
    .note-terminal .hw-line-svg {
        width: 200px;
        height: 150px;
    }
    .pointer-dot {
        width: 25px;
        height: 25px;
    }
}


@media screen and (max-width: 1138px) and (orientation: landscape) {
    .container {
        padding: 0 45px;
    }
    html {
        font-size: 80% !important;
    }
}


@media screen and (max-width: 820px) and (orientation: portrait) {
    .container {
        padding: 0 40px;
    }
    html {
        font-size: 80% !important;
    }
}


@media screen and (max-width: 712px) and (orientation: portrait) {
    .container {
        padding: 0 35px;
    }
    html {
        font-size: 80% !important;
    }
}


@media screen and (max-width: 900px) and (orientation: landscape) {
    .container {
        padding: 0 30px;
    }
    html {
        font-size: 80% !important;
    }
}


@media screen and (max-width: 768px) and (orientation: portrait) {
    .container {
        padding: 0 20px;
    }
    html {
        font-size: 80% !important;
    }
  .partners_3d .partners-title{gap: 9px}
  .partners_3d .partners-title::before, .partners_3d .partners-title::after{width: 30px}
  .partners_3d{position: relative; z-index: 8; background-color: #fff; padding: 50px 0}
  .partners_3d .partners-row img{height: 36px;}
}



.workflows-combo {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  height: 100vh;
}

.workflows-combo .workflow-heading {
  position: absolute;
  top: 10.3%;
  left: 50%;
  transform: translateX(-50%);
  width: min(1416px, calc(100% - 80px));
  text-align: center;
  z-index: 10;
}

.workflows-combo .integration-content {
  position: absolute;
  top: 25%;
  left: max(32px, calc((100vw - 1540px) / 2));
  width: 797px;
  height: 630px;
  z-index: 5;
}

.workflows-combo .integration-list {
  position: relative;
  width: 100%;
  height: 100%;
}


.step-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
}


.step-card.step-0 { top: 0px; }
.step-card.step-1 { top: 195px; }
.step-card.step-2 { top: 390px; }

.workflow-visuals {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.step-visual {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.step-visual.step-0 {
  top: 34%;
  right: max(32px, calc((100vw - 1540px) / 2));
  width: 700px;
  height: 630px;
}

.step-visual.step-1 {
  top: 30%;
  right: 16%;
}

.step-visual.step-2 {
  top: 24%;
  right: 8%;
  width: 560px;
  height: 580px;
}


.payments-heading {
    transform: none !important;
    margin-top: 7rem;
    width: 100%;
}


.partners_3d .partners-title {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  font-size: 1.5rem !important;
  font-weight: 600;
  text-align: center;
  color: #444;
}

.partners_3d .partners-title::before,
.partners_3d .partners-title::after {
  content: "";
  height: 2px;
  width: 157px;
  flex: none;
  opacity: 0.4;
}

.partners_3d .partners-title::before{background: transparent linear-gradient(90deg, #fff 0%, gray 100%) 0% 0% no-repeat padding-box;}
.partners_3d .partners-title::after{background: transparent linear-gradient(270deg, #fff 0%, gray 100%) 0% 0% no-repeat padding-box;}
.partners_3d .partners-row {
  margin-top: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.partners_3d .partners-row img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 980px) {
  .partners_3d .partners-row {
    justify-content: center;
  }
  .partners_3d .partners-title::before,
  .partners_3d .partners-title::after {
    width: 60px;
  }
}


.hero .eyebrow {
  color: #66a80f !important;
}

.hero p {
  color: var(--muted)
}


.hero-bg-canvas {
  position: absolute;
  top: 0;
  left: -5%;
  width: calc(100% + 20%);
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
  transform: rotate(15deg);
}
.hero-bg-canvas canvas {
  display: block;
  width: 100%;
  height: 100%;
}
