@font-face {
  font-family: "GarageGothicBold";
  src: url("/DigitUp/Minus196/assets/fonts/garage-gothic.woff2") format("woff2"), url("/DigitUp/Minus196/assets/fonts/garage-gothic.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BarlowSemiCondensed";
  src: url("/DigitUp/Minus196/assets/fonts/BarlowSemiCondensed-ExtraBold.woff2") format("woff2"), url("/DigitUp/Minus196/assets/fonts/BarlowSemiCondensed-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BarlowSemiCondensedLight";
  src: local("Barlow Semi Condensed Light"), local("BarlowSemiCondensed-Light"), local("Barlow Semi Condensed");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OpenSansLight";
  src: url("/fonts/OpenSans-Light.woff2") format("woff2"), url("/fonts/OpenSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
.sectionHowWeMake {
  position: relative;
  overflow: hidden;
  background: #FEDD00;
  /* ================= SMOKE BACKGROUND ================= */
}
.sectionHowWeMake .howSmoke {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.sectionHowWeMake .smokeVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  will-change: transform;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.6;
}
.sectionHowWeMake .howInner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  text-align: center;
}
.sectionHowWeMake .howTitle {
  margin: 0 0 1.25rem;
  color: #09101d;
  font-family: "BarlowSemiCondensed", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 2rem;
  line-height: 1;
  position: relative;
  z-index: 2;
}
.sectionHowWeMake .steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  gap: 0;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 280px;
}
.sectionHowWeMake .step {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* Visible by default (no JS fallback safe) */
  opacity: 1;
  transform: none;
}
.sectionHowWeMake .step img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
}
.sectionHowWeMake .howText {
  position: relative;
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
  font-family: "BarlowSemiCondensed", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 800;
  color: #09101d;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  text-align: center;
  width: 90%;
  max-width: 280px;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  line-height: 1.35;
}
.sectionHowWeMake {
  /* ================= TABLET & DESKTOP ================= */
}
@media (min-width: 599.9px) {
  .sectionHowWeMake .howInner {
    padding: 5rem 1.25rem;
  }
  .sectionHowWeMake .howTitle {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .sectionHowWeMake .steps {
    flex-direction: row;
    max-width: 900px;
    gap: 1.25rem;
    align-items: flex-end;
  }
  .sectionHowWeMake .step {
    flex: 1;
    max-width: 300px;
  }
  .sectionHowWeMake .step img {
    max-width: 280px;
  }
  .sectionHowWeMake .howText {
    max-width: 700px;
    margin-top: 2rem;
    margin-bottom: 3rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }
}
.sectionHowWeMake {
  /* ================= LARGE DESKTOP ================= */
}
@media (min-width: 899.9px) {
  .sectionHowWeMake .howInner {
    padding: 3rem 1.5rem;
  }
  .sectionHowWeMake .howTitle {
    font-size: 2rem;
    margin-bottom: 5rem;
  }
  .sectionHowWeMake .steps {
    max-width: 1100px;
    gap: 2rem;
  }
  .sectionHowWeMake .step {
    max-width: 350px;
  }
  .sectionHowWeMake .step img {
    max-width: 320px;
  }
  .sectionHowWeMake .howText {
    max-width: 900px;
    margin-top: 5rem;
    margin-bottom: 8rem;
    font-size: 1.25rem;
  }
}

/* ================= ANIMATIONS ================= */
html.js .sectionHowWeMake .step {
  opacity: 0;
  transform: translateY(1.25rem) scale(0.96);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
html.js .sectionHowWeMake .step:nth-child(1) {
  transition-delay: 0ms;
}
html.js .sectionHowWeMake .step:nth-child(2) {
  transition-delay: 150ms;
}
html.js .sectionHowWeMake .step:nth-child(3) {
  transition-delay: 300ms;
}
html.js .sectionHowWeMake .step.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}
html.js .sectionHowWeMake .howText {
  opacity: 0;
  transform: translateY(0.75rem);
  transition: opacity 600ms ease-out 450ms, transform 600ms ease-out 450ms;
}
html.js .sectionHowWeMake .howText.animate {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html.js .sectionHowWeMake .step,
  html.js .sectionHowWeMake .howText {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
