:root {
  --plum: #92278f;
  --plum-soft: #c837ab;
  --ink: #000000;
  --ink-soft: #222222;
  --text-muted: #333333;
  --card-grey: #f7f6f5;
  --footer-grey: #f7f7f7;
  --dark: #17131a;
  --radius-card: 20px;
  --radius-tile: 30px;
  --radius-pill: 40px;
  --font-ui: "Inter", sans-serif;
  --font-serif: "DM Serif Display", serif
  /* --content-w: 1700px; */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ui);
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 24px;
}

.custom_container {
  max-width: 1920px;
  margin: 0 auto;
}

.serif {
  font-family: var(--font-serif);
  font-weight: normal;
  font-style: italic;
}

model-viewer {
  --poster-color: transparent;
  background: transparent;
  width: 100%;
  height: 100%;
  outline: none;
}

model-viewer#printer3d::part(default-progress-bar) {
  display: none;
}

model-viewer#printer3d::part(default-poster) {
  display: none;
}

#model-stage {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 6;
  width: var(--stage-size, 800px);
  height: var(--stage-size, 800px);
  pointer-events: none;
  will-change: transform;
  transform-origin: center center;
}

.model-anchor {
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 1.2rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  border: none;
}

.btn:focus-visible {
  outline: none;
  outline-offset: none;
}

.btn-plum {
  background: var(--plum);
  color: #fff;
  padding: 1rem 2rem;
}

.btn-plum:hover {
  box-shadow: 0 12px 28px rgba(146, 39, 143, 0.35);
}

.btn-plum.small {
  height: 57px;
  padding: 0 36px;
  border-radius: 29px;
}

.btn-ghost {
  background: #fff;
  color: var(--ink-soft);
  border: 1px solid var(--ink-soft);
  height: 57px;
  padding: 0 36px;
  border-radius: 29px;
}

.btn-ghost:hover {
  background: var(--ink-soft);
  color: #fff;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 1;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes actualDrop {
  0% {
    opacity: 0;
    transform: translateY(-250px) scaleY(1.05);
  }
  60% {
    opacity: 1;
    transform: translateY(15px) scaleY(0.95);
  }
  80% {
    transform: translateY(-5px) scaleY(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

@keyframes orbit-around {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-215%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateY(-215%) rotate(-360deg);
  }
}

.hero_3d {
  position: relative;
  padding: 80px 0 40px;
  overflow: hidden;
  padding-top: 0 !important;
  background-color: #ffffff;
}

.hero-bg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.hero-bg-canvas canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero_3d .container {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
  padding-left: 14rem;
}

.hero_3d h1 {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.5;
  
}


.hero_3d .lede {
  margin-top: 32px;
  max-width: 760px;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.35;
}

.hero_3d .btn {
  margin-top: 34px;
}

.hero_3d .hero-model {
  position: relative;
  height: clamp(420px, 46vw, 650px);
  opacity: 0;
  transform: translateX(250px);
  animation: slideInRight 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero_3d .hero-model model-viewer {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  --poster-color: transparent;
}

.hero_3d .blob-a {
  width: 560px;
  height: 560px;
  right: 6%;
  top: 14%;
  background: radial-gradient(circle, rgba(146, 39, 143, 0.3), rgba(146, 39, 143, 0) 70%);
}

.hero_3d .blob-b {
  width: 480px;
  height: 480px;
  right: -8%;
  top: 34%;
  background: radial-gradient(circle, rgba(255, 153, 74, 0.22), rgba(255, 153, 74, 0) 70%);
}

.hero_3d .model-anchor {
  position: relative;
  z-index: 2;
  height: 100%;
}

.partners_3d {
  padding: 56px 0 24px;
}

.partners_3d .partners-title {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  font-size: 24px;
  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: 60px;
  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;
}

.features_3d {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
  perspective: 1200px;
}

.features_3d .sec-features {
  display: flex;
  align-items: center;
}

.features_3d .blob-c {
  width: 700px;
  height: 700px;
  right: 0;
  top: 0;
  background: radial-gradient(circle, rgba(146, 39, 143, 0.2), rgba(146, 39, 143, 0) 70%);
}

.features_3d .features-model {
  width: 44%;
  height: clamp(380px, 40vw, 750px);
  margin-left: -11%;
  position: relative;
}

.features_3d .features-model::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: -30%;
  bottom: 0;
  background-color: #8cc543;
  border-radius: 50%;
  transform: translateX(-150%);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.8s ease;
}

.features_3d.in-view .features-model::before {
  transform: translateX(0);
  opacity: 1;
}

.features_3d .feature-grid {
  width: 54%;
  position: relative;
  margin-left: 2rem;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  transform-style: preserve-3d;
  will-change: transform;
}

.features_3d .feature-grid::before,
.features_3d .feature-grid::after {
  content: "";
  position: absolute;
  width: 681px;
  height: 681px;
  border-radius: 50%;
  opacity: 0;
  z-index: -1;
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 1s ease;
}

.features_3d .feature-grid::before {
  top: -40%;
  left: 3%;
  background: #FFD6FE;
  transform: translateY(-150px);
}

.features_3d .feature-grid::after {
  bottom: -40%;
  right: 3%;
  background: #92278F;
  transform: translateY(150px);
}

.features_3d.in-view .feature-grid::before,
.features_3d.in-view .feature-grid::after {
  transform: translateY(0);
  opacity: 1;
}

.features_3d .feature-grid:hover .feature-card {
  transform: translateY(0) scaleY(1) translateZ(60px) !important;
  box-shadow: 0 25px 45px rgba(146, 39, 143, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.8) !important;
}

.features_3d .feature-card {
  background: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noise)" opacity="0.1"/%3E%3C/svg%3E'), linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  border-left: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-card, 20px);
  min-height: 214px;
  padding: 34px 36px;
  opacity: 0;
  transform: translateY(-200px);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 8px 32px 0 rgba(146, 39, 143, 0.1);
}

.features_3d.in-view .feature-card {
  animation: actualDrop 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  background-color: rgba(255, 255, 255, 0.34);
}

.features_3d.in-view .feature-card:nth-child(2) {
  animation-delay: 0.1s;
}

.features_3d.in-view .feature-card:nth-child(3) {
  animation-delay: 0.2s;
}

.features_3d.in-view .feature-card:nth-child(4) {
  animation-delay: 0.3s;
}

.features_3d.in-view .feature-card:nth-child(5) {
  animation-delay: 0.4s;
}

.features_3d .feature-card h3 {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.15;
  max-width: 300px;
  margin: 0;
  color: #111;
}

.features_3d .feature-card p {
  margin-top: 22px;
  font-size: 1.25rem;
  line-height: 26px;
  max-width: 360px;
  color: #333;
}

.features_3d .model-anchor {
  position: relative;
  z-index: 2;
  height: 100%;
}

.why_3d {
  position: relative;
  margin-top: 40px;
  color: #fff;
  background-image: url(../images/subtracted_bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 163px 0 90px 0;
  overflow: hidden;
}

.why_3d .container {
  display: grid;
  grid-template-columns: minmax(0, 563px) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.why_3d .why-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why_3d .why-card {
  background: var(--card-grey);
  color: var(--ink);
  border-radius: var(--radius-tile);
  padding: 1.5rem 1.5rem;
  opacity: 0;
  transform: translateX(-150px);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.8s ease;
}

.why_3d.in-view .why-card {
  opacity: 1;
  transform: translateX(0);
}

.why_3d.in-view .why-card:nth-child(1) {
  transition-delay: 0.2s;
}

.why_3d.in-view .why-card:nth-child(2) {
  transition-delay: 0.4s;
}

.why_3d.in-view .why-card:nth-child(3) {
  transition-delay: 0.6s;
}

.why_3d .why-card h3 {
  font-size: 1.875rem;
  font-weight: 600;
}

.why_3d .why-card > p {
  margin-top: 16px;
  font-size: 1.375rem;
  line-height: 28px;
}

.why_3d .why-check {
  margin-top: 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.375rem;
  line-height: 28px;
}

.why_3d .why-check svg {
  flex: none;
  width: 27px;
  height: 27px;
  margin-top: 1px;
}

.why_3d .why-copy {
  position: relative;
}

.why_3d .why-copy .floating_heading {
  position: absolute;
  left: 22%;
  bottom: 35%;
  z-index: 99;
  opacity: 0;
  transform: translateX(150px);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.8s ease;
}

.why_3d.in-view .why-copy .floating_heading {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}

.why_3d .why-copy h2 {
  font-size: clamp(28px, 2.6vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  max-width: 668px;
}

.why_3d .why-copy .lede {
  margin-top: 56px;
  font-size: clamp(18px, 1.3vw, 24px);
  line-height: 1.4;
  max-width: 637px;
  font-weight: 400;
}

.why_3d .why-model {
  height: clamp(340px, 42vw, 750px);
  margin-top: 8px;
}

.why_3d .model-anchor {
  position: relative;
  z-index: 2;
  height: 100%;
}

.how_3d {
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
  padding: 100px 0;
}

.how_3d h2 {
  text-align: center;
  font-size: clamp(42px, 3.6vw, 68px);
  font-weight: 600;
  position: relative;
  z-index: 2;
  clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  transform: translateY(40px);
}

.how_3d .how_it_works_container {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.how_3d .step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 70px 0;
  position: relative;
}

.how_3d .step.flip .step-copy {
  align-items: flex-start;
}

.how_3d .step-svg-wrapper,
.how_3d .step-svg-anim-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  min-width: 1920px;
  max-width: 1920px;
  z-index: -1;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.how_3d .step-svg-wrapper svg,
.how_3d .step-svg-anim-wrapper svg {
  width: 100%;
  max-width: 1920px;
  height: auto;
}

.how_3d .step-copy,
.how_3d .step-visual {
  position: relative;
  z-index: 2;
}

.how_3d .step-copy .step-icon {
  width: 120px;
  height: auto;
  color: var(--plum);
}

.how_3d .step-copy h3 {
  margin-top: 28px;
  font-size: clamp(32px, 2.4vw, 46px);
  font-weight: 600;
  max-width: 594px;
  clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  transform: translateY(40px);
}

.how_3d .step-copy p {
  margin-top: 24px;
  font-size: clamp(22px, 1.7vw, 28px);
  line-height: 1.45;
  max-width: 484px;
  clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  transform: translateY(40px);
}

.how_3d .step-copy svg {
  clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  transform: translateY(40px);
}

.how_3d .scene-cafe {
  position: relative;
}

.how_3d .scene-cafe::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 95%);
}

.how_3d .scene-cafe .wall {
  width: 100%;
  border-radius: 16px;
}

.how_3d .scene-cafe .model-anchor {
  position: absolute;
  left: 11%;
  top: 44%;
  width: 28%;
  height: 35%;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.48));
}

.how_3d .scene-big-model {
  height: clamp(420px, 44vw, 750px);
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.35));
}

.how_3d .scene-photo img {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
}

.how_3d .scene-stores {
  position: relative;
  padding: 40px 0;
}

.how_3d .stage-circle {
  position: relative;
  width: min(590px, 90%);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  border: 4px dashed #D6DAE0;
}

.how_3d .stage-circle::before {
  content: '';
  display: block;
  position: absolute;
  width: 66%;
  height: 66%;
  border-radius: 50%;
  background: #F7F6F5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.how_3d .stage-circle .model-anchor {
  position: absolute;
  inset: 8% -6% 18% -6%;
  width: auto;
  height: auto;
  top: 18%;
}

.how_3d .storefront {
  position: absolute;
  width: 26%;
  top: 50%;
  left: 50%;
  z-index: 3;
  animation: orbit-around 24s linear infinite;
}

.how_3d .stage-circle:hover .storefront {
  animation-play-state: paused;
}

.how_3d .storefront.sf-top {
  animation-delay: 0s;
}

.how_3d .storefront.sf-right {
  animation-delay: -6s;
}

.how_3d .storefront.sf-bottom {
  animation-delay: -12s;
}

.how_3d .storefront.sf-left {
  animation-delay: -18s;
}

.how_3d .scene-print {
  position: relative;
  height: clamp(420px, 44vw, 720px);
}

.how_3d .scene-print .model-anchor {
  position: relative;
  z-index: 2;
  height: 100%;
}

.how_3d .receipt-window,
.how_3d #receipt-window {
  position: absolute;
  left: 50%;
  bottom: 56%;
  width: min(200px, 26%);
  height: 0;
  transform: translateX(-50%);
  overflow: hidden;
  z-index: 1;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.22));
  pointer-events: none;
  transition: opacity 0.3s ease !important;
}

.how_3d .receipt-paper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 6px 6px 0 0;
  padding: 16px 14px 22px;
  font-family: var(--font-ui);
  color: #1c1c1c;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 7px), 94% 100%, 88% calc(100% - 7px), 82% 100%, 76% calc(100% - 7px), 70% 100%, 64% calc(100% - 7px), 58% 100%, 52% calc(100% - 7px), 46% 100%, 40% calc(100% - 7px), 34% 100%, 28% calc(100% - 7px), 22% 100%, 16% calc(100% - 7px), 10% 100%, 4% calc(100% - 7px), 0 100%);
}

.how_3d .r-brand {
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 4px;
  color: var(--plum);
}

.how_3d .r-sub {
  text-align: center;
  font-size: 10px;
  color: #777;
  margin-top: 4px;
}

.how_3d .r-rule {
  border-top: 1px dashed #bbb;
  margin: 10px 0;
}

.how_3d .r-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  line-height: 1.9;
}

.how_3d .r-total {
  font-weight: 600;
  font-size: 13px;
}

.how_3d .r-barcode {
  height: 26px;
  margin: 12px 4px 6px;
  background: repeating-linear-gradient(90deg, #1c1c1c 0 2px, transparent 2px 4px, #1c1c1c 4px 7px, transparent 7px 9px, #1c1c1c 9px 10px, transparent 10px 13px);
}

.how_3d .r-thanks {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
}

.how_3d #sec-step1 {
  display: flex;
  align-items: center;
}

.how_3d #sec-step1 .step-copy {
  width: 40%;
  padding-left: 10rem;
}

.how_3d #sec-step1 .scene-cafe {
  width: 60%;
}

.how_3d #sec-step2 .step-copy {
  padding-right: 10rem;
}

.how_3d #sec-step3 .step-copy {
  padding-left: 10rem;
}

.how_3d #sec-step4 .step-copy {
  padding-right: 10rem;
}

.how_3d .hidden-receipt {
  opacity: 0 !important;
  pointer-events: none;
}

.how_3d .scene-big-model .model-anchor {
  position: relative;
  z-index: 2;
  height: 100%;
}

.cta_3d {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
  padding-bottom: 0 !important;
}

.cta_3d .cta-copy {
  padding-left: 14rem;
}

.cta_3d .container {
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

.cta_3d h2 {
  font-size: 2.9rem;
  font-weight: 600;
  line-height: 1.2;
  max-width: 771px;
}

.cta_3d .lede {
  margin-top: 26px;
  font-size: 1.8rem;
  line-height: 1.3;
  max-width: 660px;
  margin-bottom: 1.5rem !important;
}

.cta_3d .btn {
  margin-top: 0;
}

.cta_3d .cta-model {
  position: relative;
  height: clamp(420px, 46vw, 750px);
}

.cta_3d .cta-model model-viewer {
  position: relative;
  z-index: 2;
}

.cta_3d .blob-d {
  width: 724px;
  height: 724px;
  right: -12%;
  top: 20%;
  background: radial-gradient(circle, rgba(146, 39, 143, 0.26), rgba(146, 39, 143, 0) 70%);
  display: none !important;
}

.cta_3d .blob-e {
  width: 520px;
  height: 520px;
  right: 14%;
  bottom: -6%;
  display: none !important;
  background: radial-gradient(circle, rgba(255, 118, 68, 0.18), rgba(255, 118, 68, 0) 70%);
}

.cta_3d .model-anchor::before {
  content: '';
  position: absolute;
  display: block;
  width: 650px;
  height: 650px;
  bottom: -32%;
  right: -7%;
  border-radius: 50% !important;
  background-color: #8cc543;
}

.cta_3d .model-anchor::after {
  content: '';
  position: absolute;
  display: block;
  width: 700px;
  height: 700px;
  bottom: -22%;
  right: 0%;
  border-radius: 50% !important;
  background-color: #FFD6FE;
  z-index: -1;
}

.cta-model .model-anchor {
  right: -17%;
  position: relative;
  z-index: 2;
  height: 100%;
}

@media (max-width: 980px) {
  .hero_3d .container,
  .features_3d .container,
  .why_3d .container,
  .how_3d .step,
  .cta_3d .container {
    grid-template-columns: 1fr;
  }
  .how_3d .step.flip .step-visual {
    order: -1;
  }
  .why_3d {
    border-radius: 40px 40px 0 0;
  }
  .partners_3d .partners-row {
    justify-content: center;
  }
  .partners_3d .partners-title::before,
  .partners_3d .partners-title::after {
    width: 60px;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 80% !important;
  }
  .container {
    padding: 0 15px !important;
  }
  .how_3d .step-bg-line,
  .how_3d .how-bg-line {
    min-width: 1400px;
  }
  .features_3d .sec-features {
    flex-wrap: wrap;
    padding: 0 15px !important;
  }
  .features_3d .features-model {
    width: 100% !important;
  }
  .features_3d .feature-grid {
    width: 100% !important;
    margin-left: 0 !important;
    z-index: 99;
    position: relative;
  }
  .features_3d .feature-card {
    padding: 1rem !important;
    min-height: auto !important;
  }
  .features_3d .feature-card p {
    margin-top: .7rem !important;
  }
  .why_3d .why-check svg {
    width: 22px !important;
    height: 22px !important;
  }
  .why_3d .why-card {
    border-radius: 18px !important;
  }
  .why_3d .why-copy .lede {
    margin-top: 16px !important;
  }
  .cta_3d .cta-copy{padding-left: 1rem;z-index: 9;}
  .hero_3d{padding-top: 4rem !important}
  .how_3d #sec-step1 .step-copy{padding-left: 1rem;}
  .how_3d #sec-step3 .step-copy{padding-left: 1rem;}
  .how_3d #sec-step2 .step-copy{padding-left: 1rem; padding-right: 1rem;}
  .how_3d #sec-step4 .step-copy{padding-left: 1rem; padding-right: 1rem;}
  .why_3d .why-copy .floating_heading{left: 15%; bottom: 28%;}
}

@media (max-width: 640px) {
  .features_3d .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 2560px) {
  :root {
    /* --content-w: 2400px; */
  }
  html {
    zoom: 1.25;
  }
}

@media (min-width: 3840px) {
  :root {
    /* --content-w: 3200px; */
  }
  html {
    zoom: 1.5;
  }
}

@media (min-width: 7680px) {
  :root {
    /* --content-w: 6400px; */
  }
  html {
    zoom: 2.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
  #model-stage {
    transition: none;
  }
}

@media screen and (max-width: 1728px) and (-webkit-min-device-pixel-ratio: 2) {
  .how_3d .stage-circle .model-anchor {
    top: 18%;
  }
  html {
    font-size: 85% !important;
  }
}
