/* Hero */
.hero {
  position: relative;
  z-index: 0;
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  will-change: transform;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.8;
  background: linear-gradient(
    180deg,
    rgba(185, 185, 185, 0) 0%,
    rgba(188, 188, 188, 0.09) 15%,
    rgba(192, 192, 192, 0.45) 65%,
    rgba(156, 156, 156, 0.45) 94%,
    rgba(156, 156, 156, 0.57) 100%

  );
  z-index: 0;
  pointer-events: none;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero__grid {
  --hero-content-width: min(36rem, 48%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 95vh;
  min-height: 50rem;
  will-change: transform, filter;
}

@media (min-height: 1080px) {
  .hero__grid {
    height: 55rem;
    
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--hero-content-width);
  bottom: 2vh;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-wrap:balance;

}

.hero__title {
  font-size: 45px;
  font-variation-settings: 'wght' 528, 'opsz' 32;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #262626;
  max-width: 18ch;
}

.hero__subtitle {
  font-size: clamp(1.1rem, 1.5vw, 1.225rem);
  font-variation-settings: 'wght' 400;
  color: var(--color-text-muted);
  line-height: 1.22;
  max-width: 42ch;
}

.hero__visual {
  position: absolute;
  left: 15%;
  top: auto;
  bottom: -5%;
  z-index: 1;
  width: 125%;

  height: auto;
  pointer-events: none;
}

.hero__visual img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: bottom center;
}

.product,
.problem,
.workflow,
.faq,
.cta {
  position: relative;
  z-index: 1;
}

/* Problem + CTA (shared dark surface) */
.problem,
.cta {
  position: relative;
  width: 100%;
  background-image: linear-gradient(223deg, rgba(0, 0, 0, 0.92) 0%, rgba(188, 188, 188, 0.45) 100%);
background-color: #000000;
}

.cta {
  overflow: hidden;
  padding-top: clamp(4.8rem, 18vh, 10rem);
  padding-bottom: calc(clamp(4.8rem, 18vh, 10rem) + 32px);
}

.problem {
  overflow: hidden;
  padding-block: clamp(4.8rem, 20vh, 12rem);
}

.problem__bg,
.cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.problem > .container {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.cta > .container {
  z-index: 2;
}

.problem__heading {
  width: 100%;
  font-size: 34px;
  font-variation-settings: 'wght' 426, 'opsz' 32;
  text-wrap: balance;
  line-height: 1.1;
  max-width: 100%;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);


}

.problem__heading-primary {
  color: var(--color-white);
}

.problem__heading-muted {
  color: var(--color-problem-muted);
}

.problem__track {
  display: flex;
  gap: 12px;
  margin-inline: calc(-1 * clamp(1rem, 4vw, 2rem));
  padding-inline: clamp(1rem, 4vw, 2rem);
  overflow: visible;
  transition: transform 0.45s ease;
}

.problem__card {
  flex: 0 0 55%;
  position: relative;
  min-height: 18rem;
  text-wrap: balance;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 1;
  gap: 2rem;
  padding: 20px;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.123) 0%, rgba(255, 255, 255, 0.09) 100%),    rgba(0, 0, 0, 0.18);
  border: none;
  opacity: 0.35;
  cursor: pointer;
  transition: opacity 0.35s ease, box-shadow 0.35s ease;
}

.problem__card--active {
  opacity: 1;

  z-index: 2;
  box-shadow: 0px 4px 153.10000610351562px rgba(0, 0, 0, 0.99);
  border-image: linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.09) 100%) 1;
}

@keyframes problem-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(var(--problem-marquee-end, -50%));
  }
}

@media (prefers-reduced-motion: reduce) {
  .problem__track {
    transition: none;
  }

  .problem__track.is-marquee {
    animation: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .problem__track.is-marquee .problem__card {
    scroll-snap-align: center;
  }

  .problem__card {
    transition: none;
  }
}

.problem__card-quote {
  color: rgba(255, 255, 255, 0.90); 
  font-size: 22px; 
  font-family: 'Inter Variable', system-ui, sans-serif;
  font-optical-sizing: none;
  font-variation-settings: 'wght' 412, 'opsz' 24;
  line-height: 1.2;
  letter-spacing: -0.2px;
}

.problem__card-author {
  display: flex;
  flex-direction: column;
  gap: 0.01rem;
}

.problem__card-name {
  font-size: 20px;
  font-family: 'Inter Variable', system-ui, sans-serif;
  font-optical-sizing: none;
  font-variation-settings: 'wght' 456, 'opsz' 24;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.90); 
  letter-spacing: -0.2px;


}

.problem__card-role {
  font-size: 18px;
  font-family: 'Inter Variable', system-ui, sans-serif;
  font-optical-sizing: none;
  font-variation-settings: 'wght' 456, 'opsz' 24;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.30); 
  letter-spacing: -0.2px;

}

/* CTA */
.cta__shell {
  padding-bottom: calc(16px + 2.5rem);
}

.cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  padding-top: 5rem;
  position: relative;
}

.cta__footer {
  position: absolute;
  top: auto;
  bottom: 24px;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
  font-variation-settings: 'wght' 400;
  color: var(--color-problem-muted);
}

.cta__footer-credit {
  flex-shrink: 0;
  opacity: 0.5;
  transition: color 0.15s ease;
}

.cta__footer-credit:hover {
  color: var(--color-white);
}

.cta__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 34rem;
}

.cta__logo {
  width: 2rem;
  height: auto;
  filter: brightness(0) invert(1);
}

.cta__heading {
  font-size: 32px;
  font-variation-settings: 'wght' 426, 'opsz' 32;
  line-height: 1.1;
  text-wrap: balance;
}

.cta__heading-muted {
  display: block;
  color: var(--color-problem-muted);
}

.cta__heading-primary {
  display: block;
  color: var(--color-white);
}

.cta__divider {
  align-self: stretch;
  width: 1px;
  min-height: 14rem;
  background-color: var(--color-divider);
}

.cta__form-wrap {
  max-width: 30rem;
  justify-self: end;
  width: 100%;
}

.cta__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

.cta__input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: none;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  outline: none;
  box-shadow: none;
  transition: background-color 0.15s ease;
}

.cta__input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.cta__input:focus,
.cta__input:focus-visible {
  outline: none;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.09);
}

.cta__input[aria-invalid='true'] {
  box-shadow: 0 0 0 2px #e57373;
}

.cta__input[aria-invalid='true']:focus,
.cta__input[aria-invalid='true']:focus-visible {
  box-shadow: 0 0 0 2px #e57373;
}

.cta__submit.btn {
  width: 100%;
  margin-top: 0.25rem;
  height: 2.75rem;
  padding: 0 1rem;
  background-color: var(--color-white);
  color: var(--color-black);
}

.cta__submit.btn:hover {
  opacity: 0.92;
}

.cta__error {
  margin: 0;
  font-size: 0.8125rem;
  color: #e57373;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(115%);
}

.cta__message {
  margin: 0;
  font-size: 0.875rem;
}

.cta__message--success {
  color: #81c784;
}

.cta__message--error {
  color: #e57373;
}

/* Product */
.product {
  width: 100%;
  background: #F8F8F8;
  padding-block: clamp(4.8rem, 16vh, 8rem);
}

.product__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.product__header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 72rem;
}

.product__eyebrow {
  --product-eyebrow-dash: rgba(0, 0, 0, 0.42);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.55rem 0.8rem;
  background: rgba(0, 0, 0, 0.05);
}

.product__eyebrow-text {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-variation-settings: 'wght' 456;
  line-height: 1.13;
  color: rgba(38, 38, 38, 0.58);
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.product__eyebrow-line {
  position: absolute;
  pointer-events: none;
}

.product__eyebrow-line--top,
.product__eyebrow-line--bottom {
  left: 50%;
  width: 120%;
  height: 1px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(
    90deg,
    var(--product-eyebrow-dash) 0 4px,
    transparent 2px 8px
  );
}

.product__eyebrow-line--top {
  top: 0;
}

.product__eyebrow-line--bottom {
  bottom: 0;
}

.product__eyebrow-line--left,
.product__eyebrow-line--right {
  top: 50%;
  width: 1px;
  height: 150%;
  min-height: 120%;
  transform: translateY(-50%);
  background: repeating-linear-gradient(
    180deg,
    var(--product-eyebrow-dash) 0 4px,
    transparent 2px 6px
  );
}

.product__eyebrow-line--left {
  left: 0;
}

.product__eyebrow-line--right {
  right: 0;
}

.product__heading {
  font-size: 40px;
  font-variation-settings: 'wght' 456, 'opsz' 32;
  letter-spacing: -0.45px;
  line-height: 1.05;
  text-wrap: balance;
}

.product__heading-muted {
  color: rgba(38, 38, 38, 0.45);
}

.product__heading-primary {
  color: #262626;
}

.product__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product__showcase {
  position: relative;
  width: 100%;
  min-height: clamp(20rem, 42vw, 34rem);
  overflow: hidden;
  background:
    linear-gradient(132deg, rgba(0, 0, 0, 0) 0%, rgba(221, 221, 221, 0.35) 100%),
    linear-gradient(180deg, #c8c8c8 0%, #e8e8e8 100%);
}

.product__showcase--full {
  min-height: 0;
  overflow: visible;
  background: transparent;
}

.product__showcase-full {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.product__showcase-monitor {
  position: absolute;
  inset: 0;
  z-index: 0;
  bottom: -5rem;
  left: 50%;
  right: 0%;
  width: 70%;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  pointer-events: none;
}

.product__issues-card {
  --issues-padding-x: 1rem;
  --issues-header-padding-y: 1rem;
  --issues-item-padding-y: 0.75rem;
  --issues-skeleton-padding-y: 0.5rem;
  --issues-item-gap: 0.25rem;
  --issues-icon-size: 1.125rem;
  --issues-color-error: #cb1616;
  --issues-color-icon-muted: #a2a2a2;
  --issues-color-text: rgba(31, 31, 31, 0.93);
  --issues-color-text-muted: rgba(31, 31, 31, 0.6);
  --issues-skeleton-fill: linear-gradient(
    90deg,
    rgba(162, 162, 162, 0.26) 0%,
    rgba(202, 202, 202, 0.26) 100%
  );
  --issues-skeleton-fill-muted: linear-gradient(
    90deg,
    rgba(162, 162, 162, 0.42) 0%,
    rgba(202, 202, 202, 0.42) 100%
  );

  position: absolute;
  z-index: 1;
  left: clamp(1.5rem, 7vw, 5.5rem);
  top: 15%;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: min(100% - 3rem, 27rem);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(102, 102, 102, 0.2) 100%),
    linear-gradient(318deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.32) 100%),
    linear-gradient(39deg, rgba(247, 247, 247, 0) 0%, #f0f0f0 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.33) 100%),
    rgba(245, 245, 245, 0.9);
  outline: 1px solid #fff;
  outline-offset: -1px;
  box-shadow:
    0 -1rem 7.5rem rgba(0, 0, 0, 0.11),
    0 0.5rem 9.5rem rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 50%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 50%,
    transparent 100%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.product__issues-card-header {
  flex-shrink: 0;
  padding: var(--issues-header-padding-y) var(--issues-padding-x);
}

.product__issues-card-divider {
  flex-shrink: 0;
  height: 1px;
  background-color: rgba(223, 223, 223, 0.72);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}



.product__issues-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 1;
  padding-block: 0.25rem;
}

.product__issues-card-lead {
  max-width: 19rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--issues-color-text);
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.product__issues-card-lead strong {
  color: var(--issues-color-error);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.product__issues-list {
  display: flex;
  flex-direction: column;
}

.product__issues-item {
  display: flex;
  align-items: center;
  gap: var(--issues-item-gap);
  padding: var(--issues-item-padding-y) var(--issues-padding-x);
  font-family: 'Inter Variable', system-ui, sans-serif;

  font-size: 0.975rem;
  font-weight: 470;
  font-variation-settings: 'wght' 470, 'opsz' 32;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.product__issues-item::before {
  content: '';
  flex-shrink: 0;
  width: var(--issues-icon-size);
  height: var(--issues-icon-size);
  background: center / contain no-repeat;
}

.product__issues-item--open {
  color: var(--issues-color-error);
}

.product__issues-item--open::before {
  background-image: url('../assets/WarningCircle.svg');
}

.product__issues-item--resolved {
  color: var(--issues-color-text-muted);
}

.product__issues-item--resolved::before {
  background-image: url('../assets/Check.svg');
}

.product__issues-card-skeleton {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.product__issues-skeleton-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--issues-skeleton-padding-y) var(--issues-padding-x);
}

.product__issues-skeleton-row--triple {
  justify-content: space-between;
}

.product__issues-skeleton-bar {
  height: 1rem;
  border-radius: 2px;
  background: var(--issues-skeleton-fill);
}

.product__issues-skeleton-bar--wide {
  width: 12rem;
  flex-shrink: 0;
}

.product__issues-skeleton-bar--short {
  width: 3.5rem;
  flex-shrink: 0;
}

.product__issues-skeleton-bar--spacer {
  width: 3rem;
  flex-shrink: 0;
  background: none;
}

.product__issues-skeleton-row--muted .product__issues-skeleton-bar:not(.product__issues-skeleton-bar--spacer) {
  height: 0.875rem;
  background: var(--issues-skeleton-fill-muted);
}

.product__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  border-radius: 0;
  overflow: hidden;
}

.product__card {
  text-wrap: balance;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  aspect-ratio: 315 / 376;
  padding: 20px;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.28) 100%),
    linear-gradient(180deg, rgba(213, 213, 213, 0.7) 0%, rgba(213, 213, 213, 0.7) 100%),
    rgba(219, 219, 219, 0.65);
}

.product__card-title {
  font-size: 22px;
 
  font-variation-settings: 'wght' 512;
  line-height: 120%;
  letter-spacing: -0.025em;
  color: #262626;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.product__card-text {
  font-size: 14px;
  font-weight: 440;
  line-height: 115%;
  color: rgba(38, 38, 38, 0.64);
}

/* Workflow */
.workflow {
  width: 100%;
  background: linear-gradient(180deg, #FCFCFC 0%, rgba(231.81, 231.81, 231.81, 0.66) 22%, rgba(232, 232, 232, 0.37) 85%);
  padding-block: clamp(4rem, 12vh, 2rem);
}

.workflow__panels {
  display: flex;
  flex-direction: column;
  gap: clamp(5rem, 8vh, 6rem);
}

.workflow__inner {
  --workflow-inner-gap: clamp(4rem, 5vw, 6rem);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: var(--workflow-inner-gap);
  align-items: center;
}

.workflow__inner--static .workflow__intro-block {
  padding-left: calc(var(--workflow-inner-gap) / 2);
}

.workflow__visual {
  min-width: 0;
}

.workflow__visual-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 36rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 24%),
    linear-gradient(180deg, #1f1f1f 0%, #0a0a0a 100%);
}

.workflow__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.workflow__video--active {
  opacity: 1;
  visibility: visible;
}

@media (prefers-reduced-motion: reduce) {
  .workflow__video {
    transition: none;
  }
}

.workflow__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
  max-width: 31.75rem;
}

.workflow__intro-block {
  display: flex;
  text-wrap: balance;
  flex-direction: column;
  gap: 1.5rem;
}

.workflow__heading {
  font-size: clamp(1.65rem, 2.8vw, 2.1rem);
  
  font-variation-settings: 'wght' 525, 'opsz' 32;
  line-height: 1.05;
  letter-spacing: -1.5%;
  color: #262626;
  text-wrap: balance;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.workflow__intro {
  font-size: 1.1rem;
  font-variation-settings: 'wght' 436;
  line-height: 1.16;
  letter-spacing: -0.5%;
  color: rgba(38, 38, 38, 0.66);
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

p.workflow__intro {
max-width: 70%;
}


.workflow__divider {
  width: 50%;
  height: 1px;
  background-color: rgba(223, 223, 223, 0.72);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.workflow__steps {
  --workflow-step-duration: 5s;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
  list-style: none;
}

@keyframes workflow-step-fill {
  from {
    height: 0;
  }

  to {
    height: 100%;
  }
}

.workflow__step {
  display: grid;
  grid-template-columns: 2px 1fr;
  gap: 0 1rem;
  align-items: center;
  padding-block: 0.775rem;
  cursor: pointer;
}

.workflow__step-progress {
  position: relative;
  width: 2px;
  min-height: 2rem;
  align-self: stretch;
}

.workflow__step-progress-track {
  position: absolute;
  inset: 0;
  width: 2px;
  background: rgba(38, 38, 38, 0.2);
}

.workflow__step-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: #262626;
}

.workflow__step-progress-fill--run {
  animation: workflow-step-fill var(--workflow-step-duration) linear forwards;
}

@media (prefers-reduced-motion: reduce) {
  .workflow__step-progress-fill--run {
    animation: none;
    height: 100%;
  }
}


.workflow__step:focus-visible {
  outline: 2px solid rgba(38, 38, 38, 0.35);
  outline-offset: 4px;
}

.workflow__step-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.workflow__step--active .workflow__step-body {
  gap: 0.625rem;
}

.workflow__step:not(.workflow__step--active) {
  display: flex;
  align-items: center;
  position: relative;
}

.workflow__step:not(.workflow__step--active) .workflow__step-progress {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.workflow__step:not(.workflow__step--active) .workflow__step-body {
  display: flex;
  align-items: center;
  min-height: 1.375rem;
  margin-left: calc(2px + 1rem);
  gap: 0;
}

.workflow__step:not(.workflow__step--active) .workflow__step-text {
  display: none;
}

.workflow__step-title {
  font-size: 1.375rem;
  font-variation-settings: 'wght' 544;
  line-height: 1;
  color: #d1d1d1;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.workflow__step--active .workflow__step-title {
  font-size: 1.25rem;
  font-variation-settings: 'wght' 524;
  color: #262626;
}

.workflow__step:not(.workflow__step--active) .workflow__step-title {
  width: 100%;
}

.workflow__step-text {
  max-height: 0;
  min-height: 0;
  opacity: 0;
  font-size: 1rem;
  font-variation-settings: 'wght' 436;
  line-height: 1.16;
  color: rgba(38, 38, 38, 0.66);
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  transition:
    max-height 0.35s ease,
    opacity 0.35s ease,
    margin 0.35s ease;
}

.workflow__step--active .workflow__step-text {
  max-height: 4rem;
  opacity: 1;
}

.workflow__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.workflow__list-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.2rem;
  font-variation-settings: 'wght' 436;
  line-height: 1.8;
  color: #262626;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.workflow__list-item::before {
  content: '';
  flex-shrink: 0;
  width: 1.125rem;
  height: 0.75rem;
  background: url('../assets/arrow-grid.svg') no-repeat center / contain;
}

.workflow__image {
  width: 100%;
  height: auto;
  object-fit: cover;


}

/* FAQ */
.faq {
  width: 100%;
  background: rgba(232, 232, 232, 0.596) 85%;
  background: linear-gradient(180deg, rgba(143, 143, 143, 0.15) 0%, rgba(232, 232, 232, 0.75) 85%);

  padding-block: clamp(4rem, 10vh, 6rem);
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(0, 18rem) 1px minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.faq__divider--column {
  width: 1px;
  height: auto;
  min-height: 100%;
  align-self: stretch;
}

.faq__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #262626;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.faq__lead {
  margin-top: 1.25rem;
  max-width: 18rem;
  font-size: 1rem;
  font-variation-settings: 'wght' 436;
  line-height: 1.5;
  color: rgba(38, 38, 38, 0.66);
}

.faq__lead a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq__accordion {
  min-width: 0;
}

.faq__item {
  border: none;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.25rem;
  font-size: 1.125rem;
  font-variation-settings: 'wght' 500;
  line-height: 1.2;
  color: #262626;
  list-style: none;
  cursor: pointer;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__icon {
  flex-shrink: 0;
  width: 1.25rem;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  color: rgba(38, 38, 38, 0.72);
  text-align: center;
}

.faq__icon::before {
  content: '+';
}

.faq__item[open] .faq__icon::before {
  content: '\2212';
}

.faq__answer {
  padding: 0 0 1.25rem;
  max-width: 42rem;
  font-size: 1.1rem;
  font-variation-settings: 'wght' 436 'opsz' 24;
  line-height: 1.35;
  color: rgba(38, 38, 38, 0.66);
}

@media (max-width: 1024px) {
  .workflow__panels {
    gap: 2.5rem;
    justify-content: center;
    align-items: center;

  }

  p.workflow__intro {
    max-width: 100%;
  }

  .product__showcase-monitor {
    position: absolute;
    left: 55%;
    top: 0px;
    bottom: -2rem;
    right: auto;
    width: 40rem;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: bottom right;
  }
  
  .workflow__inner {
    --workflow-inner-gap: 2.5rem;
    grid-template-columns: 1fr;
    gap: var(--workflow-inner-gap);
  }

  .workflow__visual {
    width: 100%;
  }

  .workflow__image {
    width: 100%;
max-width: 30rem; 
    max-height: none;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .workflow__visual-placeholder {
    max-height: 20rem;
  }

  .workflow__inner--static {
    display: flex;
    flex-direction: column;
  }

  .workflow__inner--static .workflow__visual {
    order: 1;
  }

  .workflow__inner--static .workflow__content {
    display: flex;
    flex-direction: column;
    order: 2;
  }

  .workflow__inner--static .workflow__intro-block {
    order: 3;
    padding-left: 0;
  }

  .workflow__inner--static .workflow__divider {
    order: 1;
  }

  .workflow__inner--static .workflow__list {
    order: 2;
  }

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

  .product__showcase-monitor {
    object-position: 70% center;

  }

  .product__card {
    border-right: none;
  }


  .faq__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .faq__divider--column {
    width: 100%;
    height: 1px;
    min-height: 0;
  }

  .cta__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cta__divider {
    width: 100%;
    min-height: 0;
    height: 1px;
  }

  .cta__form-wrap {
    justify-self: stretch;
    max-width: none;
  }

  .problem__track.is-marquee {
    width: max-content;
    margin-inline: 0;
    padding-inline: 2.5vw;
    overflow: visible;
    transition: none;
    animation: problem-marquee var(--problem-marquee-duration, 48s) linear infinite;
    will-change: transform;
  }

  .problem__track.is-marquee .problem__card {
    flex: 0 0 clamp(10rem, 95vw, 40rem);
    width: 40rem;
    max-width: 95vw;
    opacity: 1;
    cursor: default;
    box-shadow: 0 4px 153px rgba(0, 0, 0, 0.99);
  }

  .problem__track.is-marquee .problem__card--clone {
    pointer-events: none;
  }
}

@media (max-width: 900px) {
  .hero__content {
    max-width: none;
    margin-top: clamp(15rem, 20vh, 25rem);
    margin-bottom: auto;


  }

  .hero__grid {
    --hero-content-width: min(36rem, 48%);
    position: relative;
    display: flex;
    height: 100svh; 
    padding-bottom: 0px;
    flex-direction: column;
    align-items: flex-start;
  }

  

  .hero__visual {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: 0px;
    width: 100%;
    height: auto;
    max-width: 28rem;
    margin: clamp(1.5rem, 4vw, 2.5rem) auto 0;
    pointer-events: auto;
  }

  .hero__visual img {
    width: 300%;
    margin-left: -5%;
    height: auto;
    object-position: bottom center;
    object-fit: cover;
  }

  .hero__title {
    max-width: none;
    text-wrap: balance;
    font-size: clamp(2.125rem, 7.5vw, 2.875rem);
  }



  .product__issues-card {
    left: 5%;
    max-width: 50%;
  }
}

@media (max-width: 600px) {


  .hero__visual {
    position: relative;
    left: auto;
    overflow: visible;
    right: auto;
    top: auto;
    bottom: 0px;
    width: 100%;
    height: auto;
    max-width: 28rem;
    pointer-events: auto;
  }

  .hero__visual img {
    width: 200%;
    margin-left: -50%;
    height: auto;
    margin-bottom: 25%;
    object-position: bottom center;
    object-fit: cover;
  }

  .product__showcase {
    min-height: auto;
    max-height: none;
    padding-block: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .product__showcase--full {
    padding-block: 0;
    display: block;
  }

  .product__showcase-monitor {
    position: relative;
    inset: auto;
    bottom: -1rem;
    left: 5%;
    flex: 6 0 auto;
    width: 100%;
    max-width: 90vw;
    padding-top: 2rem;
    height: auto;
    min-height: 0;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
    object-position: center;
  }

  .product__issues-card {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    width: 90%;
    max-width: 100%;
    margin-bottom: -10rem;
  }

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

  .problem__heading,
  .product__heading {
    font-size: clamp(1.625rem, 6.5vw, 1.875rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    
  }

  .problem__card {
    flex-basis: 50%;
    min-height: 18rem;
    gap: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .problem__card-quote {
    font-size: 18px;
  }

  .product__card {
    aspect-ratio: auto;
    height: auto;
    gap: 1rem;
    padding-top: 2rem;
    padding-bottom: 1.5rem;
    background: #e8e8e8;
  }

  .product__card,
  .product__card:nth-child(odd) {
    border-right: none;
  }

  .product__card:last-child {
    border-bottom: none;
  }

  .product__card-title {
    font-size: 1.1rem;
  }

  .product__card-text {
    max-width: none;
    font-size: 1rem;
    line-height: 1.35;
  }
}
