.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 132px 0 96px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.65;
  background-image: repeating-linear-gradient(135deg, rgba(23, 32, 51, 0.025) 0 1px, transparent 1px 18px);
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-content {
  position: relative;
  align-items: center;
}

.hero-copy {
  max-width: 660px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(23, 32, 51, 0.1);
  border-radius: 18px;
  transform: rotate(-6deg);
}

.orbit-one {
  width: 94%;
  height: 94%;
  box-shadow: 0 18px 42px rgba(23, 32, 51, 0.08);
}

.orbit-two {
  width: 72%;
  height: 72%;
  border-color: rgba(29, 78, 216, 0.32);
}

.model-core {
  position: relative;
  width: 62%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.model-core::before,
.model-core::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(23, 32, 51, 0.14);
  transform: rotate(45deg);
}

.model-core::before {
  width: 52%;
  height: 52%;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.12), rgba(15, 118, 110, 0.08));
}

.model-core::after {
  width: 34%;
  height: 34%;
  border-color: rgba(22, 163, 74, 0.28);
}

.model-core img {
  position: relative;
  z-index: 1;
  width: 76%;
  height: 76%;
  object-fit: contain;
}

.model-fallback {
  position: relative;
  z-index: 1;
  display: none;
  font-size: 3rem;
  font-weight: 900;
  color: var(--text);
}

.orbit-node {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.1);
}

.node-one {
  top: 18%;
  right: 18%;
}

.node-two {
  bottom: 22%;
  left: 14%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(29, 78, 216, 0.1);
}

.products-section {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 52px;
  align-items: start;
}

.steps-list {
  display: grid;
  gap: 14px;
}

.step-item {
  padding: 0;
}

.step-item span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--accent-3);
  font-weight: 900;
}

.step-item h3 {
  margin-top: 0;
}

.step-item p {
  margin-top: 6px;
}

