.zwants-home-hero {
  background:
    radial-gradient(circle at 78% 35%, rgba(0, 196, 255, .16), transparent 30%),
    linear-gradient(135deg, #061323 0%, #081a2e 55%, #06111f 100%);
  color: #fff;
  overflow: hidden;
  padding: 96px 24px;
}

.zwants-home-shell {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  align-items: center;
  gap: 48px;
}

.zwants-home-eyebrow {
  color: #21c8f6;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  margin-bottom: 18px;
}

.zwants-home-title {
  color: #fff;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -.035em;
  margin: 0 0 24px;
  max-width: 780px;
}

.zwants-home-description {
  color: rgba(255,255,255,.78);
  font-size: 20px;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 0 34px;
}

.zwants-home-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.zwants-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
}

.zwants-btn-primary {
  background: #20c9f3;
  color: #04111f;
  padding: 15px 24px;
  border-radius: 4px;
}

.zwants-btn-primary:hover {
  background: #51d8f8;
  color: #04111f;
}

.zwants-btn-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.zwants-btn-link:hover {
  color: #20c9f3;
}

.zwants-home-system {
  min-height: 430px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 42px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    rgba(255,255,255,.025);
  background-size: 28px 28px;
  box-shadow: inset 0 0 70px rgba(33,200,246,.05);
}

.zwants-system-node {
  border: 1px solid rgba(33,200,246,.55);
  background: rgba(5, 24, 42, .82);
  padding: 24px 18px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.zwants-system-line {
  height: 2px;
  background: linear-gradient(90deg, rgba(33,200,246,.2), #21c8f6, rgba(33,200,246,.2));
  box-shadow: 0 0 14px rgba(33,200,246,.45);
}

.zwants-system-output {
  grid-column: 1 / -1;
  justify-self: end;
  color: #21c8f6;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
}

@media (max-width: 991px) {
  .zwants-home-hero {
    padding: 72px 20px;
  }

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

  .zwants-home-system {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .zwants-home-title {
    font-size: 42px;
  }

  .zwants-home-description {
    font-size: 17px;
  }

  .zwants-home-system {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
    padding: 24px;
  }

  .zwants-system-line {
    width: 2px;
    height: 34px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(33,200,246,.2), #21c8f6, rgba(33,200,246,.2));
  }

  .zwants-system-output {
    grid-column: auto;
    justify-self: center;
  }
}
