.products-steps-section {
  position: relative;
  overflow: hidden;
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: clamp(9rem, 10.5vw, 10.5rem) 0 clamp(2rem, 4vw, 3.25rem);
}

.products-steps-heading {
  max-width: 760px;
  margin: 0 auto clamp(2rem, 4vw, 3.25rem);
  text-align: center;
}

.products-steps-heading h2 {
  color: #f5f5f7;
  font-family: "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 900;
}

.products-steps-heading .steps-gradient-text {
  color: transparent;
  background: linear-gradient(100deg, #0a84ff 0%, #5e5ce6 30%, #bf5af2 52%, #ff375f 74%, #ff6a00 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.products-steps-heading p {
  display: none;
}

.products-steps-wrap {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.products-steps-line {
  position: absolute;
  top: 3rem;
  left: 4rem;
  right: 4rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
}

.products-steps-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}

.products-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.products-step-icon {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: clamp(5rem, 7vw, 6rem);
  height: clamp(5rem, 7vw, 6rem);
  display: grid;
  place-items: center;
  margin-bottom: 1.55rem;
  border-radius: clamp(1.45rem, 2vw, 1.75rem);
  color: #fff;
  background:
    radial-gradient(circle at 24% 14%, rgba(255,255,255,.13), transparent 27%),
    linear-gradient(145deg, rgba(28,38,74,.82), rgba(6,10,28,.97));
  border: 1px solid rgba(139,155,255,.24);
  box-shadow: 0 24px 54px rgba(0,0,0,.48), 0 18px 46px rgba(0,113,227,.08), inset 0 1px 0 rgba(255,255,255,.12);
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 900;
}

.products-step:last-child .products-step-icon {
  background: linear-gradient(180deg, #1286f5 0%, #0071e3 100%);
  border-color: rgba(10,132,255,.5);
  box-shadow: 0 18px 42px rgba(0,113,227,.32), inset 0 1px 0 rgba(255,255,255,.28);
}

.products-step.is-active .products-step-icon {
  background: linear-gradient(180deg, #1688f6 0%, #0071e3 100%);
  border-color: rgba(10,132,255,.66);
  box-shadow: 0 18px 42px rgba(0,113,227,.34), 0 0 28px rgba(0,113,227,.16), inset 0 1px 0 rgba(255,255,255,.28);
}

.products-step.is-active .products-step-border-runner {
  opacity: 1;
}

.products-step-border-runner {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  overflow: visible;
  animation: productsStepBorderVisible 2.4s linear infinite;
}

.products-step-border-path {
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 18 82;
  stroke-dashoffset: 100;
  filter: drop-shadow(0 0 7px rgba(191,90,242,.45)) drop-shadow(0 0 10px rgba(255,55,95,.25));
  animation: productsStepPathTrace 2.4s linear infinite;
}

.social-link {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d4e4fa;
  background: linear-gradient(145deg, rgba(29,48,66,.84), rgba(5,13,23,.96));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 24px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.12);
  transition: all .3s ease;
}

.social-link:hover {
  color: #141a3a;
  background: #a7b5ff;
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(0,0,0,.5), 0 0 28px rgba(147,166,242,.3);
}

.footer-column h4 {
  display: flex;
  align-items: center;
  gap: .62rem;
}

.footer-column h4::before,
.footer-column li a::before {
  content: "";
  flex: none;
  border-radius: 9999px;
  background: linear-gradient(135deg,#0a84ff 0%,#5e5ce6 28%,#bf5af2 54%,#ff375f 76%,#ff6a00 100%);
  box-shadow: 0 0 16px rgba(10,132,255,.28), 0 0 22px rgba(191,90,242,.18);
}

.footer-column h4::before {
  width: .58rem;
  height: .58rem;
}

.footer-column li a {
  display: flex;
  align-items: center;
  gap: .64rem;
}

.footer-column li a::before {
  width: .46rem;
  height: .46rem;
  opacity: .95;
  transition: transform .24s ease, box-shadow .24s ease;
}

.footer-column li a:hover::before {
  transform: scale(1.35);
  box-shadow: 0 0 18px rgba(10,132,255,.44), 0 0 30px rgba(255,55,95,.22);
}

@keyframes productsStepBorderVisible {
  0% { opacity: 0; }
  2%, 18% { opacity: 1; }
  22%, 100% { opacity: 0; }
}

@keyframes productsStepPathTrace {
  0% { stroke-dashoffset: 100; }
  18% { stroke-dashoffset: 0; }
  22%, 100% { stroke-dashoffset: 0; }
}

@keyframes productsRocketGradientPulse {
  0%, 80%, 100% {
    background: linear-gradient(180deg, #1286f5 0%, #0071e3 100%);
    box-shadow: 0 18px 42px rgba(0,113,227,.32), inset 0 1px 0 rgba(255,255,255,.28);
  }
  88%, 96% {
    background: linear-gradient(135deg, #5e5ce6 0%, #bf5af2 42%, #ff375f 72%, #ff6a00 100%);
    box-shadow: 0 20px 48px rgba(191,90,242,.32), 0 0 34px rgba(255,55,95,.22), inset 0 1px 0 rgba(255,255,255,.38);
  }
}

@keyframes productsRocketLift {
  0%, 80%, 100% { transform: translateY(0) rotate(0deg); }
  88% { transform: translateY(-4px) rotate(8deg); }
  96% { transform: translateY(0) rotate(0deg); }
}

.products-step h3 {
  color: #f5f5f7;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 0;
}

.products-step p {
  display: none;
}

.products-path-section {
  background: #fff !important;
  color: #050505 !important;
  padding: clamp(4rem, 8vw, 7rem) 0 !important;
  scroll-margin-top: 5.5rem;
}

.products-path-heading {
  max-width: 760px;
  margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);
}

.products-path-heading h3 {
  color: #050505 !important;
  font-family: "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: clamp(2.7rem, 5.6vw, 5.4rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.045em !important;
  font-weight: 900 !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.72), 0 20px 42px rgba(0,0,0,.1);
}

.products-path-heading p {
  color: rgba(5,5,5,.62) !important;
  font-size: clamp(1rem, 1.3vw, 1.2rem) !important;
  line-height: 1.75 !important;
  margin-top: 1.1rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.4vw, 2rem);
  align-items: stretch;
}

.product-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  border-radius: 1.5rem;
  padding: 1.35rem;
  background: linear-gradient(145deg, #111827 0%, #0f172a 48%, #060b16 100%) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,.28), 0 0 0 1px rgba(255,255,255,.06) inset;
  transform: translateY(0);
  transition: transform .42s cubic-bezier(.22,1,.36,1), box-shadow .42s ease, background .42s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(10,132,255,.68), rgba(94,92,230,.34), rgba(191,90,242,.38), rgba(255,106,0,.16));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
  opacity: .72;
  transition: opacity .42s ease, filter .42s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 88px rgba(0,0,0,.36), 0 0 42px rgba(0,113,227,.18), 0 0 0 1px rgba(255,255,255,.08) inset;
}

.product-card:hover::before {
  opacity: 1;
  filter: drop-shadow(0 0 16px rgba(10,132,255,.28));
}

.product-card.is-locked {
  opacity: .78;
}

.product-card-media {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 16 / 10;
  margin-bottom: 1.45rem;
  background: #050913;
  border: 1px solid rgba(255,255,255,.08);
}

.product-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1);
  transition: transform .72s cubic-bezier(.22,1,.36,1), filter .42s ease, opacity .42s ease;
}

.product-card:hover .product-card-media img {
  transform: scale(1.055);
}

.product-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 48%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
}

.product-card-soon {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3,7,18,.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.product-card-soon span {
  border: 1px solid rgba(0,113,227,.48);
  border-radius: 999px;
  padding: .62rem 1.25rem;
  color: #0071e3;
  font-family: "JetBrains Mono", monospace;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(0,113,227,.16);
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-card-title {
  color: #f5f5f7 !important;
  font-family: "Geist", "Inter", sans-serif !important;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -.025em;
  font-weight: 900;
  margin-bottom: .42rem;
}

.product-card-subtitle {
  color: #8abaff !important;
  font-family: "JetBrains Mono", monospace;
  font-size: .74rem;
  line-height: 1.35;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.product-card-description {
  color: rgba(245,245,247,.74) !important;
  font-size: .98rem;
  line-height: 1.65;
  margin-bottom: 1.35rem;
}

.product-feature-list {
  display: grid;
  gap: .74rem;
  margin-bottom: 1.65rem;
}

.product-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .62rem;
  color: rgba(245,245,247,.72) !important;
  font-size: .92rem;
  line-height: 1.42;
}

.product-feature-list .material-symbols-outlined {
  flex: none;
  margin-top: .04rem;
  color: #0071e3 !important;
  font-size: 1rem;
  filter: drop-shadow(0 0 10px rgba(0,113,227,.34));
}

.product-card-action {
  margin-top: auto;
  display: inline-flex;
  min-height: 3.4rem;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border-radius: .95rem;
  border: 1px solid rgba(0,113,227,.86);
  background: linear-gradient(180deg, #1286f5 0%, #0071e3 100%) !important;
  color: #fff !important;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 18px 32px rgba(0,113,227,.2), inset 0 1px 0 rgba(255,255,255,.28);
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}

.product-card-action:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #168fff 0%, #005bbf 100%) !important;
  box-shadow: 0 22px 46px rgba(0,113,227,.34), 0 0 28px rgba(0,113,227,.2), inset 0 1px 0 rgba(255,255,255,.34);
}

.product-card-action:active,
.product-card-action:focus,
.product-card-action:focus-visible {
  color: #050505 !important;
  outline: none;
}

.product-card-action:active .material-symbols-outlined,
.product-card-action:focus .material-symbols-outlined,
.product-card-action:focus-visible .material-symbols-outlined {
  color: #050505 !important;
}

.product-card-action:focus-visible {
  box-shadow: 0 22px 46px rgba(0,113,227,.34), 0 0 0 3px rgba(255,255,255,.82), 0 0 30px rgba(0,113,227,.22), inset 0 1px 0 rgba(255,255,255,.34);
}

.product-card-action.is-disabled {
  cursor: not-allowed;
  border-color: rgba(255,255,255,.08);
  background: rgba(255,255,255,.06) !important;
  color: rgba(245,245,247,.42) !important;
  box-shadow: none;
}

.product-card-action.is-disabled:hover {
  transform: none;
  box-shadow: 0 0 24px rgba(0,113,227,.1);
}

@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .products-steps-section {
    padding: 5.4rem 0 1.35rem;
  }

  .products-steps-heading {
    padding: 0 1rem;
    margin-bottom: 1rem;
    text-align: left;
  }

  .products-steps-heading h2 {
    max-width: 23rem;
    font-size: clamp(1.85rem, 8vw, 2.55rem);
    line-height: .98;
    letter-spacing: -.045em;
  }

  .products-steps-wrap {
    padding: 0 .72rem;
  }

  .products-steps-line {
    display: block;
    top: 1.35rem;
    left: 2.35rem;
    right: 2.35rem;
    opacity: .55;
  }

  .products-steps-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: .34rem;
  }

  .products-step {
    align-items: center;
    justify-content: flex-start;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .products-step-icon {
    width: clamp(2.35rem, 10.6vw, 2.8rem);
    height: clamp(2.35rem, 10.6vw, 2.8rem);
    margin-bottom: .42rem;
    border-radius: .82rem;
    font-size: clamp(1rem, 4.2vw, 1.22rem);
    box-shadow: 0 11px 24px rgba(0,0,0,.4), 0 9px 22px rgba(0,113,227,.08), inset 0 1px 0 rgba(255,255,255,.12);
  }

  .products-step h3 {
    margin-bottom: 0;
    max-width: 4.55rem;
    font-size: clamp(.56rem, 2.5vw, .68rem);
    line-height: 1.12;
    letter-spacing: -.01em;
  }

  .products-step p {
    display: none;
  }

  .products-path-section {
    padding: 3.25rem 0 3.75rem !important;
  }

  .products-path-section .px-margin-desktop {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .products-path-heading {
    margin-bottom: 2rem;
    text-align: left;
  }

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

  .product-card {
    border-radius: 1.25rem;
    padding: 1rem;
  }

  .product-card-media {
    aspect-ratio: 16 / 9;
    margin-bottom: 1.1rem;
  }

  .site-footer {
    padding-top: 3.5rem !important;
    padding-bottom: 2rem !important;
  }

  .footer-grid {
    padding: 0 1rem !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 2rem 1rem !important;
    margin-bottom: 2.5rem !important;
  }

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

  .footer-brand p {
    font-size: .85rem !important;
    line-height: 1.45rem !important;
    margin-bottom: 1.25rem !important;
  }

  .footer-column h4 {
    color: #a7b5ff !important;
    margin-bottom: 1rem !important;
  }

  .footer-column ul {
    display: grid;
    gap: .6rem !important;
  }

  .footer-column li a {
    font-size: .82rem !important;
    gap: .5rem;
  }

  .footer-column li a::before {
    width: .4rem;
    height: .4rem;
    opacity: .95;
  }

  .footer-bottom {
    padding: 1.5rem 1rem 0 !important;
    font-size: .72rem !important;
    text-align: center;
  }
}
