.hero-section {
  padding-top: 92px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(430px, .92fr);
  gap: 64px;
}

.hero-copy h1 {
  max-width: 700px;
  font-size: clamp(46px, 6vw, 72px);
}

.hero-copy p {
  max-width: 650px;
  font-size: 17px;
}

.hero-trust-row {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust-row svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

.home-command {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 213, 255, .12), transparent 24%),
    radial-gradient(circle at 22% 54%, rgba(124, 60, 255, .28), transparent 34%),
    rgba(5, 12, 28, .88);
  border: 1px solid rgba(177, 126, 255, .3);
  box-shadow: 0 34px 110px rgba(0, 0, 0, .42), 0 0 65px rgba(124, 60, 255, .14);
  backdrop-filter: blur(24px);
}

.home-command::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(#000, transparent 80%);
}

.home-command-head {
  min-height: 52px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.home-command-head > span {
  display: flex;
  gap: 6px;
}

.home-command-head i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple-2);
  box-shadow: 0 0 12px currentColor;
}

.home-command-head i:nth-child(2) { background: var(--cyan); }
.home-command-head i:nth-child(3) { background: var(--green); }

.home-command-head strong {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.home-command-head em {
  justify-self: end;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(24, 226, 141, .09);
  border: 1px solid rgba(24, 226, 141, .2);
  font-size: 9px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.home-command-main {
  position: relative;
  padding: 32px 30px 28px 118px;
  display: grid;
  min-height: 138px;
  align-content: center;
}

.home-command-orb {
  position: absolute;
  left: 28px;
  top: 50%;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 20px;
  color: #d7baff;
  background: linear-gradient(135deg, rgba(181, 76, 255, .28), rgba(0, 213, 255, .12));
  border: 1px solid rgba(181, 76, 255, .32);
  box-shadow: 0 0 40px rgba(124, 60, 255, .25);
}

.home-command-orb svg {
  width: 36px;
  height: 36px;
}

.home-command-main span,
.home-command-main small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.home-command-main strong {
  margin: 2px 0;
  font-size: 44px;
  line-height: 1;
}

.home-command-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .08);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.home-command-grid a {
  min-height: 102px;
  padding: 19px;
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-template-rows: auto auto;
  gap: 3px 10px;
  background: rgba(5, 12, 28, .9);
  transition: background .2s ease;
}

.home-command-grid a:hover {
  background: rgba(124, 60, 255, .14);
}

.home-command-grid svg {
  grid-row: 1 / 3;
  width: 26px;
  height: 26px;
  color: var(--purple-2);
}

.home-command-grid strong {
  font-size: 13px;
}

.home-command-grid span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
}

.home-featured {
  padding-top: 78px;
}

.home-section-head {
  margin-bottom: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.home-section-head span {
  color: var(--purple-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-section-head h2 {
  margin: 9px 0 9px;
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -.04em;
}

.home-section-head p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.home-products-grid .product-card {
  display: flex;
  flex-direction: column;
}

.home-product-framework {
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-product-framework svg {
  width: 14px;
  height: 14px;
}

.home-product-bottom {
  margin-top: auto;
  padding-top: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
}

.home-product-bottom > strong {
  font-size: 19px;
}

.home-product-bottom .details-btn {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 8px;
}

.home-product-bottom .details-btn svg {
  width: 16px;
  height: 16px;
}

.home-empty-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed rgba(160, 130, 255, .24);
  border-radius: 12px;
}

.section-categories .category-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .home-command {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .hero-section {
    padding-top: 56px;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .home-section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .home-command-grid {
    grid-template-columns: 1fr;
  }

  .home-command-main {
    padding-left: 104px;
  }

  .home-command-orb {
    left: 20px;
  }
}
